/* popup */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
    top: 5px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #aaa;
}

.close-btn:hover {
 color: #fe3c66;
}

.location-buttons {
  margin-top: 20px;
  display:flex;
  gap:10px;
  justify-content: center;
}

.btn-locaton{
border-radius:5px;
}

.book-title{
font-size: 25px;
    position: relative;
    font-weight: 800;
    color: #18548a;
    margin-bottom: 20px;
}

.book-text{
        color:rgb(103, 105, 107);
    position: relative;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Home : Hero */
.hero-section {
  padding-top: 140px;
  position: relative;
  overflow: hidden;
  /* height: 100vh; */
}

.hero-inner{
  padding:0 50px;
  text-align: center;
  position: relative;
  z-index: 99;
}

.hero-text {
 
}

.hero-desc{
  color: #17538a;
    position: relative;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-bg {
  background: url('../images/Hero BG.webp') 50% 50% no-repeat;
    background-size: 100% 100%;
    background-position: bottom center;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 1;
}

.hero-image-inner {
  position: relative;
}

.hero-image {
  background: url('../images/hero-image-team.webp') 50% 50% no-repeat;
    background-size: contain;
    background-position: bottom center;
    position: relative;
    width: 100%;
    height: 500px;
    bottom: 0;
    z-index: 2;
}

.hero-button-area{
  position: absolute;
  bottom: 10%;
  z-index: 99;
  display: flex;
	gap: 10px;
	justify-content: center;
  width: 100%;
}

.hero-button-area-m{
  display: none;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #d62828;
    color: #fff;
    font-size: 14px;
    text-align: center;
    z-index: 999;
}

.bottom-red-bar {
 padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.bottom-red-bar a {
  color: #fff;
  text-decoration: underline;
  margin-left: 5px;
  font-weight: 500;
  transition: color 0.3s;
}

.bottom-red-bar a:hover {
  color: #17538a;
}

.close-bar {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}



/* Responsive */
@media (max-width: 1600px) {
  .hero-image {
      height: 400px;
  }
  }

@media (max-width: 1200px) {
  .hero-image {
    height: 300px;
}
  }



@media (max-width: 767px) {
  .hero-section {
    padding-top: 100px;
  }

  .hero-image {
    height: 200px;
}

.hero-inner {
  padding: 0 5px;
}

.hero-text {
  padding: 0 30px;
}

.hero-button-area {
  display:none;
}

.hero-button-area-m{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
  gap: 10px;
}

.bottom-bar {
    font-size: 12px;
}

  }

@media (max-width: 450px) {
  .hero-title{
font-size:32px;
  }

  .hero-desc{
    font-size: 18px;
}
}



/*********************** Services ****************** */
      .service-section {
                position: relative;
                overflow: hidden;
        }

        .service-bg{
        background: url('../images/service-BG.webp') 50% 50% no-repeat;
        background-size: 100% 100%;
        background-position: top center;
        position: absolute;
        width: 96%;
        height: 100%;
        top: -10px;
        z-index: 0;
        }

        .service-inner{
                padding:50px 100px;
                position: relative;
                z-index: 9;
        }

        .service-container {
                display: grid;
        grid-template-columns: 30% 70%;
        align-items: center;
        }

        .service-left {
                float: left;
        }

        .top-text {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 20px;
        color:#17538a;
        }


        .service-right {
                float: right;
        }

        .carousel-card {
        background: #fff;
        border-radius: 10px;
        padding: 0px 0px 0px 10px;
        margin: 25px 10px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border: none;
        outline: none;
        background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #fd5658, #844ded);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        border: 2px solid transparent;
        }

        .carousel-card img {
        max-width: 100%;
        height: 100px;
        object-fit: contain;
        margin-top: -30px;
        
        }

        .card-btn{
                text-align: right;
                margin-top: -10px;
        }

        .card-title {
        margin: 10px;
        font-size: 18px;
        color: #17538a;
        min-height:50px;
        text-align: left;
        }

        .explore-btn{
                background: #17538a;
        color: #fff;
        outline: 1px solid #17538a;
        border: none;
        cursor: pointer;
        font-size: 16px;
        width: fit-content;
        padding: 10px;
        border-radius: 0 0  10px 0;
        font-weight: 400;
        }

        .explore-btn:hover {
        background: #2a71b1;
        outline: 1px solid #18548a;
        color: #fff;
        transition: background 1s ease;
        }

        .service-carousel .slick-prev:before, .slick-next:before {
          font-size:20px;
        color: #1d5689;
        }


  .service-carousel .slick-next:before {
          font-size:20px;
        color: #1d5689;
        }


       .service-carousel .slick-prev:before {
    display: none;
}


        @media (max-width: 1200px) {
                .service-inner{
                padding:50px;
                }
        }

        @media (max-width: 768px) {
                .service-section {
        padding:  0;
        }

                .service-inner{
                padding:30px;
                }

                .service-container {
        grid-template-columns: 50% 50%;
        align-items: center;
        }
        }

        @media (max-width: 500px) {
        .service-container {
                grid-template-columns: 100%;
                gap: 30px;
        }

            .service-carousel .slick-prev:before {
              display: block;
          }
        }


/*********************** Destinations ****************** */
 .destination-section{
        padding: 50px 200px;
        text-align: center;
        position: relative;
        overflow: hidden;
        }


        .destination-cards {
        margin: 30px 0;
        }

        .destination-card {
        background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #fd5658, #844ded);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
        box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.3);
        margin: 10px;
        }

        .destination-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        }

        .card-inner {
                padding: 10px;
        font-size: 20px;
        color: #1d5689;
        min-height: 50px;
        display: grid;
        place-content: center;
        }

        .card-btn {
        margin-top: 10px;
        }

        /* .destination-cards .slick-slide {
        margin: 20px;
        }

        .destination-cards .slick-list {
        margin-right: -20px; 
        } */

        .destination-cards a{
                text-decoration:none;
        }

     .destination-cards .slick-prev:before, .slick-next:before{
    font-size: 30px;
    color: #1d5689;
     }

   


        @media screen and (max-width: 1200px) {
        .destination-section {
        padding: 50px 100px;
        }
        }

        @media screen and (max-width: 990px) {
        .destination-section {
        padding: 50px;
        }

        }

        @media screen and (max-width: 767px) {
        .destination-section {
        padding: 30px;
        }

         .destination-cards .slick-prev:before, .slick-next:before{
    font-size: 20px;
    color: #1d5689;
     }
        }



/* ****************** Review ********************** */
.testimonial-slider-section{
   position: relative;
   overflow: hidden;
}

.testimonial-bg{
   background: url('../images/review-bg.png') 50% 50% no-repeat;
    background-size: cover;
    background-position: right center;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    z-index: 0;
}


.testimonial-slider {
    margin-top: 40px;
}

.testimonial-btn-area{
  display:flex;
  gap:20px;
   justify-content: center;
margin-top: 30px;
}

 @media screen and (max-width: 767px) {
  .testimonial-btn-area{
  display:flex;
/*   flex-direction: column; */
  gap:10px;
}
 }

/********************ICEF section ***************/
.accreditation-section {
  background: linear-gradient(to right, #0693af, #1e2f4f, #1e2f4f);
  padding: 20px 200px;
 
}

.accreditation-content {
 display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 20px;
    align-items: center;
}

.accreditation-text {
 font-weight: 400;
    position: relative;
     color: #fff;
}

.accreditation-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
}

.accreditation-desc {
    font-size: 18px;
    margin-bottom: 20px;
}

.accreditation-image {
  
}

.accreditation-image-bg{
width: 320px;
    border-radius: 20px;
    background: #ffffff6e;
    margin: 0 auto;
}

.accreditation-image img {
  width: 280px;
  border-radius: 20px;
  padding:20px;
}

.accreditation-btn a{
       /* text-decoration:none; */
    }

.accreditation-btn-m{
        display:none;
    }

@media screen and (max-width: 1600px) {
.accreditation-section {
  padding: 20px 100px;
}
}

@media screen and (max-width: 1200px) {
.accreditation-section {
  padding:20px 50px;
}

}

@media screen and (max-width: 767px) {
.accreditation-section {
        padding:20px 0;
        text-align: center;
}

.accreditation-text {
padding:20px;
}

.accreditation-content {
    grid-template-columns: 1fr;
}

.accreditation-text h2 {
    font-size: 25px;
}

.accreditation-image img {
  width: 200px;
}

    .accreditation-image-bg {
        width: 100%;
        border-radius: 0;
    }

    .accreditation-btn-m{
        display:block;
        margin:10px 0;
    }

    .accreditation-btn{
        display:none;
    }
}




/********************tools section ***************/
.tools-section{
   position: relative;
   overflow: hidden;
}

.tools-bg{
   background: url('../images/tools-bg.png') 50% 50% no-repeat;
   background-size: 100% 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .tools-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
        position: relative;
        z-index: 99;
        }

        .tools-left {
        padding: 50px;
        padding-left: 100px;
        }

        .tools-right {
        text-align: center;
        padding-top: 50px;
        }

        /* Slide-right animation styles */
        .tool-img {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
        }

        .tool-img .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 1s ease, opacity 1s ease;
        z-index: 1;
        }

        .tool-img .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        }

        .tool-img .slide.active {
        transform: translateX(0);
        opacity: 1;
        z-index: 2;
        }

        .tool-img .slide.prev {
        transform: translateX(-100%);
        opacity: 0;
        z-index: 1;
        }

        .phone-slider-wrapper {
        position: relative;
        width: 300px;
        height: 535px;
        margin: auto;
        }

        .phone-frame {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        pointer-events: none;
        }

        .phone-slider-wrapper .tool-img {
        position: absolute;
        top: 20px;
        left: 22px;
        width: 256px;
        height: 495px;
        overflow: hidden;
        z-index: 2;
        border-radius: 20px;
        }

        .phone-slider-wrapper .tool-img .slide img {
        object-fit: cover;
        border-radius: 20px;
        }

        .tools-arrow{
     background: url('../images/tools-arrow.png') 50% 50% no-repeat;
   background-size: contain;
    background-position: right;
    position: absolute;
    width: 30%;
    height: 400px;
    right: 0;
    bottom: 0;
    z-index: 9;
}

 @media screen and (max-width: 1200px) {
        .tools-left{
                padding:50px;
                }
        }


        @media screen and (max-width: 767px) {
        .tools-container{
                grid-template-columns: 1fr;
                gap: 0;
                }

                .tools-left{
                        text-align:center;
                        padding: 30px;
                }

                .tools-right {
                    padding-top: 0px;
                }

                .phone-slider-wrapper {
                    position: relative;
                    width: 250px;
                    height: 470px;
                    margin: auto;
                }

                .phone-slider-wrapper .tool-img {
                    position: absolute;
                    top: 20px;
                    left: 17px;
                    width: 215px;
                    height: 442px;
                    overflow: hidden;
                    z-index: 2;
                    border-radius: 20px;
                }

                 .tools-arrow {
                  width: 50%;
                  height: 400px;
                  }
        }

        @media screen and (max-width: 400px) {
       
        }



/************************** partnership section ***********************/
 .global-partners-section{
        position: relative;
        overflow: hidden;
        }

.partners-bg{
   background: url('../images/partner-bg.png') 50% 50% no-repeat;
   background-size: contain;
    background-position: bottom left;
    position: absolute;
    width: 40%;
    height: 100%;
    bottom: 0;
    z-index: 0;
    margin-bottom: -20px;
}

 .vxl-partners {
        text-align: center;
       margin: 100px 200px;
        position: relative;
        }

 .Partners-subheading{
        color: #18548a;
        font-size: 16px;
        margin-top: 10px;
        }

        .logo-card {
        
                
        }

        .logo-card a{
        text-decoration: none;
        }
        
        .logo-card img {
        width: 100%;
        max-width: 100%;
        height: 100px;
        object-fit: contain;
        }

        .partners-slider .partner-item {
        padding: 20px;
        }


        .partners-slider {
        margin: 50px;
        position: relative;
        z-index: 9;
        }

        .logo-desc{
          text-align:center;
          padding:0 100px;
        }

          .partners-slider .slick-prev:before, .slick-next:before{
          font-size: 30px;
          color: #1d5689;
          }

          @media (max-width: 1600px) {
        .vxl-partners {
         margin: 100px;
        }
      }

        @media (max-width: 1200px) {
        .vxl-partners {
         margin: 50px;
        }

          .logo-desc{
          padding:0 50px;
        }
        }

        @media (max-width: 768px) {
      .vxl-partners {
         margin: 30px;
        }

        .logo-desc{
          padding:0px;
        }

        .partners-slider {
        padding: 0 0px;
        margin: 40px 0px;
        }

        .partners-slider .partner-item {
          padding: 5px;
        }

         .partners-slider .slick-prev:before, .slick-next:before{
          font-size: 20px;
          color: #1d5689;
          }

      .partners-bg {
        background-size: 100% 100%;
        width: 100%;
    }

        }


/* Company logo section  */
 .company-partners-section{
        position: relative;
        overflow: hidden;
        }

.company-bg{
   background: url('../images/partner-bg.png') 50% 50% no-repeat;
   background-size: 100% 100%;
    background-position: bottom left;
    position: absolute;
    width: 51%;
    height: 100%;
    bottom: -60px;
    z-index: 0;
}

 .company-partners {
        text-align: center;
       margin: 30px 200px;
               margin-top: 0;
        position: relative;
        }

        .company-logo{
                
        }

        .company-logo a{
        text-decoration: none;
        }
        
        .company-logo img {
        width: 100%;
        max-width: 100%;
        height: 70px;
        object-fit: contain;
        }

        .company-slider .company-item {
        padding: 20px;
        }


        .company-slider {
        margin: 0 50px;
        position: relative;
        z-index: 9;
        }

          .company-slider .slick-prev:before, .slick-next:before{
          font-size: 30px;
          color: #1d5689;
          }

        @media (max-width: 1600px) {
        .company-partners {
                margin:30px 100px;
                 margin-top: 0;
                }
      }

        @media (max-width: 1200px) {
       .company-partners {
                margin:30px 50px;
                 margin-top: 0;
                }
        }

        @media (max-width: 768px) {
     .company-partners {
                margin:30px;
                 margin-top: 0;
                }

        .company-slider {
        padding: 0 0px;
        margin: 0 0px;
        }

        .company-slider .company-item {
          padding: 5px;
        }

         .company-slider .slick-prev:before, .slick-next:before{
          font-size: 20px;
          color: #1d5689;
          }

      .company-bg {
        background-size: 100% 100%;
        width: 100%;
    }

        }


/* NDB Section  */
.ndb-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
  }

  .ndb-video {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .ndb-video video {
   height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .ndb-container {
    position: relative;
    z-index: 9;
    text-align: center;
    color: #fff;
    padding: 50px 20px;
    width: 60%;
    display: grid;
    gap: 20px;
  }

  .ndb-title {
    font-size: 40px;
}

  .ndb-text {
    font-size: 18px;
    line-height: 1.6;
  }

.ndb-grid{
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}

.ndb-grid-text {
    background: #00000080;
    padding: 10px;
    display: grid;
    align-items: center;
	transition: background 1s ease;
}

.ndb-grid-text:hover {
 background: #ae001d8c;
	transition: background 1s ease;
}

.ndb-img1{
        background: url('../images/ndb-person1.png') 50% 50% no-repeat;
   background-size: contain;
    background-position: left;
    position: absolute;
    bottom: 0;
    left: -20px;
    z-index: 5;
    width: 500px;
    height: 70%;
}

.ndb-img2{
        background: url('../images/ndb-person2.png') 50% 50% no-repeat;
    background-size: contain;
    background-position: right;
    position: absolute;
    width: 500px;
    height: 70%;
    bottom: 0;
    right:-20px;
    z-index: 5;
}

.ndb-img3{
        background: url('../images/ndb-style.png') 50% 50% no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    right:0;
    z-index: 4;
}

@media (max-width: 1024px) {
   .ndb-container {
    padding: 30px;
    width: 80%;
  }


   .ndb-title {
        font-size: 35px;
        }

}

@media (max-width: 768px) {
      .ndb-section {
        height: 100%;
    }

    .ndb-container {
      width: 90%;
  }

    .ndb-text {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .ndb-grid-text {
    font-size: 14px;
}

        .ndb-title {
        font-size: 30px;
        }

        .ndb-img1{
                display:none;
        }

        .ndb-img2{
                display:none;
        }

        .ndb-img3{
                display:none;
        }
}

@media (max-width: 600px) {
.ndb-grid{
    grid-template-columns: 1fr;
}
}
