@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700&display=swap');
* {
    font-family: 'Barlow', sans-serif;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

body {
    font-size: 15px;
    color: #231F20;
}

.bold_400
{
    font-weight: 400;
}
.bold_500
{
    font-weight: 500;
}
.bold_700
{
    font-weight: 700;
}

::selection {
    color: #306582;
    background: #E2F4F9;
}

a {
    text-decoration: none;
}

button:focus {
    outline: none!important;
    box-shadow: none!important;
}

:root {
    /*--primary: #1891B4;*/
    --primary: #1791B3    ;
    --secondary: #800101;
    --dark: #231F20;
    --light: #E2F4F9;
}


.color_primary
{
    color: var(--primary);
}
.bg_primary {
    background-color: var(--primary); /* Primary color */
    transition: all 0.3s ease-in-out;
}

.bg_primary:hover {
    background-color: white !important;
    color: var(--primary) !important;
}

.bg_light
{
    background-color: var(--light);
}
.form-control:focus,
.form-select:focus,
.form-check-input:focus
{
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgb(200 0 0 / 15%);
}
.form-check-input:checked
{
    background-color: var(--primary);
    border-color: var(--primary);
}
.form-control,
.form-select,
.form-check-input
{
  font-size: 14px;
}
.owl-next,
.owl-prev
{
    position: absolute;
    top: 53%;
    /* background: #fff!important; */
    width: 26px;
    height: 26px;
    border-radius: 100px;
    font-size: 24px!important;
    line-height: 0!important;
    box-shadow: 0 0.1rem 0.5rem rgb(0 0 0 / 20%);
    margin: 0 10px;
}
.owl-next
{
    right: 0;
}

.style2 .owl-next,.style2 .owl-prev 
{
    position: absolute;
    top: -110px;
    right: 0;
    background: transparent!important;
    width: auto;
    height: auto;
    border-radius: 100px;
    font-size: 24px!important;
    line-height: 0!important;
    box-shadow: none;
    margin: 0 10px;
    filter: hue-rotate(46deg) saturate(3);
}
.style2 .owl-prev 
{
    right: 50px;
}
.py-25 
{
    padding-top: 0.8rem!important;
    padding-bottom: 0.8rem!important;
}
.border-light 
{
    border-color: #eeeeee!important;
}
.btn_primary
{
    vertical-align: text-top;
    font-size: 16px;
}

.chocolat-wrapper
{
    z-index: 99999999999;
        backdrop-filter: blur(5px);
}
.chocolat-wrapper .chocolat-bottom
{
    background: rgb(0 0 0 / 84%);
}

input,
textarea,
select
{
    background-color: #eeeeee;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 10px 15px;
    width: 100%;
}
.modal-dialog
{
    max-width: 920px;
}
.modal
{
    backdrop-filter: blur(8px);
    z-index: 100000000000;
}


.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
      height: 44px;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.ham .line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#fff;
  stroke-width:4;
  stroke-linecap:round;
}
.ham .top {
  stroke-dasharray: 40 121;
}
.ham .middle {
    stroke-dasharray: 22;
}
.ham .bottom {
  stroke-dasharray: 40 121;
}
.ham.active .top {
  stroke-dashoffset: -68px;
}
.ham.active .bottom {
  stroke-dashoffset: -68px;
}

.title_section {
    background-color: var(--primary);
    border-radius: 0 0 20px 20px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#contactmodal
{
    z-index: 99999999999999999999999999999999;
}
#entrymodal .btn-close,
#modal_30sec .btn-close,
#modal_50sec .btn-close
{
    position: absolute;
    right: 9px;
    top: 11px;
    background-color: white;
    z-index: 1;
    opacity: 1;
}
#entrymodal .modal-dialog,
#modal_30sec .modal-dialog,
#modal_50sec .modal-dialog
{
    max-width: 600px;
}



/*Header start*/
header
{
    width: 95%;
    left: 0;
    top: 0;
    z-index: 99;
    /* background-color:#515151c2;
    backdrop-filter: blur(11px);
    border-radius: 0 0 15px 15px; */
    z-index: 100;
    position: relative;
}
.curve_border
{
    border-radius: 15px;
}
 
header nav .navbar-brand .logo 
{
    /* width: 165px; */
    width: 100%;
    max-width: 250px;
}

header nav .nav-item 
{
        display: flex;
    align-items: center;
}
header .nav1 .navbar-nav .nav-link{
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
 }
header nav .navbar-nav .nav-link.active
{
    font-weight: 600;
 }

.navbar-light .navbar-toggler {
    color: var(--primary);
    border: none;
}
 
 .loaded_page .loading_overlay {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s !important;
  -moz-transition: opacity 0.6s !important;
  -o-transition: opacity 0.6s !important;
  -ms-transition: opacity 0.6s !important;
  transition: opacity 0.6s !important;
}

.loading_overlay 
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffffff2;
  overflow: hidden;
  position: fixed;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading_overlay .loader_logo 
{
  position: relative;
}
.loading_overlay .loader_logo img 
{
    height: 230px;
 
    filter: hue-rotate(-15deg) saturate(2)
 }
 
 
/*Header end*/

/*home page section 1*/
.home_page {
    overflow: hidden;
    background-color: #161616;
    float: left;
    width: 100%;
    margin-top: -117px;
}
.home_page .section1 {
    z-index: 1;
    background-color: #000;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.home_page .section1 .content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.home_page .section1 .content {
    max-width: 770px;
    padding: 0 15px;
}
/* .home_page .section1 .img1
{
    position: absolute;
    left: -260px;
    top: 0;
} */
@keyframes spin-clockwise {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes spin-counterclockwise {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(-360deg);
    }
}

.home_page .section1 .img2 {
    position: absolute;
    left: -250px; /* Adjust this value to position it more to the left */
    top: 50%;
    transform: translateY(-50%);
    z-index: -1; /* Push it behind everything */
    max-height: 80vh; /* Ensure it's not too large */
    animation: spin-clockwise 35s linear infinite;


}
.home_page .section1 .img3 {
    position: absolute;
    right: -250px; /* Adjust this value to position it more to the left */
    top: 30%;
    transform: translateY(-50%);
    z-index: 1;
    max-height: 80vh; /* Ensure it's not too large */
    animation: spin-counterclockwise 35s linear infinite;


}
.home_page .section1 .certificates-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background-color: #000; /* Ensure it covers the SVG */
    border-top: 2px solid var(--primary);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -5px 15px rgba(23, 145, 179, 0.3), 
                0 -2px 5px rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.home_page .section1 .certificates img {
    width: 68px;
    transition: all ease 0.3s;
    margin: auto;
    border-radius: 15px;
}

.home_page .section1 .certificates img:hover {
    filter: grayscale(0);
}

.hero-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 10%);
    z-index: 0;
}


/*home page section 2*/
.home_page .section2 .img1
{
    position: absolute;
    right: -154px;
    top: 10%;
    width: 505px;
    -webkit-animation:spin 15s linear infinite;
    -moz-animation:spin 15s linear infinite;
    animation:spin 15s linear infinite;
    /* filter: hue-rotate(46deg) saturate(3); */
}
@-moz-keyframes spin 
{ 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin 
{ 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin 
{ 
    100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } 
}

.home_page .section2 .img2
{
    position: absolute;
    top: 0;
    opacity: 0.2;
    right: -99px;
    transform: rotate(173deg);
    z-index: 0;
    /* filter: hue-rotate(46deg) saturate(3); */
}
.home_page .section2
{
    padding-top: 6rem!important;
    padding-bottom: 6rem!important;
        background-color: #161616;
}


.home_page .section3 {
    background-image: url(../graphics/shape8.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 40%;
    padding-top: 10rem;
    padding-bottom: 17rem;
    /* margin: -142px 0 -86px 0; */
    /* background-color: #161616; */
    z-index: 10;
    position: relative;
    margin-top: 100px;
    padding-bottom: 0;
}
.home_page .section3 .content
{
    z-index: 1;
    position: relative;
    padding-top: 350px;
}
.home_page .section3 .content h4{
    text-align: justify;
}

/*home page section 4*/
.home_page .section4 {
    background-color: #161616;
    float: left;
    width: 100%;
    margin-top: -230px;
}
.home_page .section4 .content
{
    max-width: 775px;
    margin: auto; 
    position: relative;
        z-index: 1;
}

/*home page section 5*/
.home_page .section5
{
    padding: 100px 0;
}
.home_page .section5 .border_left
{
    border-left: 6px solid var(--primary);
    background: #ffffff2b;
    backdrop-filter: blur(11px);
    color: #fff;
    position: relative;
    z-index: 10;
    padding: 50px 50px;
}
.home_page .section5 .border_left h4{
    min-height: 75px;
}
.home_page .section5 img
{
    filter: drop-shadow(0px 0px 26px #00000011);
}
.home_page .section5 .content
{
    z-index: 3;
    position: relative;
}



/*home page section 6*/
.home_page .section6  
{
    /*background-image: url(../graphics/bg.jpg);*/
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0;
        background-size: cover;
        z-index: 3;
        float: left;
        width: 100%;
}
.home_page .section6::after
{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
background: #1791b3;
    background: -moz-linear-gradient(270deg, #1791b3 16%, rgba(128,1,1,0) 100%);
    background: -webkit-linear-gradient(270deg, #1791b3 16%, rgba(128,1,1,0) 100%);
    background: linear-gradient(270deg, #1791b3 16%, rgba(128,1,1,0) 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.home_page .section6 .container
{
    position: relative;
    z-index: 1;
}
.home_page .section6 .round_ripple
{
    cursor: pointer;
}
.home_page .section6 .round_ripple .round
{
    position: relative;
    z-index: 1;
    background-color: #ffffff57;
    padding: 19px 22px 19px;
    border-radius: 100px;
    width: 63px;
    height: 63px;
    text-align: center;
    display: flex;
    backdrop-filter: blur(5px);
}
.home_page .section6 .round_ripple .round img
{
   width: 24px;
   height: 24px; 
}
.home_page .section6  .icon_plane
{
    width: 38px;
    margin-right: 10px;
    position: absolute;
    left: -4px;
    top: -3px;
}
.home_page .section6 .round_ripple::after 
{
    content: "";
    width: 39px;
    height: 39px;
    background: #ffffff;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    position: absolute;
    transform: scale(0.3);
    border-radius: 100px;
    animation-name: paly-anim;
    animation-duration: 1.8s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    z-index: -1;
}

@keyframes paly-anim 
{
    0% {
        transform: scale(.2);
        opacity: 1;
    }
    50% {
        
        opacity: 0.5;
    }
    100%
    {
        transform: scale(2.5);
        opacity: 0;
    }
}



.home_page .section7 .item 
{
    background: #1791b3b5;
    backdrop-filter: blur(11px);
    padding: 12px;
    border-radius: 20px;
}
.home_page .section7 .item .title
{
    height: 48px;
    overflow: hidden;
}
.home_page .section7 .item p {
    max-height: 88px;
    overflow: hidden;
    font-size: 20px;
    line-height: 23px;
    text-align: justify;
}
.home_page .section7 .bg_grey
{
    /*background-color: var(--dark);*/
    height: 290px;
    width: 100%;
    margin-bottom: -210px;
}
.home_page .section7  .img1
{
    position: absolute;
    right: -154px;
    top: 10%;
    width: 505px;
    -webkit-animation:spin2 15s linear infinite;
    -moz-animation:spin2 15s linear infinite;
    animation:spin2 15s linear infinite;
    /* filter: hue-rotate(46deg) saturate(3); */
}
@-moz-keyframes spin2 
{ 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin2
{ 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin2 
{ 
    100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } 
}

.home_page .section7  .img2
{
position: absolute;
    top: 72px;
    opacity: 0.2;
    right: -99px;
    transform: rotate(173deg);
    filter: contrast(0.5);
    /* filter: hue-rotate(46deg) saturate(3); */
}
.home_page .section7 .carousel_3 
{
    z-index: 3;
}





.home_page .section8 
{
    z-index: 3;
}
.home_page .section8 .item img
{
    transition: all ease 0.3s;
}
.home_page .section8 .item img:hover
{
    transform: scale(0.9);
    box-shadow: 0px 2px 12px 0px #0000006b;
}


.home_page .section9 
{
    padding: 3rem 0 0;
     background-color: #072c36;
     /* padding-bottom: 75px; */
}
.home_page .section9  p{
    font-size: 20px;
    padding-left: 10px;
}
.home_page .section9 li {
    padding-inline-start: 10px;
    white-space: normal;
    line-height: 1.2;
    list-style: none;
    position: relative;
    margin-bottom: 5px;
    font-size: 25px;
}
.home_page .section9 h2{
    padding-top: 50px;
    margin-bottom: 30px;
}

.home_page .section9  li::before
{
    content: "";
    background-image: url(../graphics/icons/tick.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 19px;
    height: 19px;
    display: block;
    position: absolute;
    left: -27px;
    top: 2px;
    filter: hue-rotate(46deg) saturate(3);

}
.home_page .section9  .img1
{
    position: absolute;
    left: -154px;
    /* top: 16%; */
    top: 31%;
    width: 505px;
    -webkit-animation:spin3 15s linear infinite;
    -moz-animation:spin3 15s linear infinite;
    animation:spin3 15s linear infinite;
    /* filter: hue-rotate(46deg) saturate(3); */
}
@-moz-keyframes spin3 
{ 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin3
{ 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin3
{ 
    100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } 
}

.home_page .section9 .img2
{
position: absolute;
    top: 60px;
 width: 100%;
    left: 0px;
    max-width: 760px;
    
 
}

footer
{
    overflow-x: hidden;
    padding-top: 7rem;
    background:#000;
}
footer .section10 .content {
    background: rgba(23, 145, 179, 0.3);
    padding: 90px 80px;
    margin-bottom: -140px;
    z-index: 10;
    position: relative;
    backdrop-filter: blur(10px) saturate(150%);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer .bg_dark {
    padding-top: 220px;
    backdrop-filter: blur(10px) saturate(150%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: rgba(23, 145, 179, 0.3);
}
.top-shape2 {
    background-color: #072c36 !important;
}
footer .bg_dark .link
{
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 19px;
}
footer .section10 .content h5,
footer .section10 .content h3
{
    max-width: 800px;
    margin: auto;
}
footer .img1 {
    position: absolute;
    left: 0;
    top: 0%;
    width: 238px;
    -webkit-animation: spin4 50slinear infinite;
    -moz-animation: spin4 50s linear infinite;
    animation: spin4 50slinear infinite;
    /* filter: hue-rotate(46deg) saturate(3); */
}
@-moz-keyframes spin4 
{ 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin4
{ 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin4 
{ 
    100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } 
}

footer .img2
{
position: absolute;
    top: 6px;
    opacity: 0.2;
    right: -147px;
    transform: rotate(173deg);
    width: 413px;
    /* filter: hue-rotate(46deg) saturate(3); */
}
footer a:hover .link
{
    color: var(--light);
}
 .whatsapp_icon
{
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 5;
}
 .whatsapp_icon img
{
    width: 50px;
}
footer .social img
{
    width: 27px;
}








/*contact page*/
.contact_page .section1
{
background-image: url(../graphics/contact_banner.jpg);
    min-height: 380px;
    background-position: center;
}
.contact_page .section1:before
{
    content: "";
    background: rgb(0 0 0 / 30%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.contact_page .section2 .content1
{
    margin-top: -85px;
}
/*contact page*/




/*3d plane*/
 
 

canvas {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.solid {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.wireframe {
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}

 
 .trigger {
  position: absolute;
  top: 0;
  height: 100%;
}
 .section {
 /* position: relative;
  padding: var(--padding);
  --pad2: calc(var(--padding) * 2);
  width: calc(100vw - var(--pad2));
  height: calc(50vh - var(--pad2));
  margin: 0 auto;
  z-index: 2;*/
}
  .section.dark {
  color: white;
  background-color: black;
}
  .section.right {
  text-align: right;
}
  .blueprint {
  position: relative;
  background-color: #000;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
  background-attachment: fixed;
}
 .blueprint svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  stroke: white;
  pointer-events: none;
  visibility: hidden;
}
  .blueprint .dark {
  background-color: transparent;
}
 .ground-container {
  position: relative;
  overflow: hidden;
}
  .ground-container .parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -100px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transform-origin: top center;
}
 .ground-container .ground {
  z-index: -1;
  /*background-image: url("https://assets.codepen.io/557388/background-reduced.jpg");*/
}
  .ground-container .clouds {
  z-index: 0;
  background-image: url("https://assets.codepen.io/557388/clouds.png");
  pointer-events: none;
   opacity: 0.5;
  
}
 .scroll-cta,  .credits {
  position: absolute;
  bottom: var(--padding);
}
  .scroll-cta {
  font-size: var(--font-size-medium);
  opacity: 0;
}
 



/* gallery page */


.gallery_page {
    
    background:#000;
}


.gallery_page .section1 .cards
{
    column-count: 4;
    column-gap: 8px;
}

.gallery_page .section1 .cards img
{
    width: 100%;
    border-radius: 6px;
}



/* news page */


.news_page {
    
    background:#000;
}


.news_page h5 {
    
    color:#fff;
}

.news_page p {
    
    color:#fff;
}

.news_page small {
    
    color:#fff;
}

.news_page button {
    
    color:#fff;
}



.news_page .section1 .content
{
    background: #4284d629;
    padding: 12px;
    color: #333333;;
    border-radius: 20px;
    margin-bottom: 17px;
}
.news_page .section1 .content .title
{
    height: 48px;
    overflow: hidden;
}
.news_page .section1 .content p
{
    max-height: 88px;
    overflow: hidden;
}
.news_page .section1 .content:hover .title
{
    color: var(--primary);
}




/* placement page  */
.placements_page .section1 .content 
{
    border: 2px solid #eeeeee;
    padding: 5px;
    border-radius: 10px;
}
.placements_page .section1 .content .company
{
    position: relative;
    background-color: #ffffff;
    width: 78px;
    padding: 0;
    margin: -40px 0px 4px 10px;
    box-shadow: 0px 3px 6px 1px #0000001c;
    object-fit: contain;
    height: 65px;
}


/* courses page  */

.courses_page {
    
    background:#000;
}

.courses_page li {
    
    color:#fff;
}

.courses_page h6 {
    
    color:#fff;
}

.courses_page .curve_border {
    
    background:#343434;
}



.courses_page .section1 .content li
{
    margin: 12px 0px;
    line-height: 1.1;
}



/* about_page */

.about-head {
    
    background:#000;
}

.about_page .title_section {
    
    
    margin-bottom:0px;
}

.about_page .section1,.section5 {
    
    background:#000;
    padding-top:100px;
    padding-bottom:50px;
}

.about_page .section3 {
    
    background:#000000a3;
}

.about_page .section4 {
    
    background:#000;
    
}

.about_page .section5 .accordion-item {
    background-color: #1791B2 !important;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.about_page .section5 .accordion-button {
    background-color: #1791B2 !important;
    color: white !important;
    font-weight: bold;
    border: none;
}

.about_page .section5 .accordion-button:focus {
    box-shadow: none;
}

.about_page .section5 .accordion-button:not(.collapsed) {
    color: white !important;
    background-color: #147A94 !important;
}

.about_page .section5 .accordion-body {
    color: black;
    background-color: white !important;
}

.about_page .section5 .accordion-item + .accordion-item {
    margin-top: 10px;
}

.about_page p {
    font-size: 20px;
    text-align: justify;    
    color:#fff;
}

.about_page h4 {
    text-decoration: underline;
    color:#fff;
}

.about_page h1 {
    
    color:#fff;
}




.about_page .section3 .content
{
    background-color: #343434;
    padding: 20px;
    border-radius: 10px;
    color: #7c7c7c;
    position: relative;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
}
.about_page .section3 .content span
{
    font-size: 45px;
    font-weight: 900;
    -webkit-text-stroke: 2px var(--primary);
    color: black;
    position: absolute;
    right: 4px;
    top: -15px;
}
.about_page .section3 .content1 {
    max-width: 700px;
    margin: auto;
    z-index: 1;
    position: relative;
}

.about_page .section3 video
{
position: absolute;
    /* z-index: -1; */
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    padding: 0;
    opacity: 0.8;
}

.about_page .section3 .video_row
{
    align-items: center;
    padding: 100px 0;
}
.about_page .section4 ul li
{
    border-bottom: 1px solid #e3e3e3;
    padding: 7px 0 17px;
}
.about_page .section4 h1
{
font-size: 45px;
    /* font-weight: 900; */
    -webkit-text-stroke: 1px #0d75f8;
    color: white;
    text-align: center;
    margin-bottom: 29px;
}

/*enquiry popup style*/

.modal-content {
    
    background:#4e4e4e;
}

.modal-content p {
    
    color:#fff;
}

.modal-content .btn_primary {
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.3s ease-in-out;
}

.modal-content .btn_primary:hover {
    color: var(--primary);
    background: white;
    border: 1px solid white;
}

/* SVG color change effect */
 .btn_primary img {
    filter: brightness(0) invert(1); /* Converts the SVG to white */
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Change SVG color and add a hover animation */
 .btn_primary:hover img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(200%) hue-rotate(200deg);
    transform: scale(1.1); /* Slight zoom effect */
}

input, textarea, select {
    background-color: #e1e1e1;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 10px 15px;
    width: 100%;
    color:#000;
}

::placeholder {
  color: #000; /* Set placeholder color to gray */
}

.form-para {
  
  font-size:12px !important;
}


.section11 {
    background-color: #000;
}




/*enquiry popup style*/



/*review section*/


.review-sec {
    
    padding:50px;
    background:#161616;
    border-radius:30px;
    margin-bottom:50px;
}

.review-sec img:first-child {
    
    margin-bottom:30px;
}


/*review section*/



.section2 .img3 {
    
    width: 510px;
    position: absolute;
    right: -99px;
    top: 99px;
}

.section6  .d-md-none {
    display: none !important;
}


.news_page .section1 img {
    
    width: 100% !important;
    max-width: 396px;
    min-width: 396px;
    min-height: 234px;
    max-height: 234px;
}


.vip-num {
    
    text-align:center;
}

.vip-num a {
    
    font-size: 26px;
    color: #fff;
    font-weight: 500;
}

.vip-num span {
    
    margin-right: 20px;
    /* color: var(--primary); */
    font-weight: bolder;
}

.navbar{
    /* background-color: #000; */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.navbar-nav .nav-link {
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important; /* Change to your desired color */
}
.contact_form_content{
    background: #000;
    border: 1px solid white;
}
.modal-body .map{
    border-radius: 20px;
}
.modal-body input,select,textarea{
    background: #000;
    border: none;
    color: white;
    border-bottom: 1px solid white;
}
.modal-body input::placeholder, select::placeholder, textarea::placeholder{
    color: white;
}
.home_page .section2 p{
    font-size: large;
}
.home_page .section3 p{
    /* font-size: large; */
}
/* staff page */
.staff-head {
    
    background:#000;
}

.staff_page .title_section {
    margin-bottom:0px;
}

.staff_page .section1 {
    
    background:#000;
    padding-top:100px;
    padding-bottom:50px;
}
.staff_page .section2 {
    
    background:#000;
    padding-top:100px;
    padding-bottom:50px;
}
.staff_page .section2 .card
{
    background: #4284d629;
    padding: 12px;
    color: #333333;;
    border-radius: 20px;
    margin-bottom: 17px;
}
.staff_page .section2 .card-body h5{
    font-size: 2rem;
}.staff_page .section2 .card-body p{
    font-size: 1rem;
}
.staff_page .section2 .card img {
    height: 500px; /* Set your desired uniform height */
    width: 100%; /* Ensure it fills the container */
    object-fit: cover; /* Crop the image while maintaining aspect ratio */
    border-radius: 10px; /* Optional: Adjust the border radius */
}
/* admission page */
.admission-head {
    background: #000;
}

.admission_page .title_section {
    margin-bottom: 0px;
}

.admission_page .section1 {
    background: #000;
    padding-top: 100px;
    padding-bottom: 50px;
}

/* Style for Admission Instructions */
.admission-instructions {
    list-style: none;
    padding: 0;
    text-align: left;
}

.admission-instructions li {
    background: rgba(23, 145, 178, 0.3); /* Transparent background */
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 20px;
    /* font-weight: 500; */
    color: white; /* Keep text white for contrast */
    backdrop-filter: blur(10px); /* Glassy blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}


/* Responsive Design */
@media (max-width: 768px) {
    .admission-instructions li {
        font-size: 0.9rem;
        padding: 10px;
    }
}
.qr_code {
    width: 250px;
    height: auto;
}



.container-fluid {
    max-width: 1660px;
}
.top-right {
    position: absolute;
    right: 20px;
    z-index: 1000;
    top: 42%;
    color: #fff;
    /* rotate: 270deg; */
}
.top-right li {
    /* display: inline; */
    padding: 6px 0px;
    text-align: center;
}
.top-right a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
}
.logo-scroll {
    float: left;
    width: 100%;
    background: #b4efff;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}
.logo-scroll .owl-item img {
    display: block;
    width: 100%;
    max-width: 100px;
}

.home_welcome{
    float: left;
    width: 100%;
    padding: 110px 0;
    /* background-color: #fff; */
    color: #fff;
    position: relative;
    z-index: 1;
    padding-top: 200px;
}
.happy_span {
    transform: translateY(9.46717px) scale(1, 1);
    opacity: 1;
    z-index: 1;
    top: 10px;
    left: 60px;
    font-size: 5.625rem;
    line-height: 5.625rem;
    font-weight: 600;
    color: #62b4cb;
}
.happy_span span {
    font-size: 20px;
    line-height: 16px;
    color: #ffffff;
    font-weight: 800;
    background-color: #1791b3;
    padding: 10px;
}
.wel_img2{
    transform: translateY(2.20513px);
    left: -70px;
    bottom: -50px;
    width: 55% !important;
    border-radius: 6px;
}
.title_home{
 font-size: 50px;
}
.home_f2{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
}
.home_welcome p {
    text-align: justify;
    font-size: 20px;
}
.home_welcome img {
    border-radius: 6px;
}
h2 span{
    color: var(--primary);
    font-weight: 700;
}




.btn {
    min-width: 160px;
    width: fit-content;
    width: -moz-fit-content;
    background-color: white;
    padding:15px 30px;
    height: 50px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 2.8px;
    font-weight: 700;
    line-height: 1.6;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 0;
    /* btn text */
  }
  .btn span {
    z-index: 1;
    text-align: center;
    position: relative;
  }
  .btn:before, .btn:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    transition: all 0.4s ease;
    background-color: var(--primary);
  }
  .btn:before {
    left: 0;
  }
  .btn:after {
    right: 0;
  }
  .btn:hover {
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    color: white;
  }
  .btn:hover:before, .btn:hover:after {
    width: 51%;
  }

  .section2{
    float: left;
    width: 100%;
    padding: 110px 0;
}
.section3{
    float: left;
    width: 100%;
    padding: 110px 0;
}
.home-banner {
    float: left;
    width: 100%;
    z-index: 1;
    position: relative;
}

/* .content {
    top: 200px;
} */

.sticky-header {
    position: fixed;
    top: 0;
    z-index: 1000 !important;
    animation: slideDown 0.5s;
    background-color: #515151c2;
    backdrop-filter: blur(11px);
    border-radius: 0 0 15px 15px;
}
.sticky-header .navbar-brand .logo {
    max-width: 190px;
}
.section3 p{text-align: justify;
    font-size: 20px;}

.section4 h4 {
    margin: 40px 0;
}
.course_box img{
    max-width: 100px;
    text-align: center;
    display: block;
    margin: 0 auto;
}
.section5 p{
    text-align: justify;
    font-size: 20px;
}
.section6 p{
    text-align: justify;
    font-size: 20px;
}
.section6 h4 {
    font-size: 20px;
    letter-spacing: 1px;
}
.top-shape {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
    background-color: #072c36;
    margin-top: -25px;
}


.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.m-home .content {
position: absolute;
left: 50%;
transform: translate(-50%, -50%);
text-align: left;
color: #fff;
width: 100%;
max-width: 1600px;
bottom: 0;
}

.m-home .content h1 {
font-size: 80px;
font-weight: 200;
}



.m-home .content .btn_banner {
padding: 12px 24px;
font-size: 1rem;
border-radius: 30px;
color: #fff;
font-size: 18px;
margin-top: 35px;
padding-left: 0;
}
.shape-bottom{
    direction: ltr;
    background: #072c36;
}
.footer_p {
    font-size: 20px;
    padding-top: 0;
}
.footer .section10 .content h3{
    font-size: 20px;
    }



    .sticky-header {
        position: fixed;
        top: 0;
        z-index: 1000;
        animation: slideDown 0.5s;
        background-color: #515151c2;
        backdrop-filter: blur(11px);
        border-radius: 0 0 15px 15px;
    }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

/* .about_page{
    margin-top: -120px;
}
.courses_page {
    margin-top: -120px;
}
.news_page {
    margin-top: -120px;
} */



.section7 button{
    color: #fff;
}

.title_section {
    margin-top: -120px;
    background-image: url(../graphics/inner-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
    background-attachment: fixed;
    /* padding: 176px 0 123px !important; */
}
.home_two_box {
    /* background: rgba(23, 145, 179, 0.3); */
    /* backdrop-filter: blur(10px) saturate(150%); */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    float: left;
    width: 100%;
    padding: 10px;
    border: solid 1px #1791b3;
    margin-bottom: 15px;
}
.home_two_box img {
    max-width: 50px;
    width: 100%;
    margin: 0 auto;
    display: block;
}
.home_two_box h4 {
    color: #fff;
    font-size: 13px;
    min-height: 62px;
}
.section8 .item img{
    border: solid 5px #1791b387;
}

.section11 {
    padding-top: 60px;
}
.inner_page_shape {
    overflow: hidden;
    position: relative;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    margin-top: -185px;
    z-index: 10;
}
.mr_footer {
    overflow-x: hidden;
    padding-top: 7rem;
    background: #000;
    margin-top: -53px;
}

@media (max-width: 1600px) {
.container-fluid {
        max-width: 1320px;
    }
    .home_page .section9 .img2 {
        max-width: 645px;
    }
    .inner_page_shape {
        /* margin-top: -145px; */
    }
}
/* .about_page .title_section{
padding: 225px 0 160px !important;
} */
.m-home footer {
    margin-top: -50px;
    padding-top: 340px;
}

.innerpage_padding {
    background: #000;
    padding-top: 100px;
    padding-bottom: 50px;
}
footer{
    float: left;
    width: 100%;
}
.home_Benefits{
  padding:100px 0;
}

.home_Benefits p span {
    color: #62b4cb;
    font-size: 23px;
    font-weight: 500;
}







.card_staff {
	position: relative;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	margin: 40px 0;
}
.card_staff .card {
	position: relative;
	width: 300px;
	height: 400px;
	margin: 20px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.card_staff .card .content {
	position: absolute;
	bottom: -160px;
	width: 100%;
	height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	flex-direction: column;
	backdrop-filter: blur(15px);
	box-shadow: 0 -10 10px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: bottom 0.5s;
	transition-delay: 0.8s;
}
.card_staff .card:hover .content {
	bottom: 0px;
	transition-delay: 0s;
}
.card_staff .card .content .contentBox h3 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    margin: 20px 0 15px;
    line-height: 1.1em;
    transition: 0.5s;
    opacity: 0;
    transform: translate(20px, 30px);
    transition-delay: 0.6s;
}
.card_staff .card:hover .content .contentBox h3 {
	opacity: 1;
	transform: translateY(0px);
}
.card_staff .card .content .contentBox h3 span {
	font-size: 18px;
	font-weight: 300;
	text-transform: initial;
}
.card_staff .card .content .sci {
	position: relative;
	bottom: 10px;
	display: flex;
}
.card_staff .card .content .sci li {
	list-style: none;
	margin: 0 10px;
	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
	transition-delay: calc(0.2s * var(--i));
}
.card_staff .card:hover .content .sci li {
	transform: translateY(0px);
	opacity: 1;
}

.card_staff .card .content .sci li a {
	color: #fff;
	font-size: 24px;
}















.news_page {
    /* margin-top: -118px; */
}
.gallery_page{
    /* margin-top: -118px;  */
}

.innerpage_banner_padding {
    /* padding: 225px 0 160px !important; */
    margin-bottom: 0px;
}

.pt-100{
    padding-top: 100px;
}



@media (max-width: 991px) {
    .section6 h2 span{
        color: #ffffff !important;
    }
    .section8 .owl-nav {
        top: 50px;
    }
    .staff_page{
        /* margin-top: -223px;  */
    }
    .m-home .content h1 {
        font-size: 42px;
    }
    .home_welcome {
        padding: 50px 0;
        padding-top: 50px;
    }
    .title_home {
        font-size: 30px;
        text-align: left;
    }
    .section7 .owl-nav {
        top: 50px;
    }
    .home_welcome .d-inline-block{
        /* margin: 0 auto; */
        text-align: center;
        margin-bottom: 50px;
    }
    .happy_span {
        top: 0;
        font-size: 50px;
    }
    .home_page .section3 {
        background-image: none;
        padding-top: 340px;
    }
    .only_mob {
        display: block !important;
        width: 100%;
    }
    header nav .navbar-brand .logo {
        width: 125px;
    }
    .top-shape {
        margin-top: -25px;
    }
    footer .bg_dark {
        padding-top: 170px;
    }



    .ground-container {
        float: left;
        width: 100%;
    }
    .blueprint{
        float: left;
        width: 100%; 
        margin-top: -325px;
    }
    .section7 {
        float: left;
        width: 100%; 
    }
    .section8 {
        float: left;
        width: 100%; 
    }
    .top-shape  {
        float: left;
        width: 100%; 
    }
    .section9  {
        float: left;
        width: 100%; 
    }
    .shape-bottom {
        float: left;
        width: 100%; 
    }
    .section11  {
        float: left;
        width: 100%; 
    }
    .section9  {
        float: left;
        width: 100%; 
    }
    .home_page .section4 {
        margin-top: -700px;
    }
    .home_page .section5 {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 50px;
    }
    footer .section10 .content {
        padding: 50px 20px;
    }
    .innerpage_banner_padding {
        /* padding: 125px 0 18px !important; */
    }
    .inner_page_shape {
        margin-top: -90px;
    }
    .staff_page .innerpage_banner_padding {
        /* padding: 229px 0 17px !important; */
    }
    .home_welcome img {
        margin-top: 30px;
    }
    .home_page .section7 {
        padding: 50px 0;
    }
    .section9 {
        margin-top: -2px;
    }
    .wel_img2 {
        left: 5px;
    }
    .bg_dark .container{
        margin-top: -1px;
    }
    .home_page .section7 .item p {
        text-align: left;
    }
    .section5 p {
        text-align: left;
    }
    .faq_ul ul {
        padding-left: 0;
    }
    .faq_ul li i {
        font-size: 19px;
        padding-right: 5px;
    }
    
    

}


@media (max-width: 430px) {
    .inner_page_shape {
        margin-top: -54px;
    }
    .about_page .section1, .section5 {
        margin-top: -17px;
    }
    .courses_page .section1 {
        margin-top: -17px;
        float: left;
        width: 100%;
        background-color: #000;
    }
    .news_page .section1 {
        margin-top: -17px;
        float: left;
        width: 100%;
        background: #000;
    }
    .gallery_page .section1 {
        margin-top: -17px;
        float: left;
        width: 100%;
        background: #000;
    }
    .staff_page .section1 {
        margin-top: -17px;
        float: left;
        width: 100%;
        background: #000;
    }
    .admission_page .section1 {
        margin-top: -17px;
        float: left;
        width: 100%;
        background: #000;
    }
    .about_page .section1, .section5 {
        margin-top: -17px;
    }
}



.only_mob{
    display: none;
}
.bg_01 {
    margin-top: -120px;
    background-image: url(../graphics/bg_01.jpg);
}
.bg_07 {
    margin-top: -120px;
    background-image: url(../graphics/bg_07.jpg);
}
.bg_02 {
    margin-top: -120px;
    background-image: url(../graphics/bg_02.jpg);
}
.bg_03 {
    margin-top: -120px;
    background-image: url(../graphics/bg_03.jpg);
}
.bg_04 {
    margin-top: -120px;
    background-image: url(../graphics/bg_04.jpg);
}
.bg_05 {
    margin-top: -120px;
    background-image: url(../graphics/bg_05.jpg);
}
.bg_06 {
    margin-top: -120px;
    background-image: url(../graphics/bg_06.jpg);
}


.home_page .section7 {
    float: left;
    width: 100%;
    background: #000;
    padding: 100px 0;
}
.section7 .title_home {
    margin-bottom: 30px;
}
.home_page .section8 {
    z-index: 3;
    float: left;
    width: 100%;
    background: #000;
}
.section9 {
    float: left;
    width: 100%;
}
.section7 .owl-nav {
    top: 35px;
    position: absolute;
    right: 0;
}
.section8 h2{
    margin-bottom: 30px;
}
.section8 .owl-nav {
    top: 35px;
    position: absolute;
    right: 0;
}
.about_two_section{
    padding: 50px;
}

.about_two_section video::after {
    content: " - Remember this";
  }
  .shade{
    float: left;
    width: 100%;
    height: 100%;
    background: #00000087;
    position: absolute;
    top: 0;
}

.Caption {
 max-height: 200px;
 background-color: red;
}
.instagram-media p {
    height: 50px; /* Adjust the height as needed */
    overflow: hidden; /* Ensures text doesn’t overflow */
    text-overflow: ellipsis; /* Adds '...' if text is too long */
    display: block;
    line-height: 1.4; /* Adjust for better readability */
}
.faq_ul {
    color: #fff;
    padding: 0 0 0 0;
    margin: 30px 0 0 0;
    text-align: justify;
    font-size: 20px;
}
.faq_ul li i {
    font-size: 22px;
    color: #87e5ff;
    padding-right: 15px;
}
.faq_ul li {
    display: flex;
}
.faq_ul ul i{ font-size: 18px;}
.faq_ul ul {
    margin-bottom: 1rem;
}
.insta_title {
width: 100%;
}







.admission_page .section1 {
    margin-top: -3px;
}
.about_page .section1, .section5 {
    margin-top: -3px;
}
.courses_page .section1 {
    margin-top: -3px;
    background-color: #000;
}
.news_page .section1 {
    margin-top: -3px;
    background-color: #000;
}
.gallery_page .section1 {
    margin-top: -3px;
    background-color: #000;
}
.staff_page .section1{
    margin-top: -3px;
}




@media (min-width:768px) and (max-width:1099px) {
	.section9 .col-md-5 {
		display: none;
	}
    .section9 .col-md-7 {
		width: 100%;
	}
    .home_page .section9 .img2 {
        max-width: 500px;
        width: 100%;
        position: relative;
        margin: 0 auto;
        display: block;
        margin-bottom: 15px;
    }

}