/* ══════════════════════════════════════════════════
   DHIRAJ TRAVEL — style.css
   Palette:
     --blue       #003580   (deep navy)
     --blue-mid   #0050b3
     --blue-dk    #001a3d
     --yellow     #FFC107
     --yellow-dk  #e6a800
   ══════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────── */
:root {
  --blue: #003580;
  --blue-mid: #0050b3;
  --blue-dk: #001a3d;
  --yellow: #FFC107;
  --ydk: #e6a800;
  --white: #ffffff;
  --bg-light: #f5f7fc;
  --bg-alt: #edf1f9;
  --txt-dk: #0f1626;
  --txt-mid: #3d4760;
  --txt-lt: #7a87a0;
  --border: #dde4f2;
  --sh-sm: 0 2px 14px rgba(0, 53, 128, .07);
  --sh-md: 0 6px 30px rgba(0, 53, 128, .13);
  --sh-lg: 0 14px 52px rgba(0, 53, 128, .18);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: .32s;
}

/* ── Reset ────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--txt-dk);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Helpers ──────────────────────────────────── */
.sec-pad {
  padding: 88px 0;
}

.bg-alt {
  background: var(--bg-alt);
}

.txt-yellow {
  color: var(--yellow);
}

/* Section labels */
.sec-label {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 193, 7, .1);
  border: 1px solid rgba(255, 193, 7, .35);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* Section headings */
.sec-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--blue-dk);
  letter-spacing: .04em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.sec-desc {
  color: var(--txt-lt);
  font-size: .98rem;
  max-width: 540px;
  margin: 0 auto;
}

.sec-body {
  color: var(--txt-mid);
  font-size: .96rem;
  margin-bottom: 12px;
}

/* ── Keyframes ────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(44px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

/* Dash loop — translate -50% so 2 sets loop seamlessly */
@keyframes dashLoop {
  to {
    transform: translateX(-50%);
  }
}

/* Scenery loop — same trick */
@keyframes sceneryLoop {
  to {
    transform: translateX(-50%);
  }
}

/* ── Scroll-reveal placeholders ───────────────── */
[data-anim] {
  opacity: 0;
}

[data-anim].revealed {
  animation: fadeUp .65s var(--ease) forwards;
}

[data-anim="left"].revealed {
  animation-name: fadeLeft;
}

[data-anim="right"].revealed {
  animation-name: fadeRight;
}

/* ══════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════ */
#topbar {
  background: var(--blue-dk);
  border-bottom: 2px solid var(--yellow);
  padding: 6px 0;
  font-size: .82rem;
  position: relative;
  z-index: 1010;
}

.tb-link {
  color: rgba(255, 255, 255, .78);
  transition: color var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tb-link:hover {
  color: var(--yellow);
}

.tb-social {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  transition: all var(--dur) var(--ease);
}

.tb-social:hover {
  background: var(--yellow);
  color: var(--blue-dk);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
#siteHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
}

#mainNav {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0, 53, 128, .1);
  padding: 4px 0;
  transition: padding .35s, box-shadow .35s;
}

#mainNav.shrunk {
  padding: 5px 0;
  box-shadow: 0 4px 30px rgba(0, 53, 128, .18);
}

/* Navbar Logo */
.brand-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* Optional: Responsive size */
@media (max-width: 768px) {
  .brand-logo {
    height: 75px;
  }
}

/* Brand */
.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.3rem;
  box-shadow: 0 3px 10px rgba(0, 53, 128, .28);
  flex-shrink: 0;
}

.brand-icon-lg {
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.55rem;
  letter-spacing: .07em;
  color: var(--blue);
  display: block;
}

.brand-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ydk);
  display: block;
}

/* Nav links */
.navbar-nav .nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  color: var(--txt-dk) !important;
  padding: 6px 13px !important;
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--dur);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: left var(--dur) var(--ease), right var(--dur) var(--ease);
}

.navbar-nav .nav-link:hover {
  color: var(--blue) !important;
}

.navbar-nav .nav-link:hover::after {
  left: 13px;
  right: 13px;
}

/* Book button */
.btn-book {
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  color: var(--blue-dk) !important;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  padding: 8px 22px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 3px 14px rgba(255, 193, 7, .35);
  transition: all var(--dur) var(--ease);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 193, 7, .5);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 3px;
  transition: all .3s;
}

.nav-toggle:focus {
  outline: none;
}


@media (min-width: 992px) {

  /* Desktop styles */
  .nav-toggle {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#home {
  position: relative;
}

.hero-slide {
  height: 100vh;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(0, 26, 61, .90) 0%,
      rgba(0, 53, 128, .62) 50%,
      rgba(0, 0, 0, .2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.hero-inner {
  max-width: 660px;
  animation: fadeLeft .9s var(--ease) both;
}

.hero-pill {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 193, 7, .14);
  border: 1px solid rgba(255, 193, 7, .45);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hero-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}

.hero-sub {
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
  font-weight: 300;
  margin-top: 10px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-hero-y {
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  color: var(--blue-dk);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  padding: 12px 34px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 193, 7, .4);
  transition: all var(--dur) var(--ease);
}

.btn-hero-y:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 193, 7, .55);
  color: var(--blue-dk);
}

.btn-hero-w {
  background: transparent;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  padding: 12px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .55);
  transition: all var(--dur) var(--ease);
}

.btn-hero-w:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Carousel controls */
.hero-ctrl {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, .13);
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: all var(--dur);
}

.carousel-control-prev:hover .hero-ctrl,
.carousel-control-next:hover .hero-ctrl {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--blue-dk);
}

/* Dots */
.hero-dots {
  bottom: 22px;
}

.hero-dots button {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .45) !important;
  border: none !important;
  transition: all var(--dur) !important;
}

.hero-dots button.active {
  background: var(--yellow) !important;
  width: 26px !important;
  border-radius: 6px !important;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 21px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-dot {
  width: 4px;
  height: 7px;
  background: var(--yellow);
  border-radius: 2px;
  animation: floatY 1.6s ease infinite;
}

/* ══════════════════════════════════════════════
   INFO STRIP
══════════════════════════════════════════════ */
.info-strip {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue));
  border-top: 3px solid var(--yellow);
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px 10px;
  color: rgba(255, 255, 255, .85);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: background var(--dur);
}

.info-item:last-child {
  border-right: none;
}

.info-item i {
  color: var(--yellow);
  font-size: 1.1rem;
}

.info-item:hover {
  background: rgba(255, 255, 255, .07);
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-img-block {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: visible;
}

.about-main-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  transition: transform .4s var(--ease);
}

.about-main-img:hover {
  transform: scale(1.015);
}

.about-stamp {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  color: var(--blue-dk);
  padding: 18px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  text-align: center;
  min-width: 110px;
}

.stamp-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.6rem;
  line-height: 1;
  display: block;
}

.stamp-txt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  display: block;
}

.about-float-card {
  position: absolute;
  top: 20px;
  left: -18px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--txt-dk);
  animation: floatY 3s ease infinite;
}

.text-yellow {
  color: var(--yellow);
}

.feat-box {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-size: .87rem;
  font-weight: 500;
  box-shadow: var(--sh-sm);
  transition: all var(--dur) var(--ease);
}

.feat-box i {
  color: var(--yellow);
  font-size: 1.05rem;
}

.feat-box:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.feat-box:hover i {
  color: var(--yellow);
}

/* ── Shared buttons ────────────────────────── */
.btn-primary-c {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  padding: 11px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 18px rgba(0, 53, 128, .26);
  transition: all var(--dur) var(--ease);
}

.btn-primary-c:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 53, 128, .4);
  color: var(--white);
}

.btn-outline-c {
  background: transparent;
  color: var(--blue);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  transition: all var(--dur) var(--ease);
}

.btn-outline-c:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  padding: 11px 24px;
  border-radius: 50px;
  border: none;
  transition: all var(--dur) var(--ease);
}

.btn-wa:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

/* ══════════════════════════════════════════════
   FLEET CARDS
══════════════════════════════════════════════ */
.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: rgba(255, 193, 7, .5);
}

.fleet-card-star {
  border: 2px solid var(--yellow);
  box-shadow: 0 6px 32px rgba(255, 193, 7, .18);
}

.fleet-card-star:hover {
  box-shadow: 0 14px 48px rgba(255, 193, 7, .32);
}

.fleet-img-wrap {
  position: relative;
  overflow: hidden;
}

.fleet-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.07);
}

.fleet-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--blue);
  color: var(--white);
}

.fleet-badge-gold {
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  color: var(--blue-dk);
}

.fleet-badge-green {
  background: #2e7d32;
}

.fleet-badge-blue {
  background: var(--blue-mid);
}

.fleet-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-dk);
  margin-bottom: 8px;
}

.fleet-desc {
  font-size: .88rem;
  color: var(--txt-mid);
  margin-bottom: 14px;
}

.fleet-feats {
  list-style: none;
  padding: 0;
  flex: 1;
}

.fleet-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--txt-mid);
  padding: 3px 0;
}

.fleet-feats i {
  color: var(--yellow);
  font-size: .9rem;
}

.btn-fleet {
  align-self: flex-start;
  margin-top: 14px;
  background: var(--bg-light);
  color: var(--blue);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  transition: all var(--dur) var(--ease);
}

.btn-fleet:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateX(4px);
}

.btn-fleet-star {
  align-self: flex-start;
  margin-top: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  color: var(--blue-dk);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 3px 14px rgba(255, 193, 7, .35);
  transition: all var(--dur) var(--ease);
}

.btn-fleet-star:hover {
  transform: translateX(4px);
  color: var(--blue-dk);
  box-shadow: 0 6px 22px rgba(255, 193, 7, .5);
}

/* ══════════════════════════════════════════════
   COUNTER SECTION
══════════════════════════════════════════════ */
.counter-sec {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h26v26H0V0zm26 26h26v26H26V26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cnt-box {
  position: relative;
  z-index: 1;
}

.cnt-icon {
  font-size: 2.2rem;
  color: var(--yellow);
  margin-bottom: 10px;
  display: block;
}

.cnt-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.4rem;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.cnt-suf {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4rem;
  color: var(--yellow);
  margin-left: 2px;
}

.cnt-lbl {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .05em;
  margin-top: 6px;
}

/* ══════════════════════════════════════════════
   TOURS
══════════════════════════════════════════════ */
.tour-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--sh-sm);
  height: 100%;
  transition: all var(--dur) var(--ease);
}

.tour-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: var(--yellow);
}

.tour-card-active {
  background: linear-gradient(145deg, var(--blue-dk), var(--blue));
  border-color: transparent;
}

.tour-card-active .tour-name,
.tour-card-active .tour-desc {
  color: var(--white);
}

.tour-card-active .tour-icon {
  background: rgba(255, 193, 7, .2);
  color: var(--yellow);
}

.tour-card-active:hover {
  border-color: var(--yellow);
}

.tour-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-dk);
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(255, 193, 7, .3);
  transition: transform var(--dur) var(--ease);
}

.tour-card:hover .tour-icon {
  transform: rotate(5deg) scale(1.1);
}

.tour-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--blue-dk);
  margin-bottom: 9px;
}

.tour-desc {
  font-size: .87rem;
  color: var(--txt-mid);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  box-shadow: var(--sh-sm);
  height: 100%;
  transition: all var(--dur) var(--ease);
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue);
}

.why-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--blue-dk);
  margin-bottom: 16px;
  box-shadow: 0 3px 14px rgba(255, 193, 7, .28);
  transition: all var(--dur) var(--ease);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--yellow);
  box-shadow: 0 5px 20px rgba(0, 53, 128, .28);
  transform: rotate(4deg) scale(1.08);
}

.why-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dk);
  margin-bottom: 9px;
}

.why-body {
  font-size: .87rem;
  color: var(--txt-mid);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--sh-sm);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gal-item:hover img {
  transform: scale(1.1);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 61, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--yellow);
  opacity: 0;
  transition: opacity var(--dur);
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-cta {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.gal-cta p {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-align: center;
  margin: 0;
}

.btn-gal-cta {
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  color: var(--blue-dk);
  border: none;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 22px;
  transition: all var(--dur) var(--ease);
}

.btn-gal-cta:hover {
  transform: scale(1.06);
  color: var(--blue-dk);
}

/* ══════════════════════════════════════════════
   ROAD ANIMATION SECTION
   ─────────────────────────────────────────────
   Heights (desktop):
     road-scene        : 300px total
     ├─ sky (top)      : 100px  (background of road-scene)
     ├─ road-surface   : 200px  (bottom)
     ├─ scenery-belt   : anchored at junction (bottom 196px)
     └─ car-lane       : anchored at road top (bottom 200px)
══════════════════════════════════════════════ */
.road-section-wrap {
  overflow: hidden;
}

.road-scene {
  position: relative;
  width: 100%;
  height: 300px;
  /* Sky gradient as background */
  background: linear-gradient(180deg, #c8dff5 0%, #a8c8e8 100%);
  overflow: hidden;
}

/* ── Road surface ── */
.road-surface {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #282836;
  border-top: 6px solid #3e3e52;
  z-index: 1;
  overflow: hidden;
}

/* kerb at very bottom */
.road-surface::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: #383850;
}

/* ── Centre dashes ── */
/*
   dash-track width = 200%  (two identical sets side by side)
   animation moves -50%     (one set width = 100% of viewport)
   This guarantees dashes are ALWAYS visible — zero gap.
*/
.dash-track {
  position: absolute;
  top: 50%;
  /* vertical centre of road */
  transform: translateY(-50%);
  left: 0;
  width: 200%;
  /* ← two sets */
  display: flex;
  align-items: center;
  gap: 55px;
  z-index: 2;
  animation: dashLoop 1.35s linear infinite;
}

.dash {
  display: inline-block;
  width: 88px;
  height: 7px;
  background: var(--yellow);
  border-radius: 4px;
  flex-shrink: 0;
  opacity: .9;
}

/* ── Scenery belt ── */
/*
   Same 2-set / -50% trick.
   Positioned so icons sit with their feet exactly on the road top edge.
*/
.scenery-belt {
  position: absolute;
  bottom: 196px;
  /* = road height (200) - border (6) + small overlap (2) */
  left: 0;
  width: 200%;
  height: 88px;
  z-index: 3;
  animation: sceneryLoop 9s linear infinite;
}

/* Each item positioned with CSS custom property --x */
.scenery-belt span {
  position: absolute;
  bottom: 0;
  left: var(--x);
  line-height: 1;
}

.sc-tree {
  font-size: 2.6rem;
  color: #2e7d32;
  opacity: .85;
}

.sc-build {
  font-size: 3.4rem;
  color: #5c6f82;
  opacity: .8;
}

/* ── Car lane ── */
.car-lane {
  position: absolute;
  bottom: 200px;
  /* = road-surface height — car sits ON top of road */
  left: 0;
  width: 100%;
  height: 0;
  /* zero-height anchor */
  z-index: 4;
}

/* car-rig hangs below anchor so wheels rest on tarmac */
.car-rig {
  position: absolute;
  bottom: -12px;
  /* shift down until wheels visually touch road */
  left: -240px;
  /* start offscreen left — JS moves it */
  width: 220px;
}

.car-svg {
  width: 100%;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .35));
}

/* ── Milestones ── */
.milestone {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: all var(--dur) var(--ease);
}

.milestone:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--yellow);
}

.milestone-mid {
  border-color: var(--yellow);
  background: linear-gradient(145deg, #fffbee, #fff8d6);
}

.ms-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--yellow);
  margin: 0 auto 14px;
}

.milestone h5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dk);
  margin-bottom: 7px;
}

.milestone p {
  font-size: .87rem;
  color: var(--txt-mid);
}

/* ── Responsive road ── */
@media (max-width: 767.98px) {
  .road-scene {
    height: 230px;
  }

  .road-surface {
    height: 145px;
  }

  .road-surface::after {
    height: 12px;
  }

  .dash-track {
    top: 45%;
    gap: 40px;
  }

  .dash {
    width: 65px;
    height: 5px;
  }

  .scenery-belt {
    bottom: 141px;
    height: 68px;
  }

  .sc-tree {
    font-size: 2rem;
  }

  .sc-build {
    font-size: 2.6rem;
  }

  .car-lane {
    bottom: 145px;
  }

  .car-rig {
    width: 150px;
    bottom: -8px;
  }
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  box-shadow: var(--sh-md);
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.ci-item:last-of-type {
  border-bottom: none;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--blue-dk);
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(255, 193, 7, .28);
}

.ci-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-lt);
  margin-bottom: 2px;
}

.ci-val {
  display: block;
  font-size: .93rem;
  font-weight: 500;
  color: var(--txt-dk);
  transition: color var(--dur);
}

a.ci-val:hover {
  color: var(--blue);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  box-shadow: var(--sh-md);
}

.cf-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-dk);
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--yellow);
}

.cf-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--txt-mid);
  margin-bottom: 5px;
  letter-spacing: .03em;
}

.cf-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 15px;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  color: var(--txt-dk);
  background: var(--bg-light);
  outline: none;
  transition: all var(--dur) var(--ease);
  appearance: none;
}

.cf-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 53, 128, .11);
  background: var(--white);
}

textarea.cf-input {
  resize: vertical;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#footer {
  background: var(--blue-dk);
}

.footer-main {
  padding: 62px 0;
}

.footer-bar {
  background: rgba(0, 0, 0, .3);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 0;
}

.footer-bar p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  margin: 0;
}

.ft-about {
  font-size: .87rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.8;
  max-width: 310px;
}

.ft-social {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  transition: all var(--dur) var(--ease);
}

.ft-social:hover {
  background: var(--yellow);
  color: var(--blue-dk);
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(255, 193, 7, .4);
}

.ft-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}

.ft-links {
  list-style: none;
  padding: 0;
}

.ft-links li {
  margin-bottom: 8px;
}

.ft-links a {
  color: rgba(255, 255, 255, .58);
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--dur) var(--ease);
}

.ft-links a::before {
  content: '›';
  color: var(--yellow);
}

.ft-links a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.ft-contact {
  list-style: none;
  padding: 0;
}

.ft-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
  margin-bottom: 14px;
}

.ft-contact i {
  color: var(--yellow);
  margin-top: 3px;
  flex-shrink: 0;
}

.ft-contact a {
  color: rgba(255, 255, 255, .58);
  transition: color var(--dur);
}

.ft-contact a:hover {
  color: var(--yellow);
}

/* ══════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════ */
#btt {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--yellow), var(--ydk));
  color: var(--blue-dk);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 193, 7, .38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all var(--dur) var(--ease);
  z-index: 9999;
}

#btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#btt:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 53, 128, .35);
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

#lightbox.open {
  display: flex;
}

#lb-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  z-index: 2;
  transition: color var(--dur);
}

#lb-close:hover {
  color: var(--yellow);
}

#lb-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, .7);
  object-fit: contain;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .sec-pad {
    padding: 64px 0;
  }

  .about-stamp {
    right: 0;
    bottom: -14px;
  }

  .about-float-card {
    left: 0;
  }

  .navbar-collapse {
    background: var(--white);
    border-top: 2px solid var(--yellow);
    padding: 16px;
    box-shadow: var(--sh-md);
    border-radius: 0 0 var(--r-md) var(--r-md);
    margin-top: 6px;
  }
}

#callme {
  position: fixed;
  right: 10px;
  top: 190px;
  width: 70px;
  height: 70px;
  cursor: pointer;

  z-index: 99990;
}

#callme #callmeMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgb(40 167 69);
  width: 60px;
  height: 60px;
  -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
  animation: zcwmini2 1.5s 0s ease-out infinite;
}

#callme #callmeMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -6px;
  left: -6px;
  background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: zcwphone2 1.5s linear infinite;
  -moz-animation: zcwphone2 1.5s linear infinite;
  animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-webkit-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@media (max-width: 767.98px) {
  .cu-mb-ds-nn {
    display: none !important
  }

  .sec-pad {
    padding: 52px 0;
    width: 95%;
    margin: 0 auto;
  }

  .hero-slide {
    min-height: 520px;
  }

  .hero-heading {
    font-size: 2.8rem;
  }

  .about-img-block {
    margin-bottom: 36px;
  }

  .about-stamp {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 18px;
    display: inline-block;
  }

  .about-float-card {
    display: none;
  }

  .contact-info,
  .contact-form {
    padding: 22px 16px;
  }

  .footer-main {
    padding: 42px 0;
  }

  #btt {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  #footer {
    overflow-x: hidden;
  }
}

@media (max-width: 575.98px) {
  .hero-heading {
    font-size: 2.3rem;
  }

  .sec-title {
    font-size: 1.9rem;
  }

  .cnt-num {
    font-size: 2.8rem;
  }

  .scroll-cue {
    display: none;
  }

  .info-item span {
    font-size: .82rem;
  }
}







.section-bg {
  background: #f8f9fa;
  padding: 70px 0;
}

/* Heading */
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--blue-dk);
  letter-spacing: 0.5px;
}

.section-subtitle {
  color: var(--txt-mid);
  font-size: 0.95rem;
}

/* Card */
.place-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  background: var(--white);
}

.place-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--sh-lg);
  border-color: var(--blue);
}

/* Image */
.place-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}

.place-card:hover img {
  transform: scale(1.08);
}

/* Card Body */
.place-card .card-body {
  padding: 18px;
}

/* Title */
.place-card .card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dk);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

/* Text */
.place-card .card-text {
  font-size: 0.88rem;
  color: var(--txt-mid);
  line-height: 1.6;
}

/* Optional Highlight Effect */
.place-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}

.place-card:hover::after {
  transform: scaleX(1);
}