:root {
  --primary-orange: #ffa300;
  --secondary-amber: #ffb833;
  --bg-light: #f8f9fa;
  --text-dark: #2d3436;
  --white: #ffffff;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
}
/* Ensure the logo fits the navbar height perfectly */
.navbar-logo {
  height: 75px; /* Adjust based on your preference */
  width: auto;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

/* Optional: Slight hover effect for the logo */
.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.25rem;
}

/* ================= TOPBAR ================= */
.topbar {
  background: linear-gradient(135deg, #2a241f, #0f0e0d);
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}

.topbar-left span {
  margin-right: 18px;
}

.topbar-left i {
  color: #ffa300;
  margin-right: 6px;
}

.topbar-right a {
  color: #fff;
  margin-left: 12px;
  font-size: 14px;
}

.topbar-right a:hover {
  color: #ffa300;
}

/* ================= NAVBAR ================= */
.main-navbar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo-circle {
  background: #ffa300;
  color: #000;
  font-weight: 800;
  border-radius: 50%;
  padding: 12px 14px;
  font-size: 18px;
}

/* Menu */
.navbar-nav .nav-link {
  font-weight: 600;
  color: #333;
  padding: 22px 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffa300;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 18px;
}

.dropdown-item:hover {
  background: #ffa300;
  color: #000;
}

/* CTA Button */
.btn-book {
  background: #ffa300;
  color: #000;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 30px;
}

.btn-book:hover {
  background: #ffb833;
}

/* Mobile */
@media (max-width: 991px) {
  .nav-cta {
    display: none;
  }
}

.slider-sec {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
  background-color: #000;
}

.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* About page Section */
.about-section {
  padding: 80px 0;
  background-color: white;
}

.img-wrapper {
  position: relative;
  padding: 15px;
}

.img-wrapper img {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  background: var(--secondary-amber);
  border-radius: 20px;
  z-index: 0;
  opacity: 0.2;
}

.badge-custom {
  background-color: var(--bg-light);
  color: var(--primary-orange);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--primary-orange);
  display: inline-block;
  margin-bottom: 15px;
}

.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.highlight-text {
  color: var(--primary-orange);
}

.feature-box {
  padding: 20px;
  border-radius: 15px;
  background: var(--bg-light);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-bottom: 4px solid var(--primary-orange);
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.btn-vacanza {
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--secondary-amber)
  );
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  transition: transform 0.2s;
}

.btn-vacanza:hover {
  transform: scale(1.05);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 163, 0, 0.4);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.stat-card h2 {
  color: var(--text-dark);
  margin-bottom: 0;
  display: inline-block;
}
.stat-card span {
  color: var(--text-dark);
}
.stats-section {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.common-hero {
  position: relative;
  /* Replace URL with a high-res travel image */
  background: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax Effect */
  padding: 120px 0 80px 0;
  min-height: 350px;
  display: flex;
  align-items: center;
}

/* Gradient Overlay using your brand colors */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 163, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.common-hero .container {
  z-index: 2;
  position: relative;
}

.common-hero h1 {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

/* Custom Breadcrumb Styling */
.custom-breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 25px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  display: inline-flex;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "•";
  color: var(--secondary-amber);
  font-weight: bold;
}

.custom-breadcrumb a {
  color: var(--secondary-amber);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.custom-breadcrumb a:hover {
  color: white;
}

/* Himachal tours section */
.common-hero {
  position: relative;
  /* Replace URL with a high-res travel image */
  background: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax Effect */
  padding: 120px 0 80px 0;
  min-height: 350px;
  display: flex;
  align-items: center;
}

/* Gradient Overlay using your brand colors */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 163, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.common-hero .container {
  z-index: 2;
  position: relative;
}

.common-hero h1 {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

/* Custom Breadcrumb Styling */
.custom-breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 25px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  display: inline-flex;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "•";
  color: var(--secondary-amber);
  font-weight: bold;
}

.custom-breadcrumb a {
  color: var(--secondary-amber);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.custom-breadcrumb a:hover {
  color: white;
}

/* Tour Section */
.pkg-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 163, 0, 0.15) !important;
}
.text-primary-orange {
  color: #ffa300;
}
.btn-vacanza {
  background: #ffa300;
  color: white;
  border-radius: 5px;
  padding: 8px 20px;
  font-weight: 600;
}
.btn-vacanza:hover {
  background: #ffb833;
  color: white;
}

/* booking section */
.booking-section {
  background: #000;
  padding: 40px 0;
}

.booking-box {
  background: #fff;
  padding: 25px 30px 30px;
  border-radius: 12px;
  border-bottom: 4px solid #ffa300;
}

.booking-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

.form-control,
.form-select {
  height: 46px;
  font-size: 14px;
}

.booking-btn {
  height: 46px;
  font-weight: 700;
  color: #fff;
  background: #ffa300;
  border: none;
}

.booking-btn:hover {
  background: #e69500;
}

.indian-tours-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-header h2 {
  font-size: 36px;
}

.section-header p {
  color: #666;
  margin-top: 10px;
}

.tour-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  height: 260px;
}

.tour-card.large-card {
  height: 320px;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.75));
}

.tour-card:hover img {
  transform: scale(1.08);
}

.tour-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

.tour-overlay h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tour-overlay span {
  background: #ffa300;
  color: #000;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}

.pilgrimage-section {
  padding: 80px 0;
  background: #fff;
}

.pilgrimage-banner {
  position: relative;
  background: url("images/uttarakhand-bg.jpg") center/cover no-repeat;
  min-height: 420px;
  border-radius: 22px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  padding: 40px 80px;
  overflow: hidden;
}

/* Dark Overlay */
.pilgrimage-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.25));
}

/* Circular Image */
.pilgrimage-badge {
  position: relative;
  z-index: 2;
  margin-right: 50px;
}

.pilgrimage-badge img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.7);
}

/* Content */
.pilgrimage-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
}

.pill-tag {
  display: inline-block;
  background: #ffa300;
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pilgrimage-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pilgrimage-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 25px;
}

/* tour section */
.chardham-section {
  padding: 80px 0;
  background: #f9fafc;
}

.section-title h2 {
  font-size: 34px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: #ff6f4f;
  display: inline-block;
  margin-top: 10px;
}

.tour-package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.tour-package-card:hover {
  transform: translateY(-8px);
}

.card-img {
  position: relative;
  height: 220px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duration {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.card-body {
  padding: 25px;
}

.card-body h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.card-body h4 {
  font-weight: 800;
  color: #ff6f4f;
}

.card-body h4 span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

.visit {
  font-size: 14px;
  margin: 12px 0;
}

.package-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.package-list li {
  font-size: 14px;
  margin-bottom: 6px;
  padding-left: 22px;
  position: relative;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
}

.book-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff7a5c, #ffb36b);
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
}

.book-btn:hover {
  opacity: 0.9;
}

/* Highlight Middle Card */
.tour-package-card.highlight {
  border-top: 5px solid #ff6f4f;
}

/* why choose us */
.why-choose-section {
  padding: 90px 0;
  background: #ffffff;
}

.choose-card {
  background: #f9fafc;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.choose-card:hover {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff7a5c, #ffb36b);
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.choose-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.trust-box h3 {
  font-weight: 800;
  color: #ff6f4f;
  font-size: 32px;
}

.trust-box p {
  margin-top: 6px;
  font-size: 14px;
  color: #555;
}

/* Customer Testimonials */
/* ===============================
   STATIC TESTIMONIALS SECTION
================================ */

.testimonials-static {
  padding: 90px 0;
  background: #f9fafc;
}

.ts-card-static {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
}

.ts-card-static::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 22px;
  font-size: 72px;
  color: #ffb36b;
  font-family: serif;
}

.ts-card-static p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.ts-card-static h5 {
  font-weight: 700;
  margin-bottom: 2px;
}

.ts-card-static span {
  font-size: 13px;
  color: #888;
}

.ts-stars-static {
  margin-top: 8px;
  color: #ffc107;
  font-size: 14px;
}

/* faq */
/* ===============================
   FAQ SECTION
================================ */

.faq-section {
  padding: 90px 0;
  background: #ffffff;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: none;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-item .accordion-button {
  font-weight: 600;
  font-size: 15px;
  padding: 18px 22px;
  background: #f9fafc;
  color: #333;
}

.faq-item .accordion-button:not(.collapsed) {
  background: #ff6f4f;
  color: #fff;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-body {
  background: #ffffff;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  padding: 20px 22px;
}

/* call to action */
/* ===============================
   FINAL CTA SECTION
================================ */

.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff7a5c, #ffb36b);
}

.cta-box {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: #ff6f4f;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
}

.cta-btn-primary:hover {
  background: #ff5c3a;
  color: #fff;
}

.cta-btn-outline {
  border: 2px solid #ff6f4f;
  color: #ff6f4f;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  background: transparent;
}

.cta-btn-outline:hover {
  background: #ff6f4f;
  color: #fff;
}

.cta-btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
}

.cta-btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
}

/* footer section */
/* ===============================
   FOOTER SECTION
================================ */

.site-footer {
  background: radial-gradient(circle at top, #2a241f, #0f0e0d);
  color: #ccc;
  padding: 80px 0 30px;
}

.site-footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
}

.site-footer h6::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #ffa300;
  display: block;
  margin-top: 6px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
}

.footer-brand .logo {
  background: #ffa300;
  color: #000;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.site-footer ul li a:hover {
  color: #ffa300;
}

.footer-social a {
  display: inline-block;
  text-decoration: none;
  width: 36px;
  height: 36px;
  background: #ffa300;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 8px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.newsletter-form button {
  background: #ffa300;
  border: none;
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 0 6px 6px 0;
}

.trust-badges {
  margin-top: 18px;
  font-size: 13px;
  color: #9f9f9f;
}

.trust-badges span {
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

/* section divider */
.divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-icon span {
  flex: 1;
  height: 2px;
  background: #ddd;
}

.divider-icon i {
  font-size: 20px;
  color: #ff7e5f;
}

.hotel-card {
  border-radius: 30px;
  overflow: hidden;
  border: none;
  transition: all 0.4s ease;
}

/* Image Handling (Exact 600x400 display) */
.hotel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hotel-card:hover .hotel-img {
  transform: scale(1.05);
}

/* Floating Elements */
.price-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-tag small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #636e72;
}

.price-tag strong {
  font-size: 1.4rem;
  color: var(--text-dark);
}

.exclusive-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--primary-orange);
  color: white;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* Right Side Details */
.hotel-title {
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.location-text {
  color: #b2bec3;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.description {
  color: #636e72;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Rating Pill */
.rating-badge {
  background: #fff9eb;
  padding: 5px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-badge .score {
  background: var(--primary-orange);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: bold;
}

.rating-badge .label {
  font-weight: 600;
  color: var(--primary-orange);
  font-size: 0.85rem;
}

/* Amenity Grid */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.amenity-pill {
  background: #f1f2f6;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  color: #2d3436;
  font-weight: 600;
}

.amenity-pill i {
  color: var(--primary-orange);
  margin-right: 6px;
}

/* Buttons */
.btn-reserve {
  background: var(--primary-orange);
  border: none;
  color: white;
  padding: 14px;
  border-radius: 15px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-reserve:hover {
  background: var(--secondary-amber);
  box-shadow: 0 8px 15px rgba(255, 163, 0, 0.3);
}

.btn-icon-outline {
  border: 2px solid #eee;
  background: transparent;
  border-radius: 15px;
  width: 55px;
  color: #636e72;
}

.btn-icon-outline:hover {
  background: #ffeaa7;
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.text-orange {
  color: var(--primary-orange);
}

/* Hotel List  */
/* About Section Styles */
.chardham-about {
  background: linear-gradient(to right, #ffffff, #fffdf9);
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.sub-text {
  font-size: 1.1rem;
  color: #636e72;
  max-width: 700px;
  line-height: 1.8;
}

/* Exclusivity Card */
.exclusive-card {
  background: white;
  border-radius: 20px;
  padding: 5px;
  display: inline-block;
  border: 1px solid #eee;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.exclusive-inner {
  padding: 25px 35px;
  border: 2px dashed var(--secondary-amber);
  border-radius: 16px;
}

.exclusive-inner i {
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.exclusive-inner h5 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-top: 10px;
}

.package-link {
  display: block;
  margin-top: 5px;
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1rem;
}

/* Breadcrumb Styling */
.breadcrumb-item {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.text-orange {
  color: var(--primary-orange) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-heading {
    font-size: 1.8rem;
  }
  .exclusive-card {
    margin-top: 20px;
    width: 100%;
  }
}
/* responsive media Quiery */

@media (max-width: 768px) {
  .cta-box h2 {
    font-size: 26px;
  }

  .cta-box p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .faq-item .accordion-button {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ts-card-static {
    padding: 26px 22px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 26px;
  }

  .choose-card {
    padding: 28px 20px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 26px;
  }

  .card-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .pilgrimage-banner {
    padding: 30px;
    margin: 0 15px;
    flex-direction: column;
    text-align: center;
  }

  .pilgrimage-badge {
    margin: 0 0 25px;
  }

  .pilgrimage-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 65vh;
  }
}
