:root{
  --bg: #ffffff;
  --card-orange: #1C3EAA;
  --panel: #ffffff;
  --panel-2: #f8f9fd;
  --text: #1f2937;
  --muted: rgba(31,41,55,.68);
  /* Blue primary color */
  --primary: #1C3EAA;
  --primary-rgb: 28,62,170;
  /* Orange accent color */
  --accent: #F05A1E;
  --accent-rgb: 240,90,30;
  /* Yellow for buttons */
  --gold: #FFDC00;
  --gold2: #FFDC00;
  --gold-rgb: 255,220,0;
  --gold2-rgb: 255,220,0;

  --border: rgba(28,62,170,.22);
  --shadow: 0 14px 36px rgba(15,23,42,.10);
}

body.theme-dark{
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Universal Poppins font for all English text */
body, p, h1, h2, h3, h4, h5, h6, span, div, a, button, input, textarea, select, label, li, td, th {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif !important;
}

/* Hero section content shadow */
.home-hero .hero-title,
.home-hero .lead,
.home-hero .hero-metrics {
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.3),
    0 4px 8px rgba(0,0,0,0.2),
    0 8px 16px rgba(0,0,0,0.1);
}

.home-hero .hero-title {
  text-shadow: 
    0 2px 8px rgba(0,0,0,.45),
    0 6px 20px rgba(0,0,0,.3),
    0 12px 32px rgba(0,0,0,.15);
}

/* Prevent unwanted horizontal scroll from scaled/absolutely positioned elements */
html, body{
  overflow-x: hidden;
}

/* Service Cards with Different Colors */
#services .service-card-0{
  background: linear-gradient(135deg, #8B4789, #6B3A68) !important;
  border-color: rgba(139,71,137,0.5) !important;
}
#services .service-card-1{
  background: linear-gradient(135deg, #1C3EAA, #152E85) !important;
  border-color: rgba(28,62,170,0.5) !important;
}
#services .service-card-2{
  background: linear-gradient(135deg, #FFDC00, #E6C200) !important;
  border-color: rgba(255,220,0,0.5) !important;
}
#services .service-card-3{
  background: linear-gradient(135deg, #F05A1E, #D04515) !important;
  border-color: rgba(240,90,30,0.5) !important;
}
#services .service-card-4{
  background: linear-gradient(135deg, #E91E63, #AD1457) !important;
  border-color: rgba(233,30,99,0.5) !important;
}

.consultation-card[data-card-color="0"]{
  background: linear-gradient(135deg, #8B4789, #6B3A68) !important;
  border-color: rgba(139,71,137,0.5) !important;
}
.consultation-card[data-card-color="0"] h3,
.consultation-card[data-card-color="0"] p{
  color: #ffffff !important;
}
.consultation-card[data-card-color="1"]{
  background: linear-gradient(135deg, #FFDC00, #E6C200) !important;
  border-color: rgba(255,220,0,0.5) !important;
}
.consultation-card[data-card-color="1"] h3,
.consultation-card[data-card-color="1"] p{
  color: #ffffff !important;
}
.consultation-card[data-card-color="2"]{
  background: linear-gradient(135deg, #E91E63, #AD1457) !important;
  border-color: rgba(233,30,99,0.5) !important;
}
.consultation-card[data-card-color="2"] h3,
.consultation-card[data-card-color="2"] p{
  color: #ffffff !important;
}
.consultation-card[data-card-color="3"]{
  background: linear-gradient(135deg, #1C3EAA, #152E85) !important;
  border-color: rgba(28,62,170,0.5) !important;
}
.consultation-card[data-card-color="3"] h3,
.consultation-card[data-card-color="3"] p{
  color: #ffffff !important;
}
.consultation-card[data-card-color="4"]{
  background: linear-gradient(135deg, #F05A1E, #D04515) !important;
  border-color: rgba(240,90,30,0.5) !important;
}
.consultation-card[data-card-color="4"] h3,
.consultation-card[data-card-color="4"] p{
  color: #ffffff !important;
}
.consultation-card[data-card-color="5"]{
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.consultation-card[data-card-color="5"] h3,
.consultation-card[data-card-color="5"] p{
  color: #ffffff !important;
}

/* Admin list tables: change Bootstrap dark table to orange theme */
body.theme-dark table.table-dark,
body.theme-dark .table.table-dark{
  background-color: var(--card-orange) !important;
  color: #ffffff !important;
}
body.theme-dark .table.table-dark thead th{
  background-color: rgba(255,255,255,.10) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.22) !important;
}
body.theme-dark .table.table-dark td{
  color: #ffffff !important;
  border-color: rgba(255,255,255,.18) !important;
}
body.theme-dark .table.table-dark tbody tr,
body.theme-dark .table.table-dark tbody tr td{
  background-color: var(--card-orange) !important;
}
body.theme-dark .table.table-dark tbody tr td{
  color: #ffffff !important;
}
body.theme-dark .table.table-dark td .text-muted,
body.theme-dark .table.table-dark td code,
body.theme-dark .table.table-dark td code.text-muted,
body.theme-dark .table.table-dark td a:not(.btn),
body.theme-dark .table.table-dark td a:not(.btn) code{
  color: #ffffff !important;
}
body.theme-dark .table.table-dark tbody tr:hover{
  filter: brightness(1.04);
}

/* Ensure Delete buttons remain visible on orange admin tables */
body.theme-dark .table.table-dark .btn-outline-danger{
  color: #ffffff !important;
  border-color: #dc3545 !important;
  background: #dc3545 !important;
}
body.theme-dark .table.table-dark .btn-outline-danger:hover{
  background: #dc3545 !important;
  color: #ffffff !important;
}

body.theme-dark .table.table-dark .btn-outline-danger:focus,
body.theme-dark .table.table-dark .btn-outline-danger:active{
  color: #ffffff !important;
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 .2rem rgba(220,53,69,.25) !important;
}

/* Keep Edit/View buttons visible on orange admin tables */
body.theme-dark .table.table-dark .btn-outline-astro{
  background: #ffffff !important;
  border-color: rgba(190,50,0,.55) !important;
  color: #ff4000 !important;
}
body.theme-dark .table.table-dark .btn-outline-astro:hover{
  background: #ff4000 !important;
  color: #ffffff !important;
}

.text-gold{ color: var(--gold) !important; }
.text-orange{ color: var(--accent) !important; }
.text-muted{ color: var(--muted) !important; }

/* Override text-muted color in footer */
.footer .text-muted {
  color: #ffffff !important;
}

.brand-text{
  font-family: Cinzel, serif;
  letter-spacing: .6px;
}
.nav-glass .brand-text{
  font-weight: 800;
  color: #ff5a1f;
  -webkit-text-stroke: 0.6px #7a2200;
  text-shadow: 0 1px 0 rgba(255,255,255,.2), 0 2px 8px rgba(122,34,0,.25);
}
.nav-offcanvas .brand-text{
  font-weight: 800;
  color: #ff5a1f;
  -webkit-text-stroke: 0.6px #7a2200;
  text-shadow: 0 1px 0 rgba(255,255,255,.2), 0 2px 8px rgba(122,34,0,.25);
}
#navOffcanvas .brand-text{
  font-weight: 800 !important;
  color: #ff5a1f !important;
  -webkit-text-stroke: 0.6px #7a2200 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.2), 0 2px 8px rgba(122,34,0,.25) !important;
}
.brand-mark{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold) 35%, rgba(212,175,55,.2) 70%);
  box-shadow: 0 0 0 6px rgba(212,175,55,.10);
}

.brand-logo{
  width: 100px;
  height: auto;
  border: 2px solid rgba(var(--gold-rgb),.3);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* Reusable profile photo */
.profile-photo{
  display: block;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(var(--gold-rgb),.22);
  box-shadow: 0 0 0 10px rgba(var(--purple-rgb),.10);
  background: rgba(0,0,0,.15);
}
.profile-photo--sm{
  width: 44px;
  height: 44px;
  box-shadow: 0 0 0 10px rgba(var(--gold-rgb),.10);
}
.profile-photo--xl{
  width: 180px;
  height: 180px;
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 18px rgba(var(--purple-rgb),.10),
    0 18px 60px rgba(0,0,0,.45);
}

.nav-glass{
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.navbar .nav-link{
  color: rgba(15,23,42,.78) !important;
}
.navbar .nav-link:hover{
  color: #0f172a !important;
}
.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"]{
  color: var(--primary) !important;
}
.nav-offcanvas .nav-link.active,
.nav-offcanvas .nav-link[aria-current="page"]{
  color: var(--primary) !important;
}

/* Mobile sidebar (offcanvas) */
.nav-offcanvas{
  background: rgba(255,255,255,.98) !important;
  border-left: 1px solid rgba(15,23,42,.10) !important;
}
.nav-offcanvas .nav-link{
  color: rgba(15,23,42,.82) !important;
}
.nav-offcanvas .nav-link:hover{
  color: #0f172a !important;
}
.nav-offcanvas .offcanvas-header{
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.nav-offcanvas .btn-close{
  filter: none;
}

/* Admin — mobile hamburger opens sidebar (offcanvas) */
.admin-navbar-toggler{
  padding: .35rem .55rem;
  border: 1px solid rgba(190,50,0,.55);
  border-radius: .375rem;
  background: #ffffff;
}

.admin-navbar-toggler .navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff4000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.admin-nav-offcanvas{
  background: rgba(11,11,15,.97) !important;
  border-right: 1px solid rgba(212,175,55,.14) !important;
  max-width: min(320px, 88vw);
}
.admin-nav-offcanvas .offcanvas-title{
  color: rgba(237,237,244,.95);
}

.btn-gold{
  background: var(--gold);
  border: 2px solid #000000;
  color: #000000;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.btn-gold:hover{
  background: #FFC700;
  filter: brightness(0.95);
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.btn-outline-gold{
  border: 1px solid rgba(190,50,0,.35);
  color: var(--card-orange);
  background: #ffffff;
}
.btn-outline-gold:hover{
  background: var(--card-orange);
  color: #ffffff;
}

.hero{
  padding: 5.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  filter: saturate(1.08) contrast(1.06) brightness(1.05);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(var(--purple-rgb),.28), transparent 60%),
    radial-gradient(820px 420px at 80% 0%, rgba(var(--gold-rgb),.10), transparent 55%),
    linear-gradient(180deg, rgba(11,11,15,.62), rgba(11,11,15,.32));
  pointer-events: none;
  z-index: 2;
}
.hero:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 380px at 30% 20%, rgba(var(--gold-rgb),.10), transparent 60%),
    radial-gradient(800px 500px at 70% 40%, rgba(var(--purple-rgb),.18), transparent 65%);
  pointer-events:none;
  z-index: 1;
}
.hero > .container{ position: relative; z-index: 3; }

.badge-astro{
  display:inline-flex;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.25);
  background: rgba(17,17,26,.55);
  color: rgba(237,237,244,.9);
}
.hero-title{
  font-family: Cinzel, serif;
  line-height: 1.12;
}

/* Fix hero content visibility */
.home-hero.hero{
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  min-height: 65vh;
  min-height: 65dvh;
  padding: 3rem 0 2.5rem;
  overflow: visible;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #00bcd4 0%, #e91e63 50%, #ff9800 100%);
}
.home-hero .container{
  position: relative !important;
  z-index: 10 !important;
}
.home-hero > .hero-corner-image{
  position: absolute;
  top: 0.9rem;
  left: 0.6rem;
  width: clamp(58px, 11vw, 102px);
  height: auto;
  object-fit: contain;
  z-index: 12;
  pointer-events: none;
}
.home-hero > .hero-corner-image-right{
  position: absolute;
  top: 0.9rem;
  right: 0.6rem;
  width: clamp(78px, 14vw, 140px);
  height: auto;
  object-fit: contain;
  z-index: 12;
  pointer-events: none;
}
@media (min-width: 992px){
  .home-hero > .hero-corner-image{
    top: 1rem;
    left: 0.8rem;
    width: clamp(74px, 8vw, 118px);
  }
  .home-hero > .hero-corner-image-right{
    top: 1rem;
    right: 0.8rem;
    width: clamp(104px, 10vw, 168px);
  }
}
.home-hero .hero-title{
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 6px 20px rgba(0,0,0,0.6), 0 10px 30px rgba(0,0,0,0.4);
}
.home-hero .lead{
  color: rgba(255,255,255,0.95) !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 6px 20px rgba(0,0,0,0.6), 0 10px 30px rgba(0,0,0,0.4);
}
@media (min-width: 576px){
  .home-hero.hero{
    min-height: 70vh;
    min-height: 70dvh;
    padding: 3.5rem 0 2.2rem;
  }
}
@media (min-width: 992px){
  .home-hero.hero{
    min-height: 65vh;
    min-height: 65dvh;
    padding: 3.8rem 0 2.5rem;
  }
}
.home-hero .row.align-items-center{
  --bs-gutter-y: 0.65rem;
}
@media (min-width: 992px){
  .home-hero .row.align-items-center{
    --bs-gutter-y: 1rem;
  }
}

/* Hero About Section */
.hero-about-section{
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-about-content{
  max-width: 800px;
  margin: 0 auto;
}
.hero-about-title{
  font-family: Cinzel, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero-about-description{
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.hero-about-features{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.feature-item{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.feature-item i{
  color: var(--gold);
  font-size: 0.9rem;
}
@media (min-width: 768px){
  .hero-about-features{
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

/* Hero Spacer */
.hero-spacer{
  height: 80px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
  position: relative;
}

/* About Us Section (Home) */
#about-home{
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(139,71,137,0.05) 0%, rgba(28,62,170,0.03) 100%);
  position: relative;
}
#about-home::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px 400px at 30% 20%, rgba(139,71,137,0.08), transparent 60%),
              radial-gradient(600px 300px at 70% 80%, rgba(28,62,170,0.06), transparent 50%);
  pointer-events: none;
}
.about-content{
  max-width: 600px;
}
.about-description{
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2rem;
}
.about-highlights{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.highlight-item{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  border: 1px solid rgba(var(--primary-rgb),0.1);
  transition: all 0.3s ease;
}
.highlight-item:hover{
  background: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
}
.highlight-icon{
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  flex-shrink: 0;
}
.highlight-text{
  flex: 1;
}
.highlight-text strong{
  display: block;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.highlight-text span{
  color: var(--muted);
  font-size: 0.9rem;
}
.about-cta{
  padding: 2rem;
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
  border: 1px solid rgba(var(--gold-rgb),0.3);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.about-cta-title{
  font-family: Cinzel, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.about-cta-subtitle{
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* About Page Redesign */
.about-page-header {
  background-color: #ffffff;
  padding: 4rem 0;
  border-bottom: 1px solid #e9ecef;
}

.checkmark-icon {
  color: #28a745;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-page-title {
  font-family: Cinzel, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.about-page-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.vastu-consultation-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 0;
}

.vastu-consultation-section .kicker{
  font-size: 1rem;
  letter-spacing: .18em;
  color: rgba(212,175,55,.92);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.vastu-info-card, .vastu-expertise-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  height: 100%;
  border: 1px solid rgba(255,106,51,0.1);
}

.vastu-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.vastu-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff4000, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  flex-shrink: 0;
}

.vastu-title {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35 !important;
  margin-bottom: 1rem;
}

.vastu-description {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #ff6b35 !important;
  margin-bottom: 0;
}

.expertise-title {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35 !important;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #ff6b35 !important;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.expertise-list li:last-child {
  border-bottom: none;
}

.expertise-list i {
  color: #ff4000;
  font-size: 1.1rem;
  width: 20px;
}

.fee-card, .consultation-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  height: 100%;
  border: 1px solid rgba(255,106,51,0.1);
  display: flex;
  flex-direction: column;
}

/* Mobile responsive layout for about section */
@media (max-width: 767px) {
  .vastu-consultation-section .row {
    gap: 1.5rem !important;
  }
  
  .vastu-consultation-section .vastu-info-card,
  .vastu-consultation-section .vastu-expertise-card {
    margin-bottom: 1.5rem;
  }
  
  .vastu-consultation-section .fee-card,
  .vastu-consultation-section .consultation-card {
    margin-bottom: 1.5rem;
  }
  
  /* About section mobile layout - photo first, then info */
  #about-home .row {
    flex-direction: column !important;
  }
  
  #about-home .col-lg-6:first-child {
    order: 1 !important;
    margin-bottom: 2rem;
  }
  
  #about-home .col-lg-6:last-child {
    order: 2 !important;
  }
}

.fee-header, .consultation-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fee-header i, .consultation-header i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff4000, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
}

.fee-header h3, .consultation-header h3 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b35 !important;
  margin: 0;
}

.fee-amount {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff4000;
  margin-bottom: 1rem;
  text-align: center;
}

.fee-note, .consultation-description {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ff6b35 !important;
  margin-bottom: 1.5rem;
}

.consultation-action-btn {
  margin-top: auto;
  align-self: center;
}

.spiritual-guidance-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
}

.guidance-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255,106,51,0.1);
}

.guidance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,106,51,0.15);
}

.guidance-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ff4000, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
}

.guidance-title {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.guidance-description {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  background-color: #fff;
}

.hindi-tagline-hero{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  color: #ff6b35 !important;
  font-style: italic;
  font-weight: 600;
  margin-top: 0.5rem;
  display: block;
}

.hindi-tagline-consultation{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  color: #e74c3c !important;
  font-style: italic;
  font-weight: 600;
}

.hindi-tagline-services{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  color: #9b59b6 !important;
  font-style: italic;
  font-weight: 600;
}

.hindi-tagline{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  color: #2c3e50;
  margin: 1rem 0;
  line-height: 1.6;
}

.hindi-tagline em strong{
  font-style: italic;
  font-weight: 700;
  color: #ff4000;
}

.about-content-section {
  background-color: #fff8e1;
  padding: 3rem 0;
  background-image: linear-gradient(135deg, #fff8e1 0%, #ffe4e6 100%);
}

.about-paragraph{
  font-size: 1.02rem;
  line-height: 1.75;
  color: #2c3e50 !important;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.about-page-title{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.about-page-subtitle{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.about-content-left p,
.about-content-left div,
.about-content-left span {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif !important;
}

.about-content-left {
  text-align: justify;
}

.dropcap {
  float: left;
  font-size: 5em;
  line-height: 0.8;
  margin-right: 0.1em;
  font-family: 'Georgia', serif;
  color: #343a40;
  font-weight: bold;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.spirituality-science-title {
  font-family: Cinzel, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 2rem 0 1rem 0;
}

.social-links {
  margin: 2rem 0;
}

.social-links a {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.open-gallery-link {
  margin-top: 2rem;
}

.about-profile-right {
  text-align: center;
  padding: 2rem;
}

.profile-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-content-left {
    margin-bottom: 2rem;
  }
  
  .about-profile-right {
    margin-top: 2rem;
  }
  
  .dropcap {
    font-size: 4em;
  }
  
  .about-page-title {
    font-size: 2.2rem;
  }
  
  .spirituality-science-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .about-page-header {
    padding: 2rem 0;
  }
  
  .about-content-section {
    padding: 2rem 0;
  }
  
  .about-page-title {
    font-size: 1.8rem;
  }
  
  .dropcap {
    font-size: 3.5em;
  }
  
  .social-links a {
    display: block;
    margin-bottom: 15px;
  }
}

/* About Page Redesign */
.about-us-section{
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(199,21,133,0.05) 0%, rgba(25,25,112,0.03) 100%);
  position: relative;
}
.about-us-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px 400px at 30% 20%, rgba(199,21,133,0.08), transparent 60%),
              radial-gradient(600px 300px at 70% 80%, rgba(25,25,112,0.06), transparent 50%);
  pointer-events: none;
}
.about-content{
  max-width: 600px;
  margin: 0 auto 2rem;
}
.about-title{
  font-family: Cinzel, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.about-description{
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2rem;
}
.about-highlights{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.highlight-item{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  border: 1px solid rgba(var(--primary-rgb),0.1);
  transition: all 0.3s ease;
}
.highlight-item:hover{
  background: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
}
.highlight-icon{
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  flex-shrink: 0;
}
.highlight-text{
  flex: 1;
}
.highlight-text strong{
  display: block;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.highlight-text span{
  color: var(--muted);
  font-size: 0.9rem;
}
.about-image-container{
  position: relative;
}
.about-image-wrapper{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.about-image{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-image-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(199,21,133,0.2), rgba(25,25,112,0.1));
}
.about-credentials{
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.credential-item{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}
.credential-icon{
  font-size: 1.25rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: white;
  border-radius: 8px;
  flex-shrink: 0;
}
.credential-text{
  flex: 1;
}
.credential-text strong{
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.credential-text span{
  color: var(--muted);
  font-size: 0.9rem;
}
@media (min-width: 992px){
  .about-us-section .row{
    align-items: stretch;
  }
  .about-content{
    margin: 0 2rem 0 0;
  }
}
.home-hero .badge-astro{
  margin-bottom: 0.4rem !important;
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
  line-height: 1.25;
  max-width: 100%;
}
@media (min-width: 992px){
  .home-hero .badge-astro{
    margin-bottom: 1.35rem !important;
  }
  .home-hero .container{
    position: relative !important;
    z-index: 10 !important;
  }
  /* Fix scrollbar and content visibility */
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }
  html {
    overflow-x: hidden;
    overflow-y: auto;
  }
  /* Ensure all sections are visible */
  .section{
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
    height: auto;
  }
  .about-us-section{
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
    height: auto;
  }
  #consultation{
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
    height: auto;
  }
}
.home-hero .hero-title{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.36rem, 4.6vw, 2.55rem);
  margin-bottom: 0.4rem !important;
  line-height: 1.52;
  padding-top: 0.2em;
  padding-bottom: 0.12em;
  overflow: visible;
  color: #ffffff !important;
  text-shadow: 
    0 2px 8px rgba(0,0,0,.45),
    0 6px 20px rgba(0,0,0,.3),
    0 10px 30px rgba(0,0,0,.2);
  font-weight: 700;
}
@media (min-width: 992px){
  .home-hero .hero-title{
    font-size: clamp(1.75rem, 2.35vw, 2.7rem);
    margin-bottom: 0.5rem !important;
    line-height: 1.58;
    padding-top: 0.28em;
    padding-bottom: 0.18em;
  }
}
.home-hero .home-gradient-text{
  display: block;
  line-height: 1.55;
  padding-top: 0.12em;
  padding-bottom: 0;
  margin-bottom: 0.05rem;
}
@media (min-width: 992px){
  .home-hero .home-gradient-text{
    line-height: 1.62;
    padding-top: 0.18em;
    margin-bottom: 0.08rem;
  }
}
.home-hero .home-hero-title-name{
  display: block;
  margin-top: 0;
}
.home-hero .col-lg-8{
  overflow: visible;
}
.home-hero .lead{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.93rem;
  margin-bottom: 0.65rem !important;
  line-height: 1.55;
  color: rgba(255,255,255,.92) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  font-weight: 400;
}
@media (min-width: 576px){
  .home-hero .lead{
    font-size: 1.02rem;
  }
}
@media (min-width: 992px){
  .home-hero .lead{
    font-size: 1.08rem;
    margin-bottom: 0.85rem !important;
  }
}
.home-hero #cta{
  gap: 0.45rem !important;
}
@media (min-width: 576px){
  .home-hero #cta{
    gap: 0.65rem !important;
  }
}
.home-hero #cta .btn-lg{
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}
@media (min-width: 576px){
  .home-hero #cta .btn-lg{
    padding: 0.55rem 1.15rem;
    font-size: 1rem;
  }
}
@media (min-width: 992px){
  .home-hero #cta .btn-lg{
    padding: 0.6rem 1.35rem;
    font-size: 1.05rem;
  }
}
.home-hero .hero-metrics{
  margin-top: 1rem !important;
  gap: 0.45rem;
}
@media (min-width: 992px){
  .home-hero .hero-metrics{
    margin-top: 1.15rem !important;
  }
}
.home-hero .hero-metrics .metric{
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
}
.home-hero .hero-metrics .metric-value{
  font-size: 0.8rem;
}
.home-hero .hero-metrics .metric-label{
  font-size: 0.68rem;
}


.home-gradient-text{
  color: #ffffff !important;
  text-shadow: 
    0 2px 8px rgba(0,0,0,.4),
    0 4px 12px rgba(0,0,0,.3),
    0 8px 20px rgba(0,0,0,.2);
}

/* Live Session Cards with Different Colors */
.home-live-card.live-card-0{
  background: linear-gradient(180deg, #00bcd4, #0097a7) !important;
  border-color: rgba(0,188,212,0.5) !important;
  box-shadow: 0 18px 55px rgba(0,188,212,.30) !important;
}
.home-live-card.live-card-1{
  background: linear-gradient(180deg, #e91e63, #c2185b) !important;
  border-color: rgba(233,30,99,0.5) !important;
  box-shadow: 0 18px 55px rgba(233,30,99,.30) !important;
}
.home-live-card.live-card-2{
  background: linear-gradient(180deg, #ff9800, #f57c00) !important;
  border-color: rgba(255,152,0,0.5) !important;
  box-shadow: 0 18px 55px rgba(255,152,0,.30) !important;
}
.home-live-card.live-card-3{
  background: linear-gradient(180deg, #8b4789, #6b3a68) !important;
  border-color: rgba(139,71,137,0.5) !important;
  box-shadow: 0 18px 55px rgba(139,71,137,.30) !important;
}

.home-live-card{
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb),.14);
  background: linear-gradient(180deg, rgba(21,21,37,.76), rgba(17,17,26,.76));
  box-shadow: 0 18px 55px rgba(0,0,0,.30);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  height: 100%;
}
.home-live-card:hover{
  transform: translateY(-3px);
  border-color: rgba(var(--gold-rgb),.24);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}
.home-live-thumb{
  position: relative;
  height: 150px;
  background: radial-gradient(600px 180px at 20% 0%, rgba(var(--purple-rgb),.45), transparent 60%);
}
.home-live-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  opacity: .95;
}
.home-live-img--fallback{
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(var(--purple-rgb),.5), transparent 55%),
    radial-gradient(600px 220px at 80% 0%, rgba(var(--gold-rgb),.12), transparent 55%),
    rgba(0,0,0,.2);
}
.home-live-play{
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(var(--gold-rgb),.28);
  color: rgba(237,237,244,.95);
  font-size: 1rem;
}
.home-live-body{
  padding: .9rem 1rem 1rem;
}
.home-live-title{
  font-family: Cinzel, serif;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.2;
  color: rgba(237,237,244,.95);
}
.home-live-cta{
  margin-top: .5rem;
  color: rgba(var(--gold-rgb),.92);
  font-weight: 700;
}

/* Home hero serenity card */
.serenity-quote{
  padding: .9rem 1rem;
  border-radius: 16px;
  background:
    radial-gradient(700px 220px at 0% 0%, rgba(var(--purple-rgb),.18), transparent 55%),
    rgba(11,11,15,.45);
  border: 1px solid rgba(var(--gold-rgb),.12);
  color: rgba(237,237,244,.88);
  font-style: italic;
  line-height: 1.55;
}
.serenity-list{
  display: grid;
  gap: .8rem;
}
.serenity-item{
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: .75rem;
  align-items: start;
}
.serenity-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: .35rem;
  background: linear-gradient(90deg, rgba(var(--purple-rgb),1), rgba(var(--purple2-rgb),1));
  box-shadow: 0 0 0 6px rgba(var(--purple-rgb),.10);
  border: 1px solid rgba(var(--gold-rgb),.18);
}
.serenity-title{
  font-weight: 800;
  color: rgba(237,237,244,.95);
}
.serenity-sub{
  font-size: .95rem;
  line-height: 1.45;
}

.hero-card{
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(21,21,37,.92), rgba(17,17,26,.86));
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-top{
  padding: 1.25rem 1.25rem 1rem;
  display:flex;
  align-items:center;
  border-bottom: 1px solid rgba(212,175,55,.10);
  background: radial-gradient(900px 240px at 0% 0%, rgba(var(--purple-rgb),.35), transparent 55%);
}
.orb{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold) 35%, rgba(212,175,55,.10) 70%);
  box-shadow: 0 0 0 10px rgba(212,175,55,.10);
}
.hero-card-title{ font-weight: 600; }
.hero-card-subtitle{ color: var(--muted); font-size: .9rem; }
.hero-card-body{ padding: 1.25rem; }

.pill{
  display:inline-flex;
  align-items:center;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(var(--purple-rgb),.14);
  border: 1px solid rgba(var(--gold-rgb),.22);
  color: rgba(237,237,244,.92);
  font-size: .82rem;
}
.pill-live{
  background: rgba(var(--purple2-rgb),.22);
  border-color: rgba(var(--purple2-rgb),.45);
}

.btn-astro{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(90deg, #ff4000, #f59e0b);
  border: 1px solid rgba(190,50,0,.45);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
  font-weight: 600;
}
.btn-astro:hover{
  filter: brightness(1.05);
}
.btn-outline-astro{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  border: 1px solid rgba(190,50,0,.55);
  color: #ff4000;
  background: #ffffff;
  font-weight: 600;
}
.btn-outline-astro:hover{
  background: #ff4000;
  color: #ffffff;
}

.hero-metrics{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.metric{
  padding: .75rem .9rem;
  border-radius: 14px;
  background: rgba(17,17,26,.55);
  border: 1px solid rgba(212,175,55,.12);
}
.metric-value{
  font-weight: 600;
  color: rgba(237,237,244,.95);
}
.metric-label{
  font-size: .85rem;
  color: var(--muted);
}

/* Admin dashboard metric tiles */
.admin-metric-card{
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45) !important;
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
}
.admin-metric-card .metric-value,
.admin-metric-card .metric-label{
  color: #ffffff !important;
}

#services .service-card h3,
#services .service-card .h5,
#services .service-card .service-title-hi,
#services .service-card p{
  color: #ffffff !important;
}

.section{
  padding: 4.5rem 0;
}
.section-soft{
  background: linear-gradient(180deg, #f7f9ff 0%, #f8fbff 100%);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.kicker{
  display:inline-block;
  letter-spacing: .18em;
  font-size: .78rem;
  color: rgba(212,175,55,.92);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

#live .kicker, .live-kicker{
  font-size: 1rem !important;
  letter-spacing: .18em !important;
}

#about-home .kicker {
  font-size: 1rem !important;
  letter-spacing: .18em !important;
  font-weight: 600 !important;
}

#testimonials .kicker{
  font-size: 1.02rem;
  letter-spacing: .2em;
}

#services .kicker,
#services-page .kicker{
  font-size: 1.02rem;
  letter-spacing: .2em;
}

/* Services cards: center + bigger symbol */
#services .card-astro .icon-badge,
#services-page .card-astro .icon-badge{
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
  width: 54px;
  height: 54px;
  border-radius: 16px;
}
#services .card-astro h3,
#services-page .card-astro h3,
#services .card-astro .service-title-hi,
#services-page .card-astro .service-title-hi{
  text-align: center;
}
#services .card-astro p,
#services-page .card-astro p{
  text-align: center;
  color: #ffffff !important;
}

/* Force service page card backgrounds */
section#services-page .card-astro.service-card-0{
  background: linear-gradient(135deg, #8B4789, #6B3A68) !important;
  border-color: rgba(139,71,137,0.5) !important;
}
section#services-page .card-astro.service-card-1{
  background: linear-gradient(135deg, #1C3EAA, #152E85) !important;
  border-color: rgba(28,62,170,0.5) !important;
}
section#services-page .card-astro.service-card-2{
  background: linear-gradient(135deg, #FFDC00, #E6C200) !important;
  border-color: rgba(255,220,0,0.5) !important;
}
section#services-page .card-astro.service-card-3{
  background: linear-gradient(135deg, #F05A1E, #D04515) !important;
  border-color: rgba(240,90,30,0.5) !important;
}
section#services-page .card-astro.service-card-4{
  background: linear-gradient(135deg, #E91E63, #AD1457) !important;
  border-color: rgba(233,30,99,0.5) !important;
}

section#services-page .service-card-0{
  background: linear-gradient(135deg, #8B4789, #6B3A68) !important;
  border-color: rgba(139,71,137,0.5) !important;
}
section#services-page .service-card-1{
  background: linear-gradient(135deg, #1C3EAA, #152E85) !important;
  border-color: rgba(28,62,170,0.5) !important;
}
section#services-page .service-card-2{
  background: linear-gradient(135deg, #FFDC00, #E6C200) !important;
  border-color: rgba(255,220,0,0.5) !important;
}
section#services-page .service-card-3{
  background: linear-gradient(135deg, #F05A1E, #D04515) !important;
  border-color: rgba(240,90,30,0.5) !important;
}
section#services-page .service-card-4{
  background: linear-gradient(135deg, #E91E63, #AD1457) !important;
  border-color: rgba(233,30,99,0.5) !important;
}

/* Consultation section (home) */
#consultation .card-astro{
  text-align: center;
  /* Lighter orange so cards don't look overly dark */
  background: linear-gradient(180deg, #ff7a4d 0%, var(--card-orange) 100%);
  border: 1px solid rgba(190,50,0,.26);
  box-shadow: 0 14px 34px rgba(255,106,51,.14);
}
#consultation .icon-badge{
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  width: 60px;
  height: 60px;
}
#dosh-shanti .card-astro{
  text-align: center;
  background: linear-gradient(180deg, #ff7a4d 0%, var(--card-orange) 100%);
  border: 1px solid rgba(190,50,0,.26);
  box-shadow: 0 14px 34px rgba(255,106,51,.14);
}
#dosh-shanti .icon-badge{
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  width: 60px;
  height: 60px;
}

/* Lighter yellow button for the consultation cards */
#consultation .btn-gold{
  background: var(--gold);
  border: 2px solid #000000;
  color: #000000;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
#consultation .btn-gold:hover{
  background: #FFC700;
  filter: brightness(0.95);
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.section-title{
  font-family: Cinzel, serif;
  margin-top: .4rem;
}
.section-subtitle{
  max-width: 56rem;
  margin: .5rem auto 0;
}

.card-astro h3,
.card-astro .h5,
.card-session h3,
.card-session .h5,
.card-quote h3,
.card-quote .h5{
  color: #ffffff;
}
.card-astro p,
.card-session p,
.card-quote p{
  color: var(--accent) !important;
}
.service-title-hi{
  font-size: .96rem;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;
}
.card-astro:hover, .card-session:hover, .card-quote:hover{
  border-color: #ff6600;
  transform: translateY(-2px);
  transition: transform .18s ease, border-color .18s ease;
}
.icon-badge{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  color: #ffffff;
  font-size: 1.1rem;
}

.session-title{
  font-weight: 600;
}
.session-time{
  font-family: Cinzel, serif;
  font-size: 1.1rem;
}

.session-video{
  border-bottom: 1px solid rgba(212,175,55,.10);
  background: radial-gradient(900px 240px at 0% 0%, rgba(var(--purple-rgb),.28), transparent 55%);
}
.session-video iframe{
  filter: saturate(1.05) contrast(1.03);
}

.card-quote .quote-mark{
  font-family: Cinzel, serif;
  font-size: 2.6rem;
  line-height: 1;
  color: #ff6600;
  margin-bottom: .35rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 2rem 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(240,90,30,0.3);
}

.testimonial-prev {
  left: 1rem;
}

.testimonial-next {
  right: 1rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(240,90,30,0.4);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .testimonial-slide {
    min-width: 50%;
  }
}

@media (min-width: 992px) {
  .testimonial-slide {
    min-width: 33.333%;
  }
}
.avatar{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,.35), rgba(var(--purple-rgb),.30));
  border: 1px solid rgba(212,175,55,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 600;
}

.cta-strip{
  border-radius: 20px;
  padding: 1.4rem 1.4rem;
  background: linear-gradient(120deg, #eef4ff 0%, #fff3d4 100%);
  border: 1px solid rgba(15,23,42,.08);
}
.cta-title{
  font-family: Cinzel, serif;
  font-size: 1.25rem;
}

.footer{
  background: linear-gradient(to right, #ff4000, #ffa500);
  color: #ffffff;
}
.footer-title{
  font-family: Cinzel, serif;
  font-weight: 600;
  color: #ffffff !important;
  margin-top: 10px;
}

.footer-logo{
  height: auto;
  width: 100px;
  max-width: 120px;
}
.footer-subtitle{
  color: #ffffff;
  font-size: .9rem;
}
.footer-heading{
  color: #ffffff;
  font-weight: 600;
  margin-bottom: .6rem;
}
.footer-links a{
  color: #ffffff;
  text-decoration: none;
}
.footer-links a:hover{
  color: #ffffff;
}
.footer-links a[href^="mailto:"]{
  text-decoration: none;
  cursor: pointer;
}
.footer-links a[href^="mailto:"]:hover{
  text-decoration: none;
}

.footer-social-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-social-icon:hover{
  background: rgba(255,255,255,0.3);
  color: #ffffff;
  transform: translateY(-2px);
}
.footer-divider{
  border-color: rgba(15,23,42,.12);
  opacity: 1;
}

.border-gold{
  border: 1px solid rgba(212,175,55,.35) !important;
}

.form-control-astro{
  background-color: #ffffff !important;
  border: 1px solid rgba(15,23,42,.16) !important;
  color: #0f172a !important;
}
.form-control-astro::placeholder{
  color: rgba(15,23,42,.45) !important;
}
.form-control-astro:focus{
  box-shadow: 0 0 0 .25rem rgba(212,175,55,.12) !important;
  border-color: rgba(212,175,55,.35) !important;
}
.form-label{
  color: rgba(15,23,42,.88);
}
.form-text{
  color: rgba(15,23,42,.55) !important;
}

/* Flatpickr dark overrides (matches the rest of the dark premium theme) */
.flatpickr-calendar{
  background: #151525 !important;
  border: 1px solid rgba(212,175,55,.18) !important;
  color: rgba(237,237,244,.95) !important;
}
/* Month / year header: native <select> list must stay dark text on light list in some browsers — force option colors */
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-monthDropdown-months{
  appearance: auto !important;
  -webkit-appearance: menulist !important;
  background-color: rgba(255,255,255,.1) !important;
  color: rgba(237,237,244,.98) !important;
  border: 1px solid rgba(212,175,55,.35) !important;
  border-radius: 6px !important;
  padding: 2px 6px !important;
  font-weight: 600 !important;
  margin-right: 4px !important;
}
.flatpickr-monthDropdown-months option,
.flatpickr-monthDropdown-months optgroup{
  background-color: #1a1f35 !important;
  color: #f8fafc !important;
}
.flatpickr-current-month input.cur-year{
  color: rgba(237,237,244,.95) !important;
  font-weight: 600 !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
.flatpickr-day{
  color: rgba(237,237,244,.92) !important;
}
/* Weekday row: Flatpickr default is dark gray on spans — invisible on dark bg */
.flatpickr-weekdays span.flatpickr-weekday{
  color: rgba(237,237,244,.82) !important;
}
.flatpickr-day:hover{
  background: rgba(212,175,55,.14) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange{
  background: rgba(212,175,55,.35) !important;
  border-color: rgba(212,175,55,.35) !important;
  color: #fff !important;
}
.flatpickr-day.today{
  border-color: rgba(212,175,55,.45) !important;
}
.flatpickr-time .flatpickr-am-pm{
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 3.25rem !important;
  margin: 0 !important;
  padding: 0.35rem 0.5rem !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,.1) !important;
  color: rgba(237,237,244,.98) !important;
  border: 1px solid rgba(212,175,55,.3) !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  line-height: 1.2 !important;
  height: auto !important;
  float: none !important;
}
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus{
  background: rgba(255,255,255,.16) !important;
  color: #ffffff !important;
}

/* Flatpickr time row: fix overlap (default #eee hover + float/24h widths vs dark theme) */
.flatpickr-calendar.hasTime .flatpickr-time{
  height: auto !important;
  min-height: 2.75rem !important;
  max-height: none !important;
  line-height: normal !important;
  overflow: visible !important;
}
.flatpickr-time{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 0.35rem;
  box-sizing: border-box !important;
  padding: 0.45rem 0.65rem !important;
  background: #151525 !important;
  border-top: 1px solid rgba(212,175,55,.18) !important;
}
.flatpickr-time .numInputWrapper{
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 4.5rem !important;
  max-width: none !important;
  height: 2.25rem !important;
  padding: 0 !important;
  float: none !important;
  position: relative !important;
  overflow: visible !important;
}
.flatpickr-time .numInputWrapper:hover{
  background: rgba(255,255,255,.06) !important;
}
.flatpickr-time .numInputWrapper span.arrowUp,
.flatpickr-time .numInputWrapper span.arrowDown{
  border-color: rgba(237,237,244,.35) !important;
}
.flatpickr-time input.flatpickr-hour,
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second{
  background: rgba(255,255,255,.08) !important;
  color: rgba(237,237,244,.95) !important;
  border: 1px solid rgba(212,175,55,.22) !important;
  border-radius: 8px !important;
  height: 100% !important;
  line-height: 1.4 !important;
  padding: 0.15rem 1.1rem 0.15rem 0.35rem !important;
  margin: 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  box-shadow: none !important;
}
/* Flatpickr ships: input:hover/input:focus { background:#eee } — breaks dark UI */
.flatpickr-time input.flatpickr-hour:hover,
.flatpickr-time input.flatpickr-minute:hover,
.flatpickr-time input.flatpickr-second:hover,
.flatpickr-time input.flatpickr-hour:focus,
.flatpickr-time input.flatpickr-minute:focus,
.flatpickr-time input.flatpickr-second:focus{
  outline: none !important;
  background: rgba(255,255,255,.12) !important;
  color: rgba(237,237,244,.98) !important;
  border-color: rgba(212,175,55,.5) !important;
  box-shadow: 0 0 0 2px rgba(212,175,55,.2) !important;
}
.flatpickr-time .flatpickr-time-separator{
  display: inline-flex !important;
  align-items: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  padding: 0 0.2rem !important;
  color: rgba(237,237,244,.92) !important;
  font-weight: 700 !important;
}
.flatpickr-calendar input[type="number"]{
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-calendar input[type="number"]::-webkit-outer-spin-button,
.flatpickr-calendar input[type="number"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

/* Live Sessions premium layout */
.live-hero{
  padding: 5.5rem 0 3.8rem;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.live-hero .container{ position: relative; }
.live-kicker{
  color: rgba(212,175,55,.95) !important;
  letter-spacing: .22em;
}
.live-title{
  font-family: Cinzel, serif;
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  font-weight: 700;
  margin: 0;
}
.live-subtitle{
  max-width: 56rem;
  margin: 0 auto;
}
.live-toggle-btn{
  border-radius: 999px;
  border: 1px solid rgba(190,50,0,.55);
  background: linear-gradient(90deg, #ff4000, #f59e0b);
  color: #ffffff;
  padding: .85rem 1.25rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
}
.live-toggle-btn--ghost{
  background: #ffffff !important;
  color: #ff4000 !important;
  border-color: rgba(190,50,0,.55) !important;
  box-shadow: none !important;
}
.live-toggle-btn[aria-pressed="true"]{
  filter: brightness(1.05);
}

.live-feature{
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
  overflow: hidden;
}
.live-feature-title{
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.22);
  font-weight: 700;
  color: #ffffff;
}
.live-feature-empty{
  padding: 1.2rem;
  color: rgba(255,255,255,.88);
}

.live-tab-pane--hidden{ display: none; }
.live-pane-heading{
  text-align: center;
  font-family: Cinzel, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff4000;
  margin: .2rem 0 1.2rem;
}
.live-pane-heading--past{
  color: #ff4000;
}
/* Live Session Cards with Different Colors */
.live-session-card.live-card-0{
  background: linear-gradient(180deg, #00bcd4, #0097a7) !important;
  border-color: rgba(0,188,212,0.5) !important;
  box-shadow: 0 12px 30px rgba(0,188,212,.20) !important;
}
.live-session-card.live-card-1{
  background: linear-gradient(180deg, #e91e63, #c2185b) !important;
  border-color: rgba(233,30,99,0.5) !important;
  box-shadow: 0 12px 30px rgba(233,30,99,.20) !important;
}
.live-session-card.live-card-2{
  background: linear-gradient(180deg, #ff9800, #f57c00) !important;
  border-color: rgba(255,152,0,0.5) !important;
  box-shadow: 0 12px 30px rgba(255,152,0,.20) !important;
}
.live-session-card.live-card-3{
  background: linear-gradient(180deg, #8b4789, #6b3a68) !important;
  border-color: rgba(139,71,137,0.5) !important;
  box-shadow: 0 12px 30px rgba(139,71,137,.20) !important;
}

.live-session-card{
  display: flex;
  gap: 0;
  flex-direction: column;
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
  margin-bottom: 0;
}
.live-session-card--past{
  background: var(--card-orange);
}
.live-session-thumb{
  width: 100%;
  height: 180px;
  position: relative;
  background: radial-gradient(500px 160px at 0% 0%, rgba(var(--purple-rgb),.25), transparent 55%);
}
.live-thumb-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .95;
  filter: saturate(1.05) contrast(1.05);
}
.live-thumb-fallback{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255,255,255,.16);
}
.live-play-badge{
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(212,175,55,.28);
  color: rgba(237,237,244,.95);
  font-size: 1.1rem;
}

.live-play-badge:hover{
  border-color: rgba(212,175,55,.45);
}
.live-session-body{
  padding: 1rem 1.1rem 1.1rem;
  flex: 1;
}
.live-level{
  display: inline-flex;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  color: #ffffff;
  font-weight: 600;
  font-size: .85rem;
}
.live-duration{
  color: rgba(255,255,255,.88);
  font-weight: 600;
}
.live-session-title{
  font-family: Cinzel, serif;
  font-size: 1.25rem;
  margin-bottom: .35rem;
}
.live-session-desc{
  color: rgba(255,255,255,.88);
  line-height: 1.35;
  font-size: .95rem;
  margin-bottom: .55rem;
}
.live-meta{
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .35rem;
}
.meta-chip{
  display: inline-flex;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  color: #ffffff;
  font-size: .86rem;
}

.live-session-card .btn{
  border-radius: 12px;
  padding-top: .55rem;
  padding-bottom: .55rem;
}
.live-session-card--past .live-session-title{
  color: #ffffff;
}

.live-session-title{
  color: #ffffff;
}

@media (max-width: 991.98px){
  .live-session-thumb{ height: 190px; }
  .live-feature{ margin-bottom: 1rem; }
}

@media (max-width: 991.98px){
  .hero{ padding-top: 4.5rem; }
}

/* Blog UI */
.blog-hero{
  padding: 5.5rem 0 2.2rem;
  position: relative;
  background: #ffffff;
}
.blog-kicker{
  font-size: .78rem;
  letter-spacing: .22em;
  color: rgba(212,175,55,.95) !important;
}
.blog-hero-title{
  font-family: Cinzel, serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: .75rem auto 0;
  max-width: 60rem;
  font-weight: 700;
}
.blog-hero-subtitle{
  max-width: 60rem;
  margin: .9rem auto 0;
  font-size: 1.05rem;
}

.blog-filter{
  margin-top: 1.5rem;
}
.blog-pill{
  border-radius: 999px;
  padding: .55rem 1.05rem;
  background: #ffffff;
  border: 1px solid rgba(190,50,0,.45);
  color: #ff4000;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.blog-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(190,50,0,.70);
}
.blog-pill--active{
  background: linear-gradient(90deg, #ff4000, #f59e0b);
  border-color: rgba(190,50,0,.70);
  color: #ffffff;
}

.blog-section{
  padding-top: 2.5rem;
}
.blog-card-col{
  display: flex;
}
.blog-card{
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  border: 1px solid rgba(190,50,0,.45);
  background: var(--card-orange);
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
}

/* Different background colors for blog cards */
.blog-card-col:nth-child(1) .blog-card {
  background: linear-gradient(135deg, #1C3EAA, #152E85);
  border-color: rgba(28,62,170,0.5);
  box-shadow: 0 12px 30px rgba(28,62,170,0.20);
}

.blog-card-col:nth-child(2) .blog-card {
  background: linear-gradient(135deg, #FFDC00, #E6C200);
  border-color: rgba(255,220,0,0.5);
  box-shadow: 0 12px 30px rgba(255,220,0,0.20);
}

.blog-card-col:nth-child(3) .blog-card {
  background: linear-gradient(135deg, #F05A1E, #D04515);
  border-color: rgba(240,90,30,0.5);
  box-shadow: 0 12px 30px rgba(240,90,30,0.20);
}

.blog-card-col:nth-child(4) .blog-card {
  background: linear-gradient(135deg, #8B4789, #6B3A68);
  border-color: rgba(139,71,137,0.5);
  box-shadow: 0 12px 30px rgba(139,71,137,0.20);
}

.blog-card-col:nth-child(5) .blog-card {
  background: linear-gradient(135deg, #E91E63, #AD1457);
  border-color: rgba(233,30,99,0.5);
  box-shadow: 0 12px 30px rgba(233,30,99,0.20);
}

.blog-card-col:nth-child(6) .blog-card {
  background: linear-gradient(135deg, #00BCD4, #0097A7);
  border-color: rgba(0,188,212,0.5);
  box-shadow: 0 12px 30px rgba(0,188,212,0.20);
}
.blog-card:hover{
  transform: translateY(-3px);
  border-color: rgba(190,50,0,.70);
  box-shadow: 0 16px 36px rgba(255,64,0,.24);
}
.blog-card-cover{
  position: relative;
  height: 225px;
  background: radial-gradient(600px 180px at 20% 0%, rgba(var(--purple-rgb),.45), transparent 60%);
}
@media (min-width: 992px){
  .blog-card-cover{
    height: 270px;
  }
}
.blog-card-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0,0,0,.18);
  filter: saturate(1.05) contrast(1.05);
  opacity: .95;
}
.blog-card-img--fallback{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(var(--purple-rgb),.5), transparent 55%),
    radial-gradient(600px 220px at 80% 0%, rgba(212,175,55,.12), transparent 55%),
    rgba(0,0,0,.2);
}
.blog-card-badge{
  position: absolute;
  left: 14px;
  top: 14px;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .82rem;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  color: #ffffff;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.blog-card-body{
  padding: 1.05rem 1.05rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.blog-card-title{
  font-family: Cinzel, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
.blog-card-excerpt{
  color: rgba(255,255,255,.88) !important;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta{
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}
.blog-meta-item{
  white-space: nowrap;
}
.blog-meta-dot{
  opacity: .6;
}
.blog-read-row{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .35rem;
  border-top: 1px solid rgba(255,255,255,.22);
}
.blog-read{
  color: #ffffff;
  font-weight: 700;
}
.blog-read-arrow{
  color: rgba(255,255,255,.92);
  font-weight: 700;
}

/* Testimonials cards with colored borders */
.testimonials-carousel .card-quote {
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.testimonials-carousel .testimonial-slide:nth-child(1) .card-quote {
  border-color: #ff6b35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.testimonials-carousel .testimonial-slide:nth-child(2) .card-quote {
  border-color: #9b59b6;
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.2);
}

.testimonials-carousel .testimonial-slide:nth-child(3) .card-quote {
  border-color: #e74c3c;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.testimonials-carousel .testimonial-slide:nth-child(4) .card-quote {
  border-color: #3498db;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.testimonials-carousel .testimonial-slide:nth-child(5) .card-quote {
  border-color: #2ecc71;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.testimonials-carousel .testimonial-slide:nth-child(6) .card-quote {
  border-color: #f39c12;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.testimonials-carousel .card-quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-hero{
  padding: 5.5rem 0 2.5rem;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(var(--purple-rgb),.45), transparent 60%),
    radial-gradient(820px 420px at 90% 0%, rgba(212,175,55,.14), transparent 55%);
}
.blog-post-top{
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
}
.blog-post-cover{
  height: 280px;
  position: relative;
  background: rgba(0,0,0,.2);
}
@media (min-width: 992px){
  .blog-post-cover{
    height: 360px;
  }
}
.blog-post-cover-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0,0,0,.18);
  filter: saturate(1.05) contrast(1.05);
  opacity: .95;
}
.blog-post-cover-img--fallback{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(var(--purple-rgb),.55), transparent 55%),
    radial-gradient(700px 260px at 80% 0%, rgba(212,175,55,.15), transparent 55%),
    rgba(0,0,0,.22);
}
.blog-post-badge{
  position: absolute;
  left: 18px;
  top: 18px;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.blog-post-title{
  font-family: Cinzel, serif;
  padding: 1rem 1.2rem 0;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
}
.blog-post-excerpt{
  padding: 0 1.2rem 1rem;
  color: rgba(255,255,255,.88);
}
.blog-post-meta{
  padding: 0 1.2rem 1.25rem;
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}
.blog-post-content{
  padding-top: 1.5rem;
}
.blog-post-body{
  border-radius: 20px;
  padding: 1rem 0.5rem;
}
.blog-post-prose{
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45);
  border-radius: 20px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
}
.blog-post-p{
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* About page (premium structure) */
.about-hero{
  padding: 5.5rem 0 2.6rem;
  background: #ffffff;
}
.about-kicker{
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(var(--gold-rgb),.92);
}
.about-title{
  font-family: Cinzel, serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  margin: .65rem 0 0;
}
.about-subtitle{
  max-width: 52rem;
  margin: .75rem auto 0;
}

.about-unified-card{
  border-radius: 22px;
  border: 1px solid rgba(190,50,0,.45);
  background: var(--card-orange);
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
  padding: 1rem;
}
@media (min-width: 992px){
  .about-unified-card{
    padding: 1.35rem;
  }
}

.about-profile-card{
  border-radius: 22px;
  border: 1px solid rgba(190,50,0,.45);
  background: var(--card-orange);
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
  overflow: hidden;
}
.about-profile-media{
  height: 340px;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(700px 280px at 30% 20%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(700px 280px at 70% 0%, rgba(255,174,102,.20), transparent 60%),
    var(--card-orange);
}
/* (about avatar now uses .profile-photo--xl) */
.about-profile-caption{
  width: 100%;
  text-align: center;
  padding: .75rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.30);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.about-section-title{
  font-family: Cinzel, serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: .9rem;
  color: #ffffff;
}
.about-paragraph{
  font-size: 1.02rem;
  line-height: 1.75;
  color: #2c3e50 !important;
}
.about-pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.about-unified-card .pill{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  color: #ffffff;
}

.about-journey-title{
  font-family: Cinzel, serif;
  font-size: clamp(1.9rem, 2.9vw, 2.5rem);
  font-weight: 800;
  margin: 0;
  color: rgba(var(--purple2-rgb),.95);
}

.about-journey-inline-title{
  font-family: Cinzel, serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  margin: 0 0 .35rem;
  color: #ffffff;
}

.about-journey-block{
  width: min(900px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(190,50,0,.45);
  background: var(--card-orange);
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-journey-item{
  padding: 1.1rem 1.2rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.about-journey-item + .about-journey-item{
  border-top: none;
}
.about-journey-item:nth-child(odd){
  border-right: 1px solid rgba(255,255,255,.22);
}
.about-journey-item:nth-last-child(-n+2){
  border-bottom: none;
}
.about-journey-inline .about-journey-block{
  width: 100%;
  margin: 0;
}
.about-unified-card .about-year,
.about-unified-card .about-timeline-heading{
  color: #ffffff;
}
.about-unified-card .about-timeline-text{
  color: rgba(255,255,255,.88);
}
.about-unified-card .text-muted{
  color: rgba(255,255,255,.84) !important;
}

/* Contact page info card override */
.contact-info-card{
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45);
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
}
.contact-info-card .hero-card-top{
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}
.contact-info-card .hero-card-title,
.contact-info-card .hero-card-subtitle,
.contact-info-card .text-muted,
.contact-info-card .small{
  color: rgba(255,255,255,.88) !important;
}
.contact-info-card .pill{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  color: #ffffff;
}

/* Booking page info card override */
.booking-info-card{
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45);
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
}
.booking-info-card .hero-card-top{
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}
.booking-info-card .hero-card-title,
.booking-info-card .hero-card-subtitle,
.booking-info-card .text-muted,
.booking-info-card .small,
.booking-info-card .fw-semibold{
  color: rgba(255,255,255,.90) !important;
}
.booking-info-card .pill{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  color: #ffffff;
}

@media (max-width: 991.98px){
  .about-journey-block{
    grid-template-columns: 1fr;
  }
  .about-journey-item{
    border-right: none !important;
  }
  .about-journey-item:not(:last-child){
    border-bottom: 1px solid rgba(255,255,255,.22);
  }
  .about-journey-item:last-child{
    border-bottom: none;
  }
}

.about-timeline{
  position: relative;
  padding: 1.5rem 0 .5rem;
}
.about-timeline-line{
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(var(--purple-rgb),.0), rgba(var(--purple-rgb),.65), rgba(var(--gold-rgb),.55), rgba(var(--purple2-rgb),.0));
}
.about-timeline-item{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1.25rem 0;
}
.about-timeline-item--left .about-timeline-card{
  grid-column: 1 / 2;
  justify-self: start;
}
.about-timeline-item--right .about-timeline-card{
  grid-column: 2 / 3;
  justify-self: end;
}
.about-timeline-dot{
  position: absolute;
  left: 50%;
  top: 38px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(var(--purple-rgb),1), rgba(var(--purple2-rgb),1));
  box-shadow: 0 0 0 8px rgba(var(--purple-rgb),.12);
  border: 1px solid rgba(var(--gold-rgb),.25);
}
.about-timeline-card{
  width: min(460px, 100%);
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.1rem;
  background: linear-gradient(180deg, rgba(21,21,37,.76), rgba(17,17,26,.76));
  border: 1px solid rgba(var(--gold-rgb),.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.about-year{
  color: rgba(var(--gold-rgb),.95);
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: .25rem;
}
.about-timeline-heading{
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .4rem;
  color: rgba(237,237,244,.94);
}
.about-timeline-text{
  line-height: 1.65;
}

/* Light theme readability overrides */
.card-quote .fw-semibold,
.home-live-title,
.home-live-cta,
.metric-value,
.metric-label{
  color: #ffffff !important;
}
.home-live-card{
  background: var(--card-orange);
  border-color: rgba(190,50,0,.45);
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
}
.home-live-play{
  background: rgba(255,255,255,.95);
  color: var(--card-orange);
}

.about-ex-card{
  border-radius: 18px;
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45);
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
  padding: 1.25rem 1.25rem 1.2rem;
  text-align: center;
}
.about-ex-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.30);
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.about-ex-title{
  font-family: Cinzel, serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: .35rem;
  color: #ffffff;
}
.about-ex-title-hi{
  font-weight: 700;
  margin-top: -.15rem;
  margin-bottom: .55rem;
  color: rgba(255,255,255,.92);
}
.about-ex-text{
  color: rgba(255,255,255,.88);
  line-height: 1.65;
}

.about-stat{
  border-radius: 16px;
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45);
  padding: 1.05rem 1rem;
  text-align: center;
}
.about-stat-value{
  font-family: Cinzel, serif;
  font-weight: 900;
  font-size: 1.65rem;
  color: #ffffff;
}
.about-stat-label{
  color: rgba(255,255,255,.88) !important;
  margin-top: .35rem;
}

.card-astro .text-muted,
.card-session .text-muted,
.card-quote .text-muted,
.about-journey-block .text-muted,
.about-ex-card .text-muted,
.home-live-card .text-muted,
.mb-3 {
  color: #333333 !important;
}

/* Admin list tables: change Bootstrap dark table to orange theme */
.about-cta{
  border-radius: 22px;
  background: var(--card-orange);
  border: 1px solid rgba(190,50,0,.45);
  box-shadow: 0 12px 30px rgba(255,64,0,.20);
  overflow: hidden;
}
.about-cta-inner{
  padding: 2.2rem 1.6rem;
  text-align: center;
}
.about-cta-title{
  font-family: Cinzel, serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: .55rem;
  color: #ffffff;
}
.about-cta-text{
  max-width: 52rem;
  margin: 0 auto;
  color: rgba(255,255,255,.88) !important;
}

/* Global heading highlight (white/orange theme) */
.text-highlight-orange{
  color: #1f2937;
  text-shadow:
    0 1px 0 rgba(255,255,255,.35),
    0 8px 24px rgba(255,64,0,.16);
}

.section-title,
.about-title,
.live-title,
.blog-hero-title,
.about-journey-title,
.live-pane-heading,
.live-pane-heading--past{
  color: #1f2937;
  text-shadow:
    0 1px 0 rgba(255,255,255,.35),
    0 8px 24px rgba(255,64,0,.16);
}

.about-cta-title,
.hero-title{
  text-shadow:
    0 2px 10px rgba(0,0,0,.35),
    0 8px 24px rgba(255,64,0,.25);
}

@media (max-width: 991.98px){
  .about-timeline-line{ left: 18px; transform: none; }
  .about-timeline-item{ grid-template-columns: 1fr; padding-left: 44px; }
  .about-timeline-dot{ left: 18px; transform: none; }
  .about-timeline-item--left .about-timeline-card,
  .about-timeline-item--right .about-timeline-card{
    grid-column: 1 / 2;
    justify-self: stretch;
  }
  /* Stack photo + tagline so caption does not overlap the portrait on narrow screens */
  .about-profile-media{
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.25rem 1rem 1.15rem;
  }
  .about-profile-media .profile-photo--xl{
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    flex-shrink: 0;
  }
  .about-profile-caption{
    flex-shrink: 0;
    margin-top: 0;
  }
}


