/* --- Google Fonts Import --- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Outfit:wght@300;400;500;600;700&display=swap");

/* --- Root Variable Definitions --- */
:root {
  /* Lighter, brighter navy/royal slate palette */
  --bg-primary: #152542;
  /* lighter rich navy blue */
  --bg-secondary: #fcfcfc;
  /* medium slate blue */
  --bg-tertiary: #253d6a;
  /* lighter blue-grey for cards */
  --bg-surface: #203760;
  /* glass card surface */
  --bg-light: #faf8f5;
  /* warm bright cream */
  --bg-light-alt: #f0f3f8;
  /* soft ice-blue section */

  /* Gold Palette */
  --color-gold-light: #fff0b3;
  --color-gold-medium: #d4af37;
  --color-gold-dark: #aa7c11;
  --color-gold-bright: #f3cd44;
  --color-gold-gradient: linear-gradient(135deg,
      #fff0b3 0%,
      #d4af37 55%,
      #aa7c11 100%);
  --color-gold-glow: rgba(212, 175, 55, 0.25);
  --color-gold-glow-heavy: rgba(212, 175, 55, 0.6);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #cad8f3;
  --text-muted: #9bb0d8;
  --text-gold: #d2ad36;
  --text-dark: #1c3055;
  /* for light section text */
  --text-dark-muted: #50658a;
  --text-white: #fff;

  /* Card */
  --card-bg: rgba(28, 48, 85, 0.75);
  --card-border: rgba(212, 175, 55, 0.22);
  --card-border-hover: rgba(212, 175, 55, 0.65);

  /* Light-section card */
  --card-bg-light: rgba(255, 255, 255, 0.85);
  --card-border-light: rgba(212, 175, 55, 0.25);

  --font-headings: "Playfair Display", serif;
  --font-body: "Outfit", sans-serif;

  --header-height: 90px;
  --section-radius: 0px;
}

/* =============================================
   BASE RESET & BODY
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-body);
  /* background: var(--bg-primary); */
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  max-width: 100%;
}

.p {
  padding: 70px 0px;
}

.m {
  margin: 70px 0px;
}

/* --- Page offset for fixed header + topbar --- */
.page_header_offset {
  padding-top: calc(var(--topbar-h) + var(--header-h) + 40px);
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

p {
  color: #000000;
  font-weight: 400;
}

/* Light section text overrides */
.section_light h1,
.section_light h2,
.section_light h3,
.section_light h4,
.section_light h5,
.section_light h6 {
  color: var(--text-dark);
}

.section_light p {
  color: var(--text-dark-muted);
}

/* Section Title Group */
.section_title_wrap {
  text-align: center;
  margin-bottom: 52px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.section_title_wrap:hover {
  transform: translateY(-2px);
}

.section_title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  color: #d2ad36;
  display: inline-block;
  margin-bottom: 12px;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.4s ease;
}

.section_title_wrap:hover .section_title {
  transform: scale(1.03);
  filter: drop-shadow(0 0 8px rgba(253, 238, 160, 0.35));
}

.section_light .section_title {
  background: linear-gradient(120deg,
      var(--text-dark) 15%,
      var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_subtitle {
  font-size: 1.05rem;
  color: #1f355d;
  max-width: 600px;
  margin: 0 auto;
  transition: color 0.4s ease;
}


.section_light .section_subtitle {
  color: var(--text-dark-muted);
  transition: color 0.4s ease;
}

.section_light .section_title_wrap:hover .section_subtitle {
  color: var(--text-dark);
}

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-medium);
}

/* =============================================
   UTILITY CLASSES
============================================= */
.text-gold {
  color: var(--text-gold) !important;
}

.text-gold-light {
  color: var(--color-gold-light);
}

.text-dark-page {
  color: var(--text-dark) !important;
}

.gold_gradient_text {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Decorative gold divider */
.gold_divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg,
      #fff0b3 0%,
      #d4af37 40%,
      transparent 40%,
      transparent 60%,
      #d4af37 60%,
      #aa7c11 100%);
  margin: 18px auto 0;
  position: relative;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Expand divider on title hover */
.section_title_wrap:hover .gold_divider {
  width: 160px;
}

.gold_divider::after {
  content: "✦";
  color: var(--color-gold-medium);
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent !important;
  padding: 0;
}


/* about section start  */
/* about section en */




/* =============================================
   SECTION BACKGROUNDS
============================================= */
/* Dark (default) section */


.stats_section p {
  color: #fff;
}

.about_right_box h3 {
  color: #0c192e !important;
}

/* Medium navy section */
.section_navy {
  background: var(--bg-secondary);
}

/* Warm cream / light section */
.section_light {
  background: var(--bg-light);
}

/* Soft blue-grey light section */
.section_light_alt {
  background: var(--bg-light-alt);
}

/* =============================================
   BUTTONS
============================================= */
.btn_gold {
  background: var(--color-gold-gradient);
  color: #1a1000 !important;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 18px var(--color-gold-glow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn_gold:hover {
  box-shadow: 0 0 28px var(--color-gold-glow-heavy);
  transform: translateY(-2px);
  color: #0f0a00 !important;
}

.btn_outline_gold {
  background: var(--color-gold-gradient);
  border: 1.5px solid var(--color-gold-medium);
  color: #000000 !important;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn_outline_gold:hover {
  background: transparent;
  color: #ffffff !important;
  border-color: var(--color-gold-medium);
  box-shadow: 0 4px 18px var(--color-gold-glow);
  transform: translateY(-2px);
}

.our_story_btn {
  background: var(--color-gold-gradient);
  color: #1a1000 !important;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 18px var(--color-gold-glow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.our_story_btn:hover {
  box-shadow: 0 0 28px var(--color-gold-glow-heavy);
  transform: translateY(-2px);
  color: #0f0a00 !important;
}

.our_story_btn {
  background: var(--color-gold-gradient);
  border: 1.5px solid var(--color-gold-medium);
  color: #000000 !important;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.our_story_btn:hover {
  background: transparent;
  color: #000000 !important;
  border-color: var(--color-gold-medium);
  box-shadow: 0 4px 18px var(--color-gold-glow);
  transform: translateY(-2px);
}

/* =============================================
   SVG ICON HELPERS
============================================= */
.svg_icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

.svg_icon_lg {
  width: 38px;
  height: 38px;
  fill: var(--color-gold-medium);
}

/* =============================================
   GLASSMORPHIC CARDS (dark sections)
============================================= */
.glass_card {
  background-color: #132242;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass_card p {
  color: #fff !important;
}

.glass_card:hover {
  border-color: var(--card-border-hover) !important;
  box-shadow: 0 16px 44px rgba(201, 162, 39, 0.14) !important;
  transform: translateY(-6px);
}

/* Light cards (for cream sections) */
.light_card {
  background: var(--card-bg-light) !important;
  border: 1px solid var(--card-border-light) !important;
  border-radius: 18px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.light_card:hover {
  border-color: var(--color-gold-medium) !important;
  box-shadow: 0 14px 36px rgba(201, 162, 39, 0.16) !important;
  transform: translateY(-5px);
}

.rashi_item img {
  filter: brightness(0) invert(1);
  opacity: 3.25;
}

/* =============================================
   CELESTIAL BACKGROUND (stars)
============================================= */
.celestial_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.star {
  position: absolute;
  background-color: #d4e4ff;
  border-radius: 50%;
  animation: pulse-star 3s infinite alternate;
}

/* ==============================================
   TOP INFO BAR
============================================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1010;
  height: 40px;
  background-color: #152440;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform 0.35s ease;
  overflow: hidden;
}

.topbar.topbar-hidden {
  transform: translateY(-100%);
}

.topbar_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.topbar_left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar_right {
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar_center {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-gold-bright);
  white-space: nowrap;
}

.topbar_link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(200, 218, 255, 0.8);
  text-decoration: none;
  font-size: 0.74rem;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
}

.topbar_link:hover {
  color: var(--color-gold-bright);
}

.topbar_social {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 220, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s;
}

.topbar_social:hover {
  background: var(--color-gold-gradient);
  color: #1a1000;
  border-color: transparent;
}

/* =============================================
   MAIN WHITE HEADER
   Layout: [LOGO] [CENTER TAGLINE] [NAV]
   Uses 3-column flex — no absolute positioning
============================================= */
:root {
  --topbar-h: 40px;
  --header-h: 84px;
  --total-hdr: calc(var(--topbar-h) + var(--header-h));
}

.site_header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 3px solid var(--color-gold-medium);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  transition:
    top 0.35s ease,
    box-shadow 0.35s ease;
}

.site_header.scrolled {
  top: 0;
  border-bottom-color: var(--color-gold-dark);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
}

/* The single 3-column flex row */
.header_row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ---- Col 1: Logo ---- */
.hdr_logo_wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.hdr_logo_wrap:hover {
  opacity: 0.88;
}

.hdr_logo_img {
  height: 64px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(201, 162, 39, 0.15));
}

/* Fallback text logo (shows if image fails) */
.hdr_logo_fallback {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hfl_title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2540;
  letter-spacing: 0.06em;
}

.hfl_sub {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  color: var(--color-gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- Col 2: Center tagline (flex-grow, centered) ---- */
.hdr_brand_mid {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  pointer-events: none;
  overflow: hidden;
  min-width: 0;
}

.hbm_line {
  flex-shrink: 0;
  display: block;
  width: 36px;
  height: 1px;
  background: var(--color-gold-medium);
  opacity: 0.45;
}

.hbm_text {
  font-family: var(--font-headings);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  white-space: nowrap;
}

/* ---- Col 3: Desktop nav + button ---- */
.hdr_nav_col {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 4px;
}

/* Desktop navigation links */
.hdr_nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hn_link {
  display: inline-block;
  padding: 7px 11px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a2540;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
  transition: color 0.22s;
}

.hn_link::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold-gradient);
  border-radius: 2px;
  transition: width 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn_link:hover,
.hn_link.active {
  color: var(--color-gold-dark);
}

.hn_link:hover::after,
.hn_link.active::after {
  width: calc(100% - 22px);
}

/* Gold CTA button */
.hn_book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1000 !important;
  background: var(--color-gold-gradient);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(201, 162, 39, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn_book:hover {
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.48);
  transform: translateY(-2px);
  color: #1a1000 !important;
}

/* ---- Hamburger button (mobile only) ---- */
.hdr_ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  margin-left: 8px;
}

.hdr_ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a2540;
  border-radius: 2px;
  transition: all 0.26s ease;
}

.hdr_ham:not(.collapsed) span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hdr_ham:not(.collapsed) span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hdr_ham:not(.collapsed) span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile dropdown menu ---- */
.hdr_mobile_menu {
  background: #fff;
  border-top: 2px solid rgba(201, 162, 39, 0.2);
  padding: 8px 20px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.hmm_link {
  display: block;
  padding: 11px 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a2540;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.hmm_link:hover,
.hmm_link.active {
  color: var(--color-gold-dark);
  padding-left: 8px;
}

.hmm_divider {
  height: 1px;
  background: rgba(201, 162, 39, 0.15);
  margin: 6px 0 10px;
}

.hmm_book {
  margin-left: 0;
  justify-content: center;
  width: 100%;
}

.logo_img_footer {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  min-height: 80vh !important;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #0c192e;
  padding-top: calc(var(--topbar-h) + var(--header-h) + 60px);
  padding-bottom: 40px;
  z-index: 2;
}

/* 
.hero2 {
  position: relative;
  background-color: transparent !important;
  z-index: 1;
  overflow: hidden;
}

.hero2 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #1f355d;
}

.hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1f345b;

  transform: scale(1);  
  transition: transform .8s ease;
  z-index: 0;
} */

.badge_celestial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 8px 22px;
  border-radius: 50px;
  color: #0c192e;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 0.06em;
}


.badge_hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 8px 22px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 0.06em;
}

.badge_celestial span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-gold-bright);
  box-shadow: 0 0 9px var(--color-gold-bright);
}

.hero_heading {
  font-size: 3.8rem;
  line-height: 1.15;
  color: #ffffff !important;
}

.hero_title {
  font-size: 3rem;
  line-height: 1.15;
  color: #0c192e !important;
}

.hero_tagline_hindi {
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(201, 162, 39, 0.35);
  padding-bottom: 16px;
  margin-bottom: 28px;
  width: fit-content;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero_desc {
  font-size: 1.2rem;
  color: #d1dff8;
  line-height: 1.9;
  margin-bottom: 38px;
  max-width: 95%;
}

.btn_gold,
.btn_outline_gold {
  padding: 18px 24px !important;
  font-size: 18px;
}

@media (max-width: 767.98px) {

  .btn_gold,
  .btn_outline_gold {
    padding: 10px 18px !important;
    font-size: 14px;
  }

  .hero_title {
    font-size: 2.5rem;
  }

  .hero_tagline_hindi {
    width: auto;
  }
}

/* Zodiac & Yantra Visual */
/* Zodiac Visual - Custom rotating detailed image wheel & glow rings */
.hero_visual_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 600px;
}

.zodiac_wheel_container {
  width: 560px !important;
  height: 560px !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 500px) {
  .hero {
    min-height: 60vh !important;
  }

  .hero_heading {
    font-size: 2.2rem;
    line-height: 1.15;
    color: #ffffff !important;
  }

  .hero_tagline_hindi {
    font-size: 1.2rem;

    text-align: center !important;
  }

  .hero_desc {
    font-size: 1rem;
  }

  .hero_visual_wrapper {
    min-height: 350px;
  }

  .zodiac_wheel_container {
    width: 300px !important;
    height: 300px !important;
  }


}




.zodiac_wheel_glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 162, 255, 0.25) 0%,
      rgba(15, 31, 61, 0) 70%);
  filter: blur(24px);
  z-index: 1;
  pointer-events: none;
}

.zodiac_rotating_part {
  width: 90%;
  height: 90%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  animation: spin 60s linear infinite;
  z-index: 3;
  box-shadow: 0 0 35px rgba(0, 162, 255, 0.45);
  border: 4px solid rgba(0, 162, 255, 0.35);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.zodiac_rotating_part:hover {
  border-color: rgba(0, 200, 255, 0.65);
  box-shadow: 0 0 50px rgba(0, 200, 255, 0.7);
}

.zodiac_img_wheel_base {
  width: 108%;
  height: 108%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: -4%;
  left: -4%;
  z-index: 1;
}

.center_yantra {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  z-index: 4;
}

.center_yantra_svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.55));
  animation: spin-reverse 40s linear infinite;
}

/* Outer glowing cosmic rings (CSS only) */
.cosmic_ring {
  position: absolute;
  border-radius: 50%;
  border: 1px double rgba(0, 162, 255, 0.18);
  pointer-events: none;
  z-index: 2;
}

.ring_outer {
  width: 100%;
  height: 100%;
  border-style: dashed;
  animation: spin 90s linear infinite;
}

.ring_mid {
  width: 95%;
  height: 95%;
  border-style: solid;
  border-color: rgba(0, 162, 255, 0.22);
  animation: spin-reverse 70s linear infinite;
}

.ring_inner {
  width: 91%;
  height: 91%;
  border: 2px solid rgba(0, 162, 255, 0.28);
  box-shadow: 0 0 15px rgba(0, 162, 255, 0.15);
}

/* Floating mystical particles */
.cosmic_particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00c8ff;
  border-radius: 50%;
  filter: blur(1px);
  box-shadow:
    0 0 8px #00c8ff,
    0 0 15px #00c8ff;
  z-index: 4;
  pointer-events: none;
}

.particle_1 {
  top: 15%;
  left: 20%;
  animation: float-particle-1 8s ease-in-out infinite;
}

.particle_2 {
  bottom: 20%;
  right: 15%;
  animation: float-particle-2 10s ease-in-out infinite;
}

.particle_3 {
  top: 45%;
  right: 8%;
  animation: float-particle-3 7s ease-in-out infinite;
}

.particle_4 {
  bottom: 10%;
  left: 25%;
  animation: float-particle-4 9s ease-in-out infinite;
}

@keyframes float-particle-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(25px, -30px) scale(1.4);
    opacity: 0.9;
  }
}

@keyframes float-particle-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1.2);
    opacity: 0.8;
  }

  50% {
    transform: translate(-30px, 25px) scale(0.7);
    opacity: 0.2;
  }
}

@keyframes float-particle-3 {

  0%,
  100% {
    transform: translate(0, 0) scale(0.8);
    opacity: 0.4;
  }

  50% {
    transform: translate(-20px, -20px) scale(1.3);
    opacity: 0.9;
  }
}

@keyframes float-particle-4 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(30px, 15px) scale(0.8);
    opacity: 0.3;
  }
}

/* Cosmic Rashi Board (Kuch Nya) */
.rashi_board {
  background: rgba(15, 31, 61, 0.65);
  border: 1.5px solid rgba(201, 162, 39, 0.28);
  border-radius: 14px;
  padding: 18px 24px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 5;
  margin-top: 25px;
}

.rashi_board_header {
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.rashi_dropdown {
  background-color: rgba(10, 20, 42, 0.75) !important;
  border: 1px solid rgba(201, 162, 39, 0.25) !important;
  color: var(--text-primary) !important;
  cursor: pointer;
}

.rashi_dropdown:focus {
  border-color: var(--color-gold-medium) !important;
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.25) !important;
}

.rashi_result {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.energy_progress {
  height: 18px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  overflow: hidden;
}

.energy_progress_bar {
  background: linear-gradient(90deg,
      var(--color-gold-dark) 0%,
      var(--color-gold-medium) 100%);
  color: #1a1000;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 18px;
  transition: width 0.4s ease;
}

/* =============================================
   ABOUT PAGE STYLES
============================================= */
.about_frame {
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 16px;
  border-radius: 18px;
  background: rgba(201, 162, 39, 0.03);
  position: relative;
}

.about_img_wrap {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  position: relative;
}

.about_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about_frame:hover .about_img {
  transform: scale(1.05);
}

.about_img_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(to top,
      rgba(10, 18, 33, 0.95) 0%,
      rgba(10, 18, 33, 0.5) 60%,
      transparent 100%);
  text-align: center;
  z-index: 2;
}

.about_img_overlay .about_img_title {
  color: var(--color-gold-bright) !important;
  margin-bottom: 2px;
}

.about_img_fallback {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg,
      var(--bg-secondary) 0%,
      var(--bg-tertiary) 100%);
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.about_img_fallback_img {

  width: 100%;
  height: auto;
  object-fit: cover;
}

.about_experience_badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--color-gold-gradient);
  color: #1a1000;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  text-align: center;
  z-index: 10;
}

.about_experience_num {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about_experience_lbl {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar_icon_wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar_card:hover .pillar_icon_wrap {
  border: 1px solid var(--card-border);
  box-shadow: 0 0 22px var(--color-gold-glow);
}

.pillar_card:hover .pillar_icon_wrap svg {
  color: var(--color-gold-medium);
}

.pillar_card:hover .pillar_icon {
  color: var(--color-gold-medium);
}

.pillar_icon {
  width: 48px;
  height: 48px;
  font-size: 30px;
  fill: var(--color-gold-medium);
  color: var(--color-gold-medium);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D Card Flip Animation for Our Specializations */
.card_flip_container {
  perspective: 1000px;
  height: 410px;
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.card_flip_inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transform-style: preserve-3d;
  transform-origin: center center;
}

.card_flip_container:hover .card_flip_inner {
  transform: rotateY(180deg);
}

.card_flip_front,
.card_flip_back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 18px !important;
  margin: 0 !important;
}

.card_flip_front {
  z-index: 2;
  transform: rotateY(0deg);
}

.card_flip_back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 24px !important;
  overflow: hidden;
  z-index: 1;
}

/* Background image on back of cards */
.card_back_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.12;
  /* faint blending */
  transition: transform 0.8s ease;
  pointer-events: none;
}

.card_flip_container:hover .card_back_img {
  transform: scale(1.08);
}

.card_back_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* =============================================
   SERVICES PAGE
============================================= */
.card_flip_container {
  perspective: 1000px;
  height: 410px;
}

.card_flip_inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  transform-origin: center center;
}

.card_flip_container:hover .card_flip_inner {
  transform: rotateY(180deg);
}

.card_flip_front,
.card_flip_back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Front Side */
.card_flip_front {
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card_content {
  height: 100%;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card_content h4 {
  color: #fff;
  margin-bottom: 15px;
}

.card_content p {
  color: #bdbdbd;
}

.icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.icon svg {
  width: 56px;
  height: 56px;
  color: #f7e3a2;
}

.service_link {
  color: #d4af37;
  font-weight: 600;
  margin-top: 10px;
  text-decoration: none !important;
}

.services_brief_section .card_flip_front {
  background: var(--bg-secondary);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  padding: 35px 24px 28px;
  text-align: center;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.services_brief_section .card_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.services_brief_section .card_content h4 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services_brief_section .card_content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.services_brief_section .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(201, 162, 39, 0.05);
  color: var(--color-gold-medium);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.services_brief_section .card_flip_container:hover .icon {
  background: rgba(201, 162, 39, 0.12);
  transform: scale(1.05);
  border-color: var(--color-gold-medium);
  color: var(--color-gold-bright);
}

.services_brief_section .icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
}

.services_brief_section .service_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  padding: 10px 18px;
  border: 1.5px solid var(--color-gold-medium);
  border-radius: 50px;
  color: var(--color-gold-bright);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.services_brief_section .card_flip_container:hover .service_link {
  background: var(--color-gold-gradient);
  color: #1a1000;
  border-color: transparent;
  box-shadow: 0 4px 18px var(--color-gold-glow);
}

/* =============================================
   PREMIUM CORE SPECIALIZATIONS CARDS (ONLINE SECTION)
============================================= */
.online_section .card_flip_front {
  background: linear-gradient(145deg, rgba(22, 39, 70, 0.4) 0%, rgba(14, 26, 55, 0.8) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(210, 173, 54, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

/* Glowing golden top border accent */
.online_section .card_flip_front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold-bright), transparent);
  opacity: 0.5;
}

/* Icon Premium Container */
.online_section .icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(210, 173, 54, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  border: 1px dashed rgba(210, 173, 54, 0.3);
  position: relative;
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(210, 173, 54, 0.15);
  }
}

.online_section .icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-gold-bright);
  filter: drop-shadow(0 0 6px rgba(210, 173, 54, 0.4));
}

.online_section .card_content h4 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.online_section .card_content p {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.online_section .service_link {
  display: inline-block;
  color: var(--color-gold-medium);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.online_section .card_flip_container:hover .service_link {
  color: var(--color-gold-bright);
  border-bottom-color: var(--color-gold-bright);
  letter-spacing: 2.5px;
}

/* Back Side */
.card_flip_back {
  transform: rotateY(180deg);
  position: absolute;
  inset: 0;
}

.card_back_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  text-align: center;
}

.overlay h4 {
  color: #fff;
  margin-bottom: 10px;
}

.overlay p {
  color: #ddd;
  margin-bottom: 20px;
}

/* Mobile Click Support */
.card_flip_container.active .card_flip_inner {
  transform: rotateY(180deg);
}

/* Responsive */
@media (max-width: 991px) {
  .card_flip_container {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .card_flip_container {
    height: 360px;
  }
}

/* =============================================
   STEP / PROCESS NUMBERS
============================================= */
.calc_step_num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: #1a1000;
  font-weight: 700;
  font-family: var(--font-headings);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--color-gold-glow);
}

/* =============================================
   FORM CONTROLS
============================================= */
.form-control,
.form-select {
  background-color: rgba(15, 31, 61, 0.55) !important;
  border: 1.5px solid rgba(201, 162, 39, 0.28) !important;
  color: var(--text-primary) !important;
  padding: 11px 15px !important;
  border-radius: 9px !important;
  font-family: var(--font-body);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(15, 31, 61, 0.75) !important;
  border-color: var(--color-gold-medium) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15) !important;
  outline: none !important;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

/* =============================================
   CALCULATOR OVERLAY
============================================= */
.calc_result_overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 26, 55, 0.96);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  animation: fadeIn 0.4s ease forwards;
  color: white !important;
}

.calc_result_overlay.active {
  display: flex;
}

.result_icon {
  width: 68px;
  height: 68px;
  fill: var(--color-gold-medium);
  margin-bottom: 18px;
}

.result_title {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.result_message {
  color: #ffff !important;
}

/* Notched Card styling for Cosmic/Kundli Calculator */
.notched_card {
  position: relative;
  background: #152542 !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--card-border) !important;
  border-radius: 12px !important;
  padding: 40px 30px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

/* Left notch overlay */
.notched_card::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--bg-primary);
  /* matches the section background */
  border-right: 1.5px solid var(--card-border);
  border-top: 1.5px solid var(--card-border);
  z-index: 2;
}

/* Right notch overlay */
.notched_card::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--bg-primary);
  /* matches the section background */
  border-left: 1.5px solid var(--card-border);
  border-bottom: 1.5px solid var(--card-border);
  z-index: 2;
}

/* Left Aligned Divider with Diamond */
.left_gold_divider {
  width: 120px;
  height: 2px;
  background: var(--color-gold-gradient);
  margin: 20px 0 24px;
  position: relative;
}

.left_gold_divider::after {
  content: "✦";
  color: var(--color-gold-medium);
  font-size: 0.95rem;
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translate(-50%, -50%);
  background: var(--bg-primary);
  padding: 0 8px;
}

/* Faint background wheels for sections */
.faint_bg_wheel_left {
  position: absolute;
  left: -12%;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  width: 500px;
  height: 500px;
  color: var(--color-gold-medium);
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}

.faint_bg_wheel_right {
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 500px;
  height: 500px;
  color: var(--color-gold-medium);
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}

.calc_section {
  position: relative;
  overflow: hidden;
  z-index: 2;
  background:
    radial-gradient(circle at 80% 50%,
      rgba(212, 175, 55, 0.08) 0%,
      rgba(21, 37, 66, 0) 55%),
    var(--bg-secondary);
}

/* Animated rotating background wheels */
.calc_section .faint_bg_wheel_left {
  animation: spin 200s linear infinite;
}

.calc_section .faint_bg_wheel_right {
  animation: spin-reverse 200s linear infinite;
}

/* Premium Button Shimmer Animation */
.btn_shimmer {
  position: relative;
  overflow: hidden;
}

.btn_shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shimmer-slide 4s infinite ease-in-out;
}

/* =============================================
   CONTACT
============================================= */
.contact_icon_wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact_item_icon,
.contact_icon_wrap i {
  width: 22px;
  height: 22px;
  font-size: 22px;
  color: var(--color-gold-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--color-gold-medium);
}

.social_link_item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d2ad36;
  transition: all 0.25s ease;
}

.social_link_item:hover {
  background: var(--color-gold-gradient);
  color: #1a1000 !important;
  border-color: transparent;
  box-shadow: 0 0 14px var(--color-gold-glow);
  transform: translateY(-2px);
}

.social_link_item svg,
.social_link_item i {
  width: 18px;
  height: 18px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: currentColor;
}

/* Form success overlay */
.form_success_overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 26, 55, 0.97);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  z-index: 10;
  animation: fadeIn 0.4s ease forwards;
}

.form_success_overlay.active {
  display: flex;
}

.success_icon_svg {
  width: 70px;
  height: 70px;
  fill: var(--color-gold-medium);
  margin-bottom: 20px;
}

/* =============================================
   TESTIMONIAL CARDS
============================================= */
.user_avatar_fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: #1a1000;
  font-weight: 700;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
============================================= */
.whatsapp_floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp_floating:hover {
  transform: scale(1.12) rotate(10deg);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp_svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background:
    radial-gradient(circle at 50% 0%,
      rgba(28, 48, 85, 0.45) 0%,
      rgba(9, 18, 36, 1) 80%),
    linear-gradient(180deg, #111f38 0%, #091224 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 60px;
  padding-bottom: 30px;
}

.logo_img_footer {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 8px;
}

.logo_img_footer:hover {
  transform: scale(1.05);
}

.footer_social_icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer_social_icon svg,
.footer_social_icon i {
  width: 18px;
  height: 18px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_social_icon:hover {
  background: var(--color-gold-gradient);
  color: #1a1000 !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--color-gold-glow-heavy);
}

.footer_link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer_link:hover {
  color: var(--color-gold-bright) !important;
  transform: translateX(5px);
}

.hover-gold {
  transition: color 0.2s ease;
}

.hover-gold:hover {
  color: var(--color-gold-medium) !important;
}

/* Floating Back to Top Button */
.back_to_top_btn {
  position: fixed;
  bottom: 105px;
  right: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: #1a1000;
  border: none;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.back_to_top_btn.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back_to_top_btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.65);
  color: #0f0a00;
}

/* =============================================
   SCROLL REVEAL ANIMATION
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal_active {
  opacity: 1;
  transform: translateY(0);
}

.reveal h3,
.reveal h4 {
  color: #d2ad36;
}

/* =============================================
   KEYFRAMES
============================================= */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes pulse-star {
  0% {
    opacity: 0.15;
  }

  100% {
    opacity: 0.85;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer-slide {
  0% {
    left: -75%;
  }

  100% {
    left: 130%;
  }
}

/* =============================================
   SECTION DIVIDER WAVE
============================================= */
.wave_divider {
  line-height: 0;
  overflow: hidden;
}

.wave_divider svg {
  display: block;
  width: 100%;
}



/* =============================================
   OUR SERVICES TABS SECTION & CARDS
============================================= */
#services-tabs {
  background: var(--bg-secondary);
  position: relative;
}

/* transparent background handles divider symbol mask dynamically */

.services_tabs_nav_wrapper {
  margin-bottom: 40px;
}

.services_tabs_nav {
  border: none;
  gap: 10px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}

.services_tabs_nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #a5b4cc !important;
  /* light blue-grey tabs for dark theme contrast */
  background: transparent !important;
  border: none !important;
  padding: 8px 18px !important;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.services_tabs_nav .nav-link:hover {
  color: #e79925 !important;
  /* warm orange-gold on hover */
}

.services_tabs_nav .nav-link.active {
  color: #e79925 !important;
  font-weight: 600;
}

.services_tabs_nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: #e79925;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.services_tabs_nav .nav-link.active::after {
  width: 80%;
}

/* Service Tab Cards Grid and Item */
.services_cards_grid {
  transition: all 0.4s ease;
}

.service_card_col {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: scale(1);
}

.service_tab_card {
  background: linear-gradient(145deg, rgba(22, 39, 70, 0.4) 0%, rgba(14, 26, 55, 0.8) 100%) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(210, 173, 54, 0.15) !important;
  border-radius: 20px !important;
  padding: 35px 24px 28px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Glowing golden top border accent */
.service_tab_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold-bright), transparent);
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.service_tab_card:hover {
  border-color: rgba(210, 173, 54, 0.6) !important;
  box-shadow: 0 16px 44px rgba(210, 173, 54, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-8px) !important;
}

.service_tab_card:hover::before {
  opacity: 1;
}

.service_tab_card .card_badge {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service_tab_card .card_icon_circle,
.service_card .card_icon_circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px dashed rgba(210, 173, 54, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: radial-gradient(circle at center, rgba(210, 173, 54, 0.1) 0%, transparent 70%);
  color: var(--color-gold-medium);
  transition: all 0.5s ease;
  animation: floatIcon 4s ease-in-out infinite;
}

.service_tab_card:hover .card_icon_circle,
.service_card:hover .card_icon_circle {
  background: radial-gradient(circle at center, rgba(210, 173, 54, 0.25) 0%, transparent 70%);
  border: 1px solid rgba(210, 173, 54, 0.8);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(210, 173, 54, 0.2);
  color: var(--color-gold-bright);
}

.service_tab_card .card_icon_svg,
.service_card .card_icon_svg {
  width: 36px;
  height: 36px;
  font-size: 36px;
  stroke: currentColor;
  stroke-width: 1.15;
  color: var(--color-gold-medium);
  filter: drop-shadow(0 0 6px rgba(210, 173, 54, 0.4));
  transition: all 0.5s ease;
}

.service_tab_card:hover .card_icon_svg,
.service_card:hover .card_icon_svg {
  color: var(--color-gold-bright) !important;
}

.service_tab_card .card_title {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  margin-bottom: 12px;
  line-height: 1.4;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service_tab_card:hover .card_title {
  color: var(--color-gold-bright) !important;
}

.service_tab_card .card_desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  margin-bottom: 24px;
  line-height: 1.6;
  min-height: 48px;
}

.btn_card_action {
  width: 100%;
  padding: 12px 18px !important;
  background: transparent !important;
  border: 1.5px solid rgba(210, 173, 54, 0.5) !important;
  color: var(--color-gold-medium) !important;
  border-radius: 50px !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn_card_action::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold-gradient);
  z-index: -1;
  transition: all 0.4s ease;
}

.btn_card_action:hover {
  color: #1a1000 !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px var(--color-gold-glow) !important;
  letter-spacing: 0.15em;
}

.btn_card_action:hover::after {
  left: 0;
}

/* Service pillar card hover fix for custom namespaces */
.pillar_card:hover .pillar_icon_wrap svg {
  fill: #1a1000;
}

.pillar_card .service_link span {
  transition: all 0.2s ease;
}

.pillar_card:hover .service_link span {
  transform: translateX(5px);
}

.service_card:hover .service_link span {
  transform: translateX(5px);
}

.about_frame .about_icon {
  fill: none;
  stroke: url(#gold-gradient-about);
}

.about_frame .about_icon circle,
.about_frame .about_icon rect,
.about_frame .about_icon polygon {
  stroke: url(#gold-gradient-about);
}

/* =============================================
   ONLINE LEARNING SECTION
   ============================================= */
.online_section {
  position: relative;
  background-color: transparent !important;
  z-index: 1;
  overflow: hidden;

}

.online_section p {
  color: #fff;
}

/* 
.online_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/astrology_bg.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;
  transition: transform 1.2s cubic-bezier(0.15, 0.85, 0.35, 1);
}

.online_section:hover::before {
  transform: scale(1.08);
} */

.online_bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c192e;
  z-index: 1;
}

.online_card {
  background: rgba(21, 37, 70, 0.65) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding-top: 55px !important;
  /* spacing for badge */
}

.online_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gold-gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.online_card:hover::before {
  opacity: 1;
}

.online_card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-medium) !important;
  box-shadow: 0 16px 44px rgba(201, 162, 39, 0.22);
}

.online_badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.68rem;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.online_badge.trending {
  background: rgba(255, 99, 132, 0.15);
  color: #ff6b8b;
  border: 1px solid rgba(255, 99, 132, 0.35);
}

.online_badge.popular {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.online_badge.foundational {
  background: rgba(0, 200, 255, 0.15);
  color: #00d2ff;
  border: 1px solid rgba(0, 200, 255, 0.35);
}

.online_icon_wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.08) 0%,
      rgba(21, 37, 70, 0) 70%);
  color: var(--color-gold-medium);
  transition: all 0.4s ease;
}

.online_icon_svg {
  width: 38px;
  height: 38px;
  transition: all 0.4s ease;
}

.online_card:hover .online_icon_wrap {
  border-color: var(--color-gold-medium);
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.18) 0%,
      rgba(21, 37, 70, 0) 70%);
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  color: var(--color-gold-bright);
}

.online_card:hover .online_icon_svg {
  transform: rotate(15deg);
}

.online_card_title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.3s ease;
}

.online_card:hover .online_card_title {
  color: var(--color-gold-bright) !important;
}

.online_card_desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.online_card_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent !important;
  border: 1.5px solid var(--color-gold-medium) !important;
  color: var(--color-gold-bright) !important;
  border-radius: 50px !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
}

.arrow_svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.online_card_btn:hover {
  background: var(--color-gold-gradient) !important;
  color: #1a1000 !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px var(--color-gold-glow) !important;
  transform: translateY(-2px);
}

.online_card_btn:hover .arrow_svg {
  transform: translateX(4px);
}

/* =============================================
   SERVICES SECTION BACKGROUND
   ============================================= */

#services-tabs.services_bg,
#services.services_bg,
.services_bg {
  position: relative;
  background-color: transparent !important;
  z-index: 1;
  overflow: hidden;
}

.services_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/astrology_bg.jpg") no-repeat center center !important;
  background-size: cover !important;
  z-index: 0;
  transition: transform 1.2s cubic-bezier(0.15, 0.85, 0.35, 1);
}

.services_bg:hover::before {
  transform: scale(1.08);
}

.services_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c192e;
  z-index: 1;
}

.services_bg .container {
  position: relative;
  z-index: 2;
}

.services_bg p {
  color: #fff;
}

.service_tab_card,
.service_card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.service_card_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* =============================================
   STATISTICS COUNTERS SECTION
   ============================================= */
/* =============================================
   STATISTICS COUNTERS SECTION
   ============================================= */
.stat_col {
  border-right: 1px solid rgba(212, 175, 55, 0.18);
  padding: 24px 15px;
  transition:
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 16px;
}

.stat_col:last-child {
  border-right: none;
}

.stat_col:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.stat_circle_wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.stat_col:hover .stat_circle_wrapper {
  transform: scale(1.08);
}

.stat_globe {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      rgba(212, 175, 55, 0.12) 0%,
      rgba(20, 35, 65, 0.5) 70%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    inset 0 0 15px rgba(212, 175, 55, 0.15),
    0 0 20px rgba(212, 175, 55, 0.08);
  z-index: 1;
  transition:
    border-color 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    background 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.stat_col:hover .stat_globe {
  border-color: var(--color-gold-bright);
  box-shadow:
    inset 0 0 25px rgba(212, 175, 55, 0.35),
    0 0 35px rgba(212, 175, 55, 0.25);
  background: radial-gradient(circle at 30% 30%,
      rgba(212, 175, 55, 0.18) 0%,
      rgba(25, 45, 80, 0.65) 70%);
}

.stat_orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.2);
  pointer-events: none;
  transition: border-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.stat_col:hover .stat_orbit {
  border-color: rgba(212, 175, 55, 0.55);
}

.stat_orbit.orbit_1 {
  width: 110px;
  height: 110px;
  transform: rotate(25deg);
  animation: spin 30s linear infinite;
}

.stat_orbit.orbit_2 {
  width: 125px;
  height: 85px;
  transform: rotate(-35deg);
  border-style: dotted;
  animation: spin-reverse 20s linear infinite;
}

.stat_moon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-gold-bright);
  transform: translate(-50%, -50%);
}

.stat_number {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold-bright) !important;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
  display: inline-flex;
  align-items: baseline;
  transition: text-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.stat_col:hover .stat_number {
  text-shadow:
    0 0 15px rgba(253, 238, 160, 0.65),
    0 2px 4px rgba(0, 0, 0, 0.45);
}

.stat_label {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.stat_col:hover .stat_label {
  color: #ffffff;
}

/* Statistics Background and Overlay Styles */
.stats_section {
  position: relative;
  background-color: #0c192e;
}

.stats_bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,
      rgba(16, 28, 48, 0.8) 0%,
      rgba(10, 18, 33, 0.98) 100%);
  z-index: 1;
}

/* About Section Background and Overlay Styles */
.about_section {
  position: relative;
  background-image: url("../images/astrology_bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1;
}

.about_bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,
      rgba(16, 28, 48, 0.82) 0%,
      rgba(10, 18, 33, 0.98) 100%);
  z-index: 1;
  background: var(--bg-secondary)
}

@media (max-width: 991px) {
  .stat_col {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding-bottom: 25px;
  }

  .stat_col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* =============================================
   FORM CONTROLS (DARK THEME COMPATIBLE)
============================================= */
/* Main Form Fields Styling */
.glass_card .form-control,
.notched_card .form-control,
.glass_card .form-select,
.notched_card .form-select {
  background-color: rgba(20, 32, 54, 0.6) !important;
  color: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.22) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  transition: all 0.3s ease !important;
}

/* Placeholder text coloring */
.glass_card .form-control::placeholder,
.notched_card .form-control::placeholder {
  color: rgba(202, 216, 243, 0.5) !important;
}

/* Active / Focus styling */
.glass_card .form-control:focus,
.notched_card .form-control:focus,
.glass_card .form-select:focus,
.notched_card .form-select:focus {
  background-color: rgba(20, 32, 54, 0.8) !important;
  border-color: var(--color-gold-bright) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
  outline: none !important;
}

/* Select options background in dropdown list */
.glass_card .form-select option,
.notched_card .form-select option {
  background-color: #1c3055 !important;
  color: #ffffff !important;
}

/* Labels styling overlay */
.glass_card label.form-label,
.notched_card label.form-label {
  color: var(--color-gold-light) !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em !important;
}

/* Invert calendar/time picker icons on dark inputs for visibility */
.glass_card input[type="date"]::-webkit-calendar-picker-indicator,
.notched_card input[type="date"]::-webkit-calendar-picker-indicator,
.glass_card input[type="time"]::-webkit-calendar-picker-indicator,
.notched_card input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) !important;
}

/* Fix browser autocomplete styling on dark inputs */
.glass_card .form-control:-webkit-autofill,
.notched_card .form-control:-webkit-autofill,
.glass_card .form-select:-webkit-autofill,
.notched_card .form-select:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* Footer Bottom Styles */
.footer_bottom p {
  color: rgb(255, 255, 255) !important;
}

.footer_bottom a {
  color: #e5c158 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_bottom a:hover {
  color: var(--color-gold-bright) !important;
}

/* Custom Accordion Styles for Dark Theme FAQ */
.faq_accordion .accordion-item {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease;
}

.faq_accordion .accordion-item:hover {
  border-color: var(--card-border-hover) !important;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.08) !important;
}

.faq_btn {
  background: #172746 !important;
  color: #d2ad36 !important;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 20px 24px !important;
  border: none !important;
  box-shadow: none !important;
  transition: color 0.3s ease;
  text-align: left;
}



.faq_btn::after {
  filter: invert(0.85) sepia(0.6) saturate(1.8) hue-rotate(1deg) !important;
  transition: transform 0.3s ease;
}

.faq_accordion .accordion-body {
  padding: 24px;
  background: #172746;
  font-family: var(--font-body);
  color: #ffffff !important;
}

/* Custom Map Styles */
.map_wrapper {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  overflow: hidden;
}

.map_iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transition: filter 0.5s ease;
}



/* =============================================
   CUSTOM PAGE BANNER & FAQ BG STYLES
 ============================================= */

/* Custom Page Banner */
.page_banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--topbar-h) + var(--header-h));
  box-sizing: border-box;
  background-color: #152440 !important;
}

/* Background image element for smooth zoom animation on hover */
.page_banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

/* Hover Zoom effect */
.page_banner:hover .page_banner_bg {
  transform: scale(1.06);
}

/* Dark gradient overlay mask to ensure typography contrast */
.page_banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(15, 26, 47, 0.92) 0%,
      rgba(21, 37, 66, 0.82) 50%,
      rgba(21, 37, 66, 0.5) 100%);
  z-index: 1;
}

.page_banner_content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Gentle slide right on hover */
.page_banner:hover .page_banner_content {
  transform: translateX(12px);
}

.banner_breadcrumbs {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-bright);
  margin-bottom: 12px;
}

.banner_breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-block;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.banner_breadcrumbs a:hover {
  color: var(--color-gold-bright);
  transform: translateY(-2px);
}

.banner_breadcrumbs span {
  margin: 0 8px;
  opacity: 0.6;
  color: var(--text-secondary);
}

.banner_title {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-white) !important;
  margin-bottom: 10px;
  line-height: 1.25;
}

.banner_subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 0;
  line-height: 1.6;
}





/* ==========================
Modern Premium Breadcrumb
========================== */

.breadcrumb-modern {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(135deg, #0d1b35, #14274d, #1d325f);
}

.breadcrumb-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 184, 0, .08), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .05), transparent 30%);
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.breadcrumb-line {
  display: inline-block;
  width: 70px;
  height: 3px;
  background: #d4af37;
  margin-bottom: 18px;
  border-radius: 20px;
}

.breadcrumb-path {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.breadcrumb-path a {
  color: #fff;
  opacity: .75;
  text-decoration: none;
  transition: .3s;
}

.breadcrumb-path a:hover {
  color: #d4af37;
  opacity: 1;
}

.breadcrumb-path span {
  color: #8fa7d8;
}

.breadcrumb-path .active {
  color: #d4af37;
}

.breadcrumb-modern h1 {
  font-size: 58px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.breadcrumb-modern p {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  max-width: 550px;
  line-height: 1.8;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape-1 {
  width: 280px;
  height: 280px;
  background: #d4af37;
  opacity: .08;
  top: -100px;
  right: -80px;
}

.shape-2 {
  width: 220px;
  height: 220px;
  background: #3d7eff;
  opacity: .08;
  bottom: -100px;
  left: -80px;
}

@media(max-width:991px) {

  .breadcrumb-modern {
    padding: 80px 0;
  }

  .breadcrumb-modern h1 {
    font-size: 42px;
  }

}

@media(max-width:576px) {

  .breadcrumb-modern {
    padding: 65px 0;
  }

  .breadcrumb-modern h1 {
    font-size: 34px;
  }

  .breadcrumb-modern p {
    font-size: 15px;
  }

  .breadcrumb-path {
    font-size: 11px;
  }

}


/* Specific Page Banner background mapping (applied to page_banner_bg) */
/* Background images removed — banners now use clean dark navy gradient */
.page_banner_bg.banner_about,
.page_banner_bg.banner_services,
.page_banner_bg.banner_contact {
  background-image: none !important;
  background: linear-gradient(135deg,
      #0f1a2f 0%,
      #152542 40%,
      #1c3055 70%,
      #253d6a 100%) !important;
}

/* FAQ Section Custom Background Styling */
.faq_section_bg {
  position: relative;
  background-color: #ffff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}





.map_section {
  background-color: #152440;
  color: #ffff !important;
}

/* =============================================
   CONNECT WITH EXPERTS SECTION — Background Image
 ============================================= */
.contact_experts_bg {
  position: relative;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.contact_experts_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center,
      rgba(10, 18, 35, 0.82) 0%,
      rgba(15, 26, 47, 0.94) 100%);
  z-index: 1;
}

.contact_experts_bg>.container {
  position: relative;
  z-index: 2;
}

.contact_left_iocn_box a {
  text-decoration: none;
}

/* Responsive adjustment for subpage banners */
@media (max-width: 768px) {
  .page_banner {
    min-height: 250px;
  }

  .banner_title {
    font-size: 2.2rem;
  }

  .banner_subtitle {
    font-size: 0.95rem;
  }
}

.membership-section {
  background: #fff;
  position: relative;
}

.section-subtitle {
  color: #d2ad36;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.membership-section .section-title {
  color: #d2ad36;
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0;
}

.membership-section .section-desc {
  color: #000000;
}

.membership-card {
  position: relative;
  background: linear-gradient(135deg, #0e1a37, #162746) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(210, 173, 54, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.membership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(210, 173, 54, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(210, 173, 54, 0.8);
}

.featured {
  transform: scale(1.05);
}

.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge-plan {
  position: absolute;
  top: 30px;
  right: -35px;
  background: var(--color-gold-gradient);
  color: #1a1000;
  padding: 8px 45px;
  transform: rotate(45deg);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.plan-name {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price {
  color: var(--color-gold-bright);
  font-size: 46px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(210, 173, 54, 0.3);
}

.duration {
  margin-bottom: 25px;
  color: #a0aec0;
}

.membership-card ul {
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.membership-card ul li {
  margin: 14px 0;
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-plan {
  display: inline-block;
  margin-top: auto;
  background: transparent;
  border: 1.5px solid var(--color-gold-medium);
  color: var(--color-gold-bright);
  padding: 14px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.btn-plan:hover {
  background: var(--color-gold-gradient);
  color: #1a1000;
  border-color: transparent;
  box-shadow: 0 5px 20px var(--color-gold-glow);
}

@media(max-width:991px) {

  .featured {

    transform: none;

  }

  .section-title {

    font-size: 34px;

  }

}

.astro_orbit_section {
  position: relative;
  padding: 90px 0;
  overflow: hidden !important;
  background-color: #fcfcfc !important;
}

/* Background Pattern */
.astro_orbit_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: .06;
  z-index: 0;
}

.astro_orbit_section .container {
  position: relative;
  z-index: 2;
}

.astro_orbit_section .owl-carousel,
.astro_orbit_section .owl-stage-outer,
.astro_orbit_section .owl-stage {
  overflow: visible !important;
}

/* Card */
.astro_orbit_section .astro_orbit_card {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, .25);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: .4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.astro_orbit_section .astro_orbit_card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.astro_orbit_section .astro_orbit_card img {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  object-fit: contain;
  transition: .4s;
}

.astro_orbit_section .astro_orbit_card:hover img {
  transform: scale(1.08) rotate(6deg);
}

.astro_orbit_section .astro_orbit_card h6 {
  margin-top: 18px;
  color: #152542 !important;
  font-size: 16px;
  font-weight: 600;
}

/* Ensure smooth linear continuous scrolling for the zodiac carousel */
.astro_orbit_section .astro_orbit_slider .owl-stage {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}