/* ================================================
   ASTRO VEDSAR — Premium CSS
   Celestial Vedic Aesthetic Design System
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
    /* Backgrounds */
    --bg-1: #050816;
    --bg-2: #0B1120;
    --bg-3: #111827;
    --bg-4: #0F172A;

    /* Gold */
    --gold-1: #D4AF37;
    --gold-2: #F5C542;
    --gold-3: #E6C068;
    --gold-4: #FFD700;
    --gold-gradient: linear-gradient(90deg, #D4AF37, #F5C542, #FFD700);

    /* Text */
    --text-1: #E5E7EB;
    --text-2: #CBD5E1;
    --text-3: #94A3B8;

    /* Accents */
    --accent-orange: #F97316;
    --accent-purple: #7C3AED;
    --accent-blue: #2563EB;

    /* Fonts */
    --font-cinzel: 'Cinzel', serif;
    --font-playfair: 'Playfair Display', serif;
    --font-poppins: 'Poppins', sans-serif;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-1);
    color: var(--text-2);
    font-family: var(--font-poppins);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair);
    color: var(--text-1);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--gold-1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

/* ---- SELECTION ---- */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold-2);
}

/* ================================================
   STAR CANVAS BACKGROUND
   ================================================ */
#star-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ================================================
   TYPOGRAPHY UTILITIES
   ================================================ */
.font-cinzel { font-family: var(--font-cinzel) !important; }
.font-playfair { font-family: var(--font-playfair) !important; }
.font-poppins { font-family: var(--font-poppins) !important; }

.text-gold { color: var(--gold-2) !important; }
.text-gold-dim { color: var(--gold-1) !important; }

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.6), 0 0 40px rgba(212, 175, 55, 0.3);
}

/* ================================================
   BUTTON STYLES
   ================================================ */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-1) !important;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 8px 25px rgba(0,0,0,0.3);
    transform: translateY(-3px);
    color: var(--bg-1) !important;
}

.btn-ghost {
    background: transparent;
    color: var(--gold-4) !important;
    border: 1.5px solid var(--gold-1);
    border-radius: 50px;
    padding: 13px 36px;
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    border-color: var(--gold-2);
    color: var(--gold-2) !important;
}

/* ================================================
   GLASSMORPHISM CARDS
   ================================================ */
.glass-card {
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), 0 20px 40px rgba(0,0,0,0.4);
    transform: translateY(-6px);
}

.glass-card-static {
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
}

/* ================================================
   GOLD DIVIDER
   ================================================ */
.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
    margin: 0 auto 1rem;
}

.gold-divider-left {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
    margin-bottom: 1rem;
}

/* ================================================
   SECTION PADDING
   ================================================ */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* ================================================
   SECTION TITLES
   ================================================ */
.section-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-2);
    font-family: var(--font-poppins);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-playfair);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-3);
    font-size: 1.05rem;
    max-width: 580px;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar-vedsar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 18px 0;
    background: transparent;
    transition: all 0.5s ease;
}

.navbar-vedsar.scrolled {
    background: rgba(5, 8, 22, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.navbar-brand-text {
    font-family: var(--font-cinzel);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: none;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.navbar-nav .nav-link {
    color: var(--text-2) !important;
    font-family: var(--font-poppins);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 15px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-2) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 8px 12px;
}

.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='rgba%28212%2C175%2C55%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(212,175,55,0.3); }

.nav-btn-consult {
    background: var(--gold-gradient);
    color: var(--bg-1) !important;
    border-radius: 50px;
    padding: 9px 24px !important;
    font-weight: 700;
    font-size: 0.85rem !important;
    transition: var(--transition);
}

.nav-btn-consult:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: var(--bg-1) !important;
}

.nav-btn-consult::after { display: none !important; }

/* ================================================
   HERO SECTION
   ================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
                linear-gradient(180deg, var(--bg-1) 0%, var(--bg-4) 50%, var(--bg-1) 100%);
}

.hero-zodiac-wrapper {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 620px;
    height: 620px;
    opacity: 0.08;
    pointer-events: none;
}

.hero-zodiac {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: slowSpin 120s linear infinite;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    z-index: 5;
    animation: floatObject 6s ease-in-out infinite;
}

.hero-object-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.4));
    position: relative;
    z-index: 2;
}

.hero-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes floatObject {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-glow-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}

.hero-glow-orb-2 {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    bottom: 0; left: 10%;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(8px);
    color: var(--gold-2);
    font-family: var(--font-poppins);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-2);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-cinzel);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.5));
    line-height: 1.05;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-tagline {
    font-family: var(--font-playfair);
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--text-1);
    font-style: italic;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-3);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-cinzel);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-2);
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(212, 175, 55, 0.2);
    align-self: stretch;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating planets decorative */
.planet-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.planet-orb-1 {
    width: 80px; height: 80px;
    top: 20%; left: 5%;
    background: radial-gradient(circle at 35% 35%, #9b59b6, #2c0a5e);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    animation: float 8s ease-in-out infinite;
    opacity: 0.7;
}

.planet-orb-2 {
    width: 50px; height: 50px;
    bottom: 25%; right: 8%;
    background: radial-gradient(circle at 35% 35%, #f97316, #7c2d0a);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
    animation: float 12s ease-in-out infinite reverse;
    opacity: 0.6;
}

.planet-orb-3 {
    width: 30px; height: 30px;
    top: 60%; left: 8%;
    background: radial-gradient(circle at 35% 35%, #60a5fa, #1e3a8a);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
    animation: float 6s ease-in-out infinite;
    opacity: 0.5;
}

/* ================================================
   ABOUT PREVIEW SECTION
   ================================================ */
#about-preview {
    background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 50%, var(--bg-4) 100%);
    position: relative;
    overflow: hidden;
}

#about-preview::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 24px;
    background: var(--gold-gradient);
    z-index: 0;
    opacity: 0.5;
}

.about-img-wrapper .inner {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    background: var(--bg-3);
}

.about-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.04);
}

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 10;
    width: 110px;
    height: 110px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.about-exp-badge span:first-child {
    font-family: var(--font-cinzel);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--bg-1);
    line-height: 1;
}

.about-exp-badge span:last-child {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(5, 8, 22, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.about-check-list {
    list-style: none;
    padding: 0;
}

.about-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-2);
}

.about-check-list li i {
    color: var(--gold-2);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-stat-card {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.5);
    transition: var(--transition);
}

.about-stat-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.about-stat-card .num {
    font-family: var(--font-cinzel);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-card .label {
    font-size: 0.75rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
#services {
    background: var(--bg-1);
    position: relative;
}

.service-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.12), 0 25px 50px rgba(0,0,0,0.4);
    transform: translateY(-8px);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

.service-icon-wrapper i {
    font-size: 2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h4 {
    font-family: var(--font-playfair);
    font-size: 1.2rem;
    color: var(--text-1);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    color: var(--gold-2);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-card-link:hover { gap: 12px; color: var(--gold-4); }

/* ================================================
   WHY CHOOSE US
   ================================================ */
#why-us {
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-4) 50%, var(--bg-1) 100%);
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 18px;
    background: rgba(17, 24, 39, 0.4);
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.1);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-icon-bg {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-card:hover .why-icon-bg {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.why-icon-bg i {
    font-size: 1.4rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-content h5 {
    font-family: var(--font-playfair);
    font-size: 1.05rem;
    color: var(--text-1);
    margin-bottom: 6px;
}

.why-content p {
    font-size: 0.88rem;
    color: var(--text-3);
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
#testimonials {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.2;
}

#testimonials::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.2;
}

.testimonial-card {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; left: 30px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i { color: var(--gold-2); font-size: 0.9rem; }

.testimonial-text {
    font-family: var(--font-playfair);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cinzel);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-1);
    flex-shrink: 0;
}

.testimonial-author-name {
    font-family: var(--font-playfair);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 2px;
}

.testimonial-author-role {
    font-size: 0.8rem;
    color: var(--text-3);
}

/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: var(--transition);
    position: absolute;
}

.carousel-control-prev { left: -70px; }
.carousel-control-next { right: -70px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.4);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--gold-2);
    width: 24px;
    border-radius: 4px;
}

/* ================================================
   CALL TO ACTION SECTION
   ================================================ */
#cta {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.cta-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(17,24,39,0.95), rgba(5,8,22,0.98));
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../images/zodiac_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.cta-bg-radial {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-badge {
    background: rgba(212,175,55,0.15) !important;
    border: 1px solid rgba(212,175,55,0.3) !important;
}

.cta-heading {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #F8FAFC;
    font-weight: 800;
}

.cta-text {
    font-size: 1.15rem;
    color: #CBD5E1;
    line-height: 1.8;
}

.cta-btn {
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.cta-btn-whatsapp {
    border: 1px solid #22C55E !important;
    color: #22C55E !important;
    background: rgba(34,197,94,0.05) !important;
}

.cta-visual-area {
    background: rgba(212,175,55,0.03);
    border-left: 1px solid rgba(212,175,55,0.1);
}

.cta-wheel-wrap {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding: 0;
    animation: slowSpin 40s linear infinite;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-wheel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.cta-hero-object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: floatCenterObject 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatCenterObject {
    0% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
    100% { transform: translate(-50%, -50%) translateY(0px); }
}

.cta-title {
    font-family: var(--font-playfair);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-1);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-sub {
    color: var(--text-3);
    font-size: 1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-mandala {
    position: absolute;
    opacity: 0.04;
    pointer-events: none;
}

.cta-mandala-left {
    left: -100px; top: 50%;
    transform: translateY(-50%);
    width: 350px; height: 350px;
    animation: slowSpin 60s linear infinite;
}

.cta-mandala-right {
    right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 350px; height: 350px;
    animation: slowSpin 60s linear infinite reverse;
}

/* ================================================
   CONTACT PREVIEW SECTION
   ================================================ */
#contact-preview {
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-4) 100%);
    position: relative;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.5);
    transition: var(--transition);
    margin-bottom: 16px;
}

.contact-info-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.contact-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrap i {
    font-size: 1.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-label {
    font-size: 0.75rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-val {
    font-size: 0.95rem;
    color: var(--text-1);
    font-weight: 500;
}

.contact-info-val a {
    color: var(--text-1);
}

.contact-info-val a:hover { color: var(--gold-2); }

.form-label-custom {
    font-size: 0.78rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input-custom {
    width: 100%;
    background: rgba(11, 17, 32, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-1);
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-input-custom:focus {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08), 0 0 20px rgba(212, 175, 55, 0.08);
    background: rgba(5, 8, 22, 0.9);
}

.form-input-custom::placeholder { color: var(--text-3); opacity: 0.6; }

.map-placeholder {
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    height: 200px;
    background: rgba(17, 24, 39, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-2) !important;
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    color: var(--gold-4) !important;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
    background: var(--bg-2);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold-gradient);
}

.footer-brand {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-cinzel);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-2);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-3);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--gold-1);
}

.footer-links a:hover { color: var(--gold-2); padding-left: 6px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--gold-2);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.88rem;
    color: var(--text-3);
    line-height: 1.5;
}

.footer-contact-item a {
    color: var(--text-3);
}

.footer-contact-item a:hover { color: var(--gold-2); }

.footer-divider {
    border-color: rgba(212, 175, 55, 0.12);
}

.footer-bottom {
    font-size: 0.85rem;
    color: var(--text-3);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
    .hero-zodiac-wrapper { display: none; }
    .planet-orb-1, .planet-orb-2, .planet-orb-3 { display: none; }
    .carousel-control-prev { left: 0; }
    .carousel-control-next { right: 0; }
    .cta-wrapper { padding: 40px 30px; }
    .about-exp-badge { right: 10px; }
    .section-padding { padding: 70px 0; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 15px; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 320px; }
    .hero-btns .btn-gold,
    .hero-btns .btn-ghost { width: 100%; justify-content: center; }
    .about-img-wrapper img { height: 350px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .section-padding { padding: 50px 0; }
}

/* ================================================
   TIMELINE STYLES
   ================================================ */
.timeline-container {
    position: relative;
    padding-left: 30px;
}
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 2px;
    background: var(--gold-gradient);
    opacity: 0.3;
}
.timeline-item {
    position: relative;
    margin-bottom: 30px;
}
.timeline-dot {
    position: absolute;
    left: -37px;
    top: 15px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}
.achievement-card {
    transition: var(--transition);
}
.achievement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}/* ================================================
   FLOATING WHATSAPP ICON
   ================================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: floatWhatsApp 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
    color: #FFF;
}

#scroll-top-btn {
    bottom: 100px !important;
}

@keyframes floatWhatsApp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
/* ================================================
   PREMIUM LUXURY UI OVERRIDES (APPLE-LEVEL & SAAS)
   ================================================ */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #030712;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
    letter-spacing: -0.02em;
    color: #F8FAFC;
}

p, .hero-description, .service-card p, .testimonial-text, .why-content p {
    line-height: 1.8;
    color: #94A3B8;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Glassmorphism & Hover Enhancements for Cards */
.service-card, .why-card, .testimonial-card, .contact-info-card, .glass-card-static, .about-stat-card {
    background: rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover, .why-card:hover, .testimonial-card:hover, .contact-info-card:hover, .about-stat-card:hover {
    background: rgba(17, 24, 39, 0.65);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.05);
    transform: translateY(-8px) scale(1.02);
}

/* Navbar Premium Blur */
.navbar-vedsar.scrolled {
    background: rgba(3, 7, 18, 0.75) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}

/* Glowing Icon Elements */
.service-icon-wrapper, .why-icon-bg, .contact-icon-wrap {
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

/* Inputs Premium Focus */
.form-input-custom {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-input-custom:focus {
    background: rgba(11, 17, 32, 0.85);
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 0 20px rgba(212, 175, 55, 0.25);
}

/* Buttons Hover Glow */
.btn-gold {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-gold:hover {
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.7), 0 10px 20px rgba(0,0,0,0.4);
    transform: translateY(-4px) scale(1.03);
}

.btn-ghost {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-ghost:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-4px) scale(1.03);
    background: rgba(212, 175, 55, 0.05);
}

/* CTA Wrapper Upgrade */
.cta-wrapper {
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 60px rgba(212, 175, 55, 0.1);
}

.social-btn-small { width: 45px; height: 45px; border-radius: 50%; background: transparent; border: 1px solid rgba(212,175,55,0.3); display: inline-flex; align-items: center; justify-content: center; color: var(--gold-2); font-size: 1.1rem; transition: var(--transition); }
.social-btn-small:hover { background: var(--gold-gradient); color: var(--bg-1); border-color: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212,175,55,0.3); }

/* ==========================================================================
   MOBILE OFFCANVAS & RESPONSIVENESS PREMIUM STYLING
   ========================================================================== */

/* Fix z-index collisions with fixed top navbar (z-index 9999) */
.offcanvas {
    z-index: 10050 !important;
    background: rgba(11, 17, 32, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-left: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: -10px 0 45px rgba(0, 0, 0, 0.8) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.offcanvas-backdrop {
    z-index: 10040 !important;
    background-color: rgba(3, 7, 18, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

/* Premium Header and Logo */
.offcanvas-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding: 20px 24px !important;
}

/* Custom Rotating Gold Close Button */
.offcanvas .btn-close {
    background-color: rgba(212, 175, 55, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 50% !important;
    padding: 12px !important;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    background-size: 10px !important;
}

.offcanvas .btn-close:hover {
    background-color: rgba(212, 175, 55, 0.2) !important;
    border-color: var(--gold-2) !important;
    transform: rotate(90deg);
    opacity: 1;
}

/* Premium Mobile Menu Links */
.offcanvas-body .nav-link {
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-2) !important;
    padding: 16px 24px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
    color: var(--gold-2) !important;
    padding-left: 32px !important;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
}

/* Elegant sliding indicator on hover/active mobile link */
.offcanvas-body .nav-link::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--gold-2);
}

.offcanvas-body .nav-link:hover::after,
.offcanvas-body .nav-link.active::after {
    opacity: 1;
    transform: translateX(0);
}

/* Adjust layout on small mobile screens */
@media (max-width: 576px) {
    .offcanvas {
        width: 100% !important;
        max-width: 100% !important;
        border-left: none !important;
    }
}

/* ---- NAVBAR DROPDOWN STYLES ---- */
.navbar-vedsar .dropdown-menu {
    background: rgba(11, 17, 32, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 12px !important;
    margin-top: 8px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;
    padding: 8px 0 !important;
    min-width: 200px !important;
    /* Smooth fade-in animation — does NOT affect layout */
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    display: block !important;
    position: absolute !important;
}

.navbar-vedsar .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Hover open on desktop */
@media (min-width: 992px) {
    .navbar-vedsar .dropdown:hover > .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

.navbar-vedsar .dropdown-item {
    color: var(--text-2) !important;
    font-family: var(--font-poppins);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 20px !important;
    transition: var(--transition);
    background: transparent !important;
}

.navbar-vedsar .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    color: var(--gold-2) !important;
    padding-left: 26px !important;
}

.navbar-vedsar .dropdown-divider {
    border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
    margin: 5px 0 !important;
}

/* Remove the Bootstrap default caret arrow on toggle */
.navbar-vedsar .dropdown-toggle::after {
    vertical-align: middle;
    border-top-color: var(--gold-1);
    margin-left: 5px;
}



