 *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
    }

    .hero {
      background-image: url('your-image.jpg'); /* Replace with actual image path */
      background-size: cover;
      background-position: center;
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3); /* Optional overlay for text contrast */
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-content h1 {
      font-size: 4rem;
      font-weight: bold;
      letter-spacing: 2px;
    }

    .hero-content p {
      font-size: 1.5rem;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }

      .hero-content p {
        font-size: 1.1rem;
      }
    }/* Top Bar */
.top-bar {
    background-color: #7B1D3F;
    height: 30px;
}
.footer-section {
   background: linear-gradient(135deg, #E5E5E5, #E5E5E5);
  color: white;
   box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}  

/* Navigation Bar */
.navbar-wrapper {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1030;
}
.nav-bar {
   position: absolute;
   background-color: transparent; /* Semi-transparent white */
   box-shadow: none !important;
  padding: 10px 20px;
   top: 0;
  left: 0;
  right: 0;
  z-index: 1030; /* Ensure it stays above the image */
}
.pre-section-image {
  position: relative; /* Allow navbar to position over this */
}

.nav-link {
    color: black;
    font-weight: bold;
    text-decoration: none;
}
.nav-link-main {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.nav-link:hover {
    text-decoration: underline;
}
.plan-btn {
    background-color: white;
    border: none;
    color: #7B1D3F;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
}
.plan-btn-main {
  background-color: #7B1D3F;
  border: none;
  color: white;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
}.icon {
  font-size: 20px;
  color: black;
  margin-left: 10px;
  cursor: pointer;
}
.icon-main {
    font-size: 20px;
    color:white;
    margin-left: 10px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: stretch;  /* Ensures both child divs have equal height */
    justify-content: center;
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

/* Flex container */
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;  /* Forces equal height for hero-text & hero-image */
}

/* Hero Image */
.hero-image {
    flex: 1;  /* Takes equal width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hero Text */
.hero-text {
    flex: 1;  /* Takes equal width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: left;
}

/* Ensure images scale properly */
.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .hero-image, .hero-text {
        flex: none;
        width: 100%;
    }
}
         h1, h2, h3 {
            font-family: 'Cinzel Decorative';
        }
        p {
            font-family: 'Lato', sans-serif;
        }
        .btn-click, blockquote {
            font-family: 'Poppins', sans-serif;
        }
        .coming-soon {
            font-family: 'Glacial Indifference', sans-serif;
        }
         
 .caption {
    color: #7B1D3F;
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

.hero-text h2 {
    color: #7B1D3F;
    font-weight: bold;
}
.hero-text p {
    color: #333;
}
.cta-btn {
    background-color: transparent;
    border: 2px solid #7B1D3F;
    color: #7B1D3F;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.cta-btn:hover {
    background-color: #7B1D3F;
    color: white;
}
/* Button Styling */
.hero-text .btn-click {
    display: inline-block;
    padding: 8px 16px; /* Smaller padding for a compact button */
    font-size: 18px; /* Reduce font size */
    font-weight: bold;
     color: #80002A; /* Matching theme color */
     text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.hero-text .btn-click:hover {
    background-color: #e3dddf; /* Slightly darker on hover */
    border-color: #a60035;
}

/* Center the button */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adjust spacing */
}
.zoomed-image {
    transform: scale(1.5);       /* Zoom in 1.5x */
    transform-origin: center;    /* Keep it centered */
    transition: transform 0.5s;  /* Smooth effect (optional) */
  }
  .divider {
    height: 2px;
    background-color: #ddd;
    width: 80%;
    max-width: 500px;
    margin: 30px auto;
  }

  .coming-soon {
    font-size: 18px;
    color: #4f6480; /* Slate blue */
    font-weight: 500;
  }.section {
    display: none !important;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 50px 20px;
    flex-direction: column;
    justify-content: center; 
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  .section.active {
    display: flex !important;
    opacity: 1;
  pointer-events: auto;
  }
  .nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav-right {
    margin-left: auto; 
    display: flex;
    align-items: center;
    text-align: right;
  }
  .nav-right a {
    margin-left: 20px;
     text-decoration: none;
  }
  
  .search-icon i {
    font-size: 18px;
    cursor: pointer;
    margin-right: 20px;
  }
  .search-icon-main {
    font-size: 18px;
    cursor: pointer;
    margin-right: 20px;
    color: rgb(255, 255, 255);
  }
  
  
  .logo-right {
    text-align: right;
    margin-left: 80px;
  }.btn-length {
    text-align: center;
    width: 200px;
  }
  .custom-rounded {
    border-radius: 50px;
    padding: 10px 30px;
  }.spaced-section {
    margin-bottom: 80px; 
  }
  
  .fullscreen-form-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 30px;
    overflow-y: auto;
  }
  
  .form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
  }
  
  #questionnaireForm {
    width: 100%;
    max-width: 800px;
    margin: auto;
    
  }
  
  @media (max-width: 767px) {
    .form-container {
      padding: 20px;
    }
  
    #questionnaireForm .row > div {
      margin-bottom: 20px;
    }
  }
  
  .cta-btn {
    background-color: transparent;
    border: 2px solid #7B1D3F;
    color: #7B1D3F;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #7B1D3F;
    color: white;
}
 .logo-right {
  text-align: right;
  margin-left: 80px;
}
.logo-circle {
  display: inline-block;
  background: white;
  border-radius: 50%;
  padding: 8px;
}

.logo-circle img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.pre-section-image {
  position: relative;
  overflow: hidden;
}

/* .sliding-text-overlay {
  position: absolute;
  top: 40%;
  left: 5%;
  max-width: 600px;
  padding: 30px;
  color: white;
  border-radius: 12px;
  z-index: 10;
}
@media (max-width: 768px) {
  .sliding-text-overlay {
    left: 2%;
    right: 2%;
    padding: 20px;
    top: 10%;
  }
} */
 /* Background & zoom-in */
.travel-hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  background-color: black;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomInImage 20s ease-out forwards;
  z-index: 1;
}

/* Parallax gradient overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.25));
  z-index: 2;
}

/* Glassmorphic content box */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
   padding: 40px;
  border-radius: 20px;
}

/* Additional subtle effects */
.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(255,255,255,0.2);
}
.hero-content p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .hero-content {
     padding: 20px;
  }
  .hero-content h2 {
    font-size: 2rem;
  }
}

/* Zoom animation */
@keyframes zoomInImage {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.explore-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 9px 21px;
  font-size: 0.8rem;
  color: white;
  border: 1.5px solid white;
  background-color: transparent;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.4s ease;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.explore-btn:hover {
  background-color: white;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,255,255,0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-image {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-image.visible {
  opacity: 1;
  transform: scale(1);
}
.hero-bg-img {
  height: 100vh;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: white;
  text-align: center;
    max-width: 800px;

}
  body {
      font-family: 'Georgia', serif;
      margin: 0;
      padding: 0;
      background-color: #f8f9fa;
    }

      

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
    }

    

     .intro {
      background: url('../images/blue.png') center/cover no-repeat;
      padding: 60px 20px;
      text-align: center;
        position: relative;

    }

    .intro p {
      max-width: 800px;
      margin: 0 auto 20px;
      font-size: 1.2rem;
      line-height: 1.7;
    }

    .intro .btn {
      background-color: black;
      color: white;
      padding: 10px 25px;
      border-radius: 10px;
    }

    /* Section Headings */
    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #1e3d59;
      margin: 50px 0 30px;
    }

    /* Destinations Grid */
    .dest-card {
      text-align: center;
      padding: 20px;
    }

    .dest-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
    }

    .dest-card h5 {
      font-weight: bold;
      margin-top: 15px;
    }

    .dest-card p {
      margin-top: 10px;
    }

    /* Best Time Section */
    .best-time {
      background-color: #e2d7dd;
      padding: 60px 20px;
      text-align: center;
    }

    .best-time img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .best-time p {
      font-style: italic;
      font-size: 1.1rem;
      max-width: 800px;
      margin: auto;
    }

     

.carousel-inner .col-md-4 {
  padding: 0 10px;
}

.carousel-inner img {
  border-radius: 6px;
  height: 300px;
  object-fit: cover;
}

.carousel-text {
  background-color: #e8ebee;
  font-size: 1.1rem;
   margin: auto;
  border-radius: 5px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.4;
  margin: 0 5px;
}

.carousel-indicators .active {
  opacity: 1;
}
.expert-team-container {
  display: flex;
  background-color: #f4f0ed;
  border-radius: 8px;
  overflow: hidden;
  max-width: 1200px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.image-container {
  flex: 1;
  min-width: 50%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-box {
  flex: 1;
  padding: 2rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-box h2 {
  font-size: 1.75rem;
  font-family: 'Georgia', serif;
  margin-bottom: 1rem;
}

.content-box p,
.content-box li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.content-box ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}
