* {
  box-sizing: border-box;
}
h1, h2, h3, p, ul, ol {
  margin-inline: 10px;
  padding: 0;
  
}

body {
  padding-top: 100px;
  background-color: #251a14; /* #1f1c01 changes the background of the whole website */
  color: #f8f4e3;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  cursor: none !important; /* Hides default white cursor */
}

.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease-out;
  animation: circle;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #a55208;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 35px;
  height: 35px;
  border: 2px solid orange;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

/* Hide cursor effect on mobile */
@media (max-width: 767px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  

}

/* Navbar styles */
.navbar {
  height: 110px; /* Fixed height */
  display: flex;
  align-items: center; /* Vertically centers content */
  background-color: #111;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  
}
.navbar-brand img {
  height: 150px;
  width: auto;
  max-height: none;
}
.nav-link:hover{
  color: #a55208;
  cursor: pointer;
}
.navbar-brand h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Arial', cursive;
  color: #cc3300;
}

.navbar-brand span.orange {
  color: #cc3300;
}

.tagline {
  font-size: 0.75rem;
  color: #cc3300;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Nav Hover animation */
.nav-link, .dropdown-toggle {
  transition: transform 0.2s ease-in-out, background-color 0.2s;
}

.nav-link:hover, .dropdown-toggle:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.dropdown-menu {
  background-color: #000;
}

.dropdown-item {
  color: #fff;
  transition: background-color 0.2s ease-in-out;
}

.dropdown-item:hover {
  background-color: #FF6600;
  color: #fff;
}

.btn-custom {
  background-color: #a55208;
  color: #fff;
  border-radius: 20px;
}
.btn-map{
  color: #fff;
  cursor: pointer;
  background-color: #a55208;
}

.hero-section {
  background: url('./assest/hero-bg.png') no-repeat center center/cover;
  height: 88vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: center;
  color: #fff;
}
.hero-overlay {
  background: rgb(0, 0, 0,);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.hero-content {
  z-index: 2;
  position: relative;
}

/* hero animation */
@keyframes fadeInLeftOnce {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-100%);
  }
}

/* Landingpage text animation */
 .hero-content h3,
.hero-content .btn {
  animation: fadeInLeftOnce 10s ease infinite;
  font-size: 1.4rem;
} 


/* New Button Style */
.btn-map {
  background-color: #a55208;
  color: #fff;
  border-radius: 25px;
  padding: 8px 18px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-map:hover {
  background-color: #ffa500;
  color: #111;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

/* Section 2 At MapMyAdventure.in */
.mapmyadventure-intro {
  background: url('./assest/myadventurebackground1.png') no-repeat center center/cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mapmyadventure-intro::after {
  content: "";
  font-family: 'IM Fell English SC', serif;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(9, 9, 9, 0.3); /* dark overlay */
  z-index: 1;
}

.mapmyadventure-intro .container {
  position: relative;
  z-index: 2;
}

.animated-title {
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}

.animated-text {
  animation: fadeIn 6s ease forwards;
  opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive tweak */
@media (max-width: 768px) {
  .mapmyadventure-intro {
    padding: 60px 15px;
  }
  .animated-title {
    font-size: 1.75rem;
  }
}


/* Carousel Controls */
.key-features .carousel-control-prev,
.key-features .carousel-control-next {
  width: 5%;
}

.key-features .carousel-control-prev-icon,
.key-features .carousel-control-next-icon {
  background-size: 80%;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .key-features .active-card {
      transform: none;
      margin: 15px !important;
  }
  
  .key-features .feature-card-inner {
      margin: 10px 0;
  }
  
  .key-features .carousel-inner {
      padding: 20px 0;
  }
  
  .key-features .card-img-top {
      height: 200px;
  }
}

@media (max-width: 576px) {
  .key-features .card-img-top {
      height: 150px;
  }
  
  .key-features .card-title {
      font-size: 1.1rem;
  }
}


/* Section3 Contour Map & dynamic Text styling */
/* View Map button styling */
/* Text Area Styling */
.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
}
.text-area {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #251a14;
  position: relative;
  overflow: hidden;
}

.dynamic-text-wrapper {
  height: 360px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #251a14;
  border: 1px solid #251a14;
  font-family: sans-serif;
}

.dynamic-text-list {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: transform 0.1s linear;
}

.dynamic-text-item {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #999;
  padding: 0 15px;
  text-align: center;
  line-height: 60px;
  white-space: normal;
  word-break: break-word;
  overflow: hidden;
  box-sizing: border-box;
  will-change: transform, opacity, filter;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.dynamic-text-item.highlighted {
  font-size: 1.4rem;
  color: #cc3300;
  font-weight: bold;
  transform: scale(1.2);
}

/* View Map Button */
.view-map-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  background-color: #a55208;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-map-btn:hover {
  transform: scale(1.05);
  background: #a55208;
  box-shadow: 0 4px 12px rgba(230, 169, 2, 0.842);
}

/* Animations */
.animate-slide-left {
  animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
  .map-section {
    display: flex;
    flex-direction: column; 
  }

  .map-area {
    height: 60vh; 
    order: 1; 
  }

  .text-area {
    height: 40vh; 
    order: 2; 
    padding: 15px 0;
  }

  /* Dynamic text adjustments */
  .dynamic-text-item {
    padding: 10px 0;
    height: 50px;
    font-size: 0.9rem;
  }
  
  .dynamic-text-item.highlighted {
    font-size: 1rem;
  }
  
  /* map and dynamic text  View Map button stays on map */
  .view-map-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    margin: 0;
    width: auto;
  }
}

/* map and dynamic text Small mobile devices */
@media (max-width: 480px) {
  .map-area {
    height: 65vh; /* Even more map space */
  }

  .text-area {
    height: 35vh; 
  }

  .view-map-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}




/* ===== Section 4 carousel Styles ===== */
/* ===== Professional Centered Carousel ===== */
/* ===== Key features section Slide-Up Animation ===== */
@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

  /* ===== Carousel Container ===== */
.carousel-section {
  background-color:  #000;  /*#251a14  #1f1c01; */
  /*#040f00 #230b00 */ 
  padding: 4.1vw 0;
  width: 100%;
  position: relative; 
  animation: slideUp;
}

.carousel-track {
  height: 40vw;
  max-height: 500px;
  min-height: 350px;
  position: relative;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}
/* ===== Section header carousel Styles ===== */
.section-header {
    text-align: center;
    color: #FFD700;
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }
/* ===== Navigation Arrows ===== */
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: rgba(255, 215, 0, 0.7);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 20;
      border: none;
      transition: all 0.3s ease;
    }

    .carousel-nav:hover {
      background: rgba(255, 215, 0, 0.9);
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav.prev {
      left: 20px;
    }

    .carousel-nav.next {
      right: 20px;
    }

    .carousel-nav::after {
      content: '';
      width: 15px;
      height: 15px;
      border-top: 3px solid #000;
      border-right: 3px solid #000;
    }

    .carousel-nav.prev::after {
      transform: rotate(-135deg);
      margin-left: 5px;
    }

    .carousel-nav.next::after {
      transform: rotate(45deg);
      margin-right: 5px;
    }

        /* ===== Carousel Slides ===== */
    .carousel-slide {
      width: 28vw;
      height: 20vw;
      min-width: 280px;
      min-height: 200px;
      max-width: 320px;
      max-height: 285px;
      position: absolute;
      transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
      cursor: pointer;
      opacity: 0;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      will-change: transform, opacity;
      backface-visibility: hidden;
    }

    .carousel-slide img {
      width: 100%;
      height: 80%;
      object-fit: cover;
      border-radius: 0;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      filter: brightness(0.95);
      transition: filter 0.3s ease;
    }

    .carousel-slide:hover img {
      filter: brightness(1.05);
    }

    .carousel-caption {
      position: absolute;
      bottom: -1vw;
      max-height: 60px;
      min-height: 50px;
      left: 0;
      width: 100%;
      background-color: rgba(10, 10, 10, 0.95);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Calibri', 'Helvetica Neue', Arial, sans-serif;
      font-size: clamp(14px, 1.4vw, 18px);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
      padding: 0 10px;
      box-sizing: border-box;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

  /* Animation states */
    .slide-enter {
      transform: translate(calc(-50% + 150%), -50%) scale(0.85);
      opacity: 0.7;
      z-index: 1;
    }

    .slide-center {
      transform: translate(-50%, -50%) scale(1.35);
      opacity: 1;
      z-index: 10;
    }

     .slide-exit {
      transform: translate(calc(-50% - 150%), -50%) scale(0.85);
      opacity: 0.7;
      z-index: 1;
    }

    .slide-hidden {
      display: none;
    }

  /* carousel Responsive adjustments */
  @media (max-width: 992px) {
            .carousel-slide {
                width: 32vw;
                height: 23vw;
            }
            
            .section-header {
                font-size: 2rem;
            }
            
            .carousel-nav {
                width: 40px;
                height: 40px;
            }
  }

  @media (max-width: 768px) {
            .carousel-section {
                padding: 8vw 0;
            }
            
            .carousel-slide {
                width: 38vw;
                height: 27vw;
                min-width: 240px;
                min-height: 170px;
            }
            
            .carousel-caption {
                font-size: clamp(12px, 3vw, 16px);
            }
            
            .slide-enter {
                transform: translate(calc(-50% + 120%), -50%) scale(0.85);
            }
            
            .slide-exit {
                transform: translate(calc(-50% - 120%), -50%) scale(0.85);
            }
            
            .section-header {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }
            
            .carousel-nav {
                width: 35px;
                height: 35px;
            }
  }

  @media (max-width: 576px) {
            .carousel-track {
                height: 50vw;
                width: 95%;
            }
            
            .carousel-slide {
                width: 45vw;
                height: 32vw;
            }
            
            .section-header {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }
            
            .carousel-nav {
                width: 30px;
                height: 30px;
            }
            
            .carousel-nav::after {
                width: 12px;
                height: 12px;
                border-width: 2px;
            }
  }


/* Custom styles for the MapMyAdventure section */
    .map-ad{
        background: #251a14 /*  #1f1c01;*/
    }
    .map-adventure-section {
      padding: 20px;
      position: relative;
    }

    .heading-animate {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateX(-50px);
      animation: slideIn 0.8s forwards 0.2s;
      font-weight: 700;
      color: #ffa600;
      position: relative;
      z-index: 1;
    }

    .text-highlight {
      color: #ffa600;
      font-weight: bold;
      font-size: 1.8rem;
      display: block;
      margin-top: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      z-index: 1;
    }


    .feature-container {
      display: flex;
      align-items: center;
      margin-bottom: 3rem;
      position: relative;
      background-color: #021e13;
      border-radius: 10px;
      padding: 0px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      overflow: visible;
      min-height: 200px;
      width: 90%;
    }

    /* Sleek glow effect on hover */
    .feature-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 0 4px 15px rgba(0, 0, 0, 0.1);
      outline: 1px solid rgba(255, 215, 0, 0.3);
    }

    .feature-image {
      position: absolute;
      width: 200px;
      height: 200px;
      overflow: hidden;
      border-radius: 50%;
      border: 5px solid #FFD700;
      z-index: 2;
      top: 50%;
      transform: translateY(-50%);
      transition: all 0.3s ease;
    }

    /* Enhanced hover effect for images */
    .feature-image:hover {
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
      transform: translateY(-50%) scale(1.05);
    }

    /* Left-aligned images */
    .feature-image:first-child {
      left: -100px;
    }

    /* Right-aligned images */
    .feature-image:last-child {
      right: -100px;
    }

    .feature-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .feature-image:hover img {
      transform: scale(1.1);
    }

    .feature-content {
      width: 100%;
      position: relative;
      z-index: 1;
      padding: 20px 120px;
    }

    /* Adjust padding based on image position */
    .feature-container > .feature-content:first-child {
      padding-left: 150px;
      margin-left: 40px;
    }

    .feature-container > .feature-content:last-child {
      padding-right: 150px;
      margin-right: 40px;
    }

    .feature-content h3 {
      font-weight: bold;
      margin-bottom: 1.5rem;
      color: #FFD700;
      font-size: 1.5rem;
      line-height: 1.4;
    }

    .small-text {
      font-size: 0.9rem;
      color: #ffffff;
      line-height: 1.7;
      margin-bottom: 0;
      padding-right: 20px;
    }

    /* Video Ad Styles */
    .video-ad-container {
      position: sticky;
      top: 20px;
      border: 4px solid #ffa600;
      background: #102301;
      border-radius: 5px ;
    }

    .video-ad-container:hover{
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.7)
    }

    .ad-placeholder {
      text-align: center;
    }
    
    .video-ad {
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      margin-bottom: 20px;
    }
    
    .video-ad video {
      width: 100%;
      display: block;
    }
    
    .ad-caption {
      text-align: center;
      color: #FFD700;
      font-weight: bold;
      margin-top: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
      .text-highlight{
        margin-bottom: 4.6rem;
      }
      .feature-image {
        width: 180px;
        height: 180px;
      }
      .feature-image:first-child {
        left: -90px;
      }
      .feature-image:last-child {
        right: -90px;
      }
      .feature-container > .feature-content:first-child {
        padding-left: 140px;
        margin-left: 30px;
      }
      .feature-container > .feature-content:last-child {
        padding-right: 140px;
        margin-right: 30px;
      }
    }

    @media (max-width: 992px) {
      .text-highlight{
        margin-bottom: 5.1rem;
      }
      .feature-container {
        flex-direction: column !important;
        text-align: center;
        padding: 120px 25px 25px !important;
        min-height: auto;
        width: 100%;
      }
      
      /* Unified image positioning for all cards on mobile */
      .feature-image {
        position: absolute;
        top: -90px;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        height: 180px;
      }
      
      /* Special styling for first card image to cover the heading */
      .feature-container:first-child .feature-image {
        top: -120px;
        width: 200px;
        height: 200px;
        z-index: 3;
      }
      
      /* Hide "EXPLORE THE UNEXPLORED" text behind first image on mobile */
      .feature-container:first-child ~ .feature-container .text-highlight {
        z-index: 1;
      }
      
      /* Reset all image positioning overrides for mobile */
      .feature-image:first-child,
      .feature-image:last-child {
        left: 50%;
        right: auto;
      }
      
      .feature-content {
        padding: 20px 0 !important;
        margin: 0 !important;
        width: 100%;
      }
      
      /* Reset all content padding overrides for mobile */
      .feature-container > .feature-content:first-child,
      .feature-container > .feature-content:last-child {
        padding: 20px 0 !important;
        margin: 0 !important;
      }
      
      .feature-content h3 {
        margin-bottom: 1.2rem;
      }
      
      .heading-animate {
        font-size: 2rem;
        text-align: center;
      }
      
      .text-highlight {
        font-size: 1.5rem;
      }
      
      /* Video ad adjustments */
      .video-ad-container {
        position: static;
        margin-top: 30px;
      }
    }

    @media (max-width: 768px) {
      .heading-animate {
        font-size: 1.8rem;
      }
      
      .text-highlight {
        font-size: 1.3rem;
      }

      .feature-content h3 {
        font-size: 1.3rem;
      }
      
      .feature-image {
        width: 160px;
        height: 160px;
        top: -80px;
      }
      
      /* Adjust first card image position */
      .feature-container:first-child .feature-image {
        top: -110px;
        width: 180px;
        height: 180px;
      }
      
      .feature-container {
        padding: 110px 20px 20px !important;
      }
      
      .small-text {
        padding-right: 0;
      }
    }

    @media (max-width: 576px) {
      .heading-animate {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }
      
      .text-highlight {
        font-size: 1.1rem;
        margin-top: 0.3rem;
      }

      .feature-container {
        padding: 100px 15px 15px !important;
        margin-bottom: 2rem;
      }
      
      .feature-image {
        width: 140px;
        height: 140px;
        top: -70px;
        border-width: 3px;
      }
      
      /* Final adjustment for first card image on smallest screens */
      .feature-container:first-child .feature-image {
        top: -90px;
        width: 160px;
        height: 160px;
      }
      
      .feature-content h3 {
        margin-bottom: 1rem;
      }
    }

    /* Animations */
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .slide-in-left {
      animation: slideIn 0.8s forwards;
    }

    .slide-in-right {
      animation: slideIn 0.8s forwards 0.4s;
    }

    /* Delay animations for each feature */
    .feature-container:nth-child(1) {
      animation-delay: 0.4s;
    }

    .feature-container:nth-child(2) {
      animation-delay: 0.6s;
    }

    .feature-container:nth-child(3) {
      animation-delay: 0.8s;
    }
    .feature-container:nth-child(4) {
      animation-delay: 1.0s;
    }
    .feature-container:nth-child(5) {
      animation-delay: 1.2s;
    }



/* footer */
.footer {
  background-color: #111;
}

.footer-image img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-logo {
  height: 60px;
}

.footer p {
  font-size: 0.9rem;
  color: #ccc;
}

.footer h5 {
  font-size: 1.2rem;
  color: #ffa500;
}

.footer-link {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.footer-link:hover {
  text-decoration: underline;
}
.footer-link:hover {
  transform: scale(1.05);
  background-color: none;
  border-radius: 5px;
}



/* faq */
.faq-hero {
  background: url('./assest/faq-hero.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}
.faq-header {
  padding: 80px 0 30px 0;
  text-align: center;
  z-index: 1;
}
.faq, h2{
  color: #ff8c00;
  font-weight: bold;
}
/* FAQ Question style */
.question{
  margin-bottom:60px;
}
.question h3 {
      cursor: pointer;
      transition: color 0.3s ease;
      color: #ffa500;
      animation: heartbeat 1.5s infinite;
    }

.question h3:hover {
  color: #ffa500;
}    

    .answer-box {
      display: none;
      background-color: #251a14;
      border-radius: 12px;
      padding: 20px;
      margin-top: 20px;
      max-width: 550px;
      box-shadow: 0 4px 12px rgba(230, 169, 2, 0.842);
      font-weight: 500;
      opacity: 0;
      color: #fff;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

.answer-box.show {
  display: block;
  animation: slideFadeIn 0.6s ease forwards;
}

@keyframes slideFadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
    }
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
14% {
  transform: scale(1.1);
  }
 28% {
    transform: scale(1);
  }
42% {
  transform: scale(1.1);
  }
70% {
  transform: scale(1);
  }
}


.faq-section{
  padding-top: 4px;
  background: #251a14 !important;
}

.accordion-button {
  background: #251a14 !important;
  color: #f8f4e3;
}
.accordion-button:not(.collapsed) {
  background-color: #333;
  color: #ffa500;
}
.accordion-body {
  background: #251a14 !important;
  color: #ddd;

}


/* About */
.about-hero {
  background: url('./assest/about-hero.png') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* background: rgba(0, 0, 0, 0.1); */
}

.aboutHeroHold{
  display: flex;
  align-items: center;
}

.about-hero h1 {
  position: relative;
  z-index: 2;
  font-weight: bold;
  font-size: 3rem;
  color: #ff8c00;
}

.about-hero p {
  color: #ff8c00;
  position: relative;
  z-index: 1;
}

.about-section {
  padding: 80px 0;
}
.about-text {
  padding: 20px;
}
.about-text h2 {
  color: #ffa500;
  margin-bottom: 20px;
}
.about-text p {
  color: #ccc;
  line-height: 1.7;
}
.about-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 100%;
}

/* Contact */
.contact-hero {
  background: url('./assest/contact-hero.JPEG') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
}
.contact-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}
.contactH1{
  text-align: center;
  color: #ffa500;
  font-size: 3rem;
  font-weight: bold;
  padding-bottom: 40px;
}
.contact-section {
  padding: 80px 0;
  background: #251a14 !important;
}
.contact-info h2 {
  color: #ffa500;
}
.contact-info p {
  font-size: 1.1rem;
  color: #ccc;
}
.contact-form input, .contact-form textarea {
  background-color: #333;
  border: none;
  color: #f8f4e3;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #bbb;
}
.contact-form button {
  background: linear-gradient(90deg, #ff8c00, #ffa500);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #ffa500, #ff8c00);
}


/* Privacy Policy */
.policy-section {
  padding: 80px 20px;
}

.policy{
  background: #251a14 !important;
}

.policy-wrapper {
  background-color: #1f1f1f;
  border-radius: 10px;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.8;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* .policy-wrapper h3 {
  font-size: 1.4rem;
}

.policy-wrapper .custom-list {
  padding-left: 20px;
  list-style-type: disc;
} */

.policy-hero {
  background: url('./assest/privacy-hero.JPEG') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.policy-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.privacyH {
  color: #a55208;
  font-size: 2rem;
}



/* Gallery */
.gallery-page img {
  width: 100%;
  height: auto;
}

.gallery-page .gallery-hero {
  background: url('./assest/gallery-hero.JPG') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-page .gallery-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-page .gallery-hero h1 {
  position: relative;
  z-index: 2;
  color: #ffa500;
  font-size: 3rem;
  font-weight: bold;
}

.gallery-page .gallery-section {
  padding: 80px 20px;
}

.gallery-page .gallery-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s, opacity 0.6s;
  opacity: 0;
  transform: translateY(30px);
}

.gallery-page .gallery-img.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery-page .gallery-img img,
.gallery-page .gallery-img video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



/* Terms */
.terms{
  background: #251a14 !important;
}
.terms-hero {
  background: url('./assest/terms-hero.JPEG') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.terms-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.termsH {
  color: #a55208;
}


/* Useful links styles */

.link-hero {
  background: url('./assest/link-hero.JPG') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.link-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.link-hero h1 {
  position: relative;
  z-index: 2;
  color: #ffa500;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: inline-flex;
  animation: scroll-marquee 20s linear infinite;
}

.marquee-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d6d3cd;
  white-space: nowrap;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
