/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}
 @font-face {
        font-family: 'GothamBook'; /*a name to be used later*/
        src: url('font/GOTHAMBOOK.OTF'); /*URL to font*/
      }
      @font-face {
          font-family: Montserrat-Bold;
          src: url('font/Montserrat-Bold.ttf');
      }
   body{
    font-family: "GothamBook", sans-serif !important;
    font-weight:400 ;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
   font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}




/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: #ffffff;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #fea000;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/* .header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    top: -1px;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
} */

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 200px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

/*** Header ***/
 .header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 65px;
    top: -8px;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}
/*
.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
} */

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 200px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between; /* arrows at edges */
    padding: 0 20px; /* space from edges */
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
   
     background: #fea000;
    border: 1px solid #fea000;
   
    border-radius: 50%;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #e89810;
    border-color: #e89810;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: #fea000 !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: #fea000;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #fea000;
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/

.footer-section {
  background-color: #f2f0f1;
  position: relative;
  border-top: 2px dashed #003366;
}

.footer-logo {
  font-size: 36px;
  font-weight: bold;
  color: #002d5b;
  line-height: 1.2;
  font-family: 'Courier New', Courier, monospace;
}

.footer-sub {
  font-size: 24px;
  font-weight: normal;
  position: relative;
}

.footer-sub::before {
  content: '✈️';
  position: absolute;
  left: -25px;
  font-size: 16px;
  top: 3px;
}

.social-icons i {
  font-size: 20px;
  color: #002d5b;
  transition: 0.3s;
}

.social-icons i:hover {
  color: #ff9900;
}

.contact-list li {
  margin-bottom: 5px;
  font-size: 13px;
  color: #333;
}

.contact-list i {
  width: 20px;
  text-align: center;
  color: #002d5b;
}

.whatsapp-float {
  position: absolute;
  right: 200px;
  top: -25px;
  background-color: #25D366;
  color: #fff;
  font-size: 24px;
  padding: 3px 10px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
}
@media (max-width: 768px) {
    .whatsapp-float {
  position: absolute;
 right: 55px;;
 
}

 .header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
  
    top: -13px;
    
}
}
.container-xxl {
        max-width: 2400px !important;
    }

 .form-section {
      margin-bottom: 20px;
    }
    label {
      font-weight: 500;
    }
    .radio-group {
      display: flex;
      flex-wrap: wrap;
    }
    .radio-item {
      flex: 0 0 50%;
      margin-bottom: 10px;
    }
    input[type="text"], input[type="email"], input[type="tel"] {
      border: none;
      border-bottom: 1px solid #333;
      border-radius: 0;
      outline: none;
    height: 20px;
    }

    input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
      box-shadow: none;
      border-color: #007bff;
    }



     .testimonial-section {
      background: #f9f9f9;
      
    }

    .testimonial-slide {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }

    .testimonial-video {
      width: 100%;
      max-width: 400px;
      position: relative;


    }

    .testimonial-video iframe {
      width: 100%;
      height: 250px;
      border: 3px solid orange;
      border-radius: 10px;
    }

    .testimonial-info {
      padding: 20px 30px;
      text-align: left;
    }

    .testimonial-name {
      color: #01944A;
      font-weight: bold;
      font-size: 1.5rem;
    }

    .testimonial-title {
      color: #333;
      font-size: 1.1rem;
    }

    /* Custom arrow styles */
    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background: none;
      width: 40px;
      height: 40px;
      background-image: none;
      font-size: 30px;
      font-weight: 600;
      color: #242c73;
    }

    .carousel-control-prev-icon::before {
      content: "<";
    }

    .carousel-control-next-icon::before {
      content: ">";
    }

    @media (max-width: 768px) {
        .nav-logo-image{
        max-width: 85px !important;
    }
    .carousel-control-prev {
    left: -30px;
    top: -100px;
}
.carousel-control-next {
    right:-30px;
    top: -100px;
}
.header-carousel .owl-nav .owl-prev, .header-carousel .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #fea000;
    border: 1px solid #fea000;
    border-radius: 50%;
    font-size: 15px;
    transition: .5s;}

.carousel-control-prev-icon, .carousel-control-next-icon {
   border-radius: 50%;
    
    padding: 0px 8px 8px 10px;
}
}
.carousel-control-prev, .carousel-control-next{opacity: 1;}
.sparkles {
      font-size: 20px;
      margin-left: 10px;
      color: #ff9c00;
      top: -50px;
      position: absolute; 
    }
.sec_title
{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
.sec_title_img{
    position: absolute;
    bottom: -22px;
    right: 41%;
}

.title_butttom{
    max-width: 200px;
}
.home-title{
    font-size: 1.5rem; 
    margin-top: 15px;
}
 @media (max-width: 768px) {
       .sparkles {
        right: 11px;
        top: -23px;
    }
     .sparkles img{
      width: 40px;
    }
    .title_butttom{
    max-width: 180px;
}
    .sec_title_img{
right: 31%;
}
.home-title{
    font-size: .9rem; 
    line-height: 1.8;
   
}
.sec_title
{
    font-size: 1.8rem;}
}

/* Impact  */

.impact_gif1 {
    position: absolute;     
    top: 0px;
    right: 20px;
    }
.impact_gif1 img{
    max-width: 80px;
}
.impact_gif2 {
    position: absolute;     
    top: -27px;
    right: 90px;
    }
.impact_gif2 img{
    max-width: 40px;
    transform: rotate(272deg);
}
.impact_gif3 {
    position: absolute;     
    bottom: 30%;
    right: 130px;
    }
.impact_gif3 img{
        max-width: 60px;
    transform: rotate(272deg);
}
.impact_gif11{
    position: absolute;
    top: 0px;
    right: 77px;
    
}
.impact_gif11 img{
    max-width: 90px;
}
.impact_title{
   color: #161d77;
   font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.0;
    position: absolute;
    bottom: 13%;
    left: 38%;
}
.impact_title1{
   color: #161d77;
   font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.0;
    position: absolute;
    top: -7%;
    left: 45%;
}
.impact_subtitle{
    position: absolute;
    bottom: 6%;
    left: 38%;
}

.impact_subtitle1{
       position: absolute;
    top: 7%;
    left: 45%;
    line-height: 1.1;
}
@media (max-width: 768px) {
    .impact_gif11{
           top: 12px;
        right: 12px;
}
    .impact_gif1 img{
            max-width: 40px;
        }
        .impact_gif11 img{
            max-width: 55px;
        }
  .impact_title{
    font-size: 1rem;
  }
  .impact_title1{
    font-size: 1rem;
    top: -14%;
  }
.impact_subtitle{
    bottom: 2%;
}
.impact_subtitle1{
    
}
   .impact_gif2 {
    position: absolute;     
    top: -26px;
    right: 60px;
    }
    .impact_gif3 {
    position: absolute;
    bottom: 25%;
    right: 63px;
}
}
a{color: #000000;}