/* ============================================================
   HERO SLIDER — astrologyspiritualcenter.com
   Desktop: 1600×600px landscape | Mobile: 800×1000px portrait
   All classes prefixed: hero_
   Palette: #B80200 | #0B00FF | #FFD533 | #fff | #000
   ============================================================ */
/* @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap'); */

*, *::before, *::after { box-sizing: border-box; }

/* ── Wrapper ── */
.hero_section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

/* ── Track ── */
.hero_track {
  display: flex;
  width: 400%;
  will-change: transform;
  transition: transform .80s cubic-bezier(.77, 0, .175, 1);
}

/* ── Slide ── */
.hero_slide {
  position: relative;
  width: 25%;
  flex-shrink: 0;
  overflow: hidden;
}

/* ── picture fills the slide, img inside fills picture ── */
.hero_slide picture {
  display: block;
  width: 100%;
  line-height: 0;
}

/* ── Desktop image: full-width landscape, never cropped ── */
.hero_slide .hero_img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
  transform: scale(1.04);
  transition: transform 8s linear;
  image-rendering: auto;
}

.hero_slide.hero_active .hero_img {
  transform: scale(1);
}

/* ════════════════════════════════════════
   ANIMATION OVERLAY LAYERS (above images)
   ════════════════════════════════════════ */

/* ── 1. Subtle vignette edge darkening ── */
.hero_vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 48%,
    rgba(0, 0, 0, .38) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* ── 2. Star particle layer ── */
.hero_stars {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero_star {
  position: absolute;
  border-radius: 50%;
  background: #FFD533;
  opacity: 0;
  animation: hero_twinkle var(--dur, 3.5s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes hero_twinkle {
  0%, 100% { opacity: 0;    transform: scale(.4); }
  50%       { opacity: .80; transform: scale(1.5); }
}

/* ── 3. Floating astrology icon layer ── */
.hero_astro_layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero_icon {
  position: absolute;
  opacity: 0;
  transition: opacity .6s ease;
  animation: hero_drift var(--dur, 12s) var(--delay, 0s) ease-in-out infinite;
}

.hero_slide.hero_active .hero_icon {
  opacity: 1;
}

.hero_icon:nth-child(1) { top: 8%;    left: 4%;   width: 54px; --dur: 11s; --delay: 0s;   }
.hero_icon:nth-child(2) { top: 12%;   right: 5%;  width: 40px; --dur:  8s; --delay: 1.8s; }
.hero_icon:nth-child(3) { bottom:16%; left: 6%;   width: 32px; --dur: 13s; --delay: 3.2s; }
.hero_icon:nth-child(4) { bottom:10%; right: 5%;  width: 48px; --dur:  9s; --delay: 0.9s; }
.hero_icon:nth-child(5) { top: 42%;   left: 1.5%; width: 26px; --dur: 14s; --delay: 5s;   }
.hero_icon:nth-child(6) { top: 36%;   right: 2%;  width: 30px; --dur: 10s; --delay: 2.5s; }

@keyframes hero_drift {
  0%   { transform: translateY(0)     rotate(0deg);  }
  25%  { transform: translateY(-16px) rotate(10deg); }
  55%  { transform: translateY(-8px)  rotate(-7deg); }
  80%  { transform: translateY(-20px) rotate(12deg); }
  100% { transform: translateY(0)     rotate(0deg);  }
}

/* ── 4. Orbiting ring (top-right corner) ── */
.hero_orbit {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 213, 51, .22);
  z-index: 3;
  pointer-events: none;
  animation: hero_orbit_rot 22s linear infinite;
}

.hero_orbit::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFD533;
  box-shadow: 0 0 10px 3px rgba(255, 213, 51, .55);
}

.hero_orbit_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(184, 2, 0, .24);
  animation: hero_orbit_inner_rot 14s linear infinite reverse;
}

.hero_orbit_inner::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B80200;
  box-shadow: 0 0 8px 3px rgba(184, 2, 0, .50);
}

@keyframes hero_orbit_rot {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

@keyframes hero_orbit_inner_rot {
  from { transform: translate(-50%, -50%) rotate(0deg);   }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── 5. Bottom-left cosmic glow pulse ── */
.hero_glow {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(11, 0, 255, .26) 0%,
    transparent 70%);
  z-index: 3;
  pointer-events: none;
  animation: hero_pulse 5s ease-in-out infinite;
}

@keyframes hero_pulse {
  0%, 100% { transform: scale(1);    opacity: .6; }
  50%       { transform: scale(1.28); opacity: 1;  }
}

/* ── 6. Shooting stars ── */
.hero_shoot {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #FFD533, transparent);
}

.hero_shoot:nth-child(7) {
  width: 110px;
  top: 20%;
  left: 8%;
  transform: rotate(-28deg);
  animation: hero_shoot_anim 8s 2s ease-in-out infinite;
}

.hero_shoot:nth-child(8) {
  width: 75px;
  top: 52%;
  left: 52%;
  transform: rotate(-22deg);
  animation: hero_shoot_anim 8s 6s ease-in-out infinite;
}

@keyframes hero_shoot_anim {
  0%      { opacity: 0; transform: rotate(-28deg) translateX(-30px); }
  6%      { opacity: 1; }
  20%     { opacity: 0; transform: rotate(-28deg) translateX(130px); }
  100%    { opacity: 0; transform: rotate(-28deg) translateX(130px); }
}

/* ════════════
   CONTROLS
   ════════════ */

/* ── Arrows ── */
.hero_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .32);
  border: 2px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .22s, border-color .22s, transform .22s;
}
.hero_arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.hero_arrow:hover {
  background: #B80200;
  border-color: #B80200;
  transform: translateY(-50%) scale(1.1);
}
.hero_prev { left: 18px; }
.hero_next { right: 18px; }

/* ── Dots ── */
.hero_dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .40);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s, width .3s, border-radius .3s;
  flex-shrink: 0;
}
.hero_dot.hero_dot_active {
  background: #FFD533;
  width: 28px;
  border-radius: 6px;
}

/* ── Progress bar ── */
.hero_progress_bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD533, #B80200);
  z-index: 10;
  width: 0%;
}

/* ════════════════════════════════════════
   MOBILE IMAGE — portrait/square layout
   Breakpoint matches the <source media> above
   ════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Slide fills screen width naturally; height driven by image ratio */
  .hero_slide {
    min-height: unset;
  }

  /* Mobile image: portrait crop (800×1000), scale to full width */
  .hero_slide .hero_img {
    width: 100%;
    height: auto;
    min-height: unset;
    /* Disable Ken-Burns on mobile — keeps full portrait image in frame */
    transform: none !important;
    transition: none;
  }

  /* Reduce decorative clutter on small screens */
  .hero_icon:nth-child(3),
  .hero_icon:nth-child(4),
  .hero_icon:nth-child(5),
  .hero_icon:nth-child(6) { display: none; }

  .hero_icon:nth-child(1) { width: 36px; top: 6%;  left: 3%;  }
  .hero_icon:nth-child(2) { width: 28px; top: 8%;  right: 4%; }

  .hero_orbit             { width: 120px; height: 120px; top: -22px; right: -22px; }
  .hero_orbit_inner       { width: 70px;  height: 70px; }
  .hero_orbit::before     { width: 6px;   height: 6px; top: 10px; }

  .hero_glow              { width: 140px; height: 140px; bottom: -30px; left: -30px; }

  .hero_shoot             { display: none; }

  .hero_arrow             { width: 36px; height: 36px; }
  .hero_arrow svg         { width: 14px; height: 14px; }
  .hero_prev              { left: 8px; }
  .hero_next              { right: 8px; }

  .hero_dots              { bottom: 10px; }
  .hero_dot               { width: 8px; height: 8px; }
  .hero_dot.hero_dot_active { width: 20px; }
}

/* ── Tablet (768px – 900px) ── */
@media (min-width: 768px) and (max-width: 900px) {
  .hero_slide .hero_img   { min-height: 280px; }

  .hero_icon:nth-child(5),
  .hero_icon:nth-child(6) { display: none; }

  .hero_orbit             { width: 170px; height: 170px; top: -35px; right: -35px; }
  .hero_orbit_inner       { width: 100px; height: 100px; }

  .hero_arrow             { width: 42px; height: 42px; }
  .hero_arrow svg         { width: 17px; height: 17px; }
  .hero_prev              { left: 12px; }
  .hero_next              { right: 12px; }
}

/* ── Very small phones (≤ 380px) ── */
@media (max-width: 380px) {
  .hero_arrow     { width: 28px; height: 28px; }
  .hero_arrow svg { width: 11px; height: 11px; }
  .hero_prev      { left: 4px; }
  .hero_next      { right: 4px; }
}

/* ════════════════════
   REDUCED MOTION
   ════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero_track          { transition: none; }
  .hero_slide .hero_img { transition: none; transform: none !important; }
  .hero_star,
  .hero_icon,
  .hero_orbit,
  .hero_orbit_inner,
  .hero_glow,
  .hero_shoot          { animation: none; opacity: .12; }
}
/* about section css  */


/* ============================================================
   About Section — adobut_sec prefix
   High-performance, mobile-first, SEO-friendly
   Primary: #B80200 | #0B00FF | #FFD533 | white | black
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --adobut_sec-red:    #B80200;
  --adobut_sec-blue:   #0B00FF;
  --adobut_sec-gold:   #FFD533;
  --adobut_sec-dark:   #06061a;
  --adobut_sec-white:  #ffffff;
  --adobut_sec-text:   #d0cfe8;
  --adobut_sec-border: rgba(255, 213, 51, 0.25);
  --adobut_sec-glow:   rgba(184, 2, 0, 0.35);
  --adobut_sec-glow2:  rgba(11, 0, 255, 0.2);
}

/* ---- Section Wrapper ---- */
.adobut_sec {
  position: relative;
  background: var(--adobut_sec-dark);
  overflow: hidden;
  padding: 90px 0;
  contain: layout style;
}

/* Subtle star-field background via radial gradients — no extra images */
.adobut_sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 10% 20%, var(--adobut_sec-glow2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 80%, var(--adobut_sec-glow) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 50% 50%, rgba(255,213,51,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative orbiting ring — pure CSS astrology motif */
.adobut_sec__orbit-ring {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid var(--adobut_sec-border);
  animation: adobut_orbit_spin 40s linear infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.adobut_sec__orbit-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--adobut_sec-gold);
  box-shadow: 0 0 12px 4px var(--adobut_sec-gold);
  transform: translateX(-50%);
}

@keyframes adobut_orbit_spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ---- Inner Container ---- */
.adobut_sec__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ============================
   LEFT — Diamond Image Grid
   ============================ */
.adobut_sec__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

/* Main diamond frame */
.adobut_sec__diamond-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}

.adobut_sec__diamond-main {
  width: 320px;
  height: 320px;
  overflow: hidden;
  transform: rotate(45deg);
  border: 3px solid var(--adobut_sec-red);
  box-shadow:
    0 0 0 6px rgba(184,2,0,0.15),
    0 0 40px 8px rgba(184,2,0,0.25);
  animation: adobut_diamond_glow 4s ease-in-out infinite alternate;
  will-change: box-shadow;
}

@keyframes adobut_diamond_glow {
  from {
    box-shadow:
      0 0 0 6px rgba(184,2,0,0.15),
      0 0 40px 8px rgba(184,2,0,0.25);
  }
  to {
    box-shadow:
      0 0 0 8px rgba(255,213,51,0.18),
      0 0 60px 18px rgba(184,2,0,0.45);
  }
}

.adobut_sec__diamond-main img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  transform: rotate(-45deg) translate(0%, -16%);
  display: block;
  /* Prevent layout shift */
  aspect-ratio: 1 / 1;
}

/* Small diamond — bottom-left */
.adobut_sec__diamond-sm {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 160px;
  height: 160px;
  overflow: hidden;
  transform: rotate(45deg);
  border: 2px solid rgba(11,0,255,0.5);
  opacity: 0.85;
  animation: adobut_fade_in 1.2s ease 0.4s both;
}

.adobut_sec__diamond-sm img {
  width: 155%;
  height: 155%;
  object-fit: cover;
  object-position: center;
  transform: rotate(-45deg) translate(-17%, 13%);
  display: block;
  filter: brightness(0.55) saturate(0.4);
}

/* Small diamond — bottom-right */
.adobut_sec__diamond-sm2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  overflow: hidden;
  transform: rotate(45deg);
  border: 2px solid rgba(11,0,255,0.5);
  opacity: 0.85;
  animation: adobut_fade_in 1.2s ease 0.6s both;
}

.adobut_sec__diamond-sm2 img {
  width: 155%;
  height: 155%;
  object-fit: cover;
  object-position: center;
  transform: rotate(-45deg) translate(-17%, 13%);
  display: block;
  filter: brightness(0.55) saturate(0.4);
}

/* Floating star dots — pure CSS */
.adobut_sec__star {
  position: absolute;
  border-radius: 50%;
  background: var(--adobut_sec-gold);
  opacity: 0;
  animation: adobut_star_twinkle var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
  will-change: opacity, transform;
  pointer-events: none;
}

@keyframes adobut_star_twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50%       { opacity: 1; transform: scale(1); }
}

.adobut_sec__star--1 { width:4px; height:4px; top:8%;  left:80%; --dur:2.8s; --delay:0s;    }
.adobut_sec__star--2 { width:3px; height:3px; top:20%; left:5%;  --dur:3.4s; --delay:0.8s;  }
.adobut_sec__star--3 { width:5px; height:5px; top:75%; left:12%; --dur:2.2s; --delay:1.4s;  }
.adobut_sec__star--4 { width:3px; height:3px; top:55%; left:88%; --dur:4s;   --delay:0.3s;  }
.adobut_sec__star--5 { width:4px; height:4px; top:90%; left:60%; --dur:3s;   --delay:1.9s;  }

/* ============================
   RIGHT — Content
   ============================ */
.adobut_sec__content {
  animation: adobut_slide_up 0.9s cubic-bezier(.22,1,.36,1) both;
}

@keyframes adobut_slide_up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Label */
.adobut_sec__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--adobut_sec-gold);
  margin-bottom: 16px;
}

.adobut_sec__label-line {
  display: block;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--adobut_sec-gold), transparent);
}

/* Heading */
.adobut_sec__heading {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--adobut_sec-white);
  margin: 0 0 24px;
}

.adobut_sec__heading span {
  color: var(--adobut_sec-red);
}

/* Body text */
.adobut_sec__body {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.85;
  color: var(--adobut_sec-text);
  margin: 0 0 20px;
}

/* Experience counter row */
.adobut_sec__stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 32px 0 36px;
  flex-wrap: wrap;
}

.adobut_sec__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.adobut_sec__stat-number {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--adobut_sec-red);
  letter-spacing: -0.02em;
}

.adobut_sec__stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--adobut_sec-white);
  margin-top: 4px;
}

.adobut_sec__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--adobut_sec-border);
}

/* Expertise tags */
.adobut_sec__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.adobut_sec__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid var(--adobut_sec-border);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--adobut_sec-text);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.adobut_sec__tag i {
  font-size: 0.72rem;
  color: var(--adobut_sec-gold);
}

.adobut_sec__tag:hover {
  border-color: var(--adobut_sec-gold);
  color: var(--adobut_sec-white);
  background: rgba(255,213,51,0.07);
}

/* CTA Button */
.adobut_sec__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border: 2px solid var(--adobut_sec-red);
  border-radius: 2px;
  background: transparent;
  color: var(--adobut_sec-white);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

.adobut_sec__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--adobut_sec-red);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
  z-index: 0;
}

.adobut_sec__cta:hover::before {
  transform: translateX(0);
}

.adobut_sec__cta:hover {
  color: var(--adobut_sec-white);
}

.adobut_sec__cta span,
.adobut_sec__cta i {
  position: relative;
  z-index: 1;
}

/* ============================
   Fade-in Utility
   ============================ */
@keyframes adobut_fade_in {
  from { opacity: 0; transform: rotate(45deg) scale(0.85); }
  to   { opacity: 0.85; transform: rotate(45deg) scale(1); }
}

/* ============================
   RESPONSIVE
   ============================ */

/* Tablet */
@media (max-width: 1024px) {
  .adobut_sec {
    padding: 70px 0;
  }

  .adobut_sec__container {
    gap: 44px;
  }

  .adobut_sec__diamond-wrap {
    width: 280px;
    height: 280px;
  }

  .adobut_sec__diamond-main {
    width: 280px;
    height: 280px;
  }

  .adobut_sec__orbit-ring {
    width: 400px;
    height: 400px;
  }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  .adobut_sec {
    padding: 60px 0;
  }

  .adobut_sec__container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .adobut_sec__visual {
    min-height: 380px;
  }

  .adobut_sec__diamond-wrap {
    width: 260px;
    height: 260px;
  }

  .adobut_sec__diamond-main {
    width: 260px;
    height: 260px;
  }

  .adobut_sec__diamond-sm,
  .adobut_sec__diamond-sm2 {
    width: 128px;
    height: 128px;
    bottom: -20px;
  }

  .adobut_sec__diamond-sm  { left: -16px; }
  .adobut_sec__diamond-sm2 { right: -16px; }

  .adobut_sec__orbit-ring {
    left: -10%;
    width: 340px;
    height: 340px;
    top: 40%;
  }

  .adobut_sec__content {
    animation-delay: 0.15s;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .adobut_sec {
    padding: 48px 0;
  }

  .adobut_sec__container {
    padding: 0 16px;
    gap: 48px;
  }

  .adobut_sec__visual {
    min-height: 320px;
  }

  .adobut_sec__diamond-wrap {
    width: 220px;
    height: 220px;
  }

  .adobut_sec__diamond-main {
    width: 220px;
    height: 220px;
  }

  .adobut_sec__diamond-sm,
  .adobut_sec__diamond-sm2 {
    width: 110px;
    height: 110px;
  }

  .adobut_sec__stats {
    gap: 24px;
  }

  .adobut_sec__stat-divider {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .adobut_sec__orbit-ring,
  .adobut_sec__diamond-main,
  .adobut_sec__star,
  .adobut_sec__content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .adobut_sec__diamond-sm,
  .adobut_sec__diamond-sm2 {
    opacity: 0.85 !important;
  }
}

/* testimonila section */
  :root {
      --tsim-red:        #B80200;
      --tsim-red-dark:   #8a0100;
      --tsim-blue:       #0B00FF;
      --tsim-blue-dark:  #0700bb;
      --tsim-gold:       #FFD533;
      --tsim-white:      #ffffff;
      --tsim-black:      #000000;
      --tsim-bg:         #0a0000;          /* pure brand black with red warmth */
      --tsim-card-bg:    #ffffff;          /* card: very dark red-black */
      --tsim-card-feat:  #ffffff;          /* featured card: very dark blue-black */
      --tsim-card-bdr:   rgba(184,2,0,.35);
      --tsim-card-feat-bdr: rgba(11,0,255,.5);
      --tsim-text-dim:   rgba(0, 0, 0, 0.65);
      --tsim-radius:     18px;
      --tsim-ease:       .42s cubic-bezier(.4,0,.2,1);
      --tsim-shadow:     0 8px 40px #B80200;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { background: var(--tsim-black); font-family: Georgia, 'Times New Roman', serif; }

    /* ══════════════════════════════════════════════
       SECTION
    ══════════════════════════════════════════════ */
    .testimonial_sec {
      position: relative;
      background-color: #8C0200;
      padding: 90px 20px 80px;
      overflow: hidden;
    }

    /* ── Brand-color radial glow patches ── */
    .testimonial_sec::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 60% 40% at 15% 20%,  rgba(184,2,0,.18)   0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 85% 75%,  rgba(11,0,255,.14)  0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 50% 50%,  rgba(255,213,51,.05) 0%, transparent 70%);
    }

    /* ── Stars (brand gold + white only) ── */
    .testimonial_sec__stars { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
    .testimonial_sec__stars-layer {
      position: absolute; inset: 0;
      background-image:
        radial-gradient(1.2px 1.2px at  7% 11%, rgba(255,213,51,.75) 0%, transparent 100%),
        radial-gradient(1px   1px   at 21% 57%, rgba(255,255,255,.4)  0%, transparent 100%),
        radial-gradient(1.2px 1.2px at 37% 27%, rgba(255,213,51,.6)  0%, transparent 100%),
        radial-gradient(1px   1px   at 51% 81%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1.2px 1.2px at 66% 17%, rgba(255,213,51,.55) 0%, transparent 100%),
        radial-gradient(1px   1px   at 78% 51%, rgba(255,255,255,.38) 0%, transparent 100%),
        radial-gradient(1.2px 1.2px at 90%  7%, rgba(255,213,51,.65) 0%, transparent 100%),
        radial-gradient(1px   1px   at 13% 87%, rgba(255,255,255,.3)  0%, transparent 100%),
        radial-gradient(1.2px 1.2px at 57% 41%, rgba(255,213,51,.5)  0%, transparent 100%),
        radial-gradient(1px   1px   at 32% 71%, rgba(255,255,255,.28) 0%, transparent 100%),
        radial-gradient(1px   1px   at 74% 34%, rgba(255,255,255,.25) 0%, transparent 100%),
        radial-gradient(1.2px 1.2px at 44% 64%, rgba(255,213,51,.45) 0%, transparent 100%),
        radial-gradient(1px   1px   at 62% 88%, rgba(255,255,255,.32) 0%, transparent 100%),
        radial-gradient(1.2px 1.2px at  3% 45%, rgba(255,213,51,.38) 0%, transparent 100%);
      background-size: 260px 260px;
    }
    .testimonial_sec__stars-layer--sm  { opacity:.8;  animation: tsimTwinkle  4s ease-in-out infinite alternate; }
    .testimonial_sec__stars-layer--md  { background-size: 460px 460px; opacity:.55; animation: tsimTwinkle  7s ease-in-out infinite alternate-reverse; }
    .testimonial_sec__stars-layer--lg  { background-size: 760px 760px; opacity:.35; animation: tsimTwinkle 12s ease-in-out infinite alternate; }
    @keyframes tsimTwinkle { 0%{opacity:.2} 100%{opacity:.85} }

    /* ══════════════════════════════════════════════
       HEADER
    ══════════════════════════════════════════════ */
    .testimonial_sec__header {
      position: relative; z-index: 1;
      text-align: center; max-width: 700px; margin: 0 auto 52px;
    }
    .testimonial_sec__eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--tsim-gold); margin-bottom: 14px; font-family: sans-serif;
    }
    .testimonial_sec__eyebrow .fas { font-size: .68rem; animation: tsimSpin 9s linear infinite; }
    @keyframes tsimSpin { to { transform: rotate(360deg); } }

    .testimonial_sec__title {
      font-size: clamp(1.65rem, 4vw, 2.75rem); font-weight: 700;
      color: var(--tsim-white); line-height: 1.18; margin: 0 0 20px;
      text-shadow: 0 2px 18px rgba(184,2,0,.3);
    }

    .testimonial_sec__divider {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; width: 220px; margin: 0 auto 20px;
    }
    .testimonial_sec__divider-line {
      flex: 1; height: 1px;
      background: linear-gradient(90deg, transparent, var(--tsim-red), transparent);
    }
    .testimonial_sec__divider-icon {
      color: var(--tsim-gold); font-size: .88rem;
      animation: tsimPulse 2.4s ease-in-out infinite;
      text-shadow: 0 0 8px rgba(255,213,51,.6);
    }
    @keyframes tsimPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }

    .testimonial_sec__subtitle {
      font-size: clamp(.88rem, 2vw, 1rem);
      color: var(--tsim-text-dim); line-height: 1.75; font-family: sans-serif;
    }

    /* ══════════════════════════════════════════════
       SLIDER SHELL
    ══════════════════════════════════════════════ */
    .testimonial_sec__slider-outer {
      position: relative; z-index: 1;
      display: flex; align-items: center; gap: 12px;
      max-width: 1180px; margin: 0 auto;
    }
    .testimonial_sec__track-wrap { overflow: hidden; width: 100%; cursor: grab; }
    .testimonial_sec__track-wrap:active { cursor: grabbing; }
    .testimonial_sec__track {
      display: flex; gap: 24px;
      transition: transform var(--tsim-ease);
      will-change: transform;
      -webkit-user-select: none; user-select: none;
    }

    /* ══════════════════════════════════════════════
       CARD
    ══════════════════════════════════════════════ */
    .testimonial_sec__card {
      position: relative;
      flex: 0 0 calc(33.333% - 16px);
      background: var(--tsim-card-bg);
      border: 1px solid var(--tsim-card-bdr);
      border-radius: var(--tsim-radius);
      padding: 0 0 28px;
      overflow: hidden;
      box-shadow: var(--tsim-shadow), inset 0 0 30px rgba(184,2,0,.04);
      transition: transform var(--tsim-ease), box-shadow var(--tsim-ease);
    }
    .testimonial_sec__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 22px 60px rgba(184,2,0,.28), 0 4px 24px rgba(0,0,0,.7);
    }

    /* Featured (centre) — blue theme */
    .testimonial_sec__card--featured {
      background: var(--tsim-card-feat);
      border-color: var(--tsim-card-feat-bdr);
      transform: translateY(-14px) scale(1.028);
      box-shadow: 0 18px 68px rgba(11,0,255,.32), 0 4px 24px rgba(0,0,0,.7),
                  inset 0 0 30px rgba(11,0,255,.05);
    }
    .testimonial_sec__card--featured:hover {
      transform: translateY(-21px) scale(1.028);
      box-shadow: 0 26px 76px rgba(11,0,255,.4), 0 4px 24px rgba(0,0,0,.7);
    }

    /* Top accent bar */
    .testimonial_sec__card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--tsim-red), var(--tsim-gold), var(--tsim-red), transparent);
    }
    .testimonial_sec__card--featured::before {
      background: linear-gradient(90deg, transparent, var(--tsim-blue), var(--tsim-gold), var(--tsim-blue), transparent);
    }

    /* Inner glow */
    .testimonial_sec__card-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .testimonial_sec__card-nebula {
      position: absolute; top: -50%; left: -15%; width: 130%; height: 90%;
      background: radial-gradient(ellipse at 50% 0%, rgba(184,2,0,.12) 0%, transparent 65%);
      filter: blur(30px);
    }
    .testimonial_sec__card--featured .testimonial_sec__card-nebula {
      background: radial-gradient(ellipse at 50% 0%, rgba(11,0,255,.16) 0%, transparent 65%);
    }

    /* ══════════════════════════════════════════════
       AVATAR
    ══════════════════════════════════════════════ */
    .testimonial_sec__avatar-wrap {
      position: relative; display: flex; justify-content: center;
      padding-top: 30px; padding-bottom: 14px; z-index: 1;
    }
    /* spinning dashed ring — gold */
    .testimonial_sec__avatar-ring {
      position: absolute; top: 18px;
      width: 86px; height: 86px; border-radius: 50%;
      border: 2px dashed rgba(255,213,51,.55);
      animation: tsimRingRotate 7s linear infinite;
    }
    @keyframes tsimRingRotate { to { transform: rotate(360deg); } }

    /* avatar circle */
    .testimonial_sec__avatar {
      position: relative;
      width: 72px; height: 72px; border-radius: 50%;
      border: 3px solid var(--tsim-gold);
      overflow: hidden; flex-shrink: 0;
      /* red-to-black gradient — brand only */
      background: radial-gradient(circle at 50% 35%, #3a0000 0%, #0a0000 100%);
      box-shadow:
        0 0 0 4px rgba(184,2,0,.2),
        0 4px 22px rgba(184,2,0,.5);
      display: flex; align-items: flex-end; justify-content: center;
    }
    .testimonial_sec__card--featured .testimonial_sec__avatar {
      border-color: var(--tsim-gold);
      /* blue-to-black gradient — brand only */
      background: radial-gradient(circle at 50% 35%, #00003a 0%, #00000a 100%);
      box-shadow:
        0 0 0 4px rgba(11,0,255,.22),
        0 4px 22px rgba(11,0,255,.55);
    }

    /* SVG human silhouette */
    .testimonial_sec__avatar img {
      width: 54px; height: 54px; display: block;
    }

    /* ══════════════════════════════════════════════
       CARD BODY
    ══════════════════════════════════════════════ */
    .testimonial_sec__card-body {
      position: relative; z-index: 1; padding: 4px 22px 0; text-align: center;
    }
    .testimonial_sec__client-name {
      font-size: 1.06rem; font-weight: 700; color: var(--tsim-red); margin: 0 0 3px;
      text-shadow: 0 0 12px rgba(184,2,0,.4);
    }
    .testimonial_sec__card--featured .testimonial_sec__client-name {
      color: #6a78ff;
      text-shadow: 0 0 12px rgba(11,0,255,.4);
    }
    .testimonial_sec__client-role {
      font-size: .72rem; color: var(--tsim-text-dim); margin: 0 0 14px;
      letter-spacing: .06em; text-transform: uppercase; font-family: sans-serif;
    }
    .testimonial_sec__quote {
      font-size: .88rem; line-height: 1.8; color: rgba(0, 0, 0, 0.75);
      font-style: italic; margin: 0 0 14px; padding: 0; border: none;
    }
    .testimonial_sec__rating { display: flex; justify-content: center; gap: 3px; margin-bottom: 10px; }
    .testimonial_sec__rating .fas {
      color: var(--tsim-gold); font-size: .78rem;
      filter: drop-shadow(0 0 3px rgba(255,213,51,.5));
    }
    .testimonial_sec__quote-icon {
      display: flex; justify-content: center; font-size: 1.3rem; opacity: .7;
      color: var(--tsim-red);
    }
    .testimonial_sec__card--featured .testimonial_sec__quote-icon { color: #6a78ff; }

    /* ══════════════════════════════════════════════
       ARROWS
    ══════════════════════════════════════════════ */
    .testimonial_sec__arrow {
      flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
      border: 2px solid var(--tsim-red); background: rgba(184,2,0,.08);
      color: var(--tsim-white); font-size: .92rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background var(--tsim-ease), transform var(--tsim-ease),
                  box-shadow var(--tsim-ease);
      z-index: 2;
    }
    .testimonial_sec__arrow:hover {
      background: var(--tsim-red);
      box-shadow: 0 0 18px rgba(184,2,0,.6);
      transform: scale(1.1);
    }
    .testimonial_sec__arrow:focus-visible { outline: 2px solid var(--tsim-gold); outline-offset: 3px; }

    /* ══════════════════════════════════════════════
       DOTS
    ══════════════════════════════════════════════ */
    .testimonial_sec__dots {
      position: relative; z-index: 1;
      display: flex; justify-content: center; gap: 8px; margin-top: 36px;
    }
    .testimonial_sec__dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.2); border: none; cursor: pointer; padding: 0;
      transition: background var(--tsim-ease), width var(--tsim-ease), border-radius var(--tsim-ease);
    }
    .testimonial_sec__dot.active {
      background: var(--tsim-red); width: 28px; border-radius: 4px;
      box-shadow: 0 0 8px rgba(184,2,0,.6);
    }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width: 960px) {
      .testimonial_sec__card { flex: 0 0 calc(50% - 12px); }
      .testimonial_sec__card--featured { transform: none; }
      .testimonial_sec__card--featured:hover { transform: translateY(-8px); }
    }
    @media (max-width: 600px) {
      .testimonial_sec { padding: 62px 10px 60px; }
      .testimonial_sec__card { flex: 0 0 100%; }
      .testimonial_sec__slider-outer { gap: 6px; }
      .testimonial_sec__arrow { width: 36px; height: 36px; font-size: .82rem; }
      .testimonial_sec__card-body { padding: 4px 16px 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      .testimonial_sec__stars-layer,
      .testimonial_sec__eyebrow .fas,
      .testimonial_sec__divider-icon,
      .testimonial_sec__avatar-ring { animation: none; }
      .testimonial_sec__track { transition: none; }
    }


    /* our services  */

/* =============================================
           OUR SERVICES SECTION
           ============================================= */

        .our_services_sec {
            position: relative;
            overflow: hidden;
            padding: 90px 0 100px;
            background: #0C0152;
            isolation: isolate;
        }

        .our_services_sec__bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .our_services_sec__moon {
            position: absolute;
            right: -180px;
            bottom: -180px;
            width: 560px;
            height: 560px;
            border-radius: 50%;
            background: radial-gradient(
                circle at 40% 38%,
                #0d0833 0%,
                #070220 35%,
                #000010 65%,
                transparent 100%
            );
            box-shadow:
                0 0 80px 30px rgba(11, 0, 255, 0.08),
                0 0 160px 60px rgba(11, 0, 255, 0.04);
            animation: our_services_sec_moon_pulse 8s ease-in-out infinite alternate;
            will-change: opacity, transform;
        }

        @keyframes our_services_sec_moon_pulse {
            0%   { opacity: .55; transform: scale(1); }
            100% { opacity: .85; transform: scale(1.04); }
        }

        .our_services_sec__stars {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(1px 1px at 10% 15%, rgba(255,213,51,.55) 0%, transparent 100%),
                radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,.35) 0%, transparent 100%),
                radial-gradient(1px 1px at 45%  8%, rgba(255,213,51,.4)  0%, transparent 100%),
                radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,.3)  0%, transparent 100%),
                radial-gradient(1px 1px at 78% 55%, rgba(255,213,51,.45) 0%, transparent 100%),
                radial-gradient(1px 1px at 88% 12%, rgba(255,255,255,.35) 0%, transparent 100%),
                radial-gradient(1px 1px at 15% 70%, rgba(255,213,51,.3)  0%, transparent 100%),
                radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,.25) 0%, transparent 100%),
                radial-gradient(1px 1px at 55% 65%, rgba(255,213,51,.4)  0%, transparent 100%),
                radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,.3)  0%, transparent 100%),
                radial-gradient(1.5px 1.5px at 5% 90%, rgba(184,2,0,.5)  0%, transparent 100%),
                radial-gradient(1.5px 1.5px at 92% 78%, rgba(184,2,0,.45) 0%, transparent 100%);
            animation: our_services_sec_twinkle 6s ease-in-out infinite alternate;
            will-change: opacity;
        }

        @keyframes our_services_sec_twinkle {
            0%   { opacity: .6; }
            100% { opacity: 1; }
        }

        .our_services_sec__container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .our_services_sec__header {
            text-align: center;
            margin-bottom: 60px;
        }

        .our_services_sec__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: .78rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: #B80200;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .our_services_sec__eyebrow .fa-star {
            font-size: .6rem;
            color: #FFD533;
            animation: our_services_sec_spin_slow 10s linear infinite;
            will-change: transform;
        }

        @keyframes our_services_sec_spin_slow {
            to { transform: rotate(360deg); }
        }

        .our_services_sec__heading {
            font-size: clamp(1.65rem, 3.8vw, 2.75rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.28;
            margin: 0 auto 20px;
            max-width: 780px;
            letter-spacing: .01em;
        }

        .our_services_sec__subtext {
            font-size: clamp(.88rem, 1.4vw, 1rem);
            color: rgba(255, 255, 255, .62);
            line-height: 1.75;
            max-width: 640px;
            margin: 0 auto;
        }

        .our_services_sec__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        /* ---- Individual card ---- */
        .our_services_sec__card {
            position: relative;
            background: rgba(255, 255, 255, .035);
            border: 2px solid rgba(184, 2, 0, .35);
            border-radius: 4px;
            padding: 36px 28px 30px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition:
                opacity .55s ease,
                transform .55s ease,
                border-color .35s ease,
                box-shadow .35s ease;
            cursor: default;
        }

        /* ---- ROTATING ZODIAC WHEEL BACKGROUND ---- */
        .our_services_sec__card-zodiac {
            position: absolute;
           
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(0deg);
            width: 85%;
            aspect-ratio: 1;
            border-radius: 50%;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.07;
            animation: zodiac_card_rotate 40s linear infinite;
            will-change: transform;
            pointer-events: none;
            z-index: 0;
            transition: opacity .4s ease;
        }

        .our_services_sec__card:hover .our_services_sec__card-zodiac {
            opacity: 0.14;
            animation-duration: 20s;
        }

        @keyframes zodiac_card_rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to   { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Alternate rotation direction on even cards */
        .our_services_sec__card:nth-child(even) .our_services_sec__card-zodiac {
            animation-direction: reverse;
        }

        /* All card content sits above the zodiac */
        .our_services_sec__card-icon,
        .our_services_sec__card-title,
        .our_services_sec__card-text,
        .our_services_sec__card-link {
            position: relative;
            z-index: 1;
        }

        /* ---- Shimmer sweep on hover ---- */
        .our_services_sec__card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                120deg,
                transparent 30%,
                rgba(255, 213, 51, .06) 50%,
                transparent 70%
            );
            transform: translateX(-100%);
            transition: transform .55s ease;
            pointer-events: none;
            z-index: 1;
        }

        .our_services_sec__card:hover::before {
            transform: translateX(100%);
        }

        /* ---- Top accent line ---- */
        .our_services_sec__card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, #B80200, #FFD533, #0B00FF);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s cubic-bezier(.4,0,.2,1);
            z-index: 2;
        }

        .our_services_sec__card:hover::after {
            transform: scaleX(1);
        }

        .our_services_sec__card.our_services_sec--visible {
            opacity: 1;
            transform: translateY(0);
        }

        .our_services_sec__card.our_services_sec--visible:hover {
            transform: translateY(-6px);
            border-color: rgba(184, 2, 0, .7);
            box-shadow:
                0 16px 48px rgba(0, 0, 0, .45),
                0 0 0 1px rgba(255, 213, 51, .12),
                0 0 30px rgba(184, 2, 0, .15);
        }

        /* Staggered reveal */
        .our_services_sec__card:nth-child(1) { transition-delay: .05s; }
        .our_services_sec__card:nth-child(2) { transition-delay: .12s; }
        .our_services_sec__card:nth-child(3) { transition-delay: .19s; }
        .our_services_sec__card:nth-child(4) { transition-delay: .26s; }
        .our_services_sec__card:nth-child(5) { transition-delay: .33s; }
        .our_services_sec__card:nth-child(6) { transition-delay: .40s; }

        /* Header reveal */
        .our_services_sec__header {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity .6s ease, transform .6s ease;
        }

        .our_services_sec__header.our_services_sec--visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ---- Card icon ---- */
        .our_services_sec__card-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .our_services_sec__card-icon svg {
            animation: our_services_sec_icon_rotate 18s linear infinite;
            will-change: transform;
        }

        @keyframes our_services_sec_icon_rotate {
            to { transform: rotate(360deg); }
        }

        .our_services_sec__card:hover .our_services_sec__card-icon svg {
            animation-duration: 4s;
        }

        .our_services_sec__card-title {
            font-size: 1.12rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.35;
            margin: 0;
            letter-spacing: .015em;
            transition: color .3s ease;
        }

        .our_services_sec__card:hover .our_services_sec__card-title {
            color: #FFD533;
        }

        .our_services_sec__card-text {
            font-size: .88rem;
            color: rgba(255, 255, 255, .58);
            line-height: 1.75;
            margin: 0;
            flex: 1;
        }

        .our_services_sec__card-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #B80200;
            text-decoration: none;
            transition: color .3s ease, gap .3s ease;
            margin-top: 4px;
            width: fit-content;
        }

        .our_services_sec__card-link .fa-arrow-right {
            font-size: .72rem;
            transition: transform .3s ease;
        }

        .our_services_sec__card-link:hover {
            color: #FFD533;
            gap: 12px;
        }

        .our_services_sec__card-link:hover .fa-arrow-right {
            transform: translateX(4px);
        }

        /* =============================================
           RESPONSIVE
           ============================================= */

        @media (max-width: 1024px) {
            .our_services_sec { padding: 70px 0 80px; }
            .our_services_sec__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
            .our_services_sec__moon { width: 380px; height: 380px; right: -120px; bottom: -120px; }
        }

        @media (max-width: 768px) {
            .our_services_sec { padding: 56px 0 64px; }
            .our_services_sec__header { margin-bottom: 44px; }
            .our_services_sec__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
            .our_services_sec__card { padding: 28px 20px 24px; }
            .our_services_sec__moon { width: 280px; height: 280px; right: -80px; bottom: -80px; }
            .our_services_sec__card-zodiac { width: 80%; }
        }

        @media (max-width: 500px) {
            .our_services_sec__grid { grid-template-columns: 1fr; gap: 16px; }
            .our_services_sec__card { padding: 26px 18px 22px; }
            .our_services_sec__moon { width: 220px; height: 220px; right: -60px; bottom: -60px; }

        }

        @media (prefers-reduced-motion: reduce) {
            .our_services_sec__moon,
            .our_services_sec__stars,
            .our_services_sec__eyebrow .fa-star,
            .our_services_sec__card-icon svg,
            .our_services_sec__card-zodiac { animation: none; }
            .our_services_sec__card,
            .our_services_sec__header { opacity: 1; transform: none; transition: border-color .3s, box-shadow .3s; }
        }

        /* sign section  */

        /* ============================================================
   Zodiac Sign Section — zodiac.css
   Matches reference: deep purple bg, gold constellation images,
   white text, arrow animates left-to-right on scroll
   ============================================================ */

.zsec {
    background: #3b0764;
    background-image:
        radial-gradient(ellipse at 20% 50%, #4a0080 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, #2d0050 0%, transparent 55%);
    padding: 80px 20px 90px;
    overflow: hidden;
    position: relative;
}

/* tiny star dots in background */
.zsec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.55) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,213,51,0.4) 1px, transparent 1px);
    background-size: 90px 90px, 55px 55px, 130px 130px;
    background-position: 10px 10px, 35px 35px, 65px 20px;
    pointer-events: none;
    z-index: 0;
}

.zsec__container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ---------- Header ---------- */
.zsec__header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.zsec__header.zsec--in {
    opacity: 1;
    transform: translateY(0);
}

.zsec__label {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #E21A16;
    font-weight: 700;
    margin-bottom: 16px;
}

.zsec__title {
    font-family: 'Georgia', serif;
    font-size: clamp(1.8rem, 3.8vw, 2.9rem);
    line-height: 1.22;
    color: #ffffff;
    margin: 0 0 18px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.zsec__desc {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ---------- Grid ---------- */
.zsec__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 10px;
}

/* ---------- Card ---------- */
.zsec__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 8px;
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: opacity, transform;
}

/* stagger delays */
.zsec__card:nth-child(1)  { transition-delay: 0.00s; }
.zsec__card:nth-child(2)  { transition-delay: 0.07s; }
.zsec__card:nth-child(3)  { transition-delay: 0.14s; }
.zsec__card:nth-child(4)  { transition-delay: 0.21s; }
.zsec__card:nth-child(5)  { transition-delay: 0.28s; }
.zsec__card:nth-child(6)  { transition-delay: 0.35s; }
.zsec__card:nth-child(7)  { transition-delay: 0.00s; }
.zsec__card:nth-child(8)  { transition-delay: 0.07s; }
.zsec__card:nth-child(9)  { transition-delay: 0.14s; }
.zsec__card:nth-child(10) { transition-delay: 0.21s; }
.zsec__card:nth-child(11) { transition-delay: 0.28s; }
.zsec__card:nth-child(12) { transition-delay: 0.35s; }

.zsec__card.zsec--in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Image ---------- */
.zsec__img-wrap {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 14px;
}

.zsec__img-wrap img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
    object-position: left bottom;
    display: block;
    /* keep constellation glow on dark bg */
    filter: drop-shadow(0 0 6px rgba(255,213,51,0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.zsec__card:hover .zsec__img-wrap img {
    filter: drop-shadow(0 0 12px rgba(255,213,51,0.6));
    transform: translateY(-4px);
}

/* ---------- Arrow Row ---------- */
.zsec__arrow-row {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    overflow: hidden;
}

/* The horizontal line — animates width left→right on scroll */
.zsec__line {
    display: block;
    height: 1.5px;
    width: 0;
    background: #ffffff;
    transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    max-width: calc(100% - 14px);
}

.zsec__card.zsec--in .zsec__line {
    width: calc(100% - 14px);
}

/* Arrowhead triangle — appears after line grows */
.zsec__arrowhead {
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid #ffffff;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.25s ease 0.65s;
}

.zsec__card.zsec--in .zsec__arrowhead {
    opacity: 1;
}

/* ---------- Text ---------- */
.zsec__name {
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 5px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    transition: color 0.3s;
}

.zsec__card:hover .zsec__name {
    color: #FFD533;
}

.zsec__dates {
    font-family: 'Georgia', serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.4;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .zsec__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 16px;
    }
    /* reset stagger for rows of 4 */
    .zsec__card:nth-child(5)  { transition-delay: 0.00s; }
    .zsec__card:nth-child(6)  { transition-delay: 0.07s; }
    .zsec__card:nth-child(7)  { transition-delay: 0.14s; }
    .zsec__card:nth-child(8)  { transition-delay: 0.21s; }
    .zsec__card:nth-child(9)  { transition-delay: 0.00s; }
    .zsec__card:nth-child(10) { transition-delay: 0.07s; }
    .zsec__card:nth-child(11) { transition-delay: 0.14s; }
    .zsec__card:nth-child(12) { transition-delay: 0.21s; }
}

@media (max-width: 700px) {
    .zsec {
        padding: 60px 16px 70px;
    }
    .zsec__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 34px 12px;
    }
    .zsec__img-wrap {
        height: 100px;
    }
    .zsec__img-wrap img {
        max-height: 100px;
    }
    .zsec__title {
        font-size: 1.55rem;
    }
    .zsec__header {
        margin-bottom: 44px;
    }
}

@media (max-width: 430px) {
    .zsec__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 14px;
    }
    .zsec__img-wrap {
        height: 90px;
    }
    .zsec__img-wrap img {
        max-height: 90px;
    }
    .zsec__name {
        font-size: 0.95rem;
    }
}


/* why choose us  */
         *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body { background: #04001a; font-family: Georgia, 'Times New Roman', serif; }

:root {
    --why-red: #B80200;
    --why-blue: #0B00FF;
    --why-gold: #FFD533;
    --why-dark: #0a0a12;
    --why-dark-alt: #111124;
    --why-card-bg: rgba(255, 255, 255, 0.04);
    --why-border: rgba(255, 213, 51, 0.15);
    --why-text: #e8e4f0;
    --why-text-muted: #a09cb8;
}

/* ---- Section Wrapper ---- */
.why_sec {
    position: relative;
    background: var(--why-dark);
    padding: 90px 0 80px;
    overflow: hidden;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* =============================================
   ENHANCED SECTION BACKGROUND
   ============================================= */

/* Deep space gradient base */
.why_sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(184,2,0,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 80%, rgba(11,0,255,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 0% 60%, rgba(255,213,51,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Large rotating zodiac wheel as SECTION background */
.why_sec__bg-zodiac {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: min(900px, 130vw);
    aspect-ratio: 1;
    pointer-events: none;
    z-index: 0;
    animation: why_bg_zodiac_rotate 120s linear infinite;
    will-change: transform;
}

.why_sec__bg-zodiac img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.06;
    filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg) brightness(0.9);
    display: block;
}

@keyframes why_bg_zodiac_rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Nebula blobs */
.why_sec__bg-nebula {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.why_sec__bg-nebula::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184,2,0,0.08) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(40px);
    animation: why_nebula_drift 15s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

.why_sec__bg-nebula::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11,0,255,0.1) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(50px);
    animation: why_nebula_drift 18s ease-in-out infinite alternate-reverse;
    will-change: transform, opacity;
}

@keyframes why_nebula_drift {
    0%   { transform: translate(0, 0) scale(1);    opacity: .7; }
    100% { transform: translate(30px, -20px) scale(1.1); opacity: 1; }
}

/* Shooting star line */
.why_sec__shooting-star {
    position: absolute;
    top: 15%;
    left: -100px;
    width: 160px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,213,51,0.7), transparent);
    animation: why_shoot 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.why_sec__shooting-star:nth-child(2) {
    top: 55%;
    animation-delay: 4s;
    animation-duration: 10s;
    width: 120px;
}

@keyframes why_shoot {
    0%   { left: -200px; top: 15%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 110%; top: 25%; opacity: 0; }
}

/* ---- Animated Stars ---- */
.why_sec__bg-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.why_sec__bg-stars span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--why-gold);
    border-radius: 50%;
    animation: why_twinkle 3s ease-in-out infinite;
    opacity: 0;
}

.why_sec__bg-stars span:nth-child(1)  { top: 8%;  left: 12%; animation-delay: 0s;    animation-duration: 2.8s; }
.why_sec__bg-stars span:nth-child(2)  { top: 22%; left: 78%; animation-delay: 0.4s;  animation-duration: 3.2s; }
.why_sec__bg-stars span:nth-child(3)  { top: 55%; left: 5%;  animation-delay: 0.8s;  animation-duration: 2.5s; }
.why_sec__bg-stars span:nth-child(4)  { top: 75%; left: 90%; animation-delay: 1.2s;  animation-duration: 3.5s; }
.why_sec__bg-stars span:nth-child(5)  { top: 40%; left: 50%; animation-delay: 1.6s;  animation-duration: 2.9s; }
.why_sec__bg-stars span:nth-child(6)  { top: 15%; left: 40%; animation-delay: 0.2s;  animation-duration: 3.1s; }
.why_sec__bg-stars span:nth-child(7)  { top: 88%; left: 20%; animation-delay: 0.6s;  animation-duration: 2.7s; }
.why_sec__bg-stars span:nth-child(8)  { top: 30%; left: 93%; animation-delay: 1.0s;  animation-duration: 3.4s; }
.why_sec__bg-stars span:nth-child(9)  { top: 65%; left: 60%; animation-delay: 1.4s;  animation-duration: 2.6s; }
.why_sec__bg-stars span:nth-child(10) { top: 50%; left: 30%; animation-delay: 1.8s;  animation-duration: 3.0s; }
.why_sec__bg-stars span:nth-child(11) { top: 5%;  left: 65%; animation-delay: 0.3s;  animation-duration: 3.3s; }
.why_sec__bg-stars span:nth-child(12) { top: 95%; left: 45%; animation-delay: 0.7s;  animation-duration: 2.4s; }
.why_sec__bg-stars span:nth-child(13) { top: 20%; left: 25%; animation-delay: 1.1s;  animation-duration: 3.6s; }
.why_sec__bg-stars span:nth-child(14) { top: 80%; left: 72%; animation-delay: 1.5s;  animation-duration: 2.8s; }
.why_sec__bg-stars span:nth-child(15) { top: 42%; left: 85%; animation-delay: 1.9s;  animation-duration: 3.2s; }

@keyframes why_twinkle {
    0%, 100% { opacity: 0; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.8); }
}

/* ---- Container ---- */
.why_sec__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.why_sec__header {
    text-align: center;
    margin-bottom: 60px;
}

.why_sec__tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--why-gold);
    margin-bottom: 18px;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.why_sec__tagline-icon {
    font-size: 0.65rem;
    animation: why_spin 8s linear infinite;
}

@keyframes why_spin {
    to { transform: rotate(360deg); }
}

.why_sec__title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
}

.why_sec__title span {
    color: var(--why-gold);
    position: relative;
    display: inline-block;
}

.why_sec__title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--why-red), transparent);
}

.why_sec__subtitle {
    font-size: 1rem;
    color: var(--why-text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}

/* ---- Stats Bar ---- */
.why_sec__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255, 213, 51, 0.05);
    border: 1px solid var(--why-border);
    border-radius: 14px;
    padding: 36px 20px;
    margin-bottom: 60px;
}

.why_sec__stat-item {
    flex: 1 1 140px;
    text-align: center;
    padding: 0 20px;
}

.why_sec__stat-icon {
    font-size: 1.4rem;
    color: var(--why-gold);
    margin-bottom: 10px;
}

.why_sec__stat-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.why_sec__stat-number::after {
    content: '+';
    color: var(--why-red);
    font-size: 0.6em;
    vertical-align: super;
}

.why_sec__stat-label {
    font-size: 0.82rem;
    color: var(--why-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: Arial, sans-serif;
}

.why_sec__stat-divider {
    width: 1px;
    height: 60px;
    background: var(--why-border);
    flex-shrink: 0;
}

/* =============================================
   CARDS GRID
   ============================================= */
.why_sec__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* ---- Card Base ---- */
.why_sec__card {
    position: relative;
    background: var(--why-card-bg);
    border: 1px solid var(--why-border);
    border-radius: 16px;
    padding: 36px 30px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    will-change: transform;
}

/* ---- ROTATING ZODIAC WHEEL — card background ---- */
.why_sec__card-zodiac {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 88%;
    aspect-ratio: 1;
    pointer-events: none;
    z-index: 0;
    animation: why_card_zodiac_rotate 40s linear infinite;
    will-change: transform;
    border-radius: 50%;
}

.why_sec__card-zodiac img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.18;
    filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg) brightness(0.9);
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

/* Even cards rotate counter-clockwise */
.why_sec__card:nth-child(even) .why_sec__card-zodiac {
    animation-direction: reverse;
}

.why_sec__card:hover .why_sec__card-zodiac img {
    opacity: 0.30;
}

.why_sec__card:hover .why_sec__card-zodiac {
    animation-duration: 18s;
}

@keyframes why_card_zodiac_rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Everything inside card sits above zodiac */
.why_sec__card-orbit,
.why_sec__card-icon,
.why_sec__card-title,
.why_sec__card-text,
.why_sec__card-glow {
    position: relative;
    z-index: 1;
}

/* ---- Card hover effects ---- */
.why_sec__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184,2,0,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: 0;
}

/* Top accent line on hover */
.why_sec__card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #B80200, #FFD533, #0B00FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    z-index: 2;
}

.why_sec__card:hover::after {
    transform: scaleX(1);
}

.why_sec__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 213, 51, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.why_sec__card:hover::before {
    opacity: 1;
}

/* ---- Featured Card ---- */
.why_sec__card--featured {
    grid-column: span 1;
    background: linear-gradient(145deg, rgba(184,2,0,0.15) 0%, rgba(11,0,255,0.08) 100%);
    border-color: rgba(184,2,0,0.4);
}

.why_sec__card--featured:hover {
    border-color: var(--why-red);
}

/* Orbit animation in featured card */
.why_sec__card-orbit {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.why_sec__orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,213,51,0.2);
}

.why_sec__orbit-ring--1 {
    inset: 10px;
    animation: why_orbit_rotate 12s linear infinite;
}

.why_sec__orbit-ring--2 {
    inset: 25px;
    animation: why_orbit_rotate 8s linear infinite reverse;
    border-color: rgba(184,2,0,0.25);
}

.why_sec__orbit-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--why-gold);
    border-radius: 50%;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation: why_orbit_dot 12s linear infinite;
    transform-origin: 50px 0;
    box-shadow: 0 0 6px var(--why-gold);
}

@keyframes why_orbit_rotate {
    to { transform: rotate(360deg); }
}

@keyframes why_orbit_dot {
    to { transform: rotate(360deg) translateX(-40px); }
}

/* Card glow */
.why_sec__card-glow {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(184,2,0,0.3), transparent 70%);
    pointer-events: none;
    filter: blur(20px);
    z-index: 0;
}

/* ---- Card Icon ---- */
.why_sec__card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--why-red), #8a0100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(184,2,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why_sec__card:hover .why_sec__card-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(184,2,0,0.55);
}

/* ---- Card Text ---- */
.why_sec__card-title {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.why_sec__card:hover .why_sec__card-title {
    color: var(--why-gold);
}

.why_sec__card-text {
    font-size: 0.88rem;
    color: var(--why-text-muted);
    line-height: 1.7;
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1;
}

/* ---- CTA ---- */
.why_sec__cta {
    text-align: center;
}

.why_sec__cta-text {
    font-size: 1.1rem;
    color: var(--why-text);
    margin-bottom: 24px;
}

.why_sec__cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.why_sec__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: Arial, sans-serif;
}

.why_sec__btn--primary {
    background: var(--why-red);
    color: #fff;
    box-shadow: 0 4px 20px rgba(184,2,0,0.4);
}

.why_sec__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184,2,0,0.55);
    color: #fff;
}

.why_sec__btn--secondary {
    background: transparent;
    color: var(--why-gold);
    border: 2px solid var(--why-gold);
}

.why_sec__btn--secondary:hover {
    background: var(--why-gold);
    color: var(--why-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255,213,51,0.3);
}

/* ---- Scroll-reveal ---- */
.why_sec__card,
.why_sec__stat-item,
.why_sec__header {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.why_sec__card.why_sec--visible,
.why_sec__stat-item.why_sec--visible,
.why_sec__header.why_sec--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .why_sec__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why_sec { padding: 60px 0; }
    .why_sec__grid { grid-template-columns: 1fr; gap: 18px; }
    .why_sec__stats { flex-direction: column; gap: 24px; padding: 30px 20px; }
    .why_sec__stat-divider { width: 60px; height: 1px; }
    .why_sec__card--featured { grid-column: span 1; }
    .why_sec__card-zodiac { width: 80%; }
    .why_sec__bg-zodiac { width: 200vw; }
}

@media (max-width: 480px) {
    .why_sec__title { font-size: 1.6rem; }
    .why_sec__btn { width: 100%; justify-content: center; }
    .why_sec__cta-buttons { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
    .why_sec__bg-stars span,
    .why_sec__tagline-icon,
    .why_sec__orbit-ring,
    .why_sec__orbit-dot,
    .why_sec__card-zodiac,
    .why_sec__bg-zodiac,
    .why_sec__bg-nebula::before,
    .why_sec__bg-nebula::after,
    .why_sec__shooting-star { animation: none; }
    .why_sec__card,
    .why_sec__stat-item,
    .why_sec__header { opacity: 1; transform: none; transition: none; }
}


/* faq section */

/* ============================================
   FAQ SECTION - astrologyspiritualcenter.com
   Prefix: FAQ_sec
   Layout: Image left | 5 FAQs right
   ============================================ */

/* ── Section wrapper ── */
.FAQ_sec {
    position: relative;
    padding: 80px 20px;
    background: #fff8f0;
    overflow: hidden;
}

/* Corner radial glows */
.FAQ_sec__deco {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.FAQ_sec__deco--tl {
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(184, 2, 0, 0.08) 0%, transparent 70%);
}

.FAQ_sec__deco--br {
    bottom: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 213, 51, 0.12) 0%, transparent 70%);
}

/* ── Full-width header above columns ── */
.FAQ_sec__top {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1160px;
    margin: 0 auto 52px;
}

.FAQ_sec__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Georgia', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B80200;
    margin-bottom: 14px;
}

.FAQ_sec__label i {
    font-size: 10px;
    animation: FAQ_sec__twinkle 2.2s ease-in-out infinite;
}

@keyframes FAQ_sec__twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

.FAQ_sec__title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: #1a0a00;
    line-height: 1.2;
    margin: 0 0 14px;
}

.FAQ_sec__title span {
    color: #B80200;
    position: relative;
}

.FAQ_sec__title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD533, #B80200);
    border-radius: 2px;
}

.FAQ_sec__subtitle {
    font-size: 15px;
    color: #6b4c3b;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

.FAQ_sec__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.FAQ_sec__divider-line {
    height: 1px;
    width: 56px;
    background: linear-gradient(90deg, transparent, #B80200);
}

.FAQ_sec__divider-line:last-child {
    background: linear-gradient(90deg, #B80200, transparent);
}

.FAQ_sec__divider i {
    color: #FFD533;
    font-size: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 213, 51, 0.7));
}

/* ── Two-column wrapper ── */
.FAQ_sec__wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 56px;
    align-items: start;
    max-width: 1160px;
    margin: 0 auto;
}

/* ── LEFT: Image column ── */
.FAQ_sec__image-col {
    position: sticky;
    top: 100px;
}

.FAQ_sec__image-frame {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Animated rings behind image */
.FAQ_sec__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1.5px dashed rgba(184, 2, 0, 0.18);
    animation: FAQ_sec__spin 28s linear infinite;
    pointer-events: none;
}

.FAQ_sec__ring--2 {
    width: 440px;
    height: 440px;
    border-color: rgba(255, 213, 51, 0.2);
    animation-duration: 40s;
    animation-direction: reverse;
}

/* Small dot on ring 1 */
.FAQ_sec__ring::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #B80200;
    box-shadow: 0 0 10px rgba(184, 2, 0, 0.6);
}

/* Small dot on ring 2 */
.FAQ_sec__ring--2::after {
    background: #FFD533;
    box-shadow: 0 0 10px rgba(255, 213, 51, 0.8);
}

@keyframes FAQ_sec__spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* The actual image */
.FAQ_sec__img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px 20px 120px 20px;
    border: 4px solid #fff;
    box-shadow:
        0 12px 40px rgba(184, 2, 0, 0.18),
        0 0 0 1px rgba(184, 2, 0, 0.1);
    display: block;
    margin: 30px auto 0;
}

/* Experience badge */
.FAQ_sec__badge {
    position: absolute;
    bottom: 28px;
    right: 8px;
    z-index: 3;
    background: linear-gradient(135deg, #B80200, #8a0000);
    color: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(184, 2, 0, 0.35);
    border: 2px solid rgba(255, 213, 51, 0.4);
    min-width: 90px;
}

.FAQ_sec__badge-num {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 26px;
    font-weight: 700;
    color: #FFD533;
    line-height: 1;
}

.FAQ_sec__badge-lbl {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-top: 4px;
    opacity: 0.9;
}

/* Floating star accents */
.FAQ_sec__star {
    position: absolute;
    z-index: 3;
    line-height: 1;
    animation: FAQ_sec__float 3.5s ease-in-out infinite;
}

.FAQ_sec__star i {
    color: #FFD533;
    filter: drop-shadow(0 0 6px rgba(255, 213, 51, 0.8));
}

.FAQ_sec__star--1 {
    top: 18px;
    left: 28px;
    font-size: 14px;
    animation-delay: 0s;
}

.FAQ_sec__star--2 {
    top: 50px;
    right: 20px;
    font-size: 10px;
    animation-delay: 1.2s;
}

.FAQ_sec__star--3 {
    bottom: 100px;
    left: 18px;
    font-size: 8px;
    animation-delay: 2s;
}

.FAQ_sec__star--3 i {
    color: #B80200;
    filter: drop-shadow(0 0 5px rgba(184, 2, 0, 0.6));
}

@keyframes FAQ_sec__float {
    0%, 100% { transform: translateY(0px); opacity: 1; }
    50% { transform: translateY(-10px); opacity: 0.6; }
}

/* ── RIGHT: FAQ column ── */
.FAQ_sec__faq-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Accordion list ── */
.FAQ_sec__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Single FAQ item ── */
.FAQ_sec__item {
    background: #fff;
    border: 1px solid rgba(184, 2, 0, 0.12);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(184, 2, 0, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(18px);
    animation: FAQ_sec__fadeUp 0.5s ease forwards;
}

.FAQ_sec__item:nth-child(1) { animation-delay: 0.08s; }
.FAQ_sec__item:nth-child(2) { animation-delay: 0.15s; }
.FAQ_sec__item:nth-child(3) { animation-delay: 0.22s; }
.FAQ_sec__item:nth-child(4) { animation-delay: 0.29s; }
.FAQ_sec__item:nth-child(5) { animation-delay: 0.36s; }

@keyframes FAQ_sec__fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.FAQ_sec__item:hover {
    border-color: rgba(184, 2, 0, 0.28);
    box-shadow: 0 4px 20px rgba(184, 2, 0, 0.09);
}

.FAQ_sec__item--active {
    border-color: #B80200;
    box-shadow: 0 4px 24px rgba(184, 2, 0, 0.14);
}

/* Question button */
.FAQ_sec__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.FAQ_sec__question:hover {
    background: rgba(184, 2, 0, 0.025);
}

.FAQ_sec__item--active .FAQ_sec__question {
    background: linear-gradient(135deg, rgba(184, 2, 0, 0.04), rgba(255, 213, 51, 0.05));
}

/* Icon circle */
.FAQ_sec__q-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B80200, #d92020);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.FAQ_sec__item--active .FAQ_sec__q-icon {
    background: linear-gradient(135deg, #FFD533, #e6b800);
    transform: scale(1.06);
}

.FAQ_sec__q-icon i {
    font-size: 12px;
    color: #fff;
}

/* Question text */
.FAQ_sec__q-text {
    flex: 1;
    font-family: 'Georgia', serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a0a00;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.FAQ_sec__item--active .FAQ_sec__q-text {
    color: #B80200;
}

/* Toggle arrow */
.FAQ_sec__toggle {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(184, 2, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.FAQ_sec__toggle i {
    font-size: 10px;
    color: #B80200;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.FAQ_sec__item--active .FAQ_sec__toggle {
    background: #B80200;
    border-color: #B80200;
}

.FAQ_sec__item--active .FAQ_sec__toggle i {
    color: #fff;
    transform: rotate(180deg);
}

/* Answer panel */
.FAQ_sec__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.FAQ_sec__item--active .FAQ_sec__answer {
    max-height: 320px;
}

.FAQ_sec__answer-inner {
    padding: 14px 20px 20px 68px;
    border-top: 1px solid rgba(184, 2, 0, 0.08);
}

.FAQ_sec__answer-inner p {
    margin: 0;
    font-size: 14px;
    color: #5a3e2b;
    line-height: 1.75;
}

/* CTA */
.FAQ_sec__cta {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(184, 2, 0, 0.1);
}

.FAQ_sec__cta-text {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: #1a0a00;
    margin: 0 0 16px;
}

.FAQ_sec__cta-text strong {
    color: #B80200;
}

.FAQ_sec__cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.FAQ_sec__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}

.FAQ_sec__btn--primary {
    background: linear-gradient(135deg, #B80200, #8a0000);
    color: #fff;
    box-shadow: 0 4px 16px rgba(184, 2, 0, 0.28);
}

.FAQ_sec__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(184, 2, 0, 0.38);
}

.FAQ_sec__btn--secondary {
    background: #fff;
    color: #B80200;
    border: 2px solid #B80200;
}

.FAQ_sec__btn--secondary:hover {
    background: #B80200;
    color: #fff;
    transform: translateY(-2px);
}

.FAQ_sec__btn i { font-size: 14px; }

/* ── Responsive ── */

/* Tablet: stack columns */
@media (max-width: 960px) {
    .FAQ_sec__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .FAQ_sec__image-col {
        position: static;
        display: flex;
        justify-content: center;
    }

    .FAQ_sec__image-frame {
        max-width: 340px;
        width: 100%;
    }

    .FAQ_sec__ring {
        width: 300px;
        height: 300px;
    }

    .FAQ_sec__ring--2 {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 600px) {
    .FAQ_sec {
        padding: 52px 16px;
    }

    .FAQ_sec__top {
        margin-bottom: 36px;
    }

    .FAQ_sec__question {
        padding: 15px 16px;
        gap: 10px;
    }

    .FAQ_sec__q-text {
        font-size: 14px;
    }

    .FAQ_sec__answer-inner {
        padding: 12px 16px 16px 16px;
    }

    .FAQ_sec__badge {
        right: 0;
        bottom: 20px;
    }

    .FAQ_sec__cta-btns {
        flex-direction: column;
    }

    .FAQ_sec__btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}

/* locations */


/* ==================================================
   ASC LOCATION SECTION  |  prefix: asc-loc-
   ================================================== */

.asc-loc-section {
    position: relative;
    padding: 80px 0 60px;
    background: #CC0D0A;
    overflow: hidden;
}

/* --- Stars --- */
.asc-loc-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.asc-loc-star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    animation: asc-twinkle 3s infinite ease-in-out;
}
/* Spread 60 stars with varied positions/sizes via inline styles */

@keyframes asc-twinkle {
    0%,100% { opacity:0; transform:scale(1); }
    50%      { opacity:.9; transform:scale(1.4); }
}

/* --- Zodiac glyphs --- */
.asc-loc-zodiac {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.asc-loc-zodiac span {
    position: absolute;
    font-size: clamp(2rem, 5vw, 4rem);
    color: rgba(255,213,51,.06);
    animation: asc-float 12s infinite ease-in-out;
}
.asc-loc-zodiac span:nth-child(1){top:8%;  left:3%;   animation-delay:0s;}
.asc-loc-zodiac span:nth-child(2){top:68%; left:2%;   animation-delay:2s;}
.asc-loc-zodiac span:nth-child(3){top:18%; right:3%;  animation-delay:4s;}
.asc-loc-zodiac span:nth-child(4){top:75%; right:4%;  animation-delay:1s;}
.asc-loc-zodiac span:nth-child(5){top:42%; left:48%;  animation-delay:3s; opacity:.03;}
.asc-loc-zodiac span:nth-child(6){top:5%;  right:28%; animation-delay:5s;}

@keyframes asc-float {
    0%,100% { transform:translateY(0) rotate(0deg); }
    33%      { transform:translateY(-18px) rotate(6deg); }
    66%      { transform:translateY(10px) rotate(-4deg); }
}

/* --- Container --- */
.asc-loc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* --- Header --- */
.asc-loc-header { text-align:center; margin-bottom:48px; }

.asc-loc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,213,51,.1);
    border: 1px solid rgba(255,213,51,.28);
    color: #FFD533;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.asc-loc-title {
    font-size: clamp(1.45rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #FFD533;
    margin: 0 0 12px;
    line-height: 1.25;
    text-shadow: 0 0 40px rgba(255,213,51,.22);
}

.asc-loc-subtitle {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    margin: 0;
    line-height: 1.7;
}

/* --- Grid --- */
.asc-loc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 48px;
}

/* --- Column --- */
.asc-loc-col {
    position: relative;
    border: 1px solid rgba(184,2,0,.4);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,.025);
}
.asc-loc-col::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B80200, #FFD533, #B80200, transparent);
}

/* --- Scroller --- */
.asc-loc-scroll {
    height: 320px;
    overflow-y: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #B80200 rgba(255,255,255,.04);
}
.asc-loc-scroll::-webkit-scrollbar       { width: 4px; }
.asc-loc-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,.04); }
.asc-loc-scroll::-webkit-scrollbar-thumb { background: #B80200; border-radius: 4px; }

/* --- Item --- */
.asc-loc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    text-decoration: none;
    color: rgba(255,255,255,.85);
    font-size: .875rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.045);
    transition: background .18s, color .18s, padding-left .18s;
    line-height: 1.3;
}
.asc-loc-item:last-child { border-bottom: none; }
.asc-loc-item:hover {
    background: rgba(184,2,0,.15);
    color: #FFD533;
    padding-left: 24px;
}

.asc-loc-icon {
    color: #FFD533;
    font-size: .6rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(255,213,51,.7));
    transition: transform .2s;
}
.asc-loc-item:hover .asc-loc-icon {
    transform: scale(1.4) rotate(30deg);
}

/* --- CTA --- */
.asc-loc-cta { text-align: center; }

.asc-loc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #B80200 0%, #7a0100 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 38px;
    border-radius: 100px;
    border: 2px solid rgba(255,213,51,.35);
    letter-spacing: .02em;
    box-shadow: 0 4px 28px rgba(184,2,0,.45);
    transition: transform .25s, box-shadow .25s, color .25s;
    animation: asc-cta-pulse 2.8s infinite;
}
.asc-loc-cta-btn i {
    color: #FFD533;
    flex-shrink: 0;
    animation: asc-ring 2.5s infinite;
}
.asc-loc-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 44px rgba(184,2,0,.6);
    color: #FFD533;
    animation: none;
}

@keyframes asc-cta-pulse {
    0%,100% { box-shadow:0 4px 28px rgba(184,2,0,.45); }
    50%      { box-shadow:0 4px 50px rgba(184,2,0,.7), 0 0 0 8px rgba(184,2,0,.08); }
}
@keyframes asc-ring {
    0%,60%,100% { transform:rotate(0); }
    10%  { transform:rotate(-18deg); }
    20%  { transform:rotate(18deg); }
    30%  { transform:rotate(-12deg); }
    40%  { transform:rotate(12deg); }
    50%  { transform:rotate(0); }
}

/* --- Responsive --- */
@media(max-width:900px) {
    .asc-loc-grid { grid-template-columns:repeat(2,1fr); }
    .asc-loc-col:last-child { grid-column:1 / -1; }
    .asc-loc-col:last-child .asc-loc-scroll { height:200px; }
}
@media(max-width:580px) {
    .asc-loc-section { padding:50px 0 40px; }
    .asc-loc-grid { grid-template-columns:1fr; }
    .asc-loc-col:last-child { grid-column:auto; }
    .asc-loc-col:last-child .asc-loc-scroll,
    .asc-loc-scroll { height:240px; }
    .asc-loc-cta-btn { font-size:.85rem; padding:14px 22px; }
}





/*  */

/* ============================================================
   CONTACT US PAGE — contact-us.css
   Astrology Spiritual Center
   Primary: #B80200 | #0B00FF | #FFD533 | White | Black
   ============================================================ */

:root {
    --cu-red: #B80200;
    --cu-red-dark: #8a0100;
    --cu-blue: #0B00FF;
    --cu-gold: #FFD533;
    --cu-gold-light: rgba(255,213,51,0.15);
    --cu-dark: #0a0612;
    --cu-dark2: #120820;
    --cu-white: #ffffff;
    --cu-text: #2d2038;
    --cu-text-light: #6b6080;
    --cu-border: rgba(184,2,0,0.12);
    --cu-shadow: 0 8px 40px rgba(184,2,0,0.10);
    --cu-radius: 18px;
    --cu-transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- HERO ---- */
.cu-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0612 0%, #1a0530 40%, #0d0020 70%, #0a0612 100%);
    text-align: center;
}

.cu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184,2,0,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 100%, rgba(11,0,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cu-hero__overlay {
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,213,51,0.06)'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.cu-hero__stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cu-hero__stars span {
    position: absolute;
    border-radius: 50%;
    background: var(--cu-gold);
    animation: cuTwinkle 3s ease-in-out infinite alternate;
    opacity: 0.6;
}

@keyframes cuTwinkle {
    0%   { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1;   transform: scale(1.2); }
}

.cu-hero__mandala {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    opacity: 0.5;
    animation: cuRotate 40s linear infinite;
    pointer-events: none;
}

@keyframes cuRotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}

.cu-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 24px 60px;
    max-width: 700px;
}

.cu-hero__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cu-gold);
    background: rgba(255,213,51,0.12);
    border: 1px solid rgba(255,213,51,0.25);
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.cu-hero__title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--cu-white);
    margin: 0 0 16px;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(184,2,0,0.5);
}

.cu-hero__sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.72);
    margin: 0 0 28px;
    line-height: 1.6;
}

.cu-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.cu-breadcrumb a {
    color: var(--cu-gold);
    text-decoration: none;
    transition: color var(--cu-transition);
}

.cu-breadcrumb a:hover { color: var(--cu-white); }

.cu-breadcrumb i {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
}

/* ---- DIVIDER ---- */
.cu-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.cu-divider span {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cu-red), transparent);
}

.cu-divider i {
    color: var(--cu-gold);
    font-size: 0.8rem;
}

/* ---- CONTACT SECTION ---- */
.cu-contact {
    background: #f8f5ff;
    padding: 80px 0 60px;
}

.cu-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cu-contact__intro {
    text-align: center;
    margin-bottom: 52px;
}

.cu-contact__tagline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--cu-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- CARDS ---- */
.cu-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cu-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--cu-white);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius);
    padding: 28px 28px 28px 24px;
    text-decoration: none;
    color: var(--cu-text);
    overflow: hidden;
    transition: var(--cu-transition);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    cursor: pointer;
}

.cu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cu-shadow);
    border-color: rgba(184,2,0,0.25);
}

.cu-card:hover .cu-card__glow { opacity: 1; }
.cu-card:hover .cu-card__cta i { transform: translateX(4px); }

.cu-card__glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--cu-transition);
    pointer-events: none;
    border-radius: inherit;
}

.cu-card--call .cu-card__glow    { background: linear-gradient(135deg, rgba(184,2,0,0.05) 0%, transparent 60%); }
.cu-card--whatsapp .cu-card__glow { background: linear-gradient(135deg, rgba(37,211,102,0.07) 0%, transparent 60%); }
.cu-card--email .cu-card__glow    { background: linear-gradient(135deg, rgba(11,0,255,0.05) 0%, transparent 60%); }
.cu-card--location .cu-card__glow { background: linear-gradient(135deg, rgba(255,213,51,0.07) 0%, transparent 60%); }

.cu-card__icon-wrap {
    flex-shrink: 0;
    position: relative;
}

.cu-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cu-white);
    position: relative;
    z-index: 1;
}

.cu-card--call .cu-card__icon    { background: linear-gradient(135deg, #B80200, #e60000); }
.cu-card--whatsapp .cu-card__icon { background: linear-gradient(135deg, #25d366, #128c7e); }
.cu-card--email .cu-card__icon    { background: linear-gradient(135deg, #0B00FF, #5500cc); }
.cu-card--location .cu-card__icon { background: linear-gradient(135deg, #FFD533, #e6a800); color: #1a1a1a; }

.cu-card__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid transparent;
    animation: cuPulse 2.5s ease-in-out infinite;
}

.cu-card--call .cu-card__pulse    { border-color: rgba(184,2,0,0.25); }
.cu-card--whatsapp .cu-card__pulse { border-color: rgba(37,211,102,0.25); }
.cu-card--email .cu-card__pulse    { border-color: rgba(11,0,255,0.20); }
.cu-card--location .cu-card__pulse { border-color: rgba(255,213,51,0.30); }

@keyframes cuPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.08); opacity: 1; }
}

.cu-card__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.cu-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cu-text-light);
}

.cu-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cu-text);
    display: block;
}

.cu-card__value {
    font-size: 0.9rem;
    color: var(--cu-text-light);
    word-break: break-all;
}

.cu-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cu-red);
    margin-top: 4px;
    text-decoration: none;
}

.cu-card--whatsapp .cu-card__cta { color: #128c7e; }
.cu-card--email .cu-card__cta    { color: var(--cu-blue); }
.cu-card--location .cu-card__cta { color: #b08200; }

.cu-card__cta i { transition: transform var(--cu-transition); }

.cu-card__decor {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.cu-card--call .cu-card__decor    { background: var(--cu-red); }
.cu-card--whatsapp .cu-card__decor { background: #25d366; }
.cu-card--email .cu-card__decor    { background: var(--cu-blue); }
.cu-card--location .cu-card__decor { background: var(--cu-gold); }

/* ---- FORM + MAP ---- */
.cu-form-map {
    background: var(--cu-white);
    padding: 80px 0;
}

.cu-form-map__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Wrap */
.cu-form-wrap {
    background: #f8f5ff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--cu-border);
}

.cu-form-wrap__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--cu-border);
}

.cu-form-wrap__header > i {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--cu-red), #e60000);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--cu-white);
    flex-shrink: 0;
}

.cu-form-wrap__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cu-text);
    margin: 0 0 4px;
}

.cu-form-wrap__sub {
    font-size: 0.88rem;
    color: var(--cu-text-light);
    margin: 0;
}

.cu-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cu-form__field {
    margin-bottom: 18px;
}

.cu-form__label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--cu-text);
    margin-bottom: 7px;
}

.cu-form__label span { color: var(--cu-red); }

.cu-form__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cu-form__input-wrap > i {
    position: absolute;
    left: 14px;
    font-size: 0.85rem;
    color: var(--cu-text-light);
    pointer-events: none;
    z-index: 1;
}

.cu-form__input-wrap--textarea > i { top: 14px; align-self: flex-start; }

.cu-form__input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    font-size: 0.92rem;
    border: 1.5px solid #e0d8ee;
    border-radius: 10px;
    background: var(--cu-white);
    color: var(--cu-text);
    outline: none;
    transition: border-color var(--cu-transition), box-shadow var(--cu-transition);
    font-family: inherit;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.cu-form__input:focus {
    border-color: var(--cu-red);
    box-shadow: 0 0 0 3px rgba(184,2,0,0.09);
}

.cu-form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.cu-form__textarea {
    resize: vertical;
    min-height: 130px;
    padding-top: 12px;
    align-items: flex-start;
}

.cu-form__btn {
    width: 100%;
    padding: 15px 28px;
    background: linear-gradient(135deg, var(--cu-red) 0%, #e60000 100%);
    color: var(--cu-white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform var(--cu-transition), box-shadow var(--cu-transition);
    letter-spacing: 0.03em;
    font-family: inherit;
}

.cu-form__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,2,0,0.35);
}

.cu-form__btn:active { transform: translateY(0); }

.cu-form__btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: cuShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cuShine {
    0%   { left: -100%; }
    50%  { left: 150%; }
    100% { left: 150%; }
}

.cu-form__success {
    margin-top: 16px;
    padding: 14px 18px;
    background: #edfaf3;
    border: 1px solid #a0e4bc;
    border-radius: 10px;
    color: #1a7a4a;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Map Wrap */
.cu-map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--cu-border);
    display: flex;
    flex-direction: column;
    background: var(--cu-white);
}

.cu-map-wrap__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 30px;
    background: #f8f5ff;
    border-bottom: 1px solid var(--cu-border);
}

.cu-map-wrap__header > i {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--cu-gold), #e6a800);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1a1a1a;
    flex-shrink: 0;
}

.cu-map-wrap__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cu-text);
    margin: 0 0 4px;
}

.cu-map-wrap__sub {
    font-size: 0.88rem;
    color: var(--cu-text-light);
    margin: 0;
}

.cu-map-embed {
    height: 280px;
    background: #e8e0f0;
}

.cu-map-embed iframe { display: block; width: 100%; height: 100%; }

.cu-hours {
    padding: 24px 30px;
    background: #f8f5ff;
    border-top: 1px solid var(--cu-border);
}

.cu-hours__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cu-text);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cu-hours__title i { color: var(--cu-red); }

.cu-hours__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cu-hours__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--cu-text-light);
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0,0,0,0.07);
}

.cu-hours__list li:last-child { border-bottom: none; padding-bottom: 0; }
.cu-hours__list li span:first-child { font-weight: 600; color: var(--cu-text); }

/* ---- LOCATIONS ---- */
.cu-locations {
    background: linear-gradient(135deg, var(--cu-dark) 0%, var(--cu-dark2) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cu-locations::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(184,2,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cu-locations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.cu-locations__header {
    text-align: center;
    margin-bottom: 48px;
}

.cu-locations__title {
    font-family: 'Georgia', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--cu-white);
    margin: 10px 0 10px;
}

.cu-locations__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.cu-locations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cu-locations__item {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,213,51,0.12);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    transition: var(--cu-transition);
}

.cu-locations__item:hover {
    background: rgba(184,2,0,0.15);
    border-color: rgba(184,2,0,0.4);
    color: var(--cu-white);
    transform: translateY(-2px);
}

.cu-locations__item i {
    color: var(--cu-gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .cu-form-map__container { grid-template-columns: 1fr; }
    .cu-hero__mandala { width: 260px; height: 260px; right: -40px; }
}

@media (max-width: 768px) {
    .cu-cards { grid-template-columns: 1fr; }
    .cu-form-wrap { padding: 28px 20px; }
    .cu-form__row { grid-template-columns: 1fr; }
    .cu-hero__mandala { display: none; }
    .cu-locations__grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .cu-contact { padding: 60px 0 40px; }
    .cu-form-map { padding: 60px 0; }
    .cu-locations { padding: 60px 0; }
}

@media (max-width: 480px) {
    .cu-hero__content { padding: 60px 20px 50px; }
    .cu-card { padding: 20px 18px; gap: 16px; }
    .cu-card__icon { width: 52px; height: 52px; font-size: 1.25rem; }
    .cu-locations__grid { grid-template-columns: repeat(2, 1fr); }
    .cu-map-embed { height: 220px; }
}