:root{
    /* Font Family */
    --font-primary: 'Poppins', sans-serif;

    /* Font Sizes */
    --font-small: 14px;
    --font-normal: 16px;
    --font-large: 22px;
    --font-heading: 42px;

        /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Colors */
    --color-primary: #0d6efd;
    --color-secondary: #6c757d;
    --color-dark: #222;

     --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --title-size: 36px;
    --body-size: 18px;
    --fw-normal: 400;
}


.blog-title{
    font-family: var(--font-heading)!important;
    font-size: var(--title-size)!important;
    font-weight: var(--fw-bold)!important;
}

.blog-body{
    font-family: var(--font-body)!important;
    font-size: var(--body-size)!important;
    font-weight: var(--fw-normal)!important;
    line-height: 1.7!important;
}


html,
body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

:root {
  --primary-color: #131933;
  --secondary-color: #2b3564;
  --white-color: #ffffff;
  --default-color: #000000;
}

body {
  position: relative;
  overflow-x: hidden;
  background-color: #0c182b;
}


a {
  text-decoration: none;
  font-family: "Lato", sans-serif;
  color: var(--white-color);
}

a:hover {
  color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

ul,
li {
  list-style: none;
  padding: 0px;
  font-family: "Lato", sans-serif;
}

.container {
  max-width: 1680px !important;
}

button,
.btn,
.btn:focus {
  box-shadow: none;
  border: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}


/* Header */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.logo img {
  display: none;
  height: 100px;
}

.nav-list ul {
  gap: 52px;
}

.nav-list ul .item {
  padding-top: 37px;
}

.nav-list ul li a {
  font-size: 18px;
}

.nav-list ul li {
  position: relative;
}

.nav-list ul li img {
  height: 150px;
}

.nav-list ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 50%;
  left: -80%;
  background: rgba(0, 0, 0, 0.2);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 200px;
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-list ul li .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: var(--white-color);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid var(--white-color);
}

.nav-list ul li:hover .dropdown-menu {
  display: block;
}

.menu-toggle {
  font-size: 16px;
  color: var(--white-color);
  cursor: pointer;
  display: none;
}


@media (max-width: 992px) {
  .navbar-dev{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
  }

  .nav-list ul li img {
    display: none;
  }
  .logo {
    padding-right: 39%;
  }

  .logo img {
    display: block;
    height: 80px;
  }

  .nav-list {
    display: none;
    width: 100%;
  }

  .nav-list ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-list ul li {
    width: 100%;
  }

  .nav-list ul li .dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.7);
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-list.show {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    display: block;
    background-color: rgba(0, 0, 0, .8);
    padding: 0px 20px;
    padding-top: 80px;
  }

  .dropdown-menu.show {
    display: block;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero .hero-logo img {
  height: 150px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero-video video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.hero-text {
    position: absolute;
    left: 50%;
    bottom: 15%;
    transform: translateX(-50%);
    max-width: 800px;
    width: 95%;
    text-align: center;
    padding: 20px 12px;
    color: var(--white-color);
}

.hero-text h1 {
    font-size: 42px;
    letter-spacing: 1.2px;
    margin: 0;
    line-height: 1.3;
}

.hero-text h1 div {
    display: block;
    white-space: nowrap; /* Prevents text from wrapping */
    opacity: 0;
    transition: opacity 6s ease-in-out;
    transform: none;
}

.hero-text h1 div.fade-in {
    opacity: 1;
    transform: none;
}

/* First line delay */
.hero-text h1 div:nth-child(1) {
    transition-delay: 0.8s;
}

/* Second line delay */
.hero-text h1 div:nth-child(2) {
    transition-delay: 0.8s;
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 36px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-text {
        max-width: 95%;
        padding: 15px 10px;
        bottom: 8%;
    }
    .hero {
    height: 300px;
  }

    .hero-text h1 {
        font-size: 20px;
        letter-spacing: 0.8px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
  .hero-video video {
    width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;

  }
    .hero-text {
        bottom: 10%;
        padding: 10px 8px;
        width: 98%;
    }

    .hero-text h1 {
        font-size: 17px;
        letter-spacing: 0.6px;
    }
}

@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
}


/* ========================== Intro */
.intro {
  padding: 100px 0px;
}

.intro .intro-contain {
  max-width: 1050px;
}

.intro h4 {
  font-family: "Lato", sans-serif;
  color: var(--white-color);
  font-size: 28px;
  font-style: italic;
}

.intro p {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 300;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .intro {
    padding: 60px 20px;
  }

  .intro h4 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .intro {
    padding: 40px 16px;
  }

  .intro h4 {
    font-size: 20px;
  }

  .intro p {
    font-size: 15px;
  }
}

/* ======================== Package */
.package {
  padding: 100px 20px;
}

.package h2 {
  font-size: 42px;
  color: var(--white-color);
  text-align: center;
  font-weight: 400;
  margin-bottom: 72px;
}

.package .pack-card {
  position: relative;
  /* height: 500px; */
  overflow: hidden;
}

.package .pack-card::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.1);
  transition: all .4s linear;
}

.package .pack-card:hover::after {
  opacity: 0;
}

.package .pack-card:hover::before {
  left: 0%;
}

.package .pack-card .card-img img {
  width: 100%;
  height: auto;
  transition: all .5s ease-in-out;
}

.package .pack-card:hover img {
  transform: scale(1.05);
}

.package .pack-card .card-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  z-index: 1;
  transition: all .3s linear;
}

.package .pack-card .card-heading h3 {
  font-size: 32px;
}

.package .card-text {
  padding: 16px;
}

.package .package-btn {
  padding: 10px 24px;
  border-radius: 50px;
  color: var(--white-color);
  background-color: var(--secondary-color);
  margin-top: 20px;
}

.package .package-btn:hover {
  background-color: #203592;
}

.package .card-text h3 {
  color: var(--white-color);
  margin-bottom: 24px;
}

.package .card-text p {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
}

.package .pack-card:hover .card-text {
  opacity: 1;
}

@media (max-width: 768px) {
  .package {
    padding: 60px 15px;
  }

  .package h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .package .pack-card {
    margin-bottom: 20px;
  }

  .package .pack-card .card-heading h3 {
    font-size: 22px;
    text-align: center;
  }

  .package .card-text {
    text-align: center;
    padding: 10px 5px;
  }

  .package .card-text h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .package .card-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .package .package-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}

/* 📱 Small Mobile (≤480px) */
@media (max-width: 480px) {
  .package {
    padding: 40px 10px;
  }

  .package h2 {
    font-size: 24px;
  }

  .package .card-text h3 {
    font-size: 20px;
  }

  .package .card-text p {
    font-size: 14px;
  }
}

/* ============= Why Tours */
.why_tours {
  padding: 100px 0px;
  background-color: var(--primary-color);
  margin-bottom: 50px;
}

.why_tours h2 {
  text-align: center;
  font-size: 42px;
  color: var(--white-color);
  margin-bottom: 72px;
}

.feature-box {
  text-align: center;
  padding: 20px 10px;
}

.feature-box i {
  font-size: 32px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.feature-title {
  font-size: 18px;
  font-weight: normal;
  color: var(--white-color);
}

@media (max-width: 768px) {
  .why_tours {
    padding: 60px 16px;
    margin-bottom: 0px;
  }

  .why_tours h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .feature-box {
    padding: 15px 5px;
  }

  .feature-box i {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .feature-title {
    font-size: 16px;
  }
}


@media (max-width: 480px) {
  .why_tours h2 {
    font-size: 24px;
  }

  .feature-box i {
    font-size: 24px;
  }

  .feature-title {
    font-size: 15px;
  }
}

/* Banner */
.banner {
  padding: 100px 0px;
}

.banner .bg-img {
  height: 450px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

.banner .bg-img::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.banner .bg-img::before {
  content: '';
  height: 150px;
  width: 100%;
  transform: rotate(70deg);
  position: absolute;
  top: 0;
  left: -100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 1s ease-in-out;
  z-index: 2;
}

.banner .bg-img:hover::before {
  transform: rotate(60deg);
  left: 100%;
}

.banner .bg-img:hover::before {
  transform: rotate(60deg);
  left: 100%;
}

.banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  text-align: center;
  z-index: 1;
}

.banner .banner-text h2 {
  font-size: 36px;
  color: var(--white-color);
}

.banner .banner-text p {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  margin: 16px 0px;
}

.banner .banner-text .btn-enquire {
  color: var(--white-color);
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 50px;
  border: 1px solid var(--white-color);
}

.banner .enquiry-form .form-control,
.banner .enquiry-form .form-control:focus {
  color: var(--white-color);
  background-color: #13193340;
}

.banner .enquiry-form .form-control::placeholder {
  color: var(--white-color);
}

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

  .banner .bg-img {
    height: 300px;
  }

  .banner .banner-text {
    max-width: 90%;
    width: 100%;
    padding: 0 10px;
  }

  .banner .banner-text h2 {
    font-size: 24px;
  }

  .banner .banner-text p {
    font-size: 15px;
    margin: 12px 0;
  }

  .banner .banner-text .btn-enquire {
    font-size: 16px;
    padding: 8px 20px;
  }

  .banner .bg-img::before {
    height: 50px;
    top: 40%;
  }

  .list-unstyled{
    margin-bottom: 0px !important;
  }
}

/* 📱 Small Mobile (≤480px) */
@media (max-width: 480px) {
  .banner .bg-img {
    height: 250px;
  }

  .banner .banner-text h2 {
    font-size: 20px;
  }

  .banner .banner-text p {
    font-size: 14px;
  }

  .banner .banner-text .btn-enquire {
    font-size: 14px;
    padding: 6px 16px;
  }
}

/* .banner .banner-text .btn-enquire:hover{
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
} */

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white-color);
}

footer .footer-logo {
  position: relative;
}

footer .footer-logo img {
  height: 150px;
  position: relative;
  z-index: 1;
}

.footer-section-brandSlogan {
  font-weight: 400;
  color: var(--white-color);
}

.footer-section-top-column-one .column-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--off-white);
}

.footer-section-top .column-title {
  position: relative;
  display: inline-block;
}

.footer-section-top .column-title::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--white-color);
  position: absolute;
  left: 0;
  bottom: 0;

}

.footer-section-top-column-one {
  font-weight: 400;
}

.footer-section-top-column-one a {
  font-size: 18px;
  font-weight: 300;
  color: #ebebeb;
  position: relative;
}

.footer-section-top-column-one a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--white-color);
  position: absolute;
}

.footer-section-top-column-one a:hover::after {
  width: 100%;
}

.footer-section-top-column-one a:focus {
  color: var(--lavender-mist);
}

.footer-section-top-column-two .column-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
}

.footer-section-top .contact-info li {
  color: #ebebeb;
  font-size: 18px;
  font-weight: 300;
}

.footer-section-top-column-two {
  font-weight: 400;
}

.footer-section-top-column-two a {
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  color: #ebebeb;
  position: relative;
}

.footer-section-top-column-two a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--white-color);
  position: absolute;
}

.footer-section-top-column-two a:hover::after {
  width: 100%;
}

.footer-section-top-column-two a:focus {
  color: var(--white-color);
}

.footer-section-top-column-three .column-title {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--off-white);
}

.footer-section-top-column-three {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
}

.footer-section-top-column-three a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.footer-section-top-column-three a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.footer-section-top-column-three a:hover::after {
  width: 100%;
}

.footer-section-top-column-three a:focus {
  color: var(--lavender-mist);
}

.footer-section-top-column-four .column-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--off-white);
}

.footer-section-top-column-four {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
}

.footer-section-top-column-four a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.footer-section-top-column-four a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.footer-section-top-column-four a:hover::after {
  width: 100%;
}

.footer-section-top-column-four a:focus {
  color: var(--lavender-mist);
}

.footer-section-middle-start-line {
  width: 100%;
  height: 0.063rem;
  margin-top: 1.75rem;
  margin-right: 1.75rem;
  opacity: 0.1;
  background: var(--off-white);
}

.footer-section-middle-brandLogo {
  opacity: 0.1;
  fill: var(--off-white);
}

.footer-section-middle-end-line {
  width: 100%;
  height: 0.063rem;
  margin-top: 1.75rem;
  margin-left: 1.75rem;
  opacity: 0.1;
  background: var(--off-white);
}

.footer-section-bottom {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons .social-icon {
  font-size: 24px;
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-icons .social-icon::after {
  display: none;
}

.footer-social-icons .social-icon:hover {
  color: #007bff;
}

.copyright {
  font-size: 18px;
  font-weight: 300;
  color: var(--off-white);
}

.copyright a {
  text-decoration: none;
  color: #818181;
  position: relative;
}

.copyright a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.copyright a:hover::after {
  width: 100%;
}

.copyright a:focus {
  color: var(--lavender-mist);
}

@media (max-width: 768px) {
  footer .footer-logo img {
    height: 100px;
  }

  .footer-section-top .column-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .footer-section-top-column-one a,
  .footer-section-top-column-two a,
  .footer-section-top-column-three a,
  .footer-section-top-column-four a,
  .footer-section-top .contact-info li {
    font-size: 16px;
  }

  .footer-social-icons .social-icon {
    font-size: 20px;
  }

  .footer-section-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-section-top {
    padding: 0px 6px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  footer .footer-logo img {
    height: 100px;
    margin: 0 auto;
  }

  .footer-section-top .column-title {
    font-size: 18px;
  }

  .footer-section-top-column-one a,
  .footer-section-top-column-two a,
  .footer-section-top-column-three a,
  .footer-section-top-column-four a,
  .footer-section-top .contact-info li {
    font-size: 14px;
  }

  .footer-social-icons .social-icon {
    font-size: 18px;
  }

  .copyright,
  .credit {
    font-size: 14px !important;
    text-align: center;
    margin: 0px;
  }
}

/* Terms */

.terms-and-conditions a {
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.terms-and-conditions a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.terms-and-conditions a:hover::after {
  width: 100%;
}

.terms-and-conditions a:focus {
  color: var(--lavender-mist);
}

.privacy-policy a {
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.privacy-policy a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.privacy-policy a:hover::after {
  width: 100%;
}

.privacy-policy a:focus {
  color: var(--lavender-mist);
}

.cookie-policy a {
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.cookie-policy a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.cookie-policy a:hover::after {
  width: 100%;
}

.cookie-policy a:focus {
  color: var(--lavender-mist);
}

.credit {
  font-size: 18px;
  font-weight: 300;
  color: #696969;
}

.credit a {
  text-decoration: none;
  position: relative;
  color: #797979;
}

.credit a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lemon-zest);
  position: absolute;
}

.credit a:hover::after {
  width: 100%;
}

#heartbeat {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  fill: var(--crimson-red);
  animation: heartbeat .25s infinite alternate;
}

@keyframes heartbeat {
  to {
    transform: scale(1.2);
  }
}

/* ================ Enquire */
.enquire-section {
  padding: 50px 0;
}

.enquire-section h3 {
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  color: var(--white-color);
  /* margin-bottom: 16px; */
}

.enquire-box {
  border-radius: 20px;
  padding: 40px;
}

.section-title {
  color: var(--white-color);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #f9f9f9;
  font-size: 18px;
  margin-bottom: 25px;
}

.contact-info li {
  color: var(--white-color);
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-info li i {
  color: var(--white-color);
  margin-right: 10px;
}

.enquiry-form .form-label {
  font-size: 18px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 6px;
  display: block;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--primary-color);
  transition: border-color 0.3s ease;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  box-shadow: none;
  background-color: var(--primary-color);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 400;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--secondary-color);
}

.enquire-section .title {
  font-size: 48px;
  color: var(--white-color);
  margin-bottom: 52px;
}

@media (max-width: 768px) {
  .enquire-section {
    padding: 60px 0;
    /* reduce padding */
  }

  .enquire-section h3 {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .enquire-section .title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
    text-align: center;
  }

  .section-subtitle {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }

  .enquire-box {
    padding: 20px;
    /* tighter box spacing */
  }

  .contact-info li {
    font-size: 14px;
  }

  .contact-info li:last-child{
    margin: 0px;
  }

  .enquiry-form .form-label {
    font-size: 16px;
  }

  .enquiry-form .form-control,
  .enquiry-form .form-select {
    font-size: 14px;
    padding: 10px 12px;
  }

  .btn-submit {
    font-size: 16px;
    padding: 12px;
  }
}

/* 📱 Small Mobile (≤480px) */
@media (max-width: 480px) {
  .enquire-section {
    padding: 40px 0;
  }

  .enquire-section h3,
  .section-title,
  .enquire-section .title {
    font-size: 22px;
    margin-bottom: 0px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .contact-info li {
    font-size: 13px;
  }

  .enquiry-form .form-label {
    font-size: 14px;
  }

  .btn-submit {
    font-size: 15px;
    padding: 10px;
  }
}

/* =============== Package Details */
.details-banner {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.details-banner .logo img {
  height: 150px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.details-banner .bg-img {
  height: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.details-banner .banner-text {
  max-width: 700px;
  text-align: center;
  padding: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.details-banner .banner-text h2 {
  font-size: 42px;
  color: var(--white-color);
  text-transform: capitalize;
}

.details-banner .banner-text p {
  font-size: 18px;
  color: #f9f9f9;
  margin: 16px 0px;
}

.details-text {
  padding: 100px 0px;
  text-align: justify;
  text-align-last: center;
}

.details-text .content {
  max-width: 780px;
  margin: 0 auto;
}

.details-text h2 {
  font-size: 46px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.details-text .content p {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
}

@media (max-width: 768px) {

  .details-banner {
    height: 300px;
  }

  .details-banner .logo img {
    height: 100px;
    top: 10px;
  }

  .details-banner .bg-img {
    background-position: center top;
    background-size: cover;
  }

  .details-banner .banner-text {
    max-width: 90%;
    width: 100%;
    padding: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .details-banner .banner-text h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .details-banner .banner-text p {
    font-size: 14px;
    margin: 12px 0;
  }

  .details-text {
    padding: 50px 15px;
  }

  .details-text .content {
    max-width: 95%;
  }

  .details-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .details-text .content p {
    font-size: 16px;
    margin-bottom: 0px;
  }
}


/* Details Experience */
.details-experience {
  background: var(--primary-color);
  padding: 80px 0;
}

.details-experience .heading-text {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
  padding: 0 15px;
}

.details-experience .heading-text h2 {
  font-size: 42px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 15px;
}

.details-experience .heading-text p {
  font-size: 18px;
  color: #f0f0f0;
  line-height: 1.6;
}

.experience-slider .swiper-slide {
  overflow: hidden;
  /* background: #f7f8fa; */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.experience-slider .img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.experience-slider .img-wrapper a {
  text-decoration: none;
  display: block;
}

.experience-slider .img-wrapper p {
  margin: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 17px;
  font-weight: 400;
  color: var(--white-color);
  text-align: center;
  border-top: 1px solid #eee;
}

.experience-slider .swiper-button-prev,
.experience-slider .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 10;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 768px) {

  .details-experience {
    padding: 40px 15px;
  }

  .details-experience h2{
    font-size: 20px;
    padding: 32px 0px !important;
  }

  .details-experience .heading-text {
    max-width: 95%;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .details-experience .heading-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
  }

  .details-experience .heading-text p {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }

  .experience-slider .swiper-slide {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .experience-slider .img-wrapper p {
    font-size: 14px;
    padding: 10px;
  }

  .experience-slider .swiper-button-prev,
  .experience-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .experience-slider .img-wrapper img {
    height: auto;
  }
}

/* Adjust button positions side by side in bottom-right corner */
.experience-slider .swiper-button-prev {
  right: auto;
}

.experience-slider .swiper-button-next {
  right: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 400;
}

.experience-slider .swiper-button-prev:hover,
.experience-slider .swiper-button-next:hover {
  background-color: var(--white-color);
}

.experience-slider .swiper-button-prev:hover.swiper-button-prev:after,
.experience-slider .swiper-button-next:hover.swiper-button-next:after {
  color: var(--primary-color);
}

/* ================= experience details heading */
.experience-details-heading {
  position: relative;
  padding-top: 180px;
  padding-bottom: 30px;
}

.experience-details-heading .content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.experience-details-heading .content h2 {
  font-size: 42px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.details-text .content h4 {
  font-size: 32px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.experience-details-heading .content p {
  font-size: 18;
  color: var(--white-color);
}

.experience-details-heading .logo {
  height: 150px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.experience-details-heading .logo img {
  height: 150px;
}

@media (max-width: 768px) {

  .experience-details-heading {
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .experience-details-heading .content {
    max-width: 90%;
    padding: 0 10px;
  }

  .experience-details-heading .content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
  }

  .details-text .content h4 {
    font-size: 20px;
    margin-bottom: 32px;
    text-align: center;
  }

  .experience-details-heading .content p {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }

  .experience-details-heading .logo {
    height: 100px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .experience-details-heading .logo img {
    height: 100px; /* smaller image */
  }
}

/* Text Block */
.text-block {
  padding: 100px 0;
}

.custom-container {
  max-width: 1280px;
  margin: 0 auto;
}

.text-block h3 {
  color: var(--white-color);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
}

.text-block p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 300;
  max-width: 780px;
  text-align: justify;
  text-align-last: center;
  margin-left: -60px;
}

.text-block .btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
}

.text-block .btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

@media (max-width: 768px) {
  .text-block {
    padding: 60px 0;
  }

  .text-block h3 {
    font-size: 22px;
    text-align: center;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  .text-block .btn {
    display: block;
    margin: 0 auto;
  }

  .text-block p {
    text-align: center;
    margin: 0px;
    padding: 0px 16px;
    font-size: 14px;
  }
}


/* ============ Gallery */
.gallery-section {
  padding-bottom: 100px;
}

.gallery-section .swiper-slide {
  /* padding: 0px 100px; */
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-section .swiper-slide img {
  transition: transform 0.5s ease;
}


/* ============== Itinerary */
.itinerary-section {
  padding: 100px 0px;
  background-color: var(--secondary-color);
}

.itinerary-section .custom-container {
  max-width: 1080px;
}

.itinerary-section h2 {
  font-weight: 400;
  font-size: 32px;
  color: var(--white-color);
  margin-bottom: 52px;
}

.itinerary-section .accordion-item {
  border: none;
  background: var(--primary-color);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.itinerary-section .accordion-button {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 1.1rem;
  font-weight: 400;
  padding: 1rem 1.25rem;
  border: none;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

.itinerary-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.itinerary-section .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.itinerary-section .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.itinerary-section .accordion-button:focus {
  box-shadow: none;
}

.itinerary-section .accordion-body {
  padding: 1rem 1.25rem;
  font-size: 18;
  font-weight: 300;
  color: var(--white-color);
  line-height: 1.6;
  background-color: var(--primary-color);
  border-top: 1px solid #eee;
}

.itinerary-section .accordion-button:hover,
.itinerary-section .accordion-button:focus {
  background-color: var(--primary-color);
  color: var(--white-color);
}


.experience-banner .banner-text {
  padding: 40px 20px;
  border-radius: 8px;
}

.experience-banner .banner-text h2 {
  color: var(--white-color);
}

.experience-banner .banner-text p {
  color: #464646;
}

.experience-banner .banner-text .btn-enquire {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 400;
  background-color: transparent;
}

.details-experience .heading-right {
  padding-left: 50px;
}

.details-experience .heading-right h2 {
  font-size: 42px;
  color: var(--white-color);
  margin-bottom: 32px;
}

@media (max-width: 768px) {

  /* Itinerary Section */
  .itinerary-section {
    padding: 50px 15px;
  }

  .itinerary-section .custom-container {
    max-width: 95%;
  }

  .itinerary-section h2 {
    font-size: 24px; /* smaller heading */
    margin-bottom: 30px;
    text-align: center;
  }

  .itinerary-section .accordion-button {
    font-size: 1rem; /* smaller font */
    padding: 0.75rem 1rem;
  }

  .itinerary-section .accordion-body {
    font-size: 14px; /* smaller paragraph */
    padding: 0.75rem 1rem;
    line-height: 1.4;
  }

  /* Experience Banner */
  .experience-banner .banner-text {
    padding: 20px 10px;
    border-radius: 6px;
  }

  .experience-banner .banner-text h2 {
    font-size: 24px;
  }

  .experience-banner .banner-text p {
    font-size: 14px;
  }

  .experience-banner .banner-text .btn-enquire {
    font-size: 14px;
    padding: 8px 12px;
  }

  /* Details Experience */
  .details-experience .heading-right {
    padding-left: 15px; /* reduce left padding */
    text-align: center;
  }

  .details-experience .heading-right h2 {
    font-size: 22px;
    margin-bottom: 20px !important;
    padding-top: 0px !important;
  }
}

/* enquire-page */
.enquire-section .logo {
  height: 150px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.enquire-section .logo img {
  height: 150px;
}

.enquire-section .logo::after {
  content: '';
  width: 140px;
  height: 120px;
  background-color: var(--white-color);
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* =========== Gallery page */

.gallery-banner {
  height: 500px;
}

.gallery-page {
  padding-bottom: 80px;
}

.gallery-page .grid {
  column-count: 1;
  column-gap: 1rem;
  margin-top: 72px;
}

@media (min-width: 600px) {
  .gallery-page .grid {
    column-count: 2;
  }
}

@media (min-width: 900px) {
  .gallery-page .grid {
    column-count: 3;
  }
}

.gallery-page .grid-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  break-inside: avoid;
}

.gallery-page .grid-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* About page */
.about-modern-section {
  padding: 100px 0px;
  /* background-color: var(--primary-color); */
  color: var(--white-color);
}

.about .custom-container {
  max-width: 1100px;
}

.modern-heading {
  font-size: 2.5rem;
  padding-left: 16px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 16px;
  position: relative;
}

/* .modern-heading::before {
  content: '';
  width: 5px;
  height: 100%;
  background-color: var(--white-color);
  position: absolute;
  left: 0;
  top: 0;

} */

.modern-subheading {
  font-size: 20px;
  color: #bbbbbb;
  text-align: justify;
  text-align-last: center;
  max-width: 1000px;
  margin: 0 auto;
}

.modern-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 1rem;
}

.modern-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #dddddd;
  margin-bottom: 1rem;
}

.modern-quote {
  font-style: italic;
  border-left: 4px solid var(--white-color);
  padding-left: 1rem;
  color: #f3f3f3;
  font-size: 1.05rem;
}

.modern-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.image-mask img {
  transition: all 0.4s ease-in-out;
  filter: grayscale(20%) brightness(0.9);
}

.image-mask img:hover {
  transform: scale(1.03);
  filter: none;
}

.modern-text-box {
  padding-right: 1rem;
}

@media (max-width: 768px) {
  .about-modern-section{
    padding: 50px 16px;
  }

  .modern-subheading {
    font-size: 16px;
    text-align: center;
    max-width: 90%;
  }

  .modern-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .modern-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .modern-quote {
    font-size: 0.95rem;
    padding-left: 0.8rem;
    border-left-width: 3px;
  }

  .modern-image-box {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .image-mask img {
    width: 100%;
    height: auto;
  }

  .modern-text-box {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .modern-text-box {
    padding-right: 0;
  }
}

.experience-highlight {
  height: 450px;
  position: relative;
}

.experience-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.experience-overlay {
  height: 100%;
  background: linear-gradient(to right, rgba(19, 25, 51, 0.9), rgba(43, 53, 100, 0.6));
  color: var(--white-color);
}

.experience-content {
  background-color: rgba(19, 25, 51, 0.75);
  backdrop-filter: blur(4px);
}

.experience-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--white-color);
}

.experience-text {
  color: #dddddd;
  font-size: 1.05rem;
  line-height: 1.7;
}

.experience-highlight .btn-enquire {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
  background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .experience-highlight {
    height: auto;
  }

  .experience-content {
    padding: 2rem;
  }
}

.hero .animated-text span {
  opacity: 0;
  font-size: 50px;
  display: inline-block;
  transform: translateX(-180px);
  transition: all 0.8s ease-out;
}

.animated-text.visible span {
  opacity: 1;
  font-size: 43px;
  transform: translateX(0);
}


/* Terms & condition */
.terms_condition {
  padding: 60px 20px;
  /* background-color: var(--primary-color); */
}

.terms_condition .terms-card {
  background-color: var(--secondary-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.terms_condition .section-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--white-color);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 8px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.terms_condition p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-color);
  margin-bottom: 16px;
}

.terms_condition ul.custom-list {
  padding-left: 1.2rem;
  margin-bottom: 20px;
}

.terms_condition ul.custom-list li {
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.terms_condition ul.custom-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ccc;
  font-size: 20px;
  line-height: 1;
}

.privacy_policy {
  padding: 60px 20px;
  /* background-color: var(--primary-color); */
}

.privacy_policy .policy-card {
  background-color: var(--secondary-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.privacy_policy .section-title {
  font-size: 32px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 25px;
}

.privacy_policy .sub-title {
  font-size: 22px;
  font-weight: 400;
  color: var(--white-color);
  margin-top: 30px;
  margin-bottom: 10px;
  border-left: 4px solid rgba(255, 255, 255, 0.2);
  padding-left: 12px;
}

.privacy_policy p {
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.privacy_policy ul.custom-list {
  padding-left: 1.2rem;
  margin-bottom: 20px;
}

.privacy_policy ul.custom-list li {
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.privacy_policy ul.custom-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ccc;
  font-size: 20px;
  line-height: 1;
}


/* Stargazing */
.stargazing-hero {
  height: 850px;
}

.stargazing-experience-section {
  padding: 100px 0;
  padding-bottom: 0px;
}

.stargazing-experience-section .stargazing-border {
  padding: 20px 0px;
  border: 1px solid #fff;
}

.stargazing-experience-section .experience-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.skipper-img .text {
  z-index: 1;
}

.skipper-img::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

.stargazing-experience-section .experience-caption-box {
  /* background-color: var(--secondary-color); */
  color: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

.stargazing-experience-section .experience-caption-box h2 {
  font-size: 24px;
  font-weight: 300;
  font-family: "Lato", sans-serif;
}

.stargazing-experience-section .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  border: 1px solid var(--white-color);
}

.stargazing-experience-section .image-wrapper img {
  transition: all .5s ease-in-out;
}

.stargazing-experience-section .image-wrapper .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 400;
  color: var(--white-color);
  text-wrap: nowrap;
  font-family: "Playfair Display", serif;
}

.stargazing-experience-section .image-wrapper:hover img {
  transform: scale(1.1);
}

.stargazing-experience-section .title-heading {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.stargazing-heading {
  max-width: 800px;
  margin: 0 auto;
  color: var(--white-color);
  margin-bottom: 42px;
}

.img-box-section {
  padding: 0px 50px;
  padding-bottom: 100px;
}

.img-box-section .img-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.img-box-section .img-box img {
  width: 100%;
}

@media (max-width: 768px) {

  /* Hero Section */
  .stargazing-hero {
    height: 500px;
  }

  /* Experience Section */
  .stargazing-experience-section {
    padding: 50px 15px;
    padding-bottom: 0;
  }

  .stargazing-experience-section .stargazing-border {
    padding: 15px 10px;
  }

  .stargazing-experience-section .experience-image {
    height: auto;
    border-radius: 8px;
  }

  .stargazing-experience-section .experience-caption-box {
    padding: 15px;
    font-size: 14px;
    line-height: 1.4;
  }

  .stargazing-experience-section .experience-caption-box h2 {
    font-size: 18px;
  }

  .stargazing-experience-section .image-wrapper {
    height: auto;
    border-radius: 8px;
  }

  .stargazing-experience-section .image-wrapper .text {
    font-size: 20px;
  }

  .stargazing-experience-section .title-heading {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .stargazing-heading {
    max-width: 95%;
    font-size: 20px;
    margin-bottom: 30px;
  }

  /* Image Box Section */
  .img-box-section {
    padding: 0 15px 50px 15px;
  }

  .img-box-section .img-box {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .img-box-section .img-box img {
    width: 100%;
    height: auto;
  }

  .skipper-img .text {
    font-size: 16px;
  }
}
