

    .navbar {
      background-color: #1a1a1a;
      border-bottom: 2px solid crimson;
    }

    .navbar-brand {
      color: crimson !important;
      font-weight: bold;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 500;
      margin-left: 15px;
    }

    .navbar-nav .nav-link:hover {
      color: crimson !important;
    }

    .nav-button {
      background-color: crimson;
      border: none;
      padding: 6px 14px;
      border-radius: 20px;
      color: white;
      font-weight: bold;
      transition: 0.3s;
    }

    .nav-button:hover {
      background-color: #e60026;
    }

/* BANNER */

.hero h1, .hero h2 {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}


.hero-banner {
  background: url('../images/image13.webp') center center/cover no-repeat;
  padding: 180px 20px 160px;
  min-height: 78vh;
  text-align: center;
  position: relative;
  animation: fadeIn 2s ease-in-out;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  color:#ff1463;
  font-size: 38px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: slideDown 1s ease forwards;

}

.hero-subtitle {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  animation: fadeIn 2.5s ease;
}

.hero-btn {
  background-color:#ff1463;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color: #e60026;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* content below headline */

.tagline-strip {
  background: #000;
  color: crimson;
  font-weight: 600;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
}

.tagline-strip span {
  display: inline-block;
  animation: slideLeft 18s linear infinite;
}

@keyframes slideLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.glass-section {
  background: url('../images/blutrf.jpeg') center center/cover no-repeat;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-overlay.full-glass {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  width: 100%;
  padding: 40px 20px;
}

.glass-card.wide {
  background:   rgba(0, 0, 0, 0.7);
  border: 1px solid crimson;
  border-radius: 0;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(255, 0, 80, 0.1);
  animation: fadeInUp 1.2s ease forwards;
  width: 100%;
}

.glass-card.wide h2 {
  font-size: 30px;
  color: crimson;
  margin-bottom: 12px;
  font-weight: bold;
}

.glass-card.wide p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 20px;
}

.glass-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.glass-tags span {
  background: rgba(255, 0, 60, 0.2);
  border: 1px solid crimson;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: white;
}

.glass-card.wide {
  /* existing styles... */
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.section-divider {
  height: 3px;
  background: linear-gradient(to right, #ff0040, #ff3370);
  width: 100%;
  border-radius: 6px;
}

/* Vertical spacoing*/




/* SPLIT IMAGE + TEXT SECTION */


.split-section {
  margin-top: 0;
}

.split-img {
  background: url('/images/img1.webp') center center/cover no-repeat;
  min-height: 320px;
}
.second-img {
  background: url('/images/img4.webp') center center/cover no-repeat;
  min-height: 320px;
}


.split-text {
  background: #000;
  color: white;
}

.split-text h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.split-text p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}



.features-section {
  background: #111;
  color: white;
  border-top: 1px solid crimson;
  border-bottom: 1px solid crimson;
}

.features-section h2 {
  font-weight: bold;
  animation: fadeIn 1.2s ease-in-out;
}

.features-section h4 {
  color: crimson;
  margin-bottom: 10px;
}

.features-section p {
  font-size: 15px;
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.buzz-strip {
  background: linear-gradient(to right, #220011, #110011);
  font-weight: bold;
  letter-spacing: 0.5px;
  border-top: 1px solid crimson;
  border-bottom: 1px solid crimson;
  animation: scrollIn 1s ease;
}

@keyframes scrollIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.tease-intro {
  background: #0a000a;
  border-top: 2px solid crimson;
  border-bottom: 2px solid crimson;
  /*text-shadow: 0 0 6px #ff0033;*/
}





/* content */
.luxury-section {
  background-color: #0a0a0a;
  border-top: 1px solid crimson;
  padding-bottom: 60px;
}

.luxury-section h2,
.luxury-section h3 {
  font-weight: bold;
}

.luxury-section .icon-box h4 {
  color: #ff3366;
  margin-bottom: 10px;
}

.luxury-section .icon-box p {
  color: #ccc;
  font-size: 15px;
}

.full-paragraph p,
.full-paragraph ul {
  color: #f0f8ff;
  font-size: 15px;
  line-height: 1.6;
}

.full-paragraph ul {
  padding-left: 1.2rem;
}

.animate-fadein {
  animation: fadeInUp 1s ease-in-out;
}

.animate-fadein-slow {
  animation: fadeInUp 1.4s ease-in-out;
}

.animate-zoom {
  animation: zoomIn 1s ease-in-out;
}

.animate-zoom.delay-1 {
  animation-delay: 0.2s;
}

.animate-zoom.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* Footer Styling */

  .footer-title {
    color: #ff1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 1rem;
  }

  .footer-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #ff1a1a;
    bottom: -8px;
    left: 0;
    border-radius: 50px;
  }

  .footer-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .footer-links a:hover {
    color: #ff1a1a;
    padding-left: 5px;
  }

  .social-icons a {
    color: white;
    font-size: 1.4rem;
    margin-right: 20px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  }

  .glow-icon:hover {
    color: #ff1a1a;
    transform: scale(1.2);
    text-shadow: 0 0 8px #ff1a1a;
  }

  /* Fade In Animation */
  .animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/* Escort Pro Card Styling */
      .escort-pro-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        height: 400px;
        transition: all 0.3s ease;
        box-shadow: 0 0 15px rgba(255, 20, 147, 0.15);
        
      }

      .escort-pro-card:hover {
        box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
        transform: scale(1.02);
      }

      .escort-pro-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .escort-info-glass {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 15px;
        backdrop-filter: blur(10px);
        background: rgba(255, 20, 147, 0.3);
        color: white;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
      }

      .escort-info-glass h5 {
        font-weight: bold;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .escort-whatsapp {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 10;
      }

      .escort-whatsapp img {
        width: 36px;
        height: 36px;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
        }

        50% {
          transform: scale(1.15);
        }

        100% {
          transform: scale(1);
        }
      }

      @media (max-width: 768px) {
        .escort-pro-card {
          height: 320px;
        }

        .escort-info-glass {
          font-size: 13px;
          padding: 10px;
        }

        .escort-whatsapp img {
          width: 30px;
          height: 30px;
        }
      }
  

      .flip-card-wrapper {
        height: 370px;
        width: 100%;
        perspective: 1000px;
      }

      .flip-card {
        width: 100%;
        height: 100%;
        position: relative;
      }

      .flip-card-inner {
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        position: relative;
      }

      .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
      }

      .flip-card-front,
      .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        overflow: hidden;
        backface-visibility: hidden;
        top: 0;
        left: 0;
      }

      .flip-card-back {
        transform: rotateY(180deg);
      }

      /* Image + Overlay Text */
      .flip-card-front img,
      .flip-card-back img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 12px;
      }

      .escort-name-bar {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
        background: rgba(255, 20, 147, 0.3);
        backdrop-filter: blur(8px);
        padding: 8px 0;
        font-family: 'Poppins', sans-serif;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        font-size: 16px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
      }

      /* Mobile support */
      @media (max-width: 768px) {
        .flip-card-wrapper {
          height: 300px;
        }

        .escort-name-bar {
          font-size: 14px;
          padding: 6px 0;
        }
      }
  
 
      .neon-glow {
        color: #f8f9fa;
        transition: all 0.3s ease;
      }

      .neon-glow:hover {
        color: #f3291a;
        text-shadow: 0 0 8px #f3291a, 0 0 16px #ff69b4;
      }

      img:hover {
        transform: scale(1.03);
        transition: 0.4s ease;
      }
      
      /* Floating Button Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Base Button Style */
.float-btn {
  width: 55px;
  height: 55px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Call Button Style */
.call-btn {
  background: radial-gradient(circle, red 40%, darkred 100%);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
}

/* WhatsApp Button Style */
.whatsapp-btn {
  background: radial-gradient(circle, #25D366 40%, #128C7E 100%);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.9);
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
}

/* Saffron-Red-White astrologer theme overrides */
:root {
  --astro-red: #b31217;
  --astro-red-deep: #7f0f12;
  --astro-saffron: #ffc72c;
  --astro-white: #ffffff;
  --astro-cream: #fff7d6;
  --astro-text: #551013;
}

body {
  background: var(--astro-white);
  color: var(--astro-text);
}

.navbar {
  background: linear-gradient(90deg, var(--astro-red-deep), var(--astro-red));
  border-bottom: 3px solid var(--astro-saffron);
}

.navbar-brand,
.navbar-nav .nav-link:hover,
.footer-title {
  color: var(--astro-saffron) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.text-danger,
.glass-card.wide h2,
.features-section h4 {
  color: var(--astro-red) !important;
}

.nav-button,
.hero-btn {
  background: linear-gradient(135deg, var(--astro-red), #d81f25);
  border: 1px solid var(--astro-saffron);
  color: var(--astro-white);
}

.hero-btn:hover,
.nav-button:hover {
  background: linear-gradient(135deg, #d81f25, var(--astro-red));
}

.hero-title {
  color: var(--astro-saffron);
  text-shadow: 0 0 12px rgba(255, 199, 44, 0.45);
}

.tagline-strip {
  background: linear-gradient(90deg, var(--astro-red-deep), var(--astro-red));
  color: var(--astro-saffron);
}

.glass-overlay.full-glass {
  background: rgba(127, 15, 18, 0.68);
}

.glass-card.wide {
  background: rgba(179, 18, 23, 0.7);
  border: 1px solid var(--astro-saffron);
  box-shadow: inset 0 0 40px rgba(255, 199, 44, 0.22);
}

.glass-tags span {
  background: rgba(255, 199, 44, 0.22);
  border: 1px solid var(--astro-saffron);
  color: var(--astro-white);
}

.section-divider {
  background: linear-gradient(to right, var(--astro-saffron), var(--astro-red), var(--astro-saffron));
}

.split-text,
.features-section,
.luxury-section,
.tease-intro,
.trust-section,
.bg-black,
.buzz-strip {
  background: linear-gradient(145deg, #fff4bf, var(--astro-cream)) !important;
  color: var(--astro-text) !important;
  border-color: var(--astro-red) !important;
}

.footer {
  background: linear-gradient(90deg, var(--astro-red-deep), var(--astro-red)) !important;
  color: var(--astro-white) !important;
  border-top: 3px solid var(--astro-saffron) !important;
}

.full-paragraph p,
.full-paragraph ul,
.text-light,
.footer-text,
.footer-links a,
.features-section p,
.luxury-section .icon-box p,
.split-text p {
  color: var(--astro-text) !important;
}

.footer .footer-text,
.footer .footer-links a,
.footer p,
.footer .text-secondary,
.footer .social-icons a {
  color: #fff5db !important;
}

.footer-title::after,
.features-section,
.tease-intro,
.luxury-section,
.footer-links a:hover {
  border-color: var(--astro-red) !important;
  color: var(--astro-red) !important;
}

.footer .footer-links a:hover,
.footer .glow-icon:hover,
.footer .glow-icon {
  color: var(--astro-saffron) !important;
  border-color: var(--astro-saffron) !important;
}

.escort-info-glass,
.escort-name-bar {
  background: rgba(179, 18, 23, 0.5);
}

.neon-glow:hover,
.glow-icon:hover,
.glow-icon {
  color: var(--astro-saffron) !important;
  text-shadow: 0 0 8px rgba(255, 199, 44, 0.8), 0 0 16px rgba(255, 199, 44, 0.35) !important;
}

.call-btn {
  background: radial-gradient(circle, #d81f25 40%, var(--astro-red-deep) 100%);
  box-shadow: 0 0 15px rgba(216, 31, 37, 0.9);
}

.whatsapp-btn {
  background: radial-gradient(circle, #ffe174 35%, var(--astro-saffron) 100%);
  color: var(--astro-red-deep);
  box-shadow: 0 0 15px rgba(255, 199, 44, 0.9);
}

/* Override inline section backgrounds used in index.html */
section[style*="background-color: #0a000f"],
section[style*="background-color: #0a0012"],
section[style*="background-color: #040005"],
section[style*="background-color: #050505"],
section[style*="background-color: #0b0b0e"],
footer[style*="background-color: #0d0d0d"] {
  background: linear-gradient(145deg, #fff4bf, var(--astro-cream)) !important;
  color: var(--astro-text) !important;
}

footer[style*="background-color: #0d0d0d"] {
  background: linear-gradient(90deg, var(--astro-red-deep), var(--astro-red)) !important;
  color: var(--astro-white) !important;
}

div[style*="background-color: #1a0f22"],
div[style*="background-color: #2b1333"] {
  background: #fff0b3 !important;
  border-left-color: var(--astro-red) !important;
}

/* Override inline pink accents */
[style*="#ff4fc0"],
[style*="#ff69b4"],
[style*="#ff9fcf"],
[style*="#ffb6d9"] {
  color: var(--astro-saffron) !important;
  text-shadow: 0 0 8px rgba(255, 199, 44, 0.5) !important;
}

[style*="border-color: #f3291a"],
[style*="border-left: 4px solid #f3291a"],
[style*="border-left: 5px solid #f3291a"],
[style*="border-top: 1px solid #f3291a"] {
  border-color: var(--astro-saffron) !important;
}

/* Text clarity overrides */
body {
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  letter-spacing: 0.2px;
}

p,
li {
  line-height: 1.75;
}

.city-slider-section {
  background: linear-gradient(120deg, #fff6cf, #ffe7a1);
  border-top: 1px solid var(--astro-red);
  border-bottom: 1px solid var(--astro-red);
  padding: 34px 0;
}

.city-slider-title {
  text-align: center;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--astro-red) !important;
}

.city-slider-mask {
  overflow: hidden;
  position: relative;
}

.city-slider-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: citySlide 35s linear infinite;
}

.city-slider-section:hover .city-slider-track {
  animation-play-state: paused;
}

.city-slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(140deg, var(--astro-red), #d61f24);
  border: 1px solid var(--astro-saffron);
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: 0 8px 18px rgba(127, 15, 18, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.city-slider-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(127, 15, 18, 0.28);
}

.glass-card.wide h2.highlight-yellow-heading {
  color: #ffd447 !important;
}

@keyframes citySlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .city-slider-section {
    padding: 26px 0;
  }

  .city-slider-title {
    font-size: 1.35rem;
  }

  .city-slider-btn {
    padding: 9px 16px;
    font-size: 0.92rem;
  }

  .city-slider-track {
    gap: 10px;
    animation-duration: 26s;
  }
}

a {
  color: #8f1217;
}

a:hover {
  color: #6f0d11;
}

mark {
  background: #ffd447;
  color: #561215;
  padding: 0.08em 0.25em;
  border-radius: 0.2em;
  font-weight: 700;
}

a mark {
  color: #561215 !important;
}

.hero-banner::after {
  background: linear-gradient(
    120deg,
    rgba(255, 199, 44, 0.22) 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.hero-banner {
  background-color: rgba(255, 199, 44, 0.2);
  background-blend-mode: screen;
}

.hero-title,
.hero-subtitle {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-title {
  display: inline-block;
  max-width: min(88%, 760px);
  padding: 14px 24px;
  border-radius: 16px;
  background: rgba(127, 15, 18, 0.64);
  border: 1px solid rgba(255, 199, 44, 0.75);
}

.hero-subtitle {
  color: #fff8e5;
}

.tagline-strip {
  font-size: 15px;
  letter-spacing: 0.4px;
}

.split-text p,
.features-section p,
.luxury-section .icon-box p,
.full-paragraph p,
.full-paragraph ul,
.text-light {
  color: #461416 !important;
}

/* Inline light-gray text from earlier versions can become low-contrast on yellow backgrounds */
[style*="color: #ddd"],
[style*="color: #d4d4d4"],
[style*="color: #ccc"],
[style*="color: #aaa"],
[style*="color: #f1f1f1"] {
  color: #4a1518 !important;
}

.footer,
.footer p,
.footer li,
.footer a,
.footer .text-secondary,
.footer [style*="color: #ddd"],
.footer [style*="color: #ccc"],
.footer [style*="color: #aaa"] {
  color: #fff6df !important;
}

.process-card-section {
  background: linear-gradient(145deg, #fff4bf, var(--astro-cream));
  border-top: 1px solid var(--astro-red);
  border-bottom: 1px solid var(--astro-red);
}

.process-card-intro h2 {
  color: var(--astro-red);
  margin-bottom: 10px;
}

.process-card-intro p {
  color: #4a1518;
  max-width: 880px;
  margin: 0 auto;
}

.process-step-card {
  height: 100%;
  background: linear-gradient(160deg, #fffef8, #fff2d2);
  border: 1px solid rgba(127, 15, 18, 0.2);
  border-left: 5px solid var(--astro-red);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(127, 15, 18, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

.process-step-card::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.28), rgba(255, 199, 44, 0));
  pointer-events: none;
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(127, 15, 18, 0.2);
}

.process-step-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #fff;
  background: linear-gradient(140deg, var(--astro-red), #d81f25);
  border: 1px solid var(--astro-saffron);
}

.process-step-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--astro-red);
}

.process-step-card p {
  color: #4a1518;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .process-step-card {
    padding: 18px;
  }

  .process-step-card h3 {
    font-size: 1.06rem;
  }
}

.neon-glow,
.neon-glow:hover {
  color: #4a1518 !important;
  text-shadow: none !important;
}

.vashikaran-truth-section {
  background: linear-gradient(145deg, #fff3bd, #ffe8ad);
  border-top: 1px solid var(--astro-red);
  border-bottom: 1px solid var(--astro-red);
}

.truth-intro-card,
.truth-card {
  background: linear-gradient(160deg, #fffef7, #fff4d7);
  border: 1px solid rgba(127, 15, 18, 0.18);
  border-left: 5px solid var(--astro-red);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(127, 15, 18, 0.12);
}

.truth-intro-card {
  margin-bottom: 12px;
}

.truth-hero-copy {
  margin-bottom: 0;
}

.truth-intro-card h2,
.truth-card h3 {
  color: var(--astro-red);
  margin-bottom: 10px;
}

.truth-intro-card p,
.truth-card p,
.truth-card li {
  color: #4a1518;
}

.truth-card h3 {
  font-size: 1.28rem;
}

.truth-card h4 {
  color: #7a1115;
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.truth-card ul {
  margin: 8px 0 14px;
  padding-left: 1.2rem;
}

.truth-quote {
  font-style: italic;
  color: #6f0d11;
  border-left: 3px solid var(--astro-saffron);
  padding-left: 10px;
}

.truth-callout {
  background: linear-gradient(160deg, #fff2ce, #ffe9ba);
}

.truth-mosaic-wrap {
  position: relative;
  min-height: 360px;
}

.truth-mosaic-main {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid var(--astro-saffron);
  box-shadow: 0 12px 28px rgba(127, 15, 18, 0.2);
}

.truth-mosaic-float {
  position: absolute;
  width: 42%;
  border-radius: 12px;
  border: 2px solid var(--astro-red);
  box-shadow: 0 10px 22px rgba(127, 15, 18, 0.22);
  animation: truthFloat 4.2s ease-in-out infinite;
}

.truth-mosaic-float.top {
  right: -10px;
  top: -14px;
}

.truth-mosaic-float.bottom {
  left: -10px;
  bottom: -14px;
  animation-delay: 1.6s;
}

.truth-spotlight-card {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(127, 15, 18, 0.2);
  background: linear-gradient(180deg, #fffef9, #fff3d1);
  box-shadow: 0 12px 24px rgba(127, 15, 18, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.truth-spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(127, 15, 18, 0.2);
}

.truth-spotlight-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.truth-spotlight-body {
  padding: 18px;
  border-top: 4px solid rgba(127, 15, 18, 0.18);
}

.truth-spotlight-body h3 {
  color: var(--astro-red);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.truth-spotlight-body p,
.truth-spotlight-body li {
  color: #4a1518;
}

.truth-spotlight-body ul {
  margin-bottom: 10px;
  padding-left: 1.2rem;
}

.truth-callout-card .truth-spotlight-image {
  filter: saturate(1.05) contrast(1.05);
}

.truth-signature-panel {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 20px;
  align-items: stretch;
  border-radius: 16px;
  border: 1px solid rgba(127, 15, 18, 0.2);
  background: linear-gradient(150deg, #fffdf4, #ffeec1);
  box-shadow: 0 12px 24px rgba(127, 15, 18, 0.12);
  padding: 18px;
}

.truth-signature-image {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--astro-saffron);
}

.truth-signature-content h3 {
  color: var(--astro-red);
  margin-bottom: 14px;
}

.truth-grid-card {
  position: relative;
  overflow: hidden;
}

.truth-grid-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -26px;
  top: -26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.3), rgba(255, 199, 44, 0));
}

.truth-point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.truth-point-item {
  border: 1px solid rgba(127, 15, 18, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  padding: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.truth-point-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px rgba(127, 15, 18, 0.15);
}

@media (max-width: 991px) {
  .truth-point-grid {
    grid-template-columns: 1fr;
  }

  .truth-signature-panel {
    grid-template-columns: 1fr;
  }

  .truth-signature-image {
    max-height: 260px;
  }

  .truth-mosaic-wrap {
    min-height: 320px;
  }

  .truth-mosaic-main {
    height: 320px;
  }

  .truth-mosaic-float {
    width: 38%;
  }
}

@media (max-width: 768px) {
  .truth-intro-card,
  .truth-card {
    padding: 16px;
  }

  .truth-intro-card h2,
  .truth-card h3 {
    font-size: 1.2rem;
  }

  .truth-mosaic-wrap {
    min-height: 290px;
  }

  .truth-mosaic-main {
    height: 290px;
  }

  .truth-mosaic-float.top {
    right: 6px;
    top: 6px;
  }

  .truth-mosaic-float.bottom {
    left: 6px;
    bottom: 6px;
  }

  .truth-spotlight-image {
    height: 170px;
  }

  .truth-spotlight-body {
    padding: 14px;
  }
}

@keyframes truthFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.truth-anim {
  animation: truthSlideIn 0.75s cubic-bezier(0.2, 0.65, 0.2, 1) both;
  will-change: transform;
}

.truth-anim.delay-0 { animation-delay: 0s; }
.truth-anim.delay-1 { animation-delay: 0.08s; }
.truth-anim.delay-2 { animation-delay: 0.16s; }
.truth-anim.delay-3 { animation-delay: 0.24s; }
.truth-anim.delay-4 { animation-delay: 0.32s; }
.truth-anim.delay-5 { animation-delay: 0.4s; }

@keyframes truthSlideIn {
  from {
    transform: translateY(24px) scale(0.985);
  }
  to {
    transform: translateY(0) scale(1);
  }
}

.testimonials-section,
.faq-section {
  background: linear-gradient(145deg, #fff5c7, #ffe8ac);
  border-top: 1px solid var(--astro-red);
  border-bottom: 1px solid var(--astro-red);
}

.testimonials-title,
.faq-title {
  color: var(--astro-red);
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials-subtitle,
.faq-subtitle {
  color: #4a1518;
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(160deg, #fffef7, #fff2d4);
  border: 1px solid rgba(127, 15, 18, 0.2);
  border-left: 5px solid var(--astro-red);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(127, 15, 18, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(127, 15, 18, 0.18);
}

.testimonial-stars {
  color: var(--astro-saffron);
  text-shadow: 0 0 4px rgba(255, 199, 44, 0.5);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: #4a1518;
  margin-bottom: 14px;
}

.testimonial-card h4 {
  color: var(--astro-red);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.testimonial-card span {
  color: #6f0d11;
  font-size: 0.92rem;
}

.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(160deg, #fffef7, #fff3d4);
  border: 1px solid rgba(127, 15, 18, 0.2);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(127, 15, 18, 0.12);
  overflow: hidden;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(127, 15, 18, 0.15);
  background: transparent;
}

.faq-accordion .accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--astro-red);
  font-weight: 600;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 199, 44, 0.15);
  color: #7a1115;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: #4a1518;
}

.card-motion {
  animation: cardRise 0.7s ease-out both;
}

.card-motion.delay-0 { animation-delay: 0s; }
.card-motion.delay-1 { animation-delay: 0.08s; }
.card-motion.delay-2 { animation-delay: 0.16s; }

@keyframes cardRise {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px;
  }

  .faq-wrap {
    border-radius: 12px;
  }
}
