body {
  margin: 0;
  font-family: "Monda", sans-serif;
}

@font-face {
  font-family: "Monda";
  src: url("../font/Monda-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monda";
  src: url("../font/Monda-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('../webfonts/fa-solid-900.woff2') format('woff2');
    font-weight: 900;
  font-style: normal;
  font-display: swap !important;
}
@font-face {
  font-family: 'Font Awesome 5 Brands';
  src: url('../webfonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap !important;
  
}


/*** Spinner Start ***/
/*** Spinner ***/

.primary-color {
  color: #da6311;
}
.bg-primary-color {
  background-color: #da6311 !important;
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/
.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-primary);
  color: var(--bs-light) !important;
}

.btn-hover {
  transition: 0.5s;
}

.btn-hover:hover {
  color: var(--bs-secondary) !important;
}
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
  background: linear-gradient(135deg, #da6311, #ffad77);
  color: white;
  border-radius: 50%;
}
.back-to-top:hover {
  color: #da6311;
  background: transparent;
  border: 2px solid #da6311;
}
a {
  text-decoration: none !important;
}

/*** Topbar Start ***/
.top-bar {
  background-color: #da6311;
}
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  padding: 10px 15px;
  color: var(--bs-white) !important;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
  color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-white) !important;
}

/* Hover effect addition */
.navbar-light .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #da6311;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
  visibility: visible;
  width: 100%;
  background-color: #da6311;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: white !important;
  background: none;
  transition: all 0.3s ease;
}
/* Hover effect addition ends */

.navbar-light .navbar-brand img {
  max-height: 45px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background-color: #da6311;
  color: white;
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 992px) {
  .sticky-top.navbar-light {
    position: relative;
    background: #fff;
  }

  .navbar-light .navbar-brand h1 {
    color: #da6311;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid #da6311;
    color: #da6311;
  }
  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: #da6311 !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}
#navbar-logo-1 {
  display: none;
}

@media (max-width: 991.98px) {
  /* Bootstrap lg breakpoint */
  #navbar-logo {
    display: none;
  }
  #navbar-logo-1 {
    display: block;
  }
}

/* navbar end */

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
  background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
  background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
  background-size: 60% 60%;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
  position: relative;
  min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}

/*** Carousel Hero Header End ***/

.hero {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: rgba(13, 110, 253, 0.07);
  top: -120px;
  left: -120px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: rgba(231, 76, 60, 0.07);
  bottom: -100px;
  right: -100px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out forwards;
  color: #002147;
  position: relative;
  z-index: 2;
}

.hero h1 span {
  color: #e74c3c;
  position: relative;
  display: inline-block;
  animation: fadeInUp 1.3s ease-out forwards;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e74c3c;
  border-radius: 2px;
}

.hero p.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease-out forwards;
  z-index: 2;
  position: relative;
}

/* Floating animation for background shapes */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(15px) rotate(2deg);
  }
}

/* Fade-in Up keyframe */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-icon {
  font-size: 40px;
  color: #e74c3c;
}
.lead {
  font-size: 17px;
}
.explore-card {
  transition: 0.3s;
}
.explore-card:hover {
  transform: scale(2.05);
}
.equal-height {
  display: flex;
  align-items: stretch;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.tourist-attraction-card {
  min-width: 280px;
  max-width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f8f9fa !important;
  text-align: center;
  padding: 20px;
}

.tourist-attraction-card img {
  width: 100%;
  height: auto;
}

.tourist-attraction-card-caption {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}
/*** Single Page Hero Header Start ***/

/*** Single Page Hero Header End ***/

/* all tourist page */
.btn-custom {
  background: linear-gradient(135deg, #ffcc00, #ffb700);
  color: black;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-custom:hover {
  background: linear-gradient(135deg, #ffb700, #ffa200);
  color: #fff;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
/* all tourist page end */
.counter {
  color: #da6311;
}
/* page carousel */
.page-carousel .carousel-inner img {
  height: 400px;
  object-fit: cover;
}

/* page carousel end */
/*** Gallery Start ***/

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px; /* Larger radius for a modern feel */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
  transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth scaling effect */
}
.gallery span {
  color: #e74c3c;
}
.gallery .gallery-item:hover {
  transform: translateY(-10px); /* Lifts the card slightly on hover */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Stronger shadow when hovering */
}

.gallery .gallery-item img {
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease; /* Smooth image transition */
}

.gallery .gallery-item:hover img {
  transform: scale(1.2); /* Zoom effect on hover */
  filter: brightness(0.7); /* Darkens the image slightly */
}

.gallery .gallery-item .gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.7)
  ); /* Gradient overlay */
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.5s ease, opacity 0.5s ease; /* Smooth background and opacity */
  opacity: 0;
}

.gallery .gallery-item:hover .gallery-content {
  opacity: 1; /* Fades in the content on hover */
  background: linear-gradient(
    to top,
    rgba(50, 50, 200, 0.8),
    rgba(0, 0, 0, 0)
  ); /* Gradient from bottom on hover */
}

.gallery .gallery-item .gallery-content .gallery-info {
  position: relative;
  margin-bottom: -100%;
  opacity: 0;
  transform: translateY(20px); /* Starts text slightly lower */
  transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth text transition */
}

.gallery .gallery-item:hover .gallery-content .gallery-info {
  margin-bottom: 0;
  opacity: 1;
  transform: translateY(0); /* Text slides up on hover */
}

.gallery .gallery-item .gallery-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8); /* Starts smaller */
  transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth scale transition */
  opacity: 0;
}

.gallery .gallery-item:hover .gallery-plus-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3);
}

.gallery .tab-class .nav-item {
  padding: 0 0 20px 0;
}

.gallery .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

/*** Gallery End ***/

.icon {
  font-size: 35px;
  margin-right: 15px;
  color: #ff6347;
}

h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.text-danger {
  color: #e74c3c !important;
}
.text-warning {
  color: #f39c12 !important;
}
.text-success {
  color: #27ae60 !important;
}
.text-dark {
  color: #2c3e50 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* best time to visit end */

/* travel tips to visit */
.travel-section {
  position: relative;
  padding: 5rem 0;
  background-color: #ffffff;
  overflow: hidden;
  z-index: 0;
}

/* Decorative radial backgrounds */
.travel-section::before,
.travel-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  z-index: -1;
}

.travel-section::before {
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: #da6311;
  transform: translate(30%, -30%);
}

.travel-section::after {
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: #ff7e5f;
  transform: translate(-30%, 30%);
}

/* Section title styling */
.section-title {
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #da6311, #ffad77);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ff7e5f;
  margin-bottom: 3rem;
}

/* Travel card */
.travel-card {
  position: relative;
  border: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  overflow: hidden;
}

.travel-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.travel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(135deg, #da6311, #ffad77);
}

/* Card icon wrapper */
.card-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.travel-card:hover .card-icon-wrapper {
  background: linear-gradient(135deg, #da6311, #ffad77);
}

.card-icon {
  font-size: 2.5rem;
  color: #da6311;
  transition: color 0.3s ease;
}

.travel-card:hover .card-icon {
  color: #ffffff;
}

/* Card text content */
.card-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2a2a3c;
}

/* Info items inside cards */
.info-item {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 3.25rem;
  border-radius: 16px;
  background-color: #f8f9fa;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
}

.info-item:hover {
  background-color: #e9ecef;
}

.info-icon {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 1.5rem;
  color: #da6311;
}

.info-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2a2a3c;
}

.info-text {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
}

/* Decorative animated blob shapes */
.shape-1,
.shape-2,
.shape-3 {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
  animation: morph infinite ease-in-out;
}

.shape-1 {
  top: 20%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: #da6311;
  animation-duration: 8s;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  bottom: 15%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: #ff7e5f;
  animation-duration: 10s;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: #da6311;
  opacity: 0.05;
  animation-duration: 15s;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* Responsive typography */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
}

/* travel tips to visit end */

/*** faq Start ***/
/* FAQ Section */
.faq-section {
  background: url("../img/subscribe-img.webp") center center/cover no-repeat
    fixed;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 50, 0.65);
  backdrop-filter: blur(6px);
  z-index: -1;
}

.section-header .faq-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.section-header .faq-subtitle {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 30px;
}

/* Glassmorphism Accordion */
.custom-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  transform: translateY(-3px);
}

.custom-accordion .accordion-button {
  background-color: transparent;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.1);
}

.custom-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.custom-accordion .accordion-body {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  color: #f2f2f2;
}

.custom-accordion ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.custom-accordion ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
  color: #e0e0e0;
}

/*** faq End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}
.footer .footer-item a {
  line-height: 30px;
  color: var(--bs-white);
  transition: 0.5s;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}
/*** copyright end ***/

/* Slider card */
.slidecard-container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.auto-scroll {
  display: flex;
  width: max-content;
  transition: transform 0.5s linear;
}

.custom-card {
  min-width: 30%;
  margin: 10px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.custom-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 10px;
  text-align: center;
}

.gradient h5 {
  color: white;
}

.custom-card:hover {
  transform: translateY(-10px);
}

.custom-card:hover .gradient {
  display: none;
}

.custom-card:hover .hover-content {
  display: block;
}

.hover-content {
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
}

.hover-content .btn {
  margin-top: 10px;
}

/* Slider card end */

.inner-section-heading {
  font-size: 60px;
  font-weight: bolder;
  color: #13357b;
}

@media (max-width: 768px) {
}

/* faq */

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1b2a;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 3px solid #0d6efd;
  display: inline-block;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

.custom-accordion .accordion-item {
  border: none;
  border-radius: 16px;
  background: #ffffff;
  margin-bottom: 25px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-button {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 18px 22px;
  border: none;
  border-radius: 0;
  transition: background 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #6610f2, #0d6efd);
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-body {
  background: #f8f9fa;
  padding: 20px 24px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.custom-accordion .accordion-body ul {
  padding-left: 20px;
  margin-top: 10px;
}

.custom-accordion .accordion-body li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
  color: #444;
}

/* faq end*/

/* tourist place card */

/* Container Styling */
.slidecard-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
}

.auto-scroll {
  display: flex;
  justify-content: space-between;
  animation: scroll 10s linear infinite;
}

.custom-card {
  margin-right: 10px;
  transition: transform 0.3s ease-in-out;
}

.custom-card:hover {
  transform: scale(1.05);
}

/* Hover and Button Styling */
.hover-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.gradient {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  color: white;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200% - 10px));
  }
}

/* Hover animation for scrolling stop */
.slidecard-container:hover .auto-scroll {
  animation-play-state: paused;
}

/* All Place Card styling */
.all-place-card {
  display: flex;
  flex-direction: row;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.all-place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.all-place-card img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.all-place-card h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.all-place-card p {
  margin-bottom: 20px;
  color: #555 !important;
}

.btn-show-more {
  border-radius: 50px;
  padding: 8px 20px;
  transition: background-color 0.3s ease-in-out;
  align-self: start;
}

.btn-show-more:hover {
  background-color: #da6311;
  color: white;
}

/* Add media query for mobile responsiveness */
@media (max-width: 768px) {
}

/* tourist place card end */

/* Styling the social icons */
.socials-icons {
  z-index: 999;
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.socials-icons a {
  padding: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  font-size: 24px;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.socials-icons a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Making social icons appear on scroll */
.socials-icons {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.socials-icons.visible {
  opacity: 1;
}
.location-color {
  color: #da6311;
  font-weight: bolder;
}
.linked-in {
  background-color: #0a66c2;
  color: white;
}
.linked-in:hover {
  background: transparent;
  border: 2px solid #0a66c2;
  color: #0a66c2 !important;
}
.facebook {
  background-color: #1877f2;
  color: white;
}
.facebook:hover {
  background: transparent;
  border: 2px solid #1877f2;
  color: #1877f2 !important;
}
.twitter {
  background-color: #000000;
  color: white;
}
.twitter:hover {
  background: transparent;
  border: 2px solid #000000;
  color: #000000 !important;
}
.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: white;
}
.instagram:hover {
  background: transparent;
  border: 2px solid #dd2a7b;
  color: #dd2a7b !important;
}
.contact-btn {
  background-color: #da6311;
  color: white;
}
.contact-btn:hover {
  background: transparent;
  color: #da6311;
  border: 2px solid #da6311;
}

/* how to reach */
.header-section {
  background-color: #da6311;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
.header-section h1 {
  color: white !important;
}
.info-container {
  background-color: white;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-top: 20px;
}
.info-container h5 {
  color: #0056b3;
}
.custom-list-item {
  padding: 10px 20px;
  list-style-type: none; /* Remove default bullets */
  position: relative;
}
/* Custom bullet using Font Awesome icon */
.custom-list-item::before {
  content: "\f054"; /* Unicode for the Font Awesome arrow icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
  position: absolute;
  left: -25px; /* Adjust this to align */
  top: 50%;
  transform: translateY(-50%);
}
.reach-info {
  background-color: #e9ecef;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
}

/* personal place design */

.place-custom-card .section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  text-align: start;
  margin-bottom: 1.5rem;
}

/* Custom Card Styling */
.place-custom-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.place-custom-card:hover {
  transform: translateY(-5px);
}

/* Map Container */
.place-custom-card .map-container {
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.place-custom-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.custom-card-horizontal {
  display: flex;
  flex-direction: row;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.custom-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.custom-card-horizontal img.card-img-left {
  width: 120px;
  object-fit: cover;
  height: 100%;
}

.custom-card-horizontal .card-body {
  padding: 1rem;
}

.inner-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: bold;
}

.waterfall-section-title {
  position: relative;
  margin-bottom: 3rem;
  font-weight: 700;
}

.waterfall-section-title:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: 0 auto;
  width: 80px;
  height: 4px;
  background: #0d6efd;
}

.waterfall-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.waterfall-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.waterfall-img-container {
  height: 250px;
  overflow: hidden;
}

.waterfall-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.waterfall-card:hover .waterfall-img {
  transform: scale(1.1);
}

.waterfall-gallery-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 250px;
  position: relative;
}

.waterfall-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.waterfall-gallery-img:hover img {
  transform: scale(1.1);
}

.waterfall-gallery-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.waterfall-gallery-img .overlay h5 {
  color: white;
}

.waterfall-gallery-img:hover .overlay {
  opacity: 1;
  color: #fff !important;
}
.waterfall-card-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.cta-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.waterfall-btn-explore {
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.waterfall-btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.waterfall-fact-box {
  max-height: 300px !important;
  height: 100% !important;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.waterfall-fact-box:hover {
  transform: translateY(-5px);
}

.waterfall-fact-icon {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

/* Seasons section */
.waterfall-season-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.waterfall-season-card:hover {
  transform: translateY(-10px);
}

.waterfall-season-img {
  height: 200px;
}

.waterfall-season-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Wave animation */
.waterfall-wave-divider {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 100%;
  height: 100px;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg");
  background-size: 1000px 100px;
}

.wave1 {
  animation: wave 30s linear infinite;
  z-index: 1000;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}

.wave2 {
  animation: wave2 15s linear infinite;
  z-index: 999;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 10px;
}

.wave3 {
  animation: wave 30s linear infinite;
  z-index: 998;
  opacity: 0.2;
  animation-delay: -2s;
  bottom: 15px;
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1000px;
  }
}

@keyframes wave2 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}

.food-card-2 {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(230, 230, 250, 0.8)
  );
  color: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.food-card-2:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.food-card-2 h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}

.food-card-2 p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.food-card-2 p:last-child {
  margin-bottom: 0;
}

.food-container img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.8));
}
.food-container img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0px 12px 25px rgba(0, 0, 0, 1));
}
.custom-tab-nav {
  display: flex;
  justify-content: center;
  border-bottom: none;
  margin: 20px 0;
}

.custom-tab-item {
  margin: 0 10px;
}

.custom-tab-link {
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-tab-link:hover {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  transform: translateY(-3px);
}

.custom-tab-link:focus,
.custom-tab-link.active {
  background: linear-gradient(135deg, #5b67f3, #7c3aed);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.custom-tab-link:active {
  transform: scale(0.95);
}

.custom-tab-nav .custom-tab-link {
  border-radius: 30px;
}

.custom-tab-nav .custom-tab-item.show .custom-tab-link,
.custom-tab-nav .custom-tab-link.active {
  border: none;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-sec .section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  color: #5d4037;
  font-weight: 700;
}

.intro-sec.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #ff9800;
  transition: width 0.3s ease;
}

.intro-sec.section-title:hover::after {
  width: 100%;
}

.hill-card {
  max-height: 600px;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  background-color: white;
  border: none;
}

.hill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hill-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hill-card:hover img {
  transform: scale(1.05);
}

.hill-card .card-body {
  padding: 1.5rem;
}

.hill-card .card-title {
  color: #5d4037;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hill-card .card-text {
  color: #666;
  margin-bottom: 1rem;
}

.Features .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  background-color: #ff9800;
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.Features .feature-box:hover .feature-icon {
  transform: rotateY(180deg);
}

.hill-testimonials .testimonial-card {
  max-height: 350px;
  height: 100% !important;
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.hill-testimonials .testimonial-card::before {
  content: "\201C";
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 20px;
  color: #ff9800;
  opacity: 0.2;
}

.hill-testimonials .testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff9800;
}

.gallery-sec .gallery-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  height: 250px;
}

.gallery-sec .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-sec .gallery-img:hover img {
  transform: scale(1.1);
}

.gallery-sec .gallery-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(93, 64, 55, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-sec .gallery-img:hover .overlay {
  opacity: 1;
}

.hill-btn-custom {
  background-color: #ff9800;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hill-btn-custom:hover {
  background-color: #e65100;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hill-btn-outline-custom {
  border: 2px solid #ff9800;
  color: #ff9800;
  background-color: transparent;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hill-btn-outline-custom:hover {
  background-color: #ff9800;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hill-fact-counter {
  font-size: 3rem;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 0.5rem;
}

.hill-fact-title {
  font-size: 1.2rem;
  color: #5d4037;
  font-weight: 600;
}

.hill-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hill-season-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ff9800;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  z-index: 10;
}

.hill-activity-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #efebe9;
  color: #5d4037;
  border-radius: 50%;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.hill-map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
}
.site-section {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.site-section h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

.site-section p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}

.site-card {
  transition: all 0.4s ease;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f8f9fa;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.site-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.site-card .card-img-top {
  height: 240px;
  object-fit: cover;
  transition: all 0.4s ease;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.site-card:hover .card-img-top {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.site-card .card-body {
  padding: 25px;
  text-align: center;
}

.site-card .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.site-card .card-text {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.site-card .btn-primary {
  background-color: #3498db;
  border: none;
  font-size: 0.95rem;
  padding: 12px 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border-radius: 30px;
}

.site-card .btn-primary:hover {
  background-color: #2980b9;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Animation styles */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.temple-about-section .section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: #8b5a2b;
}

.temple-about-section .section-title::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #cd853f;
  bottom: -10px;
  left: 25%;
}
.temple-about-section .quote-section {
  background-color: #f5f5dc;
  border-left: 5px solid #cd853f;
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 10px 10px 0;
}
.temple-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.temple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.temple-card img {
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #f1f1f1;
}

.temple-card .card-body {
  padding: 1rem 1.2rem;
}

.temple-card .card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bs-primary);
}

.temple-location {
  font-size: 0.9rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.temple-location i {
  margin-right: 6px;
  color: #dc3545;
}

.btn-custom {
  background-color: var(--bs-primary);
  color: #fff;
  border: none;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-custom:hover {
  background-color: #004085;
}

.top-temple .temple-card {
  background-color: #fff;
  display: flex;
  min-height: 160px;
  border-left: 5px solid #da6311;
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.top-temple .temple-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.top-temple .temple-img {
  width: 160px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.top-temple .temple-info {
  flex: 1;
  padding: 15px;
}

.top-temple .temple-title {
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 6px;
}

.top-temple .temple-location {
  font-size: 0.9rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.top-temple .temple-location i {
  margin-right: 6px;
}

/* Hide additional temple cards initially */
#temples-container .hidden-temples {
  display: none;
}

/* ####################################### */
.place-container {
  max-width: 1150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 50px auto;
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.place-container .inner-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: white;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  margin-bottom: 25px;
}
.place-container p {
  font-size: 1.2rem;
  line-height: 1.8;

  text-align: justify;
}
.place-container img {
  border-radius: 12px;
  transition: transform 0.4s ease-in-out, box-shadow 0.3s;
}
.place-container img:hover {
  transform: scale(1.08);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Set uniform height for all card images and prevent distortion */
.tourist-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

/* Set consistent height for each Swiper slide card */
.tourist-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Optional: ensure the Swiper wrapper has a minimum height */
.swiper-wrapper {
  min-height: 320px;
}

/* Keep navigation button styles as provided */
.swiper-button-next,
.swiper-button-prev {
  background-color: #000000;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin-top: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
}

/* Additional spacing and alignment for slider */
.swiper {
  padding-bottom: 20px;
}

.heading-with-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.navigation-buttons {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.swiper-slide {
  height: 100%;
}

/* Bihar Section Styling */
.bihar-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(245, 247, 250, 1) 100%
  );
  overflow: hidden;
}

/* Section Title */
.bihar-section .section-title h2 {
  position: relative;
  margin-bottom: 15px;
  color: #333;
}

.bihar-section .section-title .text-primary {
  color: #da6311 !important;
}

.bihar-section .title-underline {
  height: 4px;
  width: 70px;
  background: linear-gradient(90deg, #da6311, #ffad77);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* About Content Styling */
.bihar-section .about-content {
  padding: 30px;
  background-color: #ffece0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.bihar-section .about-content:hover {
  transform: translateY(-5px);
}

.bihar-section .about-content h3 {
  color: #333;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.bihar-section .about-content h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #da6311, #ffad77);
  border-radius: 2px;
}

/* Fact Boxes */
.bihar-section .fact-box {
  background-color: rgba(194, 194, 194, 0.148);
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #da6311;
  transition: all 0.3s ease;
}

.bihar-section .fact-box:hover {
  background-color: rgba(255, 107, 53, 0.1);
  transform: translateX(5px);
}

.bihar-section .fact-box h5 {
  color: #da6311;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bihar-section .fact-box i {
  font-size: 1.2rem;
}

/* Video Styling - IMPROVED */
.bihar-section .video-wrapper {
  position: relative;
  padding: 10px; /* Reduced padding */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bihar-section .video-container {
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 5px; /* Reduced padding */
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.bihar-section .video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bihar-section .rounded-video {
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid white; /* Reduced border */
}

.bihar-section .video-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #da6311 0%, #ffad77 100%);
  opacity: 0.1;
  z-index: 0;
  top: -30px;
  right: -30px;
  animation: float 6s ease-in-out infinite;
}

.bihar-section .video-decoration:before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffad77 0%, #da6311 100%);
  bottom: -20px;
  left: -40px;
  opacity: 0.6;
}

/* Button Styling */
.bihar-section .btn-primary {
  background: linear-gradient(90deg, #da6311, #ffad77);
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.bihar-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(90deg, #da6311, #ffad77);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.bihar-section .nav-link.active {
  background-color: #da6311;
}
/* Responsive Adjustments */
@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: -1px;
    left: 0;
    background: #da6311;
    transition: 0.5s;
    z-index: -1;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    height: calc(100% + 1px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
  .bihar-section .about-content,
  .video-wrapper {
    margin-bottom: 30px;
  }

  .bihar-section .section-title h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
}

.travel {
  background-image: url("your-background-image-url.webp");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

.travel .text-center {
  margin-bottom: 50px;
}

.travel h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}

.travel .text-primary {
  color: #00aaff;
}

.travel .travel-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel .travel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.travel .list-group-item {
  background: transparent;
  border: none;
  color: #333;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.travel .list-group-item strong {
  color: #333;
  font-weight: 600;
}

.travel .list-group-item i {
  color: #00aaff;
  margin-right: 10px;
}

.travel .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.travel .col-md-6,
.travel .col-lg-4 {
  margin-bottom: 30px;
}

.tourist-attraction .carousel {
  --items: 6;
  --carousel-duration: 40s;
  --carousel-item-width: 280px;
  --carousel-item-height: 480px;
  --carousel-item-gap: 2rem;
  --clr-cta: rgb(0, 132, 209);

  position: relative;
  width: var(--carousel-width);
  height: var(--carousel-item-height);
  overflow: clip;
}

/* Media query fix */
@media (min-width: 600px) {
  .tourist-attraction .carousel {
    --carousel-duration: 30s;
  }
}

/* fade mask */
.tourist-attraction .carousel[mask] {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10% 90%,
    transparent
  );
}

/* reverse animation */
.tourist-attraction .carousel[reverse] > article {
  animation-direction: reverse;
}

/* hover pause */
.tourist-attraction .carousel:hover > article {
  animation-play-state: paused;
}

/* carousel items */
.tourist-attraction .carousel > article {
  position: absolute;
  top: 0;
  left: calc(100% + var(--carousel-item-gap));
  width: var(--carousel-item-width);
  height: var(--carousel-item-height);
  display: grid;
  grid-template-rows: 200px auto 1fr auto;
  gap: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding-block-end: 1rem;
  border-radius: 10px;
  background: white;
  color: rgb(49, 65, 88);

  /* animation */
  will-change: transform;
  animation-name: marquee;
  animation-duration: var(--carousel-duration);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: calc(
    var(--carousel-duration) / var(--items) * var(--i) * -1
  );
}

/* item index */
.tourist-attraction .carousel > article:nth-child(1) {
  --i: 0;
}
.tourist-attraction .carousel > article:nth-child(2) {
  --i: 1;
}
.tourist-attraction .carousel > article:nth-child(3) {
  --i: 2;
}
.tourist-attraction .carousel > article:nth-child(4) {
  --i: 3;
}
.tourist-attraction .carousel > article:nth-child(5) {
  --i: 4;
}
.tourist-attraction .carousel > article:nth-child(6) {
  --i: 5;
}
.tourist-attraction .carousel > article:nth-child(7) {
  --i: 6;
}
.tourist-attraction .carousel > article:nth-child(8) {
  --i: 7;
}

/* images */
.tourist-attraction .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/* spacing for article children */
.tourist-attraction .carousel > article > *:not(img) {
  padding: 0 1rem;
}

/* description div */
.tourist-attraction .carousel > article > div {
  grid-row: span 2;
  display: grid;
  font-size: 0.8rem;
}

/* heading */
.tourist-attraction .carousel > article h2 {
  font-size: 1.2rem;
  font-weight: 300;
  padding-block: 0.75rem 0.25rem;
  margin: 0;
}

/* paragraph */
.tourist-attraction .carousel > article p {
  margin: 0;
}

/* link button */
.tourist-attraction .carousel > article a {
  text-decoration: none;
  text-transform: lowercase;
  border: 1px solid var(--clr-cta);
  color: var(--clr-cta);
  border-radius: 3px;
  padding: 0.25rem 0.5rem;
  place-self: start;
  transition: 150ms ease-in-out;
}

.tourist-attraction .carousel > article a:hover,
.tourist-attraction .carousel > article a:focus-visible {
  background-color: var(--clr-cta);
  color: white;
  outline: none;
}

/* keyframes */
@keyframes marquee {
  100% {
    transform: translateX(
      calc(
        (var(--items) * (var(--carousel-item-width) + var(--carousel-item-gap))) *
          -1
      )
    );
  }
}

.shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #ececec;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}
#customers-testimonials .shadow-effect p {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
}
.testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #3190e7;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}
#customers-testimonials .item {
  text-align: center;
  padding: 20px;
  margin-bottom: 80px;
  opacity: 0.2;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 90px;
  margin: 0 auto 17px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #3190e7;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #3190e7;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

/* search */
/* ======================================================= */
/* Enhanced search button */
#searchBtn {
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
}
#searchBtn:active {
  transform: translateY(0);
}

#searchBtn i {
  margin-right: 5px;
}

/* Enhanced search modal */
.search-modal {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(249, 250, 252, 0.98) 100%
  );
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform: translateY(-20px);
}

.search-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-form {
  width: 80%;
  max-width: 800px;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  padding: 2rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-modal.show .search-form {
  transform: scale(1);
}

.search-input-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-input {
  font-size: 1.5rem;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border-radius: 50px;
  width: 100%;
  background: #f8f9fa;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
  outline: none;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05),
    0 0 0 3px rgba(13, 110, 253, 0.25);
  background: white;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.2rem;
}

.close-search {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1060;
}

.close-search:hover {
  color: #dc3545;
  transform: rotate(90deg);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.search-btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background-color: #da6311;
  color: #fff;
}

.search-btn:hover {
  border: 2px solid #da6311;
  color: #da6311;
  background: none;
}

.search-title {
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite ease-in-out;
}

/* Floating animation for search button */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 3s infinite ease-in-out;
}

/* Background pattern */
.search-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#0d6efd 1px, transparent 1px),
    radial-gradient(#0d6efd 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  opacity: 0.03;
  z-index: -1;
}

.guide-section {
  background-color: white;
}

.guide-box {
  background-color: #f5f0e6;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.guide-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #da631150;
  z-index: -1;
  transition: all 0.5s ease;
}

.guide-box:hover::before {
  height: 100%;
}

.guide-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 119, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.guide-box:hover .guide-icon {
  background-color: white;
  transform: rotateY(360deg);
}

.guide-icon i {
  font-size: 2rem;
  color: #da6311;
  transition: all 0.4s ease;
}

.guide-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #da6311;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.guide-desc {
  color: #6c757d;
  font-size: 0.95rem;
  transition: all 0.4s ease;
}

.guide-box:hover .guide-title,
.guide-box:hover .guide-desc {
  color: white;
}

/* Subscribe Section */
.subscribe-section {
  background: linear-gradient(135deg, #ff7722, #000080);
  overflow: hidden;
}

.subscribe-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.subscribe-shape {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.subscribe-content {
  position: relative;
  z-index: 1;
}

.subscribe-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.subscribe-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.subscribe-form {
  position: relative;
  max-width: 500px;
}

.subscribe-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding-right: 150px;
}

.subscribe-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 10px 30px;
  border-radius: 50px;
  background-color: #ff9933;
  color: white;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #138808;
  color: white;
}

.subscribe-img {
  position: relative;
  width: 80%;
  text-align: center;
}

.category-card {
  border: 2px solid #f4f47e;
  border-radius: 10px;
  background-color: #f5f5dc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.food-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  color: #2e4057;
}

.food-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #ff6b35;
}

.food-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  background-color: white;
}

.food-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.food-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.food-card .card-body {
  padding: 1.5rem;
}

.food-card .card-title {
  color: #2e4057;
  font-weight: 600;
}

.food-card .card-text {
  color: #6c757d;
}

.food-tag {
  background-color: #f7c59f;
  color: #2e4057;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.food-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .food-gallery-caption {
  opacity: 1;
}

.food-festival-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.food-festival-card .row {
  align-items: center;
}

.food-festival-card img {
  height: 100%;
  object-fit: cover;
}

.festival-content {
  padding: 2rem;
}

.food-testimonial-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.food-testimonial-card .quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #6c757d;
  margin-bottom: 1rem;
}

.food-testimonial-card .author {
  display: flex;
  align-items: center;
}

.food-testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.food-tour-card {
  height: 100%;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
}

.food-tour-card .card-img {
  height: 200px;
  position: relative;
}

.food-tour-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-tour-card .price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.food-tour-card .card-body {
  padding: 1.5rem;
}

.food-tour-card .tour-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #6c757d;
}

.food-tour-card .tour-feature {
  display: flex;
  align-items: center;
}

.food-tour-card .tour-feature i {
  margin-right: 0.5rem;
  color: #ff6b35;
}

.food-btn-primary {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: #fff;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.food-btn-primary:hover {
  color: #000;
  border-color: 1px solid #e55a2a !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.food-btn-outline-primary {
  color: #ff6b35;
  border-color: #ff6b35;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.food-btn-outline-primary:hover {
  background-color: #ff6b35;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff6b35;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  z-index: 1;
}

@media (max-width: 768px) {
}
@media (max-width: 768px) {
}

.garden-section-title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 700;
  color: #2e7d32;
}

.garden-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ffb74d;
}

.garden-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  border: none;
  height: 100%;
}

.garden-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.garden-card img {
  height: 250px;
  object-fit: cover;
}

.garden-card .card-body {
  padding: 1.5rem;
}

.garden-card .card-title {
  color: #2e7d32;
  font-weight: 700;
}

.garden-card .badge {
  background-color: #81c784;
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.garden-info-box {
  height: 100%;
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.garden-info-icon {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.garden-info-icon {
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem auto;
  max-width: 600px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.garden-info-icon:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.garden-info-icon-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4caf50;
  box-shadow: 0 0 0 5px #fff, 0 5px 15px rgba(0, 0, 0, 0.1);
}
.garden-quote-icon {
  font-size: 3rem;
  color: #4caf50;
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: -10px;
}
.garden-info-icon-body {
  position: relative;
  padding-left: 2.5rem;
}
.garden-info-icon-body p {
  font-style: italic;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}

.garden-gallery-img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.garden-gallery-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.garden-gallery-img:hover img {
  transform: scale(1.05);
}

.garden-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.garden-gallery-img:hover .garden-gallery-caption {
  opacity: 1;
}

.garden-btn-custom {
  background-color: #ffb74d;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.garden-btn-custom:hover {
  background-color: #ff9800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 183, 77, 0.4);
}

.garden-fact-counter {
  font-size: 3rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 0.5rem;
}

.garden-season-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ffb74d;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  z-index: 1;
}

/* Animation classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}
@media (max-width: 992px) {
  .garden-fact-counter {
    font-size: 2rem;
    font-weight: 600;
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
}

.shopping-section-title {
  position: relative;
  margin-bottom: 60px;
  font-weight: 800;
  font-size: 2rem;
  color: #636373;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.shopping-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #e67e22, #d35400);
  border-radius: 2px;
  animation: underlineSlide 1s ease-out forwards;
}

@keyframes underlineSlide {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 1;
  }
}

.mall-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background-color: white;
}

.mall-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mall-img {
  height: 250px;
  object-fit: cover;
}

.mall-content {
  padding: 25px;
}

.mall-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #636373;
}

.shopping-feature-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.shopping-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.shopping-feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #e67e22;
}

.shopping-testimonial-section {
  background-color: #636373;
  color: white;
  padding: 80px 0;
}

.shopping-testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.shopping-testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.shopping-testimonial-author {
  font-weight: 600;
}

.shopping-craft-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.shopping-craft-card {
  text-align: center;
  margin-bottom: 30px;
}

.shopping-craft-img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shopping-craft-card:hover .shopping-craft-img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.shopping-craft-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #636373;
}

.shopping-gallery-section {
  padding: 80px 0;
}

.shopping-gallery-img {
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.shopping-gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out;
}

.wildlife-section-title {
  color: #2e7d32;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.wildlife-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: #ffc107;
}

.wildlife-sanctuary-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.wildlife-sanctuary-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.wildlife-sanctuary-img {
  height: 250px;
  object-fit: cover;
}

.wildlife-sanctuary-card .card-body {
  padding: 1.5rem;
}

.wildlife-sanctuary-card .card-title {
  color: #2e7d32;
  font-weight: 600;
}

.wildlife-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 150px; /* Optional for consistent height */
}

.wildlife-item:hover {
  transform: translateX(10px);
}

.wildlife-img {
  width: 150px;
  object-fit: cover;
  flex-shrink: 0; /* Prevent it from shrinking */
  border-right: 1px solid #eee;
}

.wildlife-info {
  padding: 15px;
  overflow: hidden;
}

.wildlife-name {
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px !important;
}
.wildlife-item p {
  font-size: 14px;
}
.wildlife-conservation-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.wildlife-nearby-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
/* Ensure all gallery images have the same height */
.wildlife-gallery-img {
  width: 100%;
  height: 250px; /* Set a uniform height */
  object-fit: cover;
}

/* Modal images - same height and width */
.wildlife-modal-content img {
  width: 100%;
  height: 500px; /* Adjust as per your design */
  object-fit: cover;
}
.wildlife-sec-icon-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  line-height: 2.2rem;
  text-align: center;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
}

.wildlife-conservation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.wildlife-conservation-content {
  position: relative;
  z-index: 1;
}

.wildlife-stat-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.wildlife-stat-card:hover {
  transform: translateY(-10px);
}

.wildlife-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 10px;
}

.wildlife-stat-title {
  font-size: 1.1rem;
  color: #212121;
}

.wildlife-visitor-info-modern {
  min-height: 270px;
  height: 100%;
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.wildlife-visitor-info-modern:hover {
  transform: translateY(-5px);
  border-image: linear-gradient(135deg, #0d6efd, #00c6ff);
  border-image-slice: 1;
}

.wildlife-info-icon-modern {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #e0f0ff, #d6ebff);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}

.wildlife-visitor-info-modern:hover .wildlife-info-icon-modern {
  animation: float-icon 1s infinite alternate;
}

.wildlife-visitor-info-modern h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.wildlife-visitor-info-modern p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Icon Float Animation */
@keyframes float-icon {
  0% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-6px) scale(1.1);
  }
}

.swiper {
  padding: 20px 0;
}
.swiper-slide {
  padding: 10px;
}
.swiper-pagination-bullet-active {
  background: #0d6efd;
}

.staggered-fade-in > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.staggered-fade-in > *.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
}

.hotspring-section-title {
  position: relative;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #e67e22;
}

.hotspring-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #e67e22;
}

.hotspring-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  border: none;
}

.hotspring-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hotspring-img {
  height: 250px;
  object-fit: cover;
}

.hotspring-benefits-section {
  background-color: #f9f9f9;
}

.hotspring-benefit-icon {
  font-size: 3rem;
  color: #e67e22;
  margin-bottom: 1.5rem;
}

.hotspring-testimonial-section {
  background: linear-gradient(135deg, #e67e22, #2980b9);
  padding: 80px 0;
  color: white;
}

.hotspring-testimonial-card {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hotspring-testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.hotspring-gallery-section {
  padding: 40px 0;
}

.hotspring-gallery-img {
  border-radius: 10px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.hotspring-gallery-img:hover {
  transform: scale(1.05);
}

.hotspring-btn-custom {
  background-color: #e67e22;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hotspring-btn-custom:hover {
  background-color: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.festivals-section-title {
  color: #1d3557;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.festivals-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e63946;
}

.festivals-section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.festivals-btn-primary {
  background-color: #e63946;
  border-color: #e63946;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.festivals-btn-primary:hover {
  background-color: #d62b39;
  border-color: #d62b39;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
}

.festivals-btn-outline-light {
  border-width: 2px;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  background-color: #e63946;
  color: #fff;
}

.festivals-btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Hero Section */

/* Introduction Section */
.festivals-intro-section {
  padding: 5rem 0;
  background-color: #f1faee;
}

.festivals-intro-image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.festivals-intro-image-container img {
  transition: all 0.3s ease;
}

.festivals-intro-image-container:hover img {
  transform: scale(1.05);
}

.festivals-image-credit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
}

.festivals-section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Festivals Section */
.festivals-section {
  padding: 5rem 0;
  background-color: white;
}

.festival-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.festival-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.festival-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.festival-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.festival-card:hover .festival-image img {
  transform: scale(1.1);
}

.festival-content {
  padding: 1.5rem;
}

.festival-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1d3557;
}

.festival-timing {
  color: #e63946;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.festival-description {
  color: #666;
  font-size: 0.95rem;
}

/* Small Festival Cards */
.festival-card-small {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.festival-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.festival-image-small {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.festival-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.festival-card-small:hover .festival-image-small img {
  transform: scale(1.1);
}

.festival-content-small {
  padding: 1rem;
}

.festival-title-small {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1d3557;
}

.festival-description-small {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Calendar Section */
.festivals-calendar-section {
  background-color: #f1faee;
  padding: 5rem 0;
}

.festivals-calendar-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.festivals-calendar-item {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.festivals-calendar-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.festivals-month {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1d3557;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e63946;
  padding-bottom: 0.5rem;
}

.festivals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.festival-tag {
  background-color: #f8f9fa;
  color: #1d3557;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.festival-tag:hover {
  background-color: #e63946;
  color: white;
  border-color: #e63946;
}

/* Experience Section */
.festivals-experience-section {
  padding: 5rem 0;
  background-color: white;
}

.festivals-experience-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.festivals-experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.festivals-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #f1faee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.festivals-icon-wrapper i {
  font-size: 2rem;
  color: #e63946;
  transition: all 0.3s ease;
}

.festivals-experience-card:hover .festivals-icon-wrapper {
  background-color: #e63946;
}

.festivals-experience-card:hover .festivals-icon-wrapper i {
  color: white;
}

.festivals-experience-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1d3557;
}

.festivals-experience-card p {
  color: #666;
  font-size: 0.95rem;
}
/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .festivals-hero-section {
    height: 70vh;
  }

  .festivals-hero-section h1 {
    font-size: 2.8rem;
  }

  .festivals-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
}
.top-cities-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/bihar-city.avif") no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.top-cities-hero-content {
  z-index: 1;
  max-width: 800px;
}

.top-cities-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.top-cities-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.top-cities-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.top-cities-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: #ff6b35;
}

.top-cities-city-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  border: none;
  height: 100%;
}

.top-cities-city-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.top-cities-city-img {
  height: 250px;
  object-fit: cover;
}

.top-cities-city-card .card-title {
  font-weight: 700;
  color: #1a1a1a;
}

.top-cities-city-card .badge {
  background-color: #f1a208;
  margin-right: 5px;
  margin-bottom: 5px;
  font-weight: 500;
}

.top-cities-attraction-icon {
  color: #ff6b35;
  margin-right: 8px;
}

.top-cities-testimonial-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.top-cities-testimonial-card {
  height: 100%;
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
}

.top-cities-testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.top-cities-quote-icon {
  font-size: 2rem;
  color: #ff6b35;
  opacity: 0.3;
}

.top-cities-best-time {
  background-color: #f1f8ff;
  border-radius: 8px;
  padding: 10px 15px;
  margin-top: 15px;
  border-left: 4px solid #2e86ab;
}

.top-cities-attraction-list {
  list-style: none;
  padding-left: 0;
}

.top-cities-attraction-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.top-cities-attraction-list li i {
  margin-top: 4px;
}

.top-cities-cultural-note {
  font-style: italic;
  color: #6c757d;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed #dee2e6;
}
@media (max-width: 768px) {
}

.rivers-section-title {
  color: #0077b6;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.rivers-section-title::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #48cae4;
  bottom: -10px;
  left: 25%;
}

.rivers-intro-section {
  padding: 5rem 0;
  background-color: white;
}

.river-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.river-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.river-card img {
  height: 250px;
  object-fit: cover;
}

.river-card .card-title {
  color: #0077b6;
  font-weight: 600;
}

.river-card .card-body {
  padding: 1.5rem;
}

.rivers-fact-box {
  background-color: #caf0f8;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.rivers-fact-box h5 {
  color: #023e8a;
  font-weight: 600;
  margin-bottom: 10px;
}

.rivers-fact-box ul {
  padding-left: 20px;
}

.rivers-fact-box li {
  margin-bottom: 8px;
}

.rivers-panorama-section {
  height: 50vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/bihar-river.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 4rem 0;
}

.rivers-panorama-content {
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
}

.rivers-rivers-quote-section {
  background-color: #caf0f8;
  padding: 5rem 0;
  text-align: center;
}

.rivers-quote {
  font-size: 1.8rem;
  font-style: italic;
  color: #023e8a;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.rivers-quote::before,
.rivers-quote::after {
  content: '"';
  font-size: 4rem;
  color: #48cae4;
  position: absolute;
  opacity: 0.5;
}

.rivers-quote::before {
  top: -20px;
  left: -20px;
}

.rivers-quote::after {
  bottom: -40px;
  right: -20px;
}

.rivers-quote-author {
  margin-top: 2rem;
  font-weight: 600;
  color: #0077b6;
}

.rivers-gallery-section {
  padding: 5rem 0;
}

.rivers-gallery-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.rivers-gallery-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rivers-gallery-img:hover img {
  transform: scale(1.05);
}

.rivers-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rivers-gallery-img:hover .rivers-gallery-caption {
  opacity: 1;
}

@media (max-width: 768px) {
}

.caves-section-title {
  color: #4e342e;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center; /* Remove this if left-align is preferred */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.caves-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #ff9800, #ff5722);
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.caves-historical-significance-section {
  overflow-y: hidden;
}
.cave-card {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  background-color: white;
}

.cave-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cave-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.cave-info {
  padding: 20px;
}

.cave-title {
  color: #5d4037;
  font-weight: 700;
  margin-bottom: 10px;
}

.cave-location {
  color: #8d6e63;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.cave-location i {
  margin-right: 5px;
}

.cave-description {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.caves-btn-explore {
  background-color: #da6311;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.caves-btn-explore:hover {
  background: none;
  color: #da6311;
  border: 2px solid #da6311;
  transform: scale(1.05);
}

.caves-fact-section {
  background-color: #5d4037;
  color: white;
  padding: 60px 0;
}

.caves-fact-item {
  text-align: center;
  padding: 20px;
}

.caves-fact-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff9800;
}

.caves-fact-text {
  font-size: 1.1rem;
}

.caves-gallery-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.caves-gallery-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.caves-gallery-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.caves-gallery-img:hover img {
  transform: scale(1.1);
}

.caves-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.caves-gallery-img:hover .caves-gallery-overlay {
  opacity: 1;
}

.caves-testimonial-section {
  padding: 80px 0;
  background-color: white;
}

.caves-testimonial-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}

.caves-testimonial-card::before {
  content: "\201C";
  font-size: 80px;
  position: absolute;
  top: -20px;
  left: 20px;
  color: rgba(93, 64, 55, 0.1);
}

.caves-testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.caves-testimonial-author {
  display: flex;
  align-items: center;
}

.caves-testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.caves-caves-author-info h5 {
  margin-bottom: 0;
  color: #5d4037;
}

.caves-author-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #8d6e63;
}
@media (max-width: 768px) {
}

.museums-section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: #1d3557;
}

.museums-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background-color: #e63946;
}

.museums-section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.museums-btn-primary {
  background-color: #e63946;
  border-color: #e63946;
}

.museums-btn-primary:hover {
  background-color: #d62b39;
  border-color: #d62b39;
}

.museums-btn-outline-primary {
  color: #e63946;
  border-color: #e63946;
}

.museums-btn-outline-primary:hover {
  background-color: #e63946;
  border-color: #e63946;
}

/* Hero Section */

/* Introduction Section */
.museums-intro-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.museums-intro-image-container:hover {
  transform: scale(1.02);
}

/* Featured Museums */
.museum-card {
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease;
}

.museum-card:hover {
  transform: translateY(-10px);
}

.museum-image-container {
  overflow: hidden;
  border-radius: 10px;
}

.museum-image {
  transition: transform 0.5s ease;
}

.museum-image:hover {
  transform: scale(1.05);
}

.museum-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1d3557;
}

.museum-description {
  color: #555;
  margin-bottom: 1.5rem;
}

.museum-info p {
  margin-bottom: 0.5rem;
}

.museums-view-details-btn {
  transition: all 0.3s ease;
}

.museums-view-details-btn:hover {
  background-color: #e63946;
  color: white;
}

/* Virtual Tour Section */
.museums-virtual-tour {
  background-color: #1d3557;
}

.museums-virtual-tour-image {
  overflow: hidden;
  border-radius: 10px;
}

.museums-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.museums-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Exhibitions */
.museums-exhibition-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.museums-exhibition-card:hover {
  transform: translateY(-10px);
}

.museums-exhibition-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.museums-exhibition-card:hover .card-img-top {
  transform: scale(1.05);
}

.museums-venue {
  font-weight: 600;
  color: #e63946;
}

/* Museum Map */
.museums-map-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.museums-map-museums-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
}

.museums-museum-marker {
  width: 30px;
  height: 30px;
  background-color: #e63946;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.museums-museum-item {
  transition: transform 0.3s ease;
}

.museums-museum-item:hover {
  transform: translateX(10px);
}

/* Testimonials */
.museums-testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.museums-testimonial-card:hover {
  transform: translateY(-10px);
}

.museums-testimonial-content {
  font-style: italic;
  position: relative;
}

.museums-testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -20px;
  left: -15px;
}

.museums-testimonial-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .museums-hero-section {
    height: 70vh;
  }

  .museums-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
}

@media (max-width: 576px) {
  .museums-hero-section {
    height: 50vh;
  }

  .museums-section-title {
    font-size: 1.5rem;
  }
}
.district-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://source.unsplash.com/1600x900/?india,rural,landscape");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  text-align: center;
  position: relative;
}

.district-hero-text {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.district-section-title {
  position: relative;
  margin-bottom: 40px;
  font-weight: 700;
  color: #ff6b35;
}

.district-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: #f1a208;
}

.district-section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.district-attraction-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.district-attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.district-attraction-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.district-card-body {
  padding: 20px;
}

.district-fact-item {
  height: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.district-fact-item:hover {
  transform: scale(1.03);
}

.district-fact-icon {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 15px;
}

.district-gallery-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.district-gallery-img img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.district-gallery-img:hover img {
  transform: scale(1.1);
}

.district-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.district-gallery-img:hover .district-gallery-caption {
  opacity: 1;
}

.district-cuisine-section {
  background-color: #fff5e6;
  padding: 60px 0;
}

.district-cuisine-item {
  text-align: center;
  margin-bottom: 30px;
}

.district-cuisine-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.district-travel-info {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #e3e3e3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.district-shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.district-travel-icon {
  font-size: 2.5rem;
  color: #da6311;
  background: #da631120;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  transition: background 0.3s;
}

.district-travel-info:hover .district-travel-icon {
  background: #da6311;
  color: #fff;
}

.district-travel-info h4 {
  font-weight: 600;
  font-size: 1.25rem;
  color: #333;
}

.district-travel-info p,
.district-travel-info li {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.travel-list {
  padding-left: 1rem;
  list-style: disc;
  margin-top: 10px;
}

.district-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8px 12px;
  font-size: 0.875rem;
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #343a40;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  height: 70px; /* Set a fixed height for vertical centering */
}

.district-link:hover {
  background-color: #ff6b35;
  color: #fff;
  transform: translateX(3px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.district-link h6,
.district-link p {
  margin: 0;
  line-height: 1.2;
}

.district-link i {
  margin-left: 6px;
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.district-link:hover i {
  transform: translateX(2px);
}

.district-btn-custom {
  background-color: #f1a208;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.district-btn-custom:hover {
  background-color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* Mega Dropdown Common Styles */
.dropdown-mega .dropdown-menu {
  left: 0 !important;
  right: 0 !important;
  width: 100vw;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.14);
  background: #fff;
  display: none;
  border: none;
  top: 100%;
  position: absolute;
  z-index: 1001;
}
@media (min-width: 992px) {
  .dropdown-mega:hover .dropdown-menu,
  .dropdown-mega:focus-within .dropdown-menu {
    display: flex !important;
  }
  .dropdown-mega .dropdown-menu {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (max-width: 991.98px) {
  .mega-mobile-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 0.7rem;
    padding: 0 0.3rem 0.6rem 0.3rem;
  }
  .mega-mobile-card {
    background: #f4faf4;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(32, 117, 5, 0.06);
    border: 1.2px solid #e2f4e5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.55rem 0.6rem 0.55rem 0.5rem;
    font-size: 0.98rem;
    font-weight: 500;
    color: #187726;
    text-decoration: none !important;
    transition: box-shadow 0.16s, border 0.13s, background 0.13s;
    min-width: 0;
  }
  .mega-mobile-card:active,
  .mega-mobile-card:focus,
  .mega-mobile-card:hover {
    background: #eaffed;
    color: #165e15;
    box-shadow: 0 3px 18px rgba(46, 204, 113, 0.1);
    border: 1.5px solid #24ac5e;
  }
  .mega-mobile-icon {
    font-size: 1.25rem;
    margin-right: 0.48rem;
    min-width: 20px;
  }
}
/* Hide desktop menu in mobile */
@media (max-width: 991.98px) {
  .d-lg-flex {
    display: none !important;
  }
}
.dropdown-mega .dropdown-menu {
  left: 0 !important;
  right: 0 !important;
  width: 100vw;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.14);
  background: #fff;
  display: none;
  border: none;
  top: 100%;
  position: absolute;
  z-index: 1001;
}
@media (min-width: 992px) {
  .dropdown-mega:hover .dropdown-menu,
  .dropdown-mega:focus-within .dropdown-menu {
    display: flex !important;
  }
  .dropdown-mega .dropdown-menu {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (max-width: 991.98px) {
  .dropdown-mega .dropdown-menu {
    display: block;
    width: 95vw;
    padding: 1rem;
    flex-direction: column;
    position: static !important;
    box-shadow: none;
    margin: 0;
    border-radius: 0.5rem;
  }
  .dropdown-mega .col-lg-3 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.mega-menu-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #256029;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.mega-menu-link {
  color: #222;
  display: block;
  padding: 0.12rem 0;
  text-decoration: none;
  font-size: 1rem;
}
.mega-menu-link:hover {
  color: #207505;
  text-decoration: underline;
}
/* -------- Hero Section -------- */
.individual-hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background-attachment: fixed;
  text-align: center;
}
.individual-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.individual-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  animation: fadeInDown 1s ease-out forwards;
  opacity: 0;
}
.individual-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.individual-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.individual-hero .btn-cta {
  background: #e67e22;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  transition: background 0.3s;
}
.individual-hero .btn-cta:hover {
  background: #cf6c1a;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Custom Styles for Overview Section */
#overview {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
#overview .overview-card {
  border-left: 5px solid #e67e22; /* Accent color */
  border-radius: 0.5rem;
}
#overview .overview-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#overview .overview-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#overview .overview-text p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
}
#overview .overview-text a {
  position: relative;
  color: #e67e22 !important;
  text-decoration: none;
  font-weight: 500;
  text-decoration: none;
}
#overview .overview-text a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #e67e22;
  transition: all var(--transition-speed) ease-out;
  transform: translateX(-50%);
}
#overview .overview-text a:hover {
  color: #e67e22;
}
#overview .overview-text a:hover::before {
  width: 100%;
}
#history {
  background: #ffffff;
}
#history .history-card {
  border-left: 5px solid #da6311; /* Accent color */
  border-radius: 0.5rem;
  background: #f9f9f9;
}
#history .history-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#history .history-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#history .history-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #4a4a4a;
}
#history .history-list li strong {
  color: #e67e22;
}
#history .history-img {
  border: 3px solid #e67e22;
  border-radius: 0.5rem;
}
#architecture {
  background: #ffffff;
}
#architecture .architecture-card {
  border-left: 5px solid #e67e22; /* Accent color */
  border-radius: 0.5rem;
  background: #f9f9f9;
}
#architecture .architecture-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#architecture .architecture-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#architecture .architecture-text p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 1rem;
}
#architecture .architecture-list {
  list-style: none;
  padding-left: 0;
}
#architecture .architecture-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #4a4a4a;
}
#architecture .architecture-list li::before {
  content: "✔"; /* Checkmark symbol */
  position: absolute;
  left: 0;
  top: 0;
  color: #e67e22;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}
#significance {
  background: #f9f9f9;
}
/* Background image wrapper */
#significance .bg-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}
#significance .bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#significance .bg-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#significance .bg-wrapper .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 0 1rem;
}
#significance .overlay-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 4px solid #e67e22;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
#significance .overlay-content p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #f0f0f0;
  line-height: 1.5;
}

/* Highlight cards below the header */
#significance .highlight-card {
  border-top: 4px solid #e67e22;
  border-radius: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
#significance .highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}
#significance .highlight-card .card-body {
  padding: 1.5rem;
}
#significance .highlight-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}
#significance .highlight-card .card-text {
  font-size: 0.95rem;
  color: #4a4a4a;
  margin-bottom: 1rem;
  line-height: 1.5;
}
#significance .highlight-card .link-primary {
  font-weight: 500;
  color: #e67e22;
  text-decoration: none;
}
#significance .highlight-card .link-primary:hover {
  text-decoration: underline;
}
#visit-info {
  background: #fafafa;
}

#visit-info .visiting-sec-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#visit-info .visiting-sec-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#visit-info .info-card {
  background: #ffffff;
  border-top: 4px solid #e67e22; /* Accent color */
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 2rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

#visit-info .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

#visit-info .info-card i {
  font-size: 2.5rem;
  color: #e67e22; /* Accent for icons */
  margin-bottom: 1rem;
}

#visit-info .info-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

#visit-info .info-card p {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 0;
}
#how-to-reach {
  background: #f9f9f9;
}
#how-to-reach .reach-card {
  background: #ffffff;
  border-left: 5px solid #e67e22;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  padding: 2rem 1.5rem;
}
#how-to-reach .reach-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
#how-to-reach .reach-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#how-to-reach .reach-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#how-to-reach .reach-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
}
#how-to-reach .reach-list li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.25rem;
  color: #e67e22;
}
#how-to-reach .reach-list li strong {
  color: #2c3e50;
}
#nearby {
  background: #f9f9f9;
}
#nearby .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: start;
  position: relative;
  padding-bottom: 0.5rem;
}
#nearby .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#nearby .attraction-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #ffffff;
}
#nearby .attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}
#nearby .attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 5px solid #e67e22;
}
#nearby .attraction-card .card-body {
  padding: 1.25rem;
  text-align: center;
}
#nearby .attraction-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}
#nearby .attraction-card .card-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
#nearby .attraction-card .card-text {
  font-size: 0.95rem;
  color: #4a4a4a;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
#nearby .attraction-card .btn-visit {
  background: #e67e22;
  color: #ffffff;
  font-weight: 500;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  transition: background 0.3s;
  text-decoration: none;
}
#nearby .attraction-card .btn-visit:hover {
  background: #d65b1e;
  text-decoration: none;
  color: #ffffff;
}
#accommodation {
  background: #f5f5f5;
}
#accommodation .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: start;
  position: relative;
  padding-bottom: 0.5rem;
}
#accommodation .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e67e22;
  position: absolute;
  bottom: 0px;
  left: 0;
  border-radius: 2px;
}

#accommodation .accommodation-card {
  background: #ffffff;
  border: none;
  border-top: 4px solid #e67e22;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
#accommodation .accommodation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

#accommodation .card-header-custom {
  background: #e67e22;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
#accommodation .card-body-custom {
  padding: 1.5rem;
  text-align: center;
}
#accommodation .card-body-custom p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.5;
  margin-bottom: 0;
}
#accommodation .card-icon {
  font-size: 2rem;
  color: #ffffff;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2c3e50;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}
#accommodation .card-icon i {
  font-size: 25px;
}
@media (min-width: 768px) {
}
#accommodation .card-wrapper {
  position: relative;
  padding-top: 1.5rem; /* space for icon */
}
#travel-tips {
  background: #f9f9f9;
}
#travel-tips .tips-card {
  background: #ffffff;
  border-left: 5px solid #e67e22; /* Accent color */
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
#travel-tips .tips-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#travel-tips .tips-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#travel-tips .tips-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#travel-tips .tips-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
}
#travel-tips .tips-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #e67e22;
  line-height: 1;
}
#faqs {
  background: #f9f9f9;
}
#faqs .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: start;
  position: relative;
  padding-bottom: 0.5rem;
}
#faqs .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#faqs .accordion-card {
  border-left: 5px solid #e67e22;
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
#faqs .accordion-item {
  border: none;
}
#faqs .accordion-button {
  background: #ffffff;
  color: #2c3e50;
  font-weight: 500;
  position: relative;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ececec;
  transition: background 0.3s, color 0.3s;
}
#faqs .accordion-button:not(.collapsed) {
  background: #e67e22;
  color: #ffffff;
}
#faqs .accordion-button::after {
  filter: invert(25%);
}
#faqs .accordion-body {
  background: #fdfdfd;
  color: #4a4a4a;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ececec;
}
#gallery {
  background: #fafafa;
}
#gallery .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: start;
  position: relative;
  padding-bottom: 0.5rem;
}
#gallery .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#gallery .gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}
#gallery .gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
  filter: grayscale(20%);
}
#gallery .gallery-img-wrapper:hover .gallery-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
#gallery .gallery-img-wrapper:hover .gallery-overlay {
  opacity: 1;
}
#gallery .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}
#gallery .gallery-img-wrapper:hover .gallery-caption {
  opacity: 1;
}
#testimonials {
  background: #f5f5f5;
}
#testimonials .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: start;
  position: relative;
  padding-bottom: 0.5rem;
}
#testimonials .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#testimonials .testimonial-card {
  background: #ffffff;
  border-top: 4px solid #e67e22;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 4rem 1.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
#testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}
#testimonials .testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
}
#testimonials .testimonial-text {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.5;
  margin-top: 1.5rem; /* Reduced margin since padding-top increased */
  margin-bottom: 1rem;
}
#testimonials .testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
}

/* ---- YOU MIGHT ALSO LIKE SECTION ---- */
.btr-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: start;
  position: relative;
  padding-bottom: 0.5rem;
}
.btr-section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
.btr-card-link {
  text-decoration: none;
}
.btr-card {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(44, 62, 80, 0.06);
  background: #fff;
  transition: transform 0.18s, box-shadow 0.2s;
  position: relative;
}
.btr-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 28px 0 rgba(44, 62, 80, 0.16);
}
.btr-card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.btr-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.24s;
}
.btr-card:hover .btr-card-img {
  scale: 1.08;
}
.btr-card-body {
  padding: 1.1rem;
  text-align: center;
}
.btr-card-title {
  color: #e67e22;
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

/* ---- EXPLORE MORE SECTION ---- */
.btr-explore-more {
  background: linear-gradient(135deg, #fbeee6 0%, #f6f8f9 100%);
}
.btr-explore-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 18px 0 rgba(44, 62, 80, 0.06);
  padding: 1.7rem 1.1rem 1.3rem 1.1rem;
  transition: box-shadow 0.22s, transform 0.18s;
  min-height: 100%;
}
.btr-explore-card:hover {
  box-shadow: 0 6px 26px 0 rgba(44, 62, 80, 0.17);
  transform: translateY(-4px) scale(1.025);
}
.btr-explore-heading {
  color: #2c3e50;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.17rem;
  display: flex;
  align-items: center;
}
.btr-explore-img {
  width: 52px;
  height: 38px;
  object-fit: cover;
  border-radius: 0.6rem;
  margin-right: 13px;
  box-shadow: 0 1px 8px 0 rgba(44, 62, 80, 0.06);
  flex-shrink: 0;
  transition: box-shadow 0.18s;
}
.btr-explore-list:hover .btr-explore-img {
  box-shadow: 0 3px 12px 0 rgba(230, 126, 34, 0.12);
}
.btr-explore-link {
  font-weight: 600;
  color: #e67e22;
  font-size: 1.01rem;
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.16s;
  padding-bottom: 1px;
  text-decoration: none;
}
.btr-explore-link::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #e67e22;
  transition: width 0.23s;
  margin-top: 2px;
  border-radius: 2px;
}
.btr-explore-link:hover,
.btr-explore-list:hover .btr-explore-link {
  color: #af6406;
}
.btr-explore-link:hover::after,
.btr-explore-list:hover .btr-explore-link::after {
  width: 75%;
}
@media (max-width: 767px) {
  .btr-card-img-wrap {
    height: 130px;
  }
  .btr-explore-card {
    padding: 1rem 0.5rem;
  }
  .btr-explore-img {
    width: 40px;
    height: 30px;
  }
}
.btr-breadcrumbs-wrap {
  background: #f8f6f3;
  border-radius: 1.1rem;
  box-shadow: 0 2px 10px 0 rgba(230, 126, 34, 0.06);
}
.btr-breadcrumbs {
  --bs-breadcrumb-divider-color: #e67e22;
  --bs-breadcrumb-divider: "›";
  padding: 0.85rem 1rem;
  background: transparent;
  border-radius: 1.1rem;
}
.btr-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  color: #e67e22;
  font-weight: bold;
}
.btr-breadcrumb-link {
  color: #e67e22;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.16s;
}
.btr-breadcrumb-link:hover {
  color: #c55400;
  text-decoration: underline;
}
.btr-breadcrumbs .fa-home {
  margin-right: 5px;
  font-size: 1.1em;
  position: relative;
  top: -1px;
}
.btr-breadcrumb-active {
  color: #af6406 !important;
  font-weight: 700;
  letter-spacing: 0.2px;
}
@media (max-width: 576px) {
  .btr-breadcrumbs {
    padding: 0.7rem 0.5rem;
    font-size: 0.99rem;
  }
}
/* Headings with accent color */
.architecture-title,
.activities-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: start;
  position: relative;
  padding-bottom: 0.5rem;
}
.architecture-title::after,
.activities-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
/* Card border accent on left */
.architecture-card,
.highlight-card {
  border-left: 5px solid #e67e22;
  border-radius: 18px;
  background: #fff;
}

/* List styling */
.architecture-list,
.activities-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.architecture-list li,
.activities-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.architecture-list li::before,
.activities-list li::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.55rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

/* Note text */
.activities-list .note {
  color: #e67e22;
  font-size: 0.96em;
  margin-left: 2px;
  font-weight: 500;
}

/* Responsive card shadow (for Bootstrap) */
.architecture-card,
.highlight-card {
  box-shadow: 0 4px 22px 0 rgba(230, 126, 34, 0.07),
    0 1.5px 7px 0 rgba(44, 62, 80, 0.05);
}

.wildlife-accent {
  border-left: 5px solid #e67e22 !important;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
.wildlife-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
.wildlife-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
.wildlife-list li {
  font-size: 1.07rem;
  color: #444;
  margin-bottom: 1.05rem;
  line-height: 1.7;
}
.wildlife-img {
  box-shadow: 0 3px 24px #e67e2233;
  border-radius: 0.8rem;
}

#safari .info-card {
  background: #fff8ef;
  border-left: 3px solid #e67e22;
  border-radius: 0.65rem;
  box-shadow: 0 1px 10px #f3bf9180;
  padding: 1.4rem 1rem;
  transition: box-shadow 0.18s;
}
#safari .info-card:hover {
  box-shadow: 0 4px 32px #e67e2211;
}
#safari h5 {
  color: #e67e22;
  font-weight: 600;
}

#conservation p {
  font-size: 1.08rem;
  color: #464646;
  margin-bottom: 0;
}

/* 5. Top Attractions */
#attractions {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
#attractions .attractions-card {
  border-left: 5px solid #e67e22;
  border-radius: 0.5rem;
}
#attractions .attractions-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#attractions .attractions-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#attractions .attraction-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}
#attractions .card-title {
  color: #e67e22;
  font-weight: 600;
}
#attractions .btn-outline-warning {
  border-color: #e67e22;
  color: #e67e22;
  font-weight: 500;
  transition: 0.2s;
}
#attractions .btn-outline-warning:hover {
  background: #e67e22;
  color: #fff;
}

/* 6. Culture & Festivals */
#culture {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
#culture .culture-card {
  border-left: 5px solid #e67e22;
  border-radius: 0.5rem;
}
#culture .culture-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#culture .culture-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#culture ul li strong {
  color: #e67e22;
}
#culture p {
  color: #444;
}

/* 7. Food & Local Cuisine */
#food {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
#food .food-card {
  border-left: 5px solid #e67e22;
  border-radius: 0.5rem;
}
#food .food-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#food .food-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#food .food-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}
#food h5 {
  color: #e67e22;
  font-size: 1.15rem;
  font-weight: 600;
}
#food p {
  color: #444;
}

/* 8. Shopping Destinations */
#shopping {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
#shopping .shopping-card {
  border-left: 5px solid #e67e22;
  border-radius: 0.5rem;
}
#shopping .shopping-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#shopping .shopping-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#shopping ul li strong {
  color: #e67e22;
}
#shopping ul li {
  color: #444;
  margin-bottom: 8px;
}

/* 9. Parks & Gardens */
#parks {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
#parks .park-card {
  border-left: 5px solid #e67e22;
  border-radius: 0.5rem;
}
#parks .parks-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#parks .parks-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#parks .park-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}
#parks h5 {
  color: #e67e22;
  font-size: 1.15rem;
  font-weight: 600;
}
#parks p {
  color: #444;
}
/* Activities & Ecology Section Cards */
#activities,
#nature {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
#activities .section-title,
#nature .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
#activities .section-title::after,
#nature .section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
#activities .info-card,
#nature .nature-card {
  border-left: 5px solid #e67e22;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 12px rgba(44, 62, 80, 0.06);
  transition: box-shadow 0.25s;
  margin-bottom: 1.5rem;
}
#activities .info-card:hover,
#nature .nature-card:hover {
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.12);
}
#activities .activity-icon i {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 0.6rem;
}
#activities .info-card h5,
#nature .nature-card h2 {
  color: #2c3e50;
  font-weight: 600;
}
#activities .info-card p,
#nature .nature-list li {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.6;
}
#nature .nature-list li strong {
  color: #e67e22;
  font-weight: 600;
}
#nature .nature-img {
  border-radius: 0.7rem;
  box-shadow: 0 1px 12px rgba(44, 62, 80, 0.08);
}
/* Accent Title Like Overview */
.section-accent-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}
.section-accent-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e67e22;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
.galleries-card,
.events-card,
.education-card {
  border-left: 5px solid #e67e22;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
/* (Optional) List, links, text color for sub-items — can extend as needed */
.events-list li strong,
.education-list li strong {
  color: #e67e22;
}
/* ===== Hero Section ===== */
.btr-hero-vision {
  background: linear-gradient(rgba(5, 48, 84, 0.6), rgba(5, 48, 84, 0.6));
  padding: 140px 0;
  text-align: center;
  color: #fff;
}
.btr-hero-vision h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.btr-hero-vision p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Section Base Style ===== */
.btr-section-identity,
.btr-section-mission,
.btr-section-values {
  padding: 80px 0;
}
.bg-light-alt {
  background-color: #f8f9fa;
}
.section-heading {
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  color: #004080;
  position: relative;
}
.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 10px auto 0;
  background: #ffc107;
  border-radius: 2px;
}

/* ===== Image Styling ===== */
.custom-image-style {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Mission Box ===== */
.mission-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border-left: 6px solid #007bff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.mission-box p {
  font-size: 1rem;
  color: #444;
}
.mission-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.mission-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #28a745;
  margin-right: 10px;
}
.mission-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #555;
  display: flex;
  align-items: center;
}

/* ===== Cards for Vision & Values ===== */
.value-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  padding: 25px;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.vision-icon {
  font-size: 1.8rem;
  color: #007bff;
  margin-right: 12px;
}
.value-points {
  list-style: none;
  padding-left: 0;
}
.value-points li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #555;
}
.value-points li i {
  color: #28a745;
  margin-right: 8px;
}
/* ======= Hero Section ======= */
.btr-contact-hero {
  position: relative;
  background: url("https://source.unsplash.com/random/1600x900/?contact,travel")
    center/cover no-repeat;
  padding: 140px 0;
  color: #fff;
  text-align: center;
}
.btr-contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.btr-contact-hero .container {
  position: relative;
  z-index: 2;
}
.btr-contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.btr-contact-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ======= Contact Section ======= */
.btr-contact-wrapper {
  padding: 80px 0;
  background-color: #f9f9f9;
}
.btr-section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  color: #0056b3;
  position: relative;
}
.btr-section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ffc107;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* ======= Contact Info Cards ======= */
.btr-contact-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.btr-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.btr-contact-card .card-body {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
}
.btr-contact-card .card-body i {
  font-size: 1.75rem;
  color: #0056b3;
  margin-right: 1rem;
  margin-top: 0.25rem;
}
.btr-contact-card h5 {
  margin-bottom: 0.5rem;
}
.btr-contact-card p,
.btr-contact-card a {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}
.btr-contact-card a:hover {
  color: #0056b3;
}

/* ======= Contact Form ======= */
.btr-contact-form {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.btr-contact-form .form-label {
  font-weight: 500;
  color: #555;
}
.btr-contact-form input,
.btr-contact-form textarea {
  border: 1px solid #ced4da;
  border-radius: 4px;
  transition: border-color 0.2s ease-in-out;
}
.btr-contact-form input:focus,
.btr-contact-form textarea:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.2);
  outline: none;
}
.btr-contact-form button {
  border-radius: 4px;
  padding: 0.6rem 2rem;
  font-weight: 500;
  transition: background-color 0.3s;
}
.btr-contact-form button:hover {
  background-color: #004494;
}
/* ====== tour-video-hero ====== */
.tour-video-hero {
  position: relative;
  background: url("https://source.unsplash.com/1600x500/?bihar,landscape")
    center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tour-video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.6);
}
.tour-video-hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  border-radius: 1rem;
}
.tour-video-hero-content h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tour-video-hero-content p {
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.25rem);
}

/* ====== Search & Filters ====== */
.tour-search-filters {
  margin-top: -3rem;
  z-index: 2;
}
.tour-search-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.tour-search-input {
  border-radius: 2rem;
  font-size: clamp(0.8rem, 1.5vw + 0.2rem, 0.9rem);
}
.tour-filter-btn {
  border: 1.2px solid #4f46e5;
  border-radius: 1.2rem;
  color: #4f46e5;
  background: transparent;
  margin: 0.15rem 0.2rem;
  font-size: 0.89rem;
  padding: 0.28rem 0.82rem;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.19s, color 0.19s, box-shadow 0.14s, border 0.18s;
  z-index: 1;
  min-width: 78px;
}

.tour-filter-btn.active,
.tour-filter-btn:hover {
  background: linear-gradient(90deg, #4f46e5 80%, #3b82f6 100%);
  color: #fff;
  border-color: #3b82f6;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.07);
}

.tour-filter-btn:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 1px;
}

.tour-filter-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115%;
  height: 115%;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 100%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0.26;
  transition: transform 0.3s, opacity 0.35s;
  pointer-events: none;
}

.tour-filter-btn:active::after {
  transform: translate(-50%, -50%) scale(1.13);
  opacity: 0;
  transition: 0.13s;
}

/* ====== Gallery ====== */
.tour-video-gallery {
  padding: 4rem 0 2rem;
  position: relative;
}
.tour-video-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/cubes.webp");
  opacity: 0.05;
  pointer-events: none;
}

/* Card Wrapper */
.tour-video-card {
  border: none;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  perspective: 800px;
}
.tour-video-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* 3D Inner Tilt */
.tour-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  border-radius: 1.5rem;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
.tour-video-card .inner-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1.5rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tour-video-card:hover .inner-card {
  transform: rotateY(6deg) rotateX(3deg) scale(1.03);
}

.tour-video-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.tour-badge-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #4f46e5;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.tour-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.tour-video-card:hover .tour-play-overlay {
  opacity: 1;
}
.tour-play-overlay i {
  font-size: 2.5rem;
  color: #ffffff;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Title & Meta */
.tour-video-title {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
  text-align: center;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  -webkit-background-clip: text;
  color: transparent;
}
.tour-video-meta {
  font-size: clamp(0.8rem, 1.5vw + 0.2rem, 0.9rem);
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* No Results */
#tour-no-results {
  padding: 3rem 0;
  color: #6b7280;
  text-align: center;
}

/* ====== Modal ====== */
.tour-modal-content {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  .tour-video-hero-content {
    padding: 1.5rem;
  }
  .tour-search-filters {
    margin-top: -2rem;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
  .tour-filter-btn {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
  .tour-video-meta {
    font-size: 0.8rem;
  }
}
/* ======= Modern Glassmorphism 404 Unique Styles ======= */
.btr404-glass-bg {
  min-height: 100vh;
  background: linear-gradient(
    120deg,
    #6366f1 0%,
    /* Indigo */ #6ee7b7 40%,
    /* Light teal green */ #60a5fa 75%,
    /* Blue */ #7f54d9 100% /* Soft violet */
  );

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.btr404-glass-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: none;
}
.btr404-glass-bubbles::before,
.btr404-glass-bubbles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.19;
  animation: btr404-bubble-move 7s infinite alternate;
}
.btr404-glass-bubbles::before {
  width: 280px;
  height: 280px;
  top: 8%;
  left: 18%;
  background: #818cf8;
}
.btr404-glass-bubbles::after {
  width: 200px;
  height: 200px;
  bottom: 7%;
  right: 14%;
  background: #60a5fa;
  animation-delay: 1.8s;
}
@keyframes btr404-bubble-move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-32px);
  }
}

.btr404-glass-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 410px;
  margin: 3rem auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2.2rem;
  padding: 3.2rem 2rem 2.4rem 2rem;
  box-shadow: 0 8px 38px 0 #6366f140, 0 2px 6px 0 #33415510;
  backdrop-filter: blur(16px) saturate(170%);
  border: 1.6px solid #e0e7ff70;
  text-align: center;
  overflow: hidden;
  animation: btr404-fadein 1.1s cubic-bezier(0.36, 0.66, 0.04, 1) backwards;
}
@keyframes btr404-fadein {
  0% {
    opacity: 0;
    transform: scale(0.97) translateY(36px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.btr404-glass-emoji {
  font-size: 4.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 14px #6366f13b);
  animation: btr404-bounce-emoji 1.8s infinite cubic-bezier(0.32, 0, 0.67, 0.98);
}
@keyframes btr404-bounce-emoji {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-16px);
  }
}

.btr404-glass-title {
  font-size: 4.6rem;
  color: #6366f1;
  font-weight: 800;
  margin-bottom: 0.25rem;
  letter-spacing: 6px;
}
.btr404-glass-sub {
  font-size: 1.42rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.8rem;
}
.btr404-glass-text {
  color: #64748b;
  font-size: 1.09rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.btr404-glass-btn {
  display: inline-block;
  border-radius: 1.5rem;
  background: linear-gradient(90deg, #6366f1 0%, #60a5fa 100%);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.06rem;
  padding: 0.7rem 2.1rem;
  box-shadow: 0 2px 14px #6366f14d;
  transition: background 0.2s, transform 0.18s, box-shadow 0.22s;
}
.btr404-glass-btn:hover {
  background: linear-gradient(100deg, #4338ca 40%, #6366f1 100%);
  box-shadow: 0 8px 22px #6366f15d;
  transform: scale(1.04) translateY(-2px);
}
@media (max-width: 700px) {
  .btr404-glass-card {
    padding: 2.2rem 0.5rem 2.1rem 0.5rem;
    max-width: 95vw;
  }
  .btr404-glass-title {
    font-size: 2.9rem;
  }
  .btr404-glass-emoji {
    font-size: 3rem;
  }
}

/* ========== BASE STYLES ========== */
.history-section-box,
.personality-box,
.custom-center-history-highlight {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Section titles */
.history-section-box .section-title,
.personality-box .section-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #1a237e;
  font-weight: bold;
}

/* Emojis inside section titles */
.history-section-box .emoji,
.personality-box .emoji {
  font-size: 1.8rem;
  margin-right: 0.4rem;
}

/* Paragraphs and List Items Scoped */
.history-section-box p,
.history-section-box li,
.personality-box p,
.personality-box li {
  font-size: 1.05rem;
  line-height: 1.7;
}
.bihar-modern-hero-wrapper {
  background: radial-gradient(circle at top left, #e0f7fa, #ede7f6);
  padding: 6rem 1rem 5rem;
  position: relative;
  overflow: hidden;
  clip-path: ellipse(150% 100% at 50% 0%);
}

.bihar-modern-hero-content {
  background: #ffffffee;
  border-radius: 2rem;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
}

.bihar-modern-hero-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.bihar-modern-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 1rem;
}

.bihar-modern-hero-subtitle {
  font-size: 1.25rem;
  color: #424242;
  font-weight: 500;
}

@media (max-width: 768px) {
}

/* Text highlight style */
.history-highlight {
  color: #3949ab;
  font-weight: 600;
}

/* Center Highlight Box */
.custom-center-history-highlight {
  background: linear-gradient(135deg, #f0f4ff, #e6ecff);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-center-history-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.custom-center-history-highlight .display-5 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
}

.custom-center-history-highlight .lead {
  font-size: 1.2rem;
  color: #374151;
  margin-top: 0.75rem;
}

/* Images in personality section */
.personality-box .personality-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablets and below (≤768px) */
@media (max-width: 768px) {
}

/* Small devices / phones (≤576px) */
@media (max-width: 576px) {
  .history-section-box .section-title,
  .personality-box .section-title {
    font-size: 1.4rem;
  }

  .history-section-box .emoji,
  .personality-box .emoji {
    font-size: 1.2rem;
  }

  .custom-center-history-highlight .display-5 {
    font-size: 1.7rem;
  }

  .custom-center-history-highlight .lead {
    font-size: 1rem;
  }

  .history-section-bg-hero .hero-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .history-section-box p,
  .history-section-box li,
  .personality-box p,
  .personality-box li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .personality-box .personality-img {
    margin-bottom: 0.8rem;
    border-radius: 0.5rem;
  }
}
.bihar-tourism-highlight {
  background: linear-gradient(135deg, #f3f4f6, #e0f2f1);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.bihar-tourism-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.tourism-heading-box .section-title {
  color: #1e3a8a;
  line-height: 1.3;
}

.tourism-heading-box .lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.125rem;
}
.bihar-conclusion-wrapper {
  background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
}

.bihar-conclusion-box {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.bihar-conclusion-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.bihar-conclusion-title {
  color: #1a237e;
}

.bihar-conclusion-subtitle {
  color: #37474f;
}

.bihar-conclusion-card h5 {
  color: #0d47a1;
}

.bihar-conclusion-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bihar-conclusion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.bihar-conclusion-quote {
  background: #fffbea;
  border-left: 5px solid #ffc107;
}

.bihar-conclusion-quote blockquote {
  margin: 0;
}

@media (max-width: 767px) {
  .bihar-conclusion-title {
    font-size: 1.8rem;
  }
}
.btn-lang {
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.btn-english {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  border: none;
}

.btn-english:hover {
  background: linear-gradient(to right, #0056b3, #00a0e0);
}

.btn-hindi {
  background: linear-gradient(to right, #28a745, #a8e063);
  color: white;
  border: none;
}

.btn-hindi:active {
  background: linear-gradient(to right, #1e7e34, #8fd45c);
}
