/* HEADER */
/* 
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent; 
    transition: background-color 0.3s; 
    z-index: 1000; 
}

  header.scrolled {
    background-color: #0000004f;
    backdrop-filter: blur(30px) brightness(1.2);
  }
  .header-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px ;
  }
  header .logo-link{
    width: 180px;
}
  header nav {
    position: relative;
    margin-right: 2rem;
    width: auto;
    height: auto;
    display: flex;
    gap: 4px;
  }
  
  nav .header-link {
    font-size: 14px;
    padding: 8px 20px 3px 20px;
    border-bottom: 5px solid transparent;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: 600;
  }
  
  nav .header-link:hover {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 14px 0px 14px 0px;
  }
  
  .menu-button,
  .sidebar {
    display: none;
  }
  .header-btn a{
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 40px;
    align-items: center;
  }
  .header-btn a i{
    border: solid 1px white;
    padding: 4px 11px;
    border-radius: 15px;
    font-size: 13px;
}
  .header-btn a:hover{
    transition: ease-in-out;
    transition-duration: .3s;
    background-color: var(--secondary-color);
  }

  @media screen and (max-width: 1400px) {
    header .logo-box {
      margin-left: 1rem;
    }
    header nav {
      margin-right: 1rem;
    }
    nav .header-link{
        font-size: 13px ;
        font-weight: 500;
        padding: 8px 10px 3px 10px;
    }
    header .logo-link{
        width: 140px;
    }
    .header-btn a{
        padding: 10px ;
    }
    .ban_img img{
        height: 60vh !important;
    }
  }
  @media screen and (min-width:960px) and (max-width:1300px) {
    header .logo-box {
        margin-left: 1rem;
      }
      header nav {
        margin-right: 1rem;
      }
      nav .header-link{
          font-size: 13px !important;
          font-weight: 500;
          padding: 8px 10px 3px 10px;
      }
      header .logo-link{
          width: 120px;
      }
      .header-btn a{
          padding: 8px ;
      }
      .ban_img img{
          height: 50vh !important;
      }
  }

  
  @media screen and (max-width: 960px) {
    .ban_img img{
        height: 60vh !important;
    }
    .logo-box .logo-text {
      font-size: 18px;
    }
    header .header-top{
        display: none !important;
    }
    .header-btn{
        display: none;
    }
    header nav {
      display: none;
    }
    header .header-top .left-link{
        display: grid;
    }
    header.scrolled{
        background-color: white;
    }
    .menu-button {
      display: block;
      position: relative;
      margin-right: 1rem;
      width: 2.3rem;
      height: 2.3rem;
      font-size: 24px;
      border-radius: 8px;
      border: none;
      background-color: var(--primary-color);
    }
    .menu-button i{
        color: white;
    }
    .menu-button:hover {
      transition: 0.3s ease;
      cursor: pointer;
    }
  
    .menu-button:focus {
      transition: 0.3s ease;
      cursor: pointer;
    }
  
    .sidebar {
      position: fixed;
      right: 0;
      display: none;
      flex-direction: column;
      width: 100%;
      height: 100%;
      box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
      z-index: 1100000;
    background-color: white;
    }
  
    @keyframes sidebarIn {
      0% {
        opacity: 0;
        transform: translateX(25rem);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }
  
    @keyframes sidebarOut {
      0% {
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform: translateX(30rem);
      }
    }
  
    .sidebar .sidebar-header {
      position: relative;
      width: 100%;
      height: 4.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid;
    }
    .sidebar .sidebar-header .logo{
        width: 100px;
    }
    .sidebar-header .sidebar-title {
      position: relative;
      margin-left: 1rem;
      font-size: 22px;
      font-weight: 600;
    }
  
    .sidebar-header .close-button {
      margin-right: 1rem;
      width: 2.3rem;
      height: 2.3rem;
      font-size: 16px;
      border-radius: 8px;
      border: none;
      background-color: #009CA338;
    }
    .sidebar-header .close-button i{
      color: var(--primary-color);
    }
    .close-button:hover {
      transition: 0.3s ease;
      cursor: pointer;
    }
  
    .close-button:focus {
      transition: 0.3s ease;
      cursor: pointer;
    }
  
    .sidebar .sidebar-link {
        position: relative;
        padding: 12px 0 12px 1rem;
        font-size: 16px;
        border: 1px solid #eee;
        color: black;
        margin: 3px 5px;
    }
  
    .sidebar .sidebar-link:hover {
      transition: 0.3s ease;
      cursor: pointer;
    }
  
    .sidebar .sidebar-link:focus {
      transition: 0.3s ease;
      cursor: pointer;
    }
    .sidebar .sidebar-links {
        margin: 20px 10px;
    }
    .sidebar .sidebar-links .call-link a{
        display: flex;
        align-items: center;
        gap: 10px;
        color: black;
        margin-bottom: 20px;
    }
    .sidebar .sidebar-links .call-link i{
        background-color: #009ba320;
        color: var(--primary-color);
        padding: 10px;
        border-radius: 5px;
    }
    .sidebar .sidebar-links .sidebar-social-link .social-link-head{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .sidebar .sidebar-links .sidebar-social-link a i{
        background-color: #0096db23;
        color: var(--secondary-color);
        padding: 13px;
        margin-right: 20px;
        width: 40px;
        height: 40px;
        text-align: center;
        border-radius: 5px;
    }
  } */



/* BANNER IMAGE */

.ban_sec {
    width: 100%;
}

.ban_img {
    width: 100%;
    position: relative;
}

.ban_img img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: brightness(50%);
}

.ban_sec .ban-text {
    position: absolute;
    max-width: 800px;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}


.ban_sec .main-heading h1 {
    font-size: 50px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 25px 0px;
    font-family: var(--font-Jakarta)
}

.ban_sec .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ban_sec .main-heading span {
    color: var(--secondary-color);
}

.ban_sec .ban-text .para p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 35px;
    line-height: 35px;
    letter-spacing: .5px;
}

.ban_sec .ban-text .banner-btn {
    display: flex;
    gap: 15px;
}

@media only screen and (max-width: 1400px) {
    .ban_sec .main-heading h1 {
        font-size: 70px;
    }

}

@media only screen and (max-width: 767px) {
    .ban_img img {
        object-fit: cover;
        height: 60vh;
    }

    .ban_sec .main-heading h1 {
        font-size: 45px;
    }

    .ban_sec .ban-text .para p {
        line-height: 25px;
        font-size: 15px;
    }
}


/* ABOUT US */

.about-us {
    padding: 40px 0px 0px 0px;
}

.about-us .about-left .about-img {
    display: flex;
    justify-content: center;
}

.about-us .about-left .about-img img {
    max-width: 500px;
    border-radius: 20px;
}

.about-us .about-right h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 35px;
}

.about-us .about-right h1 span {
    color: var(--primary-color);
    font-family: var(--font-Jakarta);
}

.about-us .about-right h5 {
    font-size: 17px;
    font-weight: 500;
    color: #444;
    margin: 25px 0px;
}

.about-us .about-right p {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    line-height: 30px;
    text-align: justify;
}

.about-us .about-right a {
    margin-top: 30px;
    font-weight: 800;
    color: rgb(0, 0, 0);
}

.about-us .about-left .about-bottom-link {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 50px;
}

@media (min-width:1300px) {
    .about-us .about-left {
        padding: 10px 100px;
    }
}

@media (max-width:768px) {
    .about-us .row {
        flex-direction: column-reverse;
        display: flex;
    }

    .about-right {
        margin-bottom: 30px;
    }

    .about-us .about-right h1 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .about-us .about-right h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .about-us .about-left .about-bottom-link .link-sec h4 {
        font-size: 25px;
    }

    .about-us .about-left .about-bottom-link .vertical-text a {
        font-size: 13px !important;
        padding: 15px 10px !important;
    }

}


.about-us .about-left .about-bottom-link .link-sec h4 {
    text-align: right;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

.about-us .about-left .about-bottom-link .link-sec h4 span {
    color: var(--primary-color);
    font-family: var(--font-Jakarta);
}

.about-us .about-left .about-bottom-link .link-sec a {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: end;
}

.about-us .about-left .about-bottom-link .link-sec a h6 {
    font-weight: 400;
    font-size: 14px;
}

.about-us .about-left .about-bottom-link .link-sec a h6 span {
    color: var(--primary-color);
}

.about-us .about-left .about-bottom-link .link-sec a i {
    padding: 8px;
    border-radius: 50%;
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
    height: 35px;
    width: 35px;
    text-align: center;
}

.about-us .about-left .about-bottom-link .link-sec a:hover i {
    background-color: var(--primary-color);
    color: white;
    transition: ease-in-out;
    transition-duration: .5s;
}

.about-us .about-left .about-bottom-link .vertical-text a {
    background-color: antiquewhite;
    color: #6c6c6c;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 600;
}

.about-us .about-left .about-bottom-link .vertical-text {
    transform: rotate(-90deg);
}




/* ABOUT US */


.home-about-section {
    width: 100%;
}

.home-about-section .about-image img {
    width: 100%;
}

.right-about {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 990px) {
    .right-about {
        display: block;
    }

    .home-about-section .about-image img {
        width: 100%;
    }

    .about-introduction {
        width: 100% !important;
    }

    .about-introduction h2 {
        font-size: 30px !important;
        line-height: 40px;
    }

    .scroll-area {
        height: 160px !important;
        width: 90px !important;
        margin: 20px auto 0 !important;
    }

    .scroll-text {
        display: none;
    }

    .scroll-icon {
        width: 52px !important;
        height: 72px !important;
        border: 1px solid white !important;
        bottom: 16px !important;
        left: 20px !important;
        padding: 0px !important;
    }
}

.about-introduction {
    width: calc(100% - 190px);
    max-width: 540px;
}

.about-introduction h5 {
    font-size: 18px;
    padding-bottom: 5px;
    font-weight: 600;
}
.about-introduction span {
    font-size: 18px;
    padding-bottom: 5px;
    font-weight: 600;
}

.about-introduction h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

.about-introduction h2 span {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-Jakarta);
}

.about-introduction p {
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
}

.scroll-area {
    height: 824px;
    background: transparent linear-gradient(180deg, #FAC41400 0%, #FAC41430 100%) 0% 0% no-repeat padding-box;
    border-radius: 83px;
    opacity: 1;
    width: 160px;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.scroll-area:after {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 16px;
    opacity: 1;
    content: '';
    display: block;
    position: absolute;
    left: 72px;
    top: 0;
    z-index: 10;
    animation: dotspulse 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) infinite 0.5s;
}


@keyframes dotspulse {
    0% {
        opacity: 0;
        transform: scale(0, 0);
        transform-origin: center;
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}


.scroll-area:before {
    width: 2px;
    height: 400px;
    border-radius: 16px;
    opacity: 1;
    content: '';
    display: block;
    position: relative;
    z-index: 10;
    background-image: url('/frontend/newlanding/images/dashed-line.png');
    animation: linemove 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) infinite 0.5s;

}

@keyframes linemove {
    0% {
        transform: translateY(-100%);
        transform-origin: center;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-text {
    font-family: "Barlow", serif;
    text-align: left;
    letter-spacing: 2.4px;
    color: #37AA49;
    opacity: 1;
    width: 332px;
    height: 15px;
    transform: rotate(90deg);
    white-space: nowrap;
    position: absolute;
    bottom: 260px;
    right: -86px;
}

.scroll-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-color);
    border-radius: 100px;
    position: absolute;
    display: grid;
    place-items: center;
    border: 2px solid white;
    bottom: 36px;
    left: 36px;
    padding: 30px;

}

.scroll-icon img {
    animation: dotspulse 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) infinite 0.5s;
    width: 25px;

}

/* FOOTER */
.footer .row {
    align-items: baseline;
}

.footer {
    width: 100%;
    background: #011D05;
    position: relative;
}

.top-footer {
    padding: 30px 0px;
}

.top-footer h2 {
    font-size: 48px;
    text-align: left;
    color: white;
    margin: 0;
    padding-bottom: 5px;
}

.top-footer p {
    font-size: 14px;
    text-align: left;
    color: white;
    margin: 0;
}

.top-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-flow: row wrap;
}

.top-footer .right {
    width: auto;
}


.scroll-top {
    position: absolute;
    bottom: 350px;
    right: 30px;
}

.scroll-top span {
    font-size: 18px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid white;
    border-radius: 30px;
    margin-right: 14px;
    color: var(--secondary-color);
    transform: rotate(-90deg);
}
.bottom-footer p:last-child{
    visibility: hidden;
}
@media (max-width: 990px) {
    .bottom-footer {
        flex-direction: column;
        gap: 5px;
        padding: 10px 0px;
    }

    .top-footer h2 {
        font-size: 30px !important;
    }

    .scroll-top {
        bottom: 187px !important;
    }

}

.social-medias {
    max-width: 620px;
    margin-top: 10px;
}

.bottom-footer img {
    height: 30px;
    width: auto;
    margin: 0px 6px;
}

.bottom-footer a {
    color: white;
}

.chat {
    position: fixed;
    bottom: 87px;
    right: 15px;
    z-index: 999;
    width: 68px;
}

.chat a {
    text-align: center;
}

/* 
.chat a {
    display: block;
    width: 68px;
} */

.chat a i {
    height: 60px;
    width: 60px;
    padding: 13px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 32px;
}


.social-medias nav {
    width: 100%;
    max-width: 620px;
    display: flex;
    gap: 30px;
}

.social-medias nav a {
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    display: flex;
    align-items: center;
}



.social-medias nav .fab {
    font-size: 18px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid white;
    border-radius: 30px;
    margin-right: 14px;
}

.social-medias nav a:hover .label {

    color: white;
}


.social-medias nav a:hover .fab {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}



.footer-widgets {
    width: 100%;
    border-top: 1px solid #142b17;
    padding: 60px 0;
    background: url('/frontend/newlanding/images/footer-bg.jpg');
    background-size: cover;
}





.footer-widget h3 {
    color: var(--primary-color);
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 20px;
}

.footer-widget p {
    font-size: 14px;
    text-transform: capitalize;
    color: white;
    display: flex;
    align-items: center;
    line-height: 24px;
}

.footer-widget nav a {
    font-size: 14px;
    /* text-transform: capitalize; */
    color: white !important;
    display: flex;
    align-items: center;
    line-height: 24px;
    opacity: 1;
}

.footer-widget nav a:hover {
    color: var(--primary-color) !important;

}

.footer-menu {
    width: 100%;
}

.footer-menu ul {
    width: 100%;
    /* display: flex; */
    justify-content: space-between;
    flex-flow: row wrap;
    padding: 0;
    margin: 0;

}

.footer-menu ul li {
    width: 100%;
    list-style: none;
    margin-bottom: 10px;

}

.footer-menu ul li a {
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    display: flex;
    align-items: center;
}

.footer-menu ul li a:hover {
    color: var(--primary-color) !important;

}

.footer-widget h6 {
    margin-bottom: 7px;
    color: #505153;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.footer-widget h4 {
    margin-bottom: 7px;
    color: #505153;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.footer-widget h4 {
    margin-bottom: 7px;
    font-size: .875em;
    font-weight: 400;
    color: #505351;
    letter-spacing: 4px;
    text-transform: uppercase;
  }

.bottom-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
}

.bottom-footer p {
    font-size: 14px;
    color: white;
    display: flex;
    align-items: center;
    font-weight: 300;
    line-height: 20px;
    margin: 0px;
    padding: 20px 0px;
}

.bottom-footer p a {
    margin-left: 5px;
}

@media (max-width:768px) {
    .bottom-footer p {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .footer-widgets .col-md-2 {
        width: 50%;
    }

    .footer-widgets .row {
        align-items: baseline;
    }
}





/* FAQ */


.faq-sec .heading h2 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 40px;
}

.faq-sec .container {
    width: 100%;
    margin: auto;
    display: grid;
    place-items: center;
}

.faq-sec .accordion__wrapper {
    width: 100%;
    max-width: 72rem;
}

.faq-sec .accordion__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-title);
    text-align: center;
    margin-bottom: 4rem;
}

.faq-sec .accordion {

    margin-bottom: 15px;
    background-color: var(--primary-color);
}

.faq-sec .accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 12px 20px;
}

.faq-sec .accordion__header .accordion-number {
    font-size: 35px;
    padding-right: 30px;
    color: #9599A1;
    margin-bottom: -10px;
}

.faq-sec .accordion__icon {
    background-color: var(--primary-color);
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.faq-sec .accordion__question {
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 500;
    font-family: var(--font-poppins);
}

.faq-sec .accordion__answer {
    padding: 2rem 0;
    font-size: 15px;
    color: #7b7b7b;
    line-height: 29px;
}

.faq-sec .accordion__content {
    overflow: hidden;
    height: 0;
    transition: 0.4s ease-in-out;
    background-color: white;
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.1);
    padding: 0px 20px;
}

@media (max-width:768px) {
    .faq-sec .accordion__question {
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
    }

    .faq-sec .accordion {
        padding: 0px;
    }

    .faq-sec .accordion__header {
        padding: 10px;
    }

    .home-custom-package {
        padding: 20px 0px !important;
    }

}



/* COVERED DESTINATIONS */
@media (max-width:768px) {
    .home-country-section .ViewAllBtn {
        display: none;
    }

    .footer-widgets {
        padding-bottom: 10px;
    }
}

.home-country-section {
    width: 100%;
    margin: 0 auto;
}

.home-country-section .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-country-section h2 {
    font-size: 40px;
    font-weight: 700;
    font-weight: 800;
}

.home-country-section h2 span {
    color: var(--primary-color);
    font-family: var(--font-Jakarta);
}

.landing-covered img {
    height: 300px;
    object-fit: cover;
}

.services-list {
    position: relative;
    width: 100%;
}

.country-slider .slick-slide {
    padding: 15px;
}

.country-slider button {
    display: none !important;
}

.country-item {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;


}

.country-item::before {
    content: '';
    display: block;
    z-index: 5;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%) 0% 0% no-repeat padding-box;
}

.country-details {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 40px);
    padding: 30px 30px;
    padding-bottom: 20px;
    z-index: 6;
    background-color: transparent;
    border-radius: 30px;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.country-item:hover .service-details {
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    background-color: white;
}

.country-details h3 {
    font-size: 25px;
    color: white;
    padding: 0;
    line-height: 32px;
    margin: 0;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    font-weight: 500;
    text-transform: uppercase;
}

.country-item:hover .service-details h3 {
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    color: var(--primary-color);
}

.country-details span {
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.country-item:hover .service-details span {
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    color: black;
}


/* TESTIMONIALS */



.slick-dots li.slick-active button {
    width: 16px;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.testimonials {
    width: 100%;
}

.testimonials.padding-main {
    display: none !important;
}

.testimonials .container {
    width: 100%;
    display: block;
    /* background: url(/frontend/newlanding/images/qt-bg.png); */
    background-position: left;
    background-repeat: no-repeat;
}

.slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: var(--primary-color);
    font-size: 0px;
    border: none;
    padding: 0;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.testimonials h2 {
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.testimonials .slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonials h2 {
    width: 100%;
    font-size: 50px;
    text-align: center;
    padding-bottom: 20px;
    font-weight: 700;
}

.testimonials h2 span {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-Jakarta);
}

.testimonials h2::after {
    width: 100px;
    margin: 0 auto;
    height: 1px;
    background-color: black;
    content: '';
    display: block;
    position: relative;
    top: 20px;
}

.testimonials h5 {
    width: 100%;
    font-size: 20px;
    text-align: center;
    padding-bottom: 20px;
    font-weight: 600;
    padding-top: 40px;
    color: #D9D9D9;
}

.testimonials .testimonial-item {
    padding-top: 60px;

}

.testimonials .testimonial-item::before {
    margin: 0 auto;
    content: '';
    display: block;
    position: relative;
    top: -50px;
    width: 44px;
    height: 38px;
    background-position: center;
    background-size: contain;
    background: url(/frontend/newlanding/images/quote.png);
}

.testimonials .testimonial-item p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    text-align: center;
    color: #505153;
}

.testimonials .testimonial-item h4 {
    font-size: 20px;
    padding-top: 40px;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
}

.nav-button {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid black;
    border-radius: 60px;
    cursor: pointer;
    background-color: transparent;
    transition: all .3 cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateY(-50%);
    position: absolute;
    z-index: 99;
    color: black;
    display: grid !important;
}

.nav-button:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all .3 cubic-bezier(0.075, 0.82, 0.165, 1);
    color: white;
}

.nav-button.fa-arrow-right {

    right: 0;
    top: 50%;
}

.nav-button.fa-arrow-left {
    position: absolute;
    left: 0;
    top: 50%;
}

@media (max-width:768px) {
    .nav-button.fa-arrow-right {
        top: 10%;
        height: 40px;
        width: 40px;
    }

    .nav-button.fa-arrow-left {
        top: 10%;
        height: 40px;
        width: 40px;
    }

    .testimonials .testimonial-item p {
        font-size: 15px;
    }

    .testimonials h2 {
        font-size: 30px !important;
    }

}


/* PACKAGES */




.home-services {
    width: 100%;
    position: relative;
    background: url('/frontend/images/services-bg.jpg');
    padding: 60px 0 ;
}

.service-header {
    width: 100%;
}


.section-title h2 {
    width: 100%;
    font-size: 50px;
    line-height: 64px;
}

.section-title .flex {
    display: flex;
    justify-content: space-between;
}

.view-all-btn-2 {
    display: flex;
    justify-content: center;
}

@media (max-width:768px) {
    .section-title .view-all-button {
        display: none;
    }
}

@media (min-width:768px) {
    .view-all-btn-2 {
        display: none;
    }
}

.home-services .section-title h5 {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
}

.home-services .section-title span {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
}
.home-services .section-title h2 {
    color: white;
    font-weight: 700;
}

@media (max-width:768px) {
    .home-services .section-title h2 {
        font-size: 25px;
        line-height: 40px;
    }

    .service-slider .slick-slide {
        padding: 0px;
    }

    .service-details {
        padding: 15px;
    }

    .service-details h3 {
        font-size: 20px;
    }

    .service-header {
        padding: 56px 0 120px;
    }

    .service-details h3 {
        font-size: 20px !important;
    }

    .service-details {
        padding: 10px !important;
    }

   

    .service-slider .slick-slide {
        padding-bottom: 30px !important;
    }


}

.view-all-button span {
    width: max-content;
}

.view-all-button {
    width: 130px;
    display: flex;
    font-size: 14px;
    color: white;
    height: 40px;
    padding: 10px 15px;
    text-align: center;
    align-items: center;
    display: flex;
    gap: 10px;
}

.view-all-button i {
    padding-left: 16px;
}

.view-all-button svg {
    fill: white;
}


.services-list {
    position: relative;
    width: 100%;
}

.service-slider .slick-slide {
    padding: 20px;
}

.service-item {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/10;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;


}

.service-item::before {
    content: '';
    display: block;
    z-index: 5;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%) 0% 0% no-repeat padding-box;
}

.service-details {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    padding: 30px 30px;
    padding-bottom: 20px;
    z-index: 6;
    background-color: transparent;
    border-radius: 30px;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.service-item:hover .service-details {
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    background-color: white;
}

.service-details h3 {
    font-size: 22px;
    color: white;
    padding: 0;
    line-height: 32px;
    margin: 0;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    padding-right: 28px;
}

.service-item:hover .service-details h3 {
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    color: var(--primary-color);
}

.service-details span {
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.service-item:hover .service-details span {
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    color: black;
}

.arrow-button {
    position: absolute;
    right: 20px;
    bottom: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 70px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 60px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    z-index: 9;

}

.service-item:hover .arrow-button {
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    color: var(--primary-color);
}

.arrow-button i {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    display: grid;
    place-items: center;
}

.service-item:hover .arrow-button i {
    border: 1px solid black;
}




/* FORM */

/* tabs */
.tab {
    display: none;
}

.active {
    display: block;
}

/* Styling for tab navigation */
.tab-button {
    cursor: pointer;
    padding: 6px 20px;
    background-color: var(--base-white);
    border: 1px solid #d9d9d9;
    border-radius: 5px 5px 0 0;
    color: var(--primary-color);
    border-radius: 24px;
    font-size: 16px;
}

.tab-button.active {
    background-color: var(--primary-color);
    border-bottom: none;
    color: #ffffff;
}

.tab-flex {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    /* background: #f2f2f2; */
    border-radius: 48px;
    padding: 0px;
}

/* enquiry call button */
.enquiry_call_button {
    display: flex;
    gap: 10px;
}

.enquiry_call_button a {
    margin-top: 30px;
    padding: 15px 30px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--base-white);
    background-color: var(--secondary-color);
    border: none;
    outline: none;
    box-shadow: #AECFB3 0 12px 34px;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.enquiry_call_button a:hover {
    box-shadow: #AECFB3 0 0px 0px;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.home-custom-package {
    width: 100%;
    background-image: url('/frontend/newlanding/images/custom-package-bg.jpg');
    padding: 120px 0;
}

.custom-package-container {
    width: 100%;
    display: flex;
    border-radius: 70px;
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--primary-color);
}

.custom-package-container .left {
    width: 50%;
    background: url('/frontend/newlanding/images/custom-title-bg.jpg');
    background-position: left;
    background-size: cover;
    padding: 60px 70px;
    min-height: 640px;
}

.custom-package-container .left h2 {
    font-size: 50px;
    color: white;
    line-height: 60px;
}

.custom-package-container .left h5 {
    font-size: 24px;
    color: white;
    text-transform: capitalize;
    padding-top: 20px;
    line-height: 40px;
    font-weight: 500;
    font-family: var(--font-poppins);
}
.custom-package-container .left span {
    font-size: 24px;
    color: white;
    text-transform: capitalize;
    padding-top: 20px;
    line-height: 40px;
    font-weight: 500;
    font-family: var(--font-poppins);
}
.custom-package-container .left p {
    font-size: 16px;
    color: white;
    text-transform: capitalize;
    padding-top: 20px;
}

.call {
    padding-top: 160px;
}

.call span {
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    padding-top: 20px;
}


.call h4 {
    font-size: 40px;
    color: white;
    font-family: var(--font-Jakarta);
    text-transform: capitalize;
}

.custom-package-container .right {
    padding: 35px 60px;
    width: 50%;
}

.custom-package-container .right h3 {
    font-size: 28px;
    color: black;
    font-family: var(--secondary-condensed);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.custom-package-container .right h3 span {
    color: var(--primary-color);
}


.custom-package-form {
    width: 100%;
}

.custom-package-form .input-group {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

.custom-package-form .input-group label {
    width: 100%;
    font-size: 12px;
    color: black;
    padding-bottom: 3px;
    font-family: var(--primary-font);
    letter-spacing: 1px;
    text-transform: uppercase;
}




.custom-package-form .input-group input {
    width: 100%;
    font-size: 14px;
    color: #7c7c7c;
    border: 1px solid #DDDBDB;
    display: block;
    padding: 10px 15px;
    padding-left: 15px;
    padding-left: 40px;
    border-radius: 5px;
}

.custom-package-form .input-group select {
    width: 100%;
    font-size: 14px;
    color: black;
    border: 1px solid #DDDBDB;
    background-color: transparent;
    border-radius: 6px;
    display: block;
    padding: 14px 16px;
    padding-left: 40px;
    -webkit-appearance: none;
}

.custom-package-form .input-group input:select {
    outline: none;
    border: 1px solid var(--primary-color);
}


.custom-package-form .input-group input:focus {
    outline: none;
    border: 1px solid var(--primary-color);
}

.custom-package-form .input-group span {
    position: absolute;
    left: 16px;
    top: 50%;
    font-size: 16px;
    transform: translateY(8%);
    color: var(--primary-color);

}

.custom-package-form .input-group select {
    width: 100%;
    font-size: 14px;
    color: black;
    border: 1px solid #C5C5C5;
    display: block;
    padding: 14px 16px;
    padding-left: 40px;
    border-radius: 6px !important;
    -webkit-appearance: none;
}

.custom-package-form .input-group select:focus {
    outline: none;
    border: 1px solid var(--primary-color);
}

.custom-package-form .input-group.mt-30 {
    margin-top: 13px;
}

.custom-package-form .checkbox {
    position: relative;
    font-size: 12px;
    line-height: 10px;
    padding: 10px 0px;
}

.custom-package-form .checkbox input {
    position: relative;
    font-size: 11px;
    appearance: auto;
    cursor: pointer;
    border: 1px solid #C5C5C5;
}

.custom-package-form .departure {
    width: 100%;
    position: relative;
    margin-top: 24px;
}

.custom-package-form .departure p {
    width: 100%;
    font-size: 14px;
    color: black;
    padding-bottom: 10px;
    margin: 0;
}

.departure-type-list {
    display: flex;
    gap: 10px;
    flex-flow: row wrap;
    position: relative;

}

.departure-type {
    position: relative;
    height: 40px;
    width: calc(33.33% - 8px);
}

.departure-type input[type="radio"] {
    display: none;
}

.departure-type input[type="radio"]+label {
    position: relative;
    cursor: pointer;
    color: black;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 14px 15px;
    width: 100%;
    z-index: 9;
    transition: all 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
    height: 40px;
    display: block;
}

.departure-type input[type="radio"]+label:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--body-color);
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.departure-type input[type="radio"]:hover+label:after {

    background-color: var(--primary-color);
    /* Fill color when selected */
    border: 1px solid var(--primary);
    color: var(--dark-green);
    transition: all 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
    opacity: .2;

}

.departure-type input[type="radio"]:hover+label {


    color: var(--primary-color);
    transition: all 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);

}

.departure-type input[type="radio"]:checked+label:after {
    /* Fill color when selected */
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.departure-type input[type="radio"]:checked+label {
    color: white;
    transition: all 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.choose-date-and-qnty {
    width: 100%;
    display: flex;
    margin-top: 8px;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width:768px) {
    .choose-date-and-qnty {
        display: block;
    }

    .custom-package-form .choose-date {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .choose-date-and-qnty .choose-qnty {
        width: 100% !important;
    }

    .choose-date-and-qnty {
        text-align: left;
    }

    .custom-package-form .checkbox {
        text-align: left;
    }

}


.choose-date-and-qnty .choose-date {
    position: relative;
}



.custom-package-form .choose-date {
    width: 50%;
    position: relative;
}

.custom-package-form .choose-date label {
    width: 100%;
    font-size: 12px;
    color: black;
    padding-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}






.custom-package-form .choose-date input {
    width: 100%;
    font-size: 14px;
    color: black;
    border: 1px solid #DDDBDB;
    display: block;
    padding: 10px 16px;
    padding-left: 40px;
    border-radius: 5px;
    min-height: 40px;
    text-align: left;
}

.custom-package-form .choose-date input:focus {
    outline: none;
    border: 1px solid var(--primary-color);
}

.custom-package-form .choose-date span {
    position: absolute;
    left: 16px;
    top: 40px;
    font-size: 16px;
    color: var(--primary-color);
}

.custom-package-form .choose-qnty span {
    position: absolute;
    left: 16px;
    top: 40px;
    color: var(--primary-color);
    font-size: 16px;
}

.choose-qnty {
    width: 50%;

}

.choose-date-and-qnty .choose-qnty {
    position: relative;
}





.custom-package-form .choose-date-and-qnty .choose-qnty label {
    width: 100%;
    font-size: 12px;
    color: black;
    padding-bottom: 0px;
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}




.custom-package-form .choose-date-and-qnty .choose-qnty .qnty-selection {
    width: 100%;
    font-size: 14px;
    color: #7c7c7c;
    border: 1px solid #DDDBDB;
    padding: 10px 15px;
    position: relative;
    text-align: left;
    display: flex;
    justify-content: space-between;
    outline: none;
    border-radius: 5px;
    padding-left: 45px;
}

.custom-package-form .choose-date-and-qnty .choose-qnty .qnty-selection input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.custom-package-form .choose-date-and-qnty .choose-qnty .qnty-selection span {

    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    user-select: none;
}

.custom-package-form .choose-date-and-qnty .choose-qnty .qnty-selection span.qnty {

    font-size: 20px;
    cursor: default;
}

.custom-package-form .choose-date-and-qnty .choose-qnty .qnty-selection span.controll:hover {

    color: var(--primary-color);

}


.button-submit-custom {
    margin-top: 30px;
    width: 100%;
    padding: 15px 30px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background-color: var(--primary-color);
    border: none;
    outline: none;
    box-shadow: #AECFB3 0 12px 34px;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.button-submit-custom:hover {
    box-shadow: #AECFB3 0 0px 0px;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media (max-width: 990px) {
    .custom-package-container .left {
        width: 100%;
        padding: 50px 20px 20px;
        min-height: auto;
    }

    .custom-package-container .right {
        padding: 30px 20px;
        width: 100%;
    }

    .custom-package-container {
        border-radius: 0;
        width: 100%;
        border: 0px solid var(--primary-color);
        flex-flow: row wrap;
        text-align: center;
    }

    .custom-package-container .left {
        width: 100%;
        padding: 50px 20px 20px;
        min-height: auto;
    }

    .custom-package-container .left h2 {
        font-size: 36px;
    }

    .custom-package-container .left h5 {
        font-size: 16px;
    }
    .custom-package-container .left span {
        font-size: 16px;
    }
    .call {
        padding-top: 0px;
    }

    .call h4 {
        font-size: 24px;
    }

    .call span {
        font-size: 10px;
    }

    .custom-package-container .right {
        padding: 30px 20px;
        width: 100%;
    }

    .tab-button {
        padding: 5px 10px;
        border-radius: 5px 5px 0 0;
        font-size: 15px;
    }

    .tab-flex {
        justify-content: center;
    }

    .custom-package-form .input-group {
        text-align: left;
    }

}

/* HEADER */


/*----------page-styles-----------*/

.main-frame {
    display: block;
    width: 100%;
    overflow: hidden !important;
}

.container-fluid {
    width: 100%;
    max-width: 1642px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    width: 100%;
    margin: auto;
}

.bg-cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
}

.fixed-header {
    opacity: 1;
    transform: translateY(-250px);
    opacity: 0;
}

.header.fixed-header {
    transform: translateY(0);
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header {
    width: 100%;
    transition: all .2s ease;
}

.header.fixed-header .header-wrapper {
    backdrop-filter: blur(30px) brightness(1.2);
    /* background: rgb(255 255 255 / 94%); */
}

.header-wrapper {
    position: absolute;
    z-index: 9999;
    background-color: transparent;
    top: 0;
    left: 0;
    right: 0;
}

.header .container-fluid {
    max-width: 1752px;
}

.menu-bar {
    display: flex;
    justify-content: space-between !important;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 10px 0;
    width: 100%;
}



.header.fixed-header .menu-left {
    align-items: center;
}

.menu-left {
    display: flex;
    justify-content: space-between;
    width: auto;
    /* background: #fff; */
    /* backdrop-filter: blur(20px); */
    margin: 0;
}

.navbar-collapse>ul {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

.navbar-collapse>ul>li {
    display: block;
    list-style: none;
}

.navbar-collapse>ul>li.hide-lg {
    display: none;
}

.header.fixed-header .navbar-collapse>ul>li>a {
    color: var(--h2-color) !important;
    font-size: 16px;
}

.navbar-collapse>ul>li>a {
    font-family: var(--primary-font);
    font-size: 18px;
    color: white;
    font-weight: 400;
    padding: 5px 10px;
    display: block;
    line-height: 1.25;
    text-transform: capitalize;
    white-space: nowrap;
}

.not-transparent .navbar-collapse>ul>li>a {
    color: #505351;
}

.site-logo {
    display: block;
}

.header.fixed-header .site-logo a {
    max-width: 147px;
}

.header.fixed-header .nav-links,
.header.fixed-header .book-btn {
    padding-top: 0;
}

.header.fixed-header .menu-bar {
    padding-top: 0px;
    padding-bottom: 0px;
    align-items: center;
}

.header.fixed-header .book-btn a {
    font-size: 14px;
    min-width: 120px;
    height: 40px;
}

.site-logo a {
    display: block;
    max-width: 270px;
    transition: all .2s ease;
}


.book-btn a {
    display: inline-flex;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 54px;
    min-width: 182px;
    text-align: center;
    padding: 0 20px;
    background-color: var(--primary-color);
    color: var(--base-white);
    font-family: var(--primary-font);
    font-size: .75em;
    text-transform: uppercase;
    font-weight: 400;
    transition: all .2s ease;
    border-radius: 60px;
    display: flex;
    justify-content: space-between;
}

.book-btn a span {
    width: 46px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid white;
    display: grid;
    place-items: center;
    margin-left: 15px;
}


.header {
    position: relative;
    width: 100%;
    background-color: #ffffff00;
    z-index: 1000;
    transition: top 0.3s;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-toggler {
    display: none;
    cursor: pointer;
}

.navbar-toggler .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 6px;
    background-color: var(--primary-color);
}

@media (max-width: 990px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none;
    }

    .navbar-collapse.show {
        display: block;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .menu-left ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .book-btn {
        display: none;
    }
}

@media(max-width:991px) {
    .header.fixed-header .header-wrapper {
        background: rgb(255 255 255 / 94%);
    }

    .header .container-fluid {
        padding: 0 0;
    }

    .page-btn-primary a {
        font-size: 1em;
    }

    .menu-left .site-logo {
        display: none;
    }

    .site-logo {
        transform: none;
        padding-left: 0;
        position: static;
        left: auto;
        top: 10px;
        display: none !important;
    }

    .nav-links {
        padding-top: 0;
        /* backdrop-filter: blur(20px); */
        /* min-height: 100vh; */
        background: rgb(255 255 255 / 97%);
    }

    .book-btn {
        display: none;
    }

    .brand {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .brand .site-logo {
        display: block;
        transform: translate(0, 0);
        max-width: 160px;
        transition: all .3s ease;
        display: block !important;
    }

    .bar {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #363636;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }





    .navbar-toggler {
        width: 38px;
        height: 38px;
        background-color: white !important;
        border-radius: 54px;
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
        padding: 0;
        margin: 0;
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-toggler span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .navbar-toggler span:nth-child(2) {
        top: 10px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .navbar-toggler span:nth-child(3) {
        top: 20px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 0;
        left: 5px;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 27px;
        left: 5px;
    }

    .menu-bar {
        position: relative;
        padding: 10px 15px !important;
    }

    .menu-left {
        position: absolute;
        top: 100%;
        left: 0px;
        right: 0px;
        /* min-height: 100vh; */
    }

    .navbar-collapse>ul {
        gap: 0;
        flex-direction: column;
        width: 100vw;
    }

    .navbar-collapse>ul li {
        width: 100%;
        text-align: center;
    }

    .navbar-collapse>ul>li>a {
        padding: 11px 20px;
        font-size: 17px;
        color: #717171;
        border-bottom: 1px solid #f1f1f1;
        border-radius: 0 !important;
        text-align: center;
    }

    .navbar-collapse>ul>li>a.active {
        background: #e2be29;
        color: white !important;
    }

    .navbar-collapse>ul>li.hide-lg {
        display: block;
    }

    h1 {
        font-size: 3em;
        line-height: 1.3;
    }

    .header.fixed-header .brand .site-logo {
        max-width: 100px;
        display: block !important;
    }
}

@media (min-width:992px) {
    .brand {
        display: none;
    }
}




/* HEADER$ DROPDOWN */


.navbar-collapse>ul>li>a i {
    font-size: 12px;
}

.nav-links li {
    position: relative;
    list-style: none;
}


.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
}

/* Dropdown menu */
.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    top: 100%;
    left: 0;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 5px;
}

.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown.active .dropdown-menu {
    display: block;
}

.nav-links .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: #333;
    border-radius: 3px;
    font-size: 16px;
}

.nav-links .dropdown-menu li a:hover {
    background-color: #e2be29;
    color: #fff;
}

/* Mobile Styles */
.navbar-toggler {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .nav-links ul {
        flex-direction: column;
    }

    .nav-links.show {
        display: flex;
    }

    /* Full-width menu items for mobile */
    /* Full-width menu items for mobile */
    .nav-links a {
        padding: 10px 20px !important;
        text-align: left;
        font-size: 16px !important;
        color: black !important;
    }

    .nav-links i {
        color: black !important;
        padding-right: 10px;
    }

    .nav-links li .drop-li {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        border-bottom: 1px solid #ddd;
    }



    /* Dropdown open/close */
    .nav-links .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .navbar-collapse>ul>li>a {
        text-align: left !important;
    }
}

.navbar-collapse>ul>li .drop-li a {
    color: white;
    font-size: 19px;
    margin: 5px 10px;
}

.navbar-collapse>ul>li .drop-li i {
    color: white;
    font-size: 13px;
    padding: 10px 8px 10px 3px;
}

.header.fixed-header .navbar-collapse>ul>li>.drop-li a {
    color: #0f2215;
    font-size: 16px;
}

.header.fixed-header .navbar-collapse>ul>li>.drop-li i {
    color: #0f2215;
}

@media (min-width: 968px) and (max-width: 1300px) {
    .nav-links a {
        font-size: 14px !important;
    }

    .book-btn a {
        padding: 6px !important;
        height: 45px !important;
        min-width: 140px;
        color: white;
    }
    .logo img {
        max-width: 160px;
    }
    .site-logo a {
        width: 140px !important;
    }

    .book-btn a span {
        width: 38px !important;
        height: 25px !important;
        margin-left: 0px !important;
    }

}

.book-btn a {
    color: white;
}





.section-flight {
    width: 100%;
    background-color: #F2F7FB;
    overflow-x: hidden;
}

.flight-banner {
    width: 100%;
    padding-top: 205px;
    padding-bottom: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.flight-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000003d;
    /* Semi-transparent overlay */
    z-index: 1;
}

.section-flight h2 {
    width: 100%;
    text-align: center;
    font-weight: 700;
    padding: 0 0 30px;
    font-size: 56px;
    color: white;
    font-family: "Barlow", serif;
    text-shadow: 3px 0px 2px rgba(141, 141, 141, 0.59);
    position: absolute;
    z-index: 10;

}

@media (max-width:768px) {
    .section-flight h2 {
        font-size: 40px;
    }

    .section-flight h1 {
        font-size: 40px;
    }

    .flight-banner {
        padding: 150px 0px 150px 0px;
    }
}

.section-flight h1 {
    width: 100%;
    position: absolute;
    z-index: 10;
    text-align: center;
    padding: 0 0 30px;
    font-size: 56px;
    color: white;
    font-family: "Barlow", serif;
    text-shadow: 3px 0px 2px rgba(141, 141, 141, 0.59);

}


.flight-banner .cta-btn {
    position: absolute;
    top: 60%;
    /* Adjust based on how far below the h2 you want it */
    left: 44%;
    transform: translateX(-50%);
    background-color: #FF6B00;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.flight-banner .cta-btn:hover {
    background-color: #ff8c33;
    transform: translateX(-50%) translateY(-2px);
}



body.no-scroll {
    overflow: hidden;
    position: relative;
}


/* TAB RESPONSIVE */



@media (min-width:990px) and (max-width:1360px) {
    .main-slider h1 {
        font-size: 38px;
        line-height: 45px;
    }

    .about-introduction {
        font-size: 40px;
    }

    .home-about-section {
        padding: 50px 0px;
    }

    .scroll-area {
        display: none;
    }

    .about-introduction {
        width: 100%;
    }

    .service-details h3 {
        font-size: 16px;
        font-weight: 400;
    }

    .service-details {
        padding: 5px;
        border-radius: 15px;
    }

    .arrow-button {
        height: 45px;
        width: 70px;
    }

    .arrow-button i {
        width: 36px;
    }

    .home-custom-package {
        padding: 10px 0px;
    }

    .home-blogs .blog-item h3 {
        font-size: 18px;
    }

    .home-blogs {
        padding: 20px 0px;
    }

    .footer-widgets .sec-1 {
        flex: 0 0 auto;
        width: 50%;
        margin-bottom: 30px;
        max-width: 50%;
    }

    .footer-widgets .sec-1 ul {
        columns: 2;
    }

    .footer-widgets .sec-2 {
        flex: 0 0 auto;
        width: 33%;
        max-width: 33%;
    }

    .about-introduction h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .home-custom-package {
        padding: 30px 0px;
    }
}

.about-cta-btn {
    display: flex;
    justify-content: end;
    margin-right: 50px;
    margin-top: 30px;
}

.about-cta-btn a {
    background-color: #37aa49;
    color: #ffffff;
    padding: 10px 12px 10px 20px;
    margin-top: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: max-content;
    border-radius: 40px;
    transition: ease-in-out 0.3s;
    font-family: "Barlow", serif;
}

.about-cta-btn span {
    font-family: "Barlow", serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
}

.about-cta-btn a i {
    border: solid 1px white;
    padding: 8px;
    border-radius: 20px;
    width: 50px;
    text-align: center;
}

.about-cta-btn a:hover {
    background-color: #e2be29;
    color: white;
    border: solid 1px #e2be29;
}



/* HEADER */

#cssmenu {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.header {
    position: absolute;
    width: 100%;
    z-index: 9999;
}

.header.fixed-header {
    background-color: white;
}

.header.fixed-header ul li a {
    color: black !important;
}

.header.fixed-header ul li.has-sub a:before {
    background: #000 !important;
}

.header.fixed-header ul li.has-sub a:after {
    background: #000 !important;
}

nav#cssmenu ul {
    float: right;
    margin: 0;
}

.logo img {
    max-width: 200px;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#cssmenu:after,
#cssmenu>ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    width: 0px;
}

#cssmenu #head-mobile {
    display: none
}

#cssmenu>ul>li {
    float: left
}

#cssmenu>ul>li>a {
    padding: 9px 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    color: #efefef;
    font-family: "Poppins", sans-serif !important;
}

#cssmenu>ul>li:hover>a,
#cssmenu ul li.active a {
    color: #fff;
}

#cssmenu>ul>li:hover,
#cssmenu ul li.active:hover,
#cssmenu ul li.active,
#cssmenu ul li.has-sub.active:hover {
    background: #e2be29 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease;
}

#cssmenu>ul>li.has-sub>a {
    padding-right: 30px;
}

#cssmenu>ul>li.has-sub:hover>a:before {
    top: 23px;
    height: 0;
}

#cssmenu ul ul {
    position: absolute;
    left: -9999px;
    margin-top: 0;
    z-index: 11;
    padding-left: 0px;
}

#cssmenu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: #ffffff;
    transition: all .25s ease;
}

.brevo-conversations {
    z-index: 99 !important;
    display: none !important;
}

.ti-verified-by {
    display: none !important;
}

#cssmenu ul ul li:hover {}

#cssmenu li:hover>ul {
    left: auto;
}

#cssmenu li:hover>ul>li {
    height: 40px;
}

#cssmenu ul ul ul {
    margin-left: 100%;
    top: 0;
}

#cssmenu ul ul li a {
    padding: 12px 15px;
    width: 250px;
    font-size: 14px;
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
}

#cssmenu ul ul li:last-child>a,
#cssmenu ul ul li.last-item>a {
    border-bottom: 0;
}

#cssmenu ul ul li:hover>a,
#cssmenu ul ul li a:hover {
    color: #fff;
}

#cssmenu .has-sub ul li .submenu-button {
    top: 20px;
    color: black;
}

#cssmenu ul ul>li.has-sub:hover>a:before {
    top: 17px;
    height: 0;
}

#cssmenu ul ul li.has-sub:hover,
#cssmenu ul li.has-sub ul li.has-sub ul li:hover {
    background: #e2be29;
}

#cssmenu ul ul ul li.active a {
    border-left: 1px solid #333;
}

#cssmenu>ul>li.has-sub>ul>li.active>a,
#cssmenu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333;
}

#cssmenu .submenu-button.submenu-opened i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

#cssmenu .submenu-button {
    position: absolute;
    top: 19px;
    right: 0px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    width:27px;
        height: 24px;
}

.header.fixed-header .submenu-button i {
    color: #000;
}



@media screen and (max-width:1215px) {
    .logo {
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        padding: 10px 0 0 0;
        float: none;
    }

    nav {
        width: 100%;
    }

    #cssmenu {
        width: 100%;
    }

    #cssmenu ul {
        width: 100% !important;
        display: none;
    }

    #cssmenu ul li {
        width: 100%;
        border-top: 1px solid #444;
        float: left;
    }

    #cssmenu ul li:hover {
        background: transparent !important;
    }

    #cssmenu ul ul li,
    #cssmenu li:hover>ul>li {
        height: auto;
    }

    #cssmenu ul li a,
    #cssmenu ul ul li a {
        width: 100%;
        border-bottom: 0;
        padding: 13px;
        font-size: 14px;
        color: black;
        text-transform: uppercase;
    }

    #cssmenu ul li a:hover {
        background-color: rgb(224, 224, 224)
    }

    #cssmenu ul ul li a:hover {
        background-color: #ecb305;
    }

    #cssmenu ul ul li a {
        padding-left: 25px;
    }

    #cssmenu ul ul li:hover {
        background: #363636 !important;
    }

    #cssmenu ul ul ul li a {
        padding-left: 35px;
    }

    #cssmenu ul ul li a {
        color: #000000;
        background: #f4f4f4;
        font-size: 14px;
        font-weight: 400;
    }

    #cssmenu ul ul li:hover>a,
    #cssmenu ul ul li.active>a {
        color: #fff;
        background-color: #ffc107;
    }

    #cssmenu ul ul,
    #cssmenu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
    }

    #cssmenu>ul>li.has-sub>a:after,
    #cssmenu>ul>li.has-sub>a:before,
    #cssmenu ul ul>li.has-sub>a:after,
    #cssmenu ul ul>li.has-sub>a:before {
        display: none;
    }

    #cssmenu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700;
    }

    #cssmenu .mobile-menu-lists {
        background-color: white;
        position: fixed;
        top: 100px;
        /* Adjust if your header is smaller */
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        /* Prevent overflow off screen */
        overflow-y: auto;
        z-index: 9999;
        padding-bottom: 120px;
        padding-left: 0px;
    }

    #cssmenu ul ul ul li.active a {
        border-left: none;
    }

    #cssmenu>ul>li.has-sub>ul>li.active>a,
    #cssmenu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none;
    }

    .mobile-menu-lists {
        background-color: white;
        top: 100px;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 90% !important;
        height: 100%;
        overflow-y: auto;
    }

    #cssmenu>ul>li.has-sub>a {
        color: black;
        padding: 15px;
    }

    #cssmenu ul li {
        border: none;
    }

    .header {
        /* height: 100%; */
        /* background-color: white; */
    }

    .header .container {
        padding: 0px
    }

    .menu-button {
        background-color: #37aa49;
        color: black;
        padding: 10px;
        top: 30px !important;
        right: 15px !important;
    }

    .menu-button:after {
        border-color: black;
    }

    .menu-button:before {
        background: rgb(255, 255, 255);
    }

    .header.fixed-header {
        height: 115px;
    }

    .button {
        width: 55px;
        height: 46px;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        z-index: 12399994;
    }

    .button:after {
        position: absolute;
        top: 22px;
        right: 20px;
        display: block;
        height: 8px;
        width: 20px;
        border-top: 2px solid #dddddd;
        border-bottom: 2px solid #dddddd;
        content: '';
    }

    .button:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        height: 2px;
        width: 20px;
        background: #ddd;
        content: '';
    }

    .button.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .button.menu-opened:before {
        top: 23px;
        background: #fff;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #cssmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        height: 44px;
        width: 46px;
        cursor: pointer;
    }

    #cssmenu .submenu-button.submenu-opened {
        background: #ffc107
    }

    #cssmenu ul ul .submenu-button {
        height: 39px;
        width: 46px
    }

    #cssmenu ul ul .submenu-button:after {
        top: 15px;
        right: 13px;
    }

    #cssmenu .submenu-button.submenu-opened:after {
        background: #fff;
    }

    #cssmenu .submenu-button {
        position: absolute;
        top: 21px !important;
        right: 15px;
        transform: translateY(-50%);
        font-size: 14px;
        color: #000;
        cursor: pointer;
        padding: 15px;
    }

    #cssmenu ul ul .submenu-button:before {
        top: 12px;
        right: 16px;
    }

    #cssmenu .submenu-button.submenu-opened:before {
        display: none;
    }

    .book-btn {
        display: none;
    }
}



/* .btn-1 span {
    transition: all 0.3s ease;
  } */



/* BREADCRUMB BANNER */

.breadcrumb-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    /* height: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 160px 10px 140px 10px;
}

.breadcrumb-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}
    .breadcrumb-banner .cta-btn{
        display: none;
    }

.breadcrumb-banner .cta-btn {
    padding: 12px 25px;
    background-color: #37aa49;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-banner .cta-btn:hover {
    background-color: #fbc310;
    color: black;
    transform: translateY(-2px);
}

@media (max-width:1215px) {

    .breadcrumb-banner {
        padding: 140px 10px 90px 10px;
    }
    .breadcrumb-banner h2{
        font-size: 25px;
    }
    .breadcrumb-banner .cta-btn{
        display: inline-block !important;
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* BEST PACKAGES */


.best-packages {
    padding: 60px 0;
}
.best-packages .head h2{
    text-align: center;
    font-size: 35px;
}
.best-packages .head h2 span{
    color: #37AA49;
}
.best-packages .best-packages-slider {
    margin-top: 30px;
}
.best-packages .package-slide {
    padding: 10px;
}
.best-packages .package-card {
    background: #ffffff;
    box-shadow:0 0 15px rgb(145 145 145 / 22%);
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;

}
/* .best-packages .package-card .slide-link{
    width: 50%;
} */
.best-packages .package-card .card-image{
    position: relative;
}
.best-packages .package-card .card-image .days{
    position: absolute;
    background-color: #ffffff;
    color: #37AA49;
    font-size: 13px;
    padding: 6px 10px;
    bottom: 10px;
    right: 10px;
    border-radius: 5px;
    margin: 0px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
}
.best-packages .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.best-packages .card-content {
    padding: 20px 0px;
}
.best-packages .card-content .buttn{
    background-color: #37AA49;
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-poppins);
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.best-packages .card-content .buttn:hover{
    background-color: #188328;
}
.best-packages .card-content h3 {
    font-size: 20px;
    color: #37AA49;
    font-weight: 700;
    margin: 0 0 8px;
}

.best-packages .card-content .description {
    color: #666;
    line-height: 1.6;
    margin: 15px 0px;
    font-size: 14px;

}

@media (max-width: 768px) {
   
.best-packages .package-card {
    flex-direction: column;
}
}
