
  /* Global theme colors: yellow, black, white */
    :root {
      --vd-yellow: #005A9C;
      --vd-yellow-soft: rgba(7, 135, 255, 0.2);
      --vd-black: #000000ff;
      --vd-dark: #000000ff;
      --vd-white: #ffffff;
      --vd-gray-light: #f8f9fa;
      --vd-gray-dark: #212529;
    }

    /* All heading tags color only */
h1,
h2,
h3,
h4,
h5,
h6,
span,
i,
li {
  color: #005A9C;
}

    /* LIGHT MODE (default) */
    body.light-mode {
      background-color: var(--vd-gray-light);
      color: #ffffff;
    }

    body.light-mode .vd-navbar {
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    body.light-mode .vd-nav-link {
      color: #333 !important;
    }

    body.light-mode .vd-nav-link:hover {
      color: var(--vd-yellow) !important;
    }

    body.light-mode .vd-brand {
      color: var(--vd-yellow) !important;
    }

    body.light-mode .vd-hero {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 45%, #dee2e6 100%);
      color: #333;
    }

    body.light-mode .vd-hero-subtitle {
      color: #555;
    }

    body.light-mode .vd-hero-badge {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(255, 193, 7, 0.3);
    }

    body.light-mode .vd-section-muted {
      color: #666;
    }

    body.light-mode .vd-card-ghost {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(0, 0, 0, 0.08);
      color: #333;
    }

    body.light-mode .vd-card-ghost::before {
      background: radial-gradient(circle at top, rgba(255, 193, 7, 0.15), transparent 55%);
    }

    body.light-mode .vd-service-pill {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(0, 0, 0, 0.08);
      color: #333;
    }

    body.light-mode .vd-cta {
      background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), #f8f9fa 45%);
    }

    body.light-mode .accordion-button {
      background-color: #f8f9fa;
      color: #333;
    }

    body.light-mode .accordion-button:not(.collapsed) {
      color: var(--vd-yellow);
      background-color: #e9ecef;
      box-shadow: 0 0 18px rgba(255, 193, 7, 0.3);
    }

    body.light-mode .accordion-body {
      background-color: #f8f9fa;
      color: #555;
    }

    body.light-mode .vd-testimonial-card {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(0, 0, 0, 0.08);
      color: #333;
    }

    body.light-mode .vd-package-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      color: #333;
    }

    body.light-mode .vd-contact-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      color: #333;
    }

    body.light-mode footer {
      background-color: #f8f9fa;
      color: #666;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    body.light-mode footer a {
      color: #555;
    }

    body.light-mode footer a:hover {
      color: var(--vd-yellow);
    }

    body.light-mode .vd-footer-bottom {
      color: #888;
      border-top-color: rgba(0, 0, 0, 0.08);
    }

    body.light-mode .vd-badge-soft {
      background: rgba(0, 0, 0, 0.06);
      color: #555;
    }

    body.light-mode .vd-bottom-nav {
      background: rgba(255, 255, 255, 0.98);
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    body.light-mode .vd-bottom-nav .nav-link {
      color: #666;
    }


    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: white;
      color: var(--vd-white);
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
    }

    /* Loading screen */
    #vd-preloader {
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at top, #797d8b 0, #000a2b 60%);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      flex-direction: column;
      color: var(--vd-white);
    }

    .vd-loader-orbit {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 3px solid var(--vd-yellow-soft);
      border-top-color: var(--vd-yellow);
      animation: vd-spin 1s linear infinite;
      box-shadow: 0 0 25px rgba(7, 106, 255, 0.7);
      margin-bottom: 1rem;
    }

    @keyframes vd-spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Navbar */
    .vd-navbar {
      background-color: rgba(255, 255, 255, 0.9);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    }

    .vd-brand {
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--vd-yellow) !important;
      text-transform: uppercase;
    }

    .vd-nav-link {
      color: blue !important;
      font-weight: 500;
    }

    .vd-nav-link:hover {
      color: var(--vd-yellow) !important;
    }

    /* Hero section */
    .vd-hero {
      position: relative;
      padding-top: 6rem;
      padding-bottom: 5rem;
      background: radial-gradient(circle at top left, #b1bfff 0, #ffffff 45%, #eeeeee 100%);
      overflow: hidden;
    }

    .vd-hero-bg-orbit {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--vd-yellow-soft), transparent 60%);
      top: -100px;
      right: -150px;
      filter: blur(2px);
      animation: vd-orbit-pulse 6s ease-in-out infinite;
    }

    @keyframes vd-orbit-pulse {
      0%, 100% { transform: scale(1); opacity: 0.7; }
      50% { transform: scale(1.15); opacity: 1; }
    }

    .vd-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 0.8rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid var(--vd-yellow-soft);
      box-shadow: 0 0 15px rgba(7, 73, 255, 0.35);
      font-size: 0.85rem;
    }

    .vd-hero-title {
      font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
      font-weight: 800;
    }

    .vd-highlight {
      color: var(--vd-yellow);
    }

    .vd-hero-subtitle {
      color: #000000;
    }

    .vd-hero-list li {
      margin-bottom: 0.25rem;
    }

    .vd-hero-list i {
      color: var(--vd-yellow);
      margin-right: 0.4rem;
    }

    .vd-btn-primary-glow {
      background: linear-gradient(135deg, #57bcff, var(--vd-yellow));
      color: #111;
      border: none;
      padding: 0.75rem 1.8rem;
      font-weight: 600;
      border-radius: 999px;
      box-shadow: 0 0 18px rgba(7, 32, 255, 0.8);
      position: relative;
      overflow: hidden;
    }

    .vd-btn-primary-glow::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid rgba(255, 255, 255, 0.4);
      opacity: 0.0;
      animation: vd-btn-pulse 2s ease-out infinite;
    }

    @keyframes vd-btn-pulse {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.3); opacity: 0; }
    }

    .vd-btn-outline {
      border-radius: 999px;
      color: var(--vd-white);
      border: 1px solid var(--vd-yellow-soft);
    }

    .vd-btn-outline:hover {
      background-color: var(--vd-yellow-soft);
      color: var(--vd-white);
    }

    /* Hero slider */
    .vd-hero-slider .carousel-item {
      height: 350px;
      border-radius: 1.5rem;
      overflow: hidden;
      position: relative;
    }

    .vd-hero-slider .carousel-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), transparent 60%);
    }

    .vd-hero-slider img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      transform: scale(1.05);
    }

    .vd-hero-slider .carousel-indicators [data-bs-target] {
      background-color: var(--vd-yellow);
    }

    /* Section general styles */
    section {
      padding: 4rem 0;
    }

    .vd-section-title {
      font-weight: 700;
      position: relative;
      display: inline-block;
      margin-bottom: 1.5rem;
    }

    .vd-section-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 60%;
      height: 2px;
      background: linear-gradient(90deg, var(--vd-yellow), transparent);
      box-shadow: 0 0 15px rgba(7, 65, 255, 0.9);
    }

    .vd-section-muted {
      color: #000000;
      max-width: 700px;
      margin-inline: auto;
    }

    /* Mission / Vision / Motto cards */
    .vd-card-ghost {
      background: #221c79;
      border-radius: 1.2rem;
      padding: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .vd-card-ghost::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top, var(--vd-yellow-soft), transparent 55%);
      opacity: 0;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .vd-card-ghost:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.75);
      border-color: var(--vd-yellow-soft);
    }

    .vd-card-ghost:hover::before {
      opacity: 1;
      transform: translateY(-10px);
    }

    /* Why us */
    .vd-tag {
      display: inline-flex;
      align-items: center;
      padding: 0.15rem 0.7rem;
      border-radius: 999px;
      border: 1px solid var(--vd-yellow-soft);
      font-size: 0.8rem;
      color: #000000;
    }

    /* Services slider */
    .vd-services-track {
      display: flex;
      gap: 1rem;
      animation: vd-marquee 35s linear infinite;
    }

    .vd-service-pill {
      min-width: 300px;
      margin:0px 10px;
      background: #221c79;
      border-radius: 999px;
      padding: 0.8rem 1.2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    }

    .vd-service-pill i {
      color: var(--vd-yellow);
    }

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

    /* CTA wave background */
    .vd-cta {
      position: relative;
      overflow: hidden;
      background: radial-gradient(circle at left, var(--vd-yellow-soft), #bebebe 45%);
    }

    .vd-cta-wave {
      position: absolute;
      inset: auto 0 0 0;
      height: 110px;
      background: radial-gradient(circle at top, var(--vd-yellow-soft), transparent 60%);
      opacity: 0.5;
      animation: vd-wave 7s ease-in-out infinite alternate;
    }

    @keyframes vd-wave {
      0% { transform: translateX(-20px) translateY(0); }
      100% { transform: translateX(20px) translateY(10px); }
    }

    /* FAQ */
    .accordion-button {
      background-color: #221c79;
      color: white;
    }

    .accordion-button:not(.collapsed) {
      color: white;
      background-color: #221c79;
      box-shadow: 0 0 18px rgba(7, 85, 255, 0.5);
    }

    .accordion-body {
      background-color: #221c79;
      color: #ffffff;
    }

    /* Testimonials */
    .vd-testimonial-card {
      background: #221c79;
      border-radius: 1.2rem;
      padding: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.06);
      /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7); */
    }

    .vd-testimonial-img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--vd-yellow-soft);
    }

    /* Gallery */
    .vd-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    /* Default image size */
    .vd-gallery-img {
      border-radius: 1rem;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      height: 220px;
    }
    
    /* One image different size */
    .vd-gallery-img.large {
      grid-column: span 2;
      height: 460px;
    }

    /* Image */
    .vd-gallery-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.03);
      transition: transform 0.35s ease;
    }
    
    /* Overlay text */
    .vd-gallery-img::after {
      content: attr(data-title);
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
      color: #fff;
      opacity: 0;
      transition: opacity 0.35s ease;
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    
    /* Hover effects */
    .vd-gallery-img:hover img {
      transform: scale(1.08);
    }
    
    .vd-gallery-img:hover::after {
      opacity: 1;
    }

    /* Sticky floating buttons */
    .vd-floating-buttons {
      position: fixed;
      right: 16px;
      bottom: 80px; 
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .vd-floating-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .vd-floating-btn-whatsapp {
      background: #25d366;
      color: #fff;
    }

    .vd-floating-btn-call {
      background: var(--vd-yellow);
      color: #111;
    }

    .vd-floating-btn-enquiry {
      background: #111;
      color: var(--vd-white);
      border: 1px solid var(--vd-yellow);
    }

    .vd-floating-btn::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid rgba(255, 255, 255, 0.4);
      opacity: 0.0;
      animation: vd-btn-pulse 2.3s ease-out infinite;
    }

    /* Footer */
    footer {
      background-color: #221c79;
      color: #ffffff;
      padding-top: 3rem;
      padding-bottom: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    footer a {
      color: #ffffff;
      font-size: 0.93rem;
    }

    footer a:hover {
      color: var(--vd-yellow);
    }

    .vd-footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: 1.5rem;
      padding-top: 1rem;
      font-size: 0.8rem;
      color: #ffffff;
    }

    /* Helpers */
    .vd-badge-soft {
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      padding: 0.25rem 0.7rem;
      font-size: 0.75rem;
      color: #ffffff;
    }

    @media (max-width: 991.98px) {
      .vd-services-track {
        animation-duration: 45s;
      }
    }

    /* NEW: mobile bottom nav */
    .vd-bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 998;
      /* background: rgba(0, 0, 0, 0.96); */
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: none;

      /* From https://css.glass */
background: rgba(21, 4, 239, 0.45);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(12.5px);
-webkit-backdrop-filter: blur(12.5px);
border: 1px solid rgba(21, 4, 239, 1);
    }

    .vd-bottom-nav .nav-link {
      font-size: 0.7rem;
      color: #ffffff;
    }

    .vd-bottom-nav .nav-link.active,
    .vd-bottom-nav .nav-link:focus {
      color: #072b3d;
    }

    .vd-bottom-nav i {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 0.1rem;
    }

    @media (max-width: 767.98px) {
      .vd-bottom-nav {
        display: block;
      }
      body {
        padding-bottom: 64px;
      }
      .vd-floating-buttons {
        bottom: 140px;
      }
    }

    /* NEW: simple fade-in-up scroll animation */
    .vd-animate {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .vd-animate.vd-animate-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* NEW: packages / tours section */
    .vd-package-card {
      background: #221c79;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
      height: 100%;
    }

    .vd-package-image {
      height: 180px;
      overflow: hidden;
    }

    .vd-package-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .vd-package-card:hover .vd-package-image img {
      transform: scale(1.08);
    }

    .vd-package-meta small {
      display: inline-block;
      margin-right: 0.8rem;
      color: #5f5f5f;
    }

    .vd-package-price {
      color: var(--vd-yellow);
      font-weight: 700;
      font-size: 1.1rem;
    }

    .vd-filter-pill {
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      padding: 0.25rem 0.9rem;
      font-size: 0.8rem;
      cursor: pointer;
      background: transparent;
      color: #000000;
    }

    .vd-filter-pill.active {
      background: var(--vd-yellow-soft);
      color: var(--vd-yellow);
      border-color: var(--vd-yellow);
    }

    .collapse {
  transition: height 0.3s ease;
}

    /* India Filter Pills */
.vd-india-filter-pill {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.25rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  background: transparent;
  color: #000;
  transition: all 0.3s ease;
}

.vd-india-filter-pill:hover {
  background: rgba(0, 0, 0, 0.05);
}

.vd-india-filter-pill.active {
  background: var(--vd-yellow-soft);
    color: var(--vd-yellow);
      border-color: var(--vd-yellow);
}

.vd-india-package-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.vd-india-package-item.hide {
  display: none !important;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
}


    /* NEW: contact / about cards */
    .vd-contact-card {
      background: #221c79;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      height: 100%;
    }

    /* Modern Contact Card */
.vd-contact-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    transition: 0.4s ease-in-out;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

/* why us slider */
.vd-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.vd-slides {
  display: flex;
  width: 100%;
  animation: vdSlide 24s infinite ease-in-out; 
}

.vd-slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 14px;
  object-fit: cover;
}

@keyframes vdSlide {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(0); }

  25%  { transform: translateX(-100%); }
  45%  { transform: translateX(-100%); }

  50%  { transform: translateX(-200%); }
  70%  { transform: translateX(-200%); }

  75%  { transform: translateX(-300%); }
  95%  { transform: translateX(-300%); }

  100% { transform: translateX(0); }
}

/* Golden Shine Hover */
.vd-contact-card-modern:hover {
    border: 1px solid rgba(90, 120, 255, 0.6);
    box-shadow: 0 0 20px rgba(50, 88, 255, 0.35),
                0 0 40px rgba(50, 64, 255, 0.2) inset;
}

/* Title */
.vd-contact-card-modern .vd-title {
    color: #ffe9b0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(100, 136, 255, 0.4);
}

/* Icons */
.vd-contact-card-modern .vd-icon {
    color: #7e8af8;
    font-size: 1rem;
    text-shadow: 0 0 6px rgba(80, 106, 255, 0.5);
}

/* Text & Links */
.vd-contact-card-modern .vd-link,
.vd-contact-card-modern .vd-text,
.vd-contact-card-modern .vd-small {
    color: #000000;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.vd-contact-card-modern .vd-link:hover {
    color: #8a9fff;
    text-shadow: 0 0 10px rgba(90, 93, 255, 0.6);
}

/* Soft spacing */
.vd-contact-card-modern .vd-list li {
    padding: 2px 0;
}
