/* =========================================
           1. MODERN THEME VARIABLES (Green & Gold)
        ========================================= */
        :root {
            --primary-dark: #064e3b;   /* Deep Jungle Green */
            --primary: #10b981;        /* Emerald */
            --primary-soft: #ecfdf5;   /* Light Mint */
            --gold: #f7be06;           /* Vedic Gold */
            --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fcd34d 100%);
            --text-dark: #1e293b;
            --text-light: #64748b;
            --white: #ffffff;
            --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Manrope', sans-serif;
            background-color: #f8fafc;
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary-dark); }
        .section-title { font-family: 'Cinzel', serif; font-weight: 700; }
        a { text-decoration: none; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* =========================================
           2. HEADER & NAV
        ========================================= */
        .contact-top-bar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--primary-dark);
    color: white;
    padding: 10px 0;
    border-bottom: 3px solid var(--gold);
}
        
        .contact-top-bar-content {
            max-width: 1200px; margin: 0 auto; padding: 0 20px;
            display: flex; justify-content: space-between; align-items: center;
        }
        .contact-info a { color: white; margin-right: 20px; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
        .contact-info i { color: var(--gold); }
        
        .topbar-menu ul { display: flex; gap: 25px; }
        .topbar-menu a { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.95rem; }
        .topbar-menu a:hover { color: var(--gold); }

        .social-links a { color: white; margin-left: 15px; }
        .social-links a:hover { color: var(--gold); transform: translateY(-2px); display: inline-block; }

        /* Mobile Header */
        .mobile-header { display: none; background: white; padding: 15px 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; }
        .logo-img img { height: 50px; }
        .menu-toggle { font-size: 1.5rem; background: none; border: none; color: var(--primary-dark); cursor: pointer; }
        
        .mobile-menu { display: none; background: var(--primary-dark); position: fixed; top: 80px; left: 0; width: 100%; z-index: 999; }
        .mobile-menu.active { display: block; }
        .mobile-menu a { display: block; padding: 15px 20px; color: white; border-bottom: 1px solid rgba(255,255,255,0.1); }

        /* =========================================
           3. HERO SECTION (UPDATED EXACT CONTENT)
        ========================================= */
        .hero-wrapper {
    position: relative;
    color: white;
    padding: 80px 20px 100px;
    text-align: center;
    overflow: hidden;

    /* Background Image */
    background-image: url("../assets/images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgb(2 44 34 / 78%) 0%, rgb(0 0 0 / 77%) 100%);
    z-index: 1;
}

/* Content above overlay */
.hero-wrapper > * {
    position: relative;
    z-index: 2;
}

        /* Particles */
        .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.4; }
        .bg-circle { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%); }
        .circle-1 { width: 600px; height: 600px; top: -100px; left: -100px; animation: pulse 10s infinite; }
        .circle-2 { width: 500px; height: 500px; bottom: -50px; right: -50px; animation: pulse 12s infinite reverse; }

        .hero-content { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }

        /* Profile Layout */
        .profile-images-wrapper {
            display: flex; justify-content: center; align-items: center; gap: 40px; margin-bottom: 30px;
        }

        .profile-image-container {
            width: 250px;
            height: 250px;
            border-radius: 50%; padding: 5px;
            background: var(--gold-gradient);
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
            position: relative; z-index: 5;
        }
        .profile-image { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid var(--primary-dark); }

        /* CLOCKWISE ROTATION */
        .side-image {
            width: 250px;
            height: 250px;
            display: flex; align-items: center; justify-content: center;
        }
        .side-image img {
            width: 100%; height: 100%; object-fit: contain;
            filter: drop-shadow(0 0 15px rgba(255,255,255,0.3));
            animation: rotateClock 25s linear infinite; /* Clockwise */
        }

        @keyframes rotateClock {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes pulse { 0% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } 100% { opacity: 0.5; transform: scale(1); } }

        /* Text Styles */
        .profile-name { font-family: 'Cinzel', serif; font-size: 3rem; margin-bottom: 5px; color: var(--gold); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .profile-designation { font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; color: #a7f3d0; display: block; margin-bottom: 10px; }
        .profile-credentials { color: #fff; font-size: 0.9rem; margin-bottom: 20px; }
        .profile-credentials i { color: var(--gold); }

        .hero-shlok { 
            font-family: 'Noto Serif Devanagari', serif; color: var(--gold); font-size: 1.5rem; 
            margin: 20px 0; font-style: italic; line-height: 1.6;
        }
        
        .hero-title .highlight-text {
            font-size: 3rem; background: linear-gradient(to right, #ffffff, #34d399);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.1rem; color: #cbd5e1; margin-bottom: 25px;
            max-width: 800px; margin-left: auto; margin-right: auto;
        }
        .hero-subtitle strong { color: var(--gold); }

        /* Description Boxes */
        .hero-question {
            background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
            padding: 25px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1);
            margin: 20px auto;
            /*max-width: 800px; */
            font-size: 1.1rem; 
            line-height: 1.8;
            color: #f1f5f9;
        }
        .hero-question strong { color: var(--gold); font-weight: 700; }
        .underline { border-bottom: 2px solid var(--gold); color: white; display: inline-block; line-height: 1.2; }

        /* Buttons */
        .cta-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
        .cta-button {
            padding: 15px 20px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
            display: flex; align-items: center; gap: 10px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px;
        }
        .primary-cta {
            background: var(--gold-gradient); color: var(--primary-dark); border: none;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }
        .primary-cta:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
        
        .secondary-cta {
            background: rgba(255,255,255,0.1); color: white; border: 1px solid white;
        }
        .secondary-cta:hover { background: white; color: var(--primary-dark); }

        /* Feature Grid Small */
        .features-grid { display: flex; justify-content: center; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
        .feature-card {
            background: rgba(6, 78, 59, 0.6); backdrop-filter: blur(5px); padding: 15px 25px;
            border-radius: 12px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,0.1);
        }
        .feature-icon { font-size: 1.5rem; color: var(--gold); }
        .feature-content h3 { font-size: 0.95rem; color: white; font-family: 'Manrope', sans-serif; margin: 0; }
        .feature-content p { font-size: 0.8rem; color: #d1fae5; margin: 0; }

        /* =========================================
           4. SERVICES SECTION
        ========================================= */
        .services-section { 
        padding: 40px 20px; }
        .section-header { text-align: center; margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; }
        .section-badge { 
            background: var(--primary-soft); color: var(--primary-dark); padding: 5px 15px; 
            border-radius: 20px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; border: 1px solid;
        }
        .section-title {
    font-size: 2.0rem;
    margin: 15px 0;
    color: var(--primary-dark);
}

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.1rem;
        margin: 12px 0;
    }
}

/* Mobile (≤ 575px) */
@media (max-width: 575px) {
    .section-title {
        font-size: 1.7rem;
        margin: 10px 0;
        line-height: 1.3;
    }
}
        
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }

        .service-card {
            background: white; border-radius: 20px; padding: 35px;
            box-shadow: var(--shadow-card); border: 1px solid #f0f0f0;
            transition: var(--transition); position: relative; overflow: hidden;
        }
        .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(6, 78, 59, 0.15); border-color: var(--gold); }
        
        .service-icon {
            width: 60px; height: 60px; background: var(--primary-soft); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary-dark);
            margin-bottom: 20px; transition: var(--transition);
        }
        .service-card:hover .service-icon { background: var(--primary-dark); color: var(--gold); transform: scale(1.1); }

        .service-title { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
        .service-subtitle { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; min-height: 40px; }
        
        .service-features li { font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
        .service-features i { color: var(--primary); font-size: 0.8rem; }

        .service-button {
            display: inline-flex; align-items: center; gap: 8px; margin-top: 25px;
            color: var(--primary-dark); font-weight: 700; font-size: 0.9rem;
            padding: 10px 20px; background: var(--primary-soft); border-radius: 8px; border: 1px solid;
        }
        .service-button:hover { background: var(--primary-dark); color: white; }
        
        .service-card.popular { border: 2px solid var(--gold); }
        .service-badge { position: absolute; top: 0; right: 0; background: var(--gold); color: #000; padding: 5px 15px; font-size: 0.75rem; font-weight: 700; border-bottom-left-radius: 10px; }

        /* =========================================
           5. PROCESS SECTION
        ========================================= */
        .process-section {
    position: relative;
    color: white;
    padding: 40px 20px;
    overflow: hidden;

    /* Background Image */
    background-image: url("../assets/images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay using existing primary color */
.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 44, 34, 0.85); /* var(--primary-dark) overlay */
    z-index: 1;
}

/* Content above overlay */
.process-section > * {
    position: relative;
    z-index: 2;
}

        .process-section .section-title { color: white; }
        .process-section .section-subtitle { color: #a7f3d0; }

        .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; max-width: 1200px; margin: 40px auto; }

        .process-card {
            background: rgba(255,255,255,0.05); padding: 30px 20px; border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1); text-align: center; transition: var(--transition);
        }
        .process-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); border-color: var(--gold); }
        .process-icon { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
        .process-content h3 { color: white; font-family: 'Manrope', sans-serif; font-size: 1.1rem; margin-bottom: 10px; }
        .process-content p { font-size: 0.85rem; color: #cbd5e1; }
        .feature { display: block; font-size: 0.8rem; color: var(--primary); margin-top: 5px; }

        /* Benefits Grid (Why This Works) */
        .process-benefits { max-width: 1200px; margin: 60px auto 0; }
        .process-benefits h3 { text-align: center; color: var(--gold); margin-bottom: 30px; font-size: 1.8rem; }
        .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
        .benefit-item { display: flex; align-items: center; gap: 15px; 
         background: rgba(0,0,0,0.2); 
         padding: 15px; 
         border-radius: 10px;
         border: 1px solid #ffffff6b;
            
        }
         
        .benefit-icon { color: var(--primary); font-size: 1.2rem; }
        .benefit-content h4 { color: white; font-size: 1rem; font-family: 'Manrope', sans-serif; margin: 0; }
        .benefit-content p { color: #9ca3af; font-size: 0.8rem; margin: 0; }

        /* =========================================
           6. TESTIMONIALS
        ========================================= */
        .testimonials-section { 
        padding: 40px 20px;
        background: #f8fafc; }
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
        
        .testimonial-card {
            background: white; padding: 30px; border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative;
        }
        .testimonial-badge { font-size: 0.7rem; background: #fffbeb; color: #d97706; padding: 3px 8px; border-radius: 4px; display: inline-block; margin-bottom: 10px; border: 1px solid #fcd34d; }
        .testimonial-rating { color: #fb8924; margin-bottom: 15px;  font-size: 1.3rem; }
        .testimonial-text { font-style: italic; color: #4b5563; font-size: 0.95rem; margin-bottom: 20px; }
        .author-info h4 { color: var(--primary-dark); font-weight: 700; margin-bottom: 2px; }
        .author-title { font-size: 0.8rem; color: #64748b; }
        .author-badge { font-size: 0.75rem; color: var(--primary); margin-top: 5px; }

        /* =========================================
           7. CONTACT & FOOTER
        ========================================= */
        .contact-section { padding: 40px 20px;
        background: white; }
        .contact-container { max-width: 1200px; margin: 0 auto; }
        
        .contact-options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 60px; }
        .contact-option-card { padding: 30px; border-radius: 15px; text-align: center; border: 1px solid #e5e7eb; transition: var(--transition); border: 1px solid;}
        .contact-option-card:hover { border-color: var(--primary); box-shadow: var(--shadow-card); transform: translateY(-5px); }
        .option-icon { font-size: 2rem; color: var(--primary-dark); margin-bottom: 15px; }
        .option-button { display: inline-block; width: 100%; padding: 10px; border-radius: 6px; font-weight: 600; font-size: 0.9rem; margin-top: 10px; }
        .whatsapp-btn { background: #dcfce7; color: #166534; border: 1px solid; } .call-btn { background: #e0f2fe; color: #075985;border: 1px solid; } .email-btn { background: #f3f4f6; color: #374151; border: 1px solid;}

        /* Form Layout */
        .contact-main-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
        
        .contact-info-section { background: var(--primary-dark); color: white; padding: 40px; border-radius: 20px; }
        .contact-info-section h3 { color: white; margin-bottom: 25px; }
        .contact-detail { display: flex; gap: 15px; margin-bottom: 25px; }
        .detail-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
        .detail-content h4 { color: #a7f3d0; font-size: 0.9rem; font-family: 'Manrope', sans-serif; margin-bottom: 2px; }
        .detail-content a, .detail-content span { color: white; font-size: 1rem; }

        .contact-form-section { background: #f8fafc; padding: 40px; border-radius: 20px; border: 1px solid #e2e8f0; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
        
        input, select, textarea {
            width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px;
            font-family: inherit; background: white; transition: var(--transition);
        }
        input:focus, select:focus, textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); }
        
        .submit-button {
            width: 100%; padding: 15px; background: var(--primary-dark); color: white; border: none;
            border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
        }
        .submit-button:hover { background: #022c22; }
/* =========================================
           8. FOOTER
        ========================================= */
        .footer { background: #0f172a; color: #94a3b8; padding: 60px 0 20px; }
        .footer-top { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
        
        .footer-logo img { height: 60px; margin-bottom: 10px; }
        .brand-name { font-size: 1.5rem; color: var(--gold); font-family: 'Cinzel', serif; }
        .brand-tagline { font-size: 0.8rem; color: #64748b; }
        
        .footer-heading { color: white; margin-bottom: 20px; font-size: 1.1rem; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #94a3b8; font-size: 0.9rem; }
        .footer-links a:hover { color: var(--gold); padding-left: 5px; }
        
        .footer-contact-info li { display: flex; gap: 10px; margin-bottom: 15px; font-size: 0.9rem; }
        .footer-contact-info i { color: var(--primary); }
        
        .footer-bottom { border-top: 1px solid #1e293b; margin-top: 50px; padding-top: 20px; text-align: center; font-size: 0.85rem; }
        .footer-bottom-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding: 0 20px; }
        
        /* Mobile Sticky Footer */
        .mobile-action-buttons {
            display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        }
        .mobile-btn { flex: 1; padding: 15px; text-align: center; color: white; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
        .call-btn-mob { background: var(--primary-dark); }
        .whatsapp-btn-mob { background: #25D366; }

        /* Responsive */
        @media (max-width: 992px) {
            .contact-main-grid { grid-template-columns: 1fr; }
            .side-image { display: none; } /* Hide 3D images on tablet */
        }
        @media (max-width: 768px) {
            .contact-top-bar { display: none; }
            .mobile-header { display: flex; }
            .hero-title .highlight-text { font-size: 2.2rem; }
            .profile-images-wrapper { flex-direction: column; gap: 20px; }
            .mobile-action-buttons { display: flex; }
            .footer { padding-bottom: 80px; }
        }
        @media (min-width: 992px) {
            .side-image { display: flex; }
        }
        
/* =========================================
           3. ABOUT HERO SECTION
        ========================================= */
        .page-hero {
            background: linear-gradient(rgba(6, 78, 59, 0.9), rgba(2, 44, 34, 0.95)), url('https://www.transparenttextures.com/patterns/stardust.png');
            padding: 100px 20px 80px;
            text-align: center;
            color: white;
        }
        .page-hero h1 { color: var(--gold); font-family: 'Cinzel', serif; font-size: 3rem; margin-bottom: 10px; }
        .page-hero p { color: #d1fae5; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
        .breadcrumb { margin-top: 20px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
        .breadcrumb a { color: white; }

        /* =========================================
           4. BIO SECTION (Fully Responsive)
        ========================================= */
        .bio-section { padding: 40px 20px; max-width: 1200px; margin: 0 auto; }
        
        .bio-grid { 
            /*display: grid; */
            /*grid-template-columns: 350px 1fr; */
            /* Fixed width for image column, rest for text 
            /*gap: 60px; */
            align-items: flex-start; 
        }
        
        /* Left Column: Image + Name */
        .bio-sidebar {
            text-align: center;
            position: sticky;
            top: 100px; /* Sticky effect on desktop */
        }

        .bio-image-wrapper { 
            position: relative; 
            margin-bottom: 25px;
            display: inline-block;
        }
        .bio-image-wrapper img { 
            width: 100%;
            border-radius: 20px; 
            box-shadow: 15px 15px 0px var(--primary-soft); 
            border: 2px solid var(--gold); 
            position: relative; 
            z-index: 2;
        }
        .bio-bg-element {
            position: absolute; top: -15px; left: -15px; width: 100%; height: 100%;
            border: 2px solid var(--primary); border-radius: 20px; z-index: 1;
        }

        .bio-name {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 5px;
            font-weight: 700;
        }
        .bio-title {
            color: var(--gold);
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            font-weight: 600;
            display: block;
            margin-bottom: 15px;
        }
        .bio-social { margin-top: 15px; }
        .bio-social a {
            display: inline-flex; width: 35px; height: 35px; background: var(--primary-soft);
            color: var(--primary-dark); border-radius: 50%; align-items: center; justify-content: center;
            margin: 0 5px; transition: var(--transition);
            border: 1px solid;
        }
        .bio-social a:hover { background: var(--primary-dark); color: var(--gold); }

        /* Right Column: Text */
        .bio-content h2 { font-size: 2.2rem; margin-bottom: 25px; line-height: 1.3; color: var(--text-dark); }
        .bio-content p { margin-bottom: 20px; color: var(--text-light); text-align: justify; font-size: 1rem; }
        .highlight-text { color: var(--primary-dark); font-weight: 600; }

        /* =========================================
           5. PHILOSOPHY SECTION
        ========================================= */
        .philosophy-section { background: var(--primary-soft); padding: 40px 20px; }
        .container { max-width: 1200px; margin: 0 auto; }
        .text-center { text-align: center; max-width: 800px; margin: 0 auto 50px; }
        
        .philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .philosophy-card {
            background: white; padding: 40px 30px; border-radius: 15px; border-bottom: 4px solid var(--gold);
            box-shadow: var(--shadow-card); transition: var(--transition);
        }
        .philosophy-card:hover { transform: translateY(-10px); }
        .p-icon { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 20px; }
        .philosophy-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
        
        /* =========================================
           6. STATS STRIP
        ========================================= */
        .stats-section { background: var(--primary-dark); color: white; padding: 60px 20px; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; text-align: center; max-width: 1200px; margin: 0 auto; }
        .stat-item h2 { color: var(--gold); font-size: 2.5rem; margin-bottom: 5px; font-family: 'Cinzel', serif; }
        .stat-item p { color: #d1fae5; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

        /* =========================================
           7. MISSION & VISION
        ========================================= */
        .mv-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
        .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .mv-box {
            background: white; padding: 40px; border-radius: 20px; border: 1px solid #e2e8f0;
            display: flex; gap: 20px; align-items: flex-start;
        }
        .mv-icon { min-width: 60px; height: 60px; background: var(--primary-soft); color: var(--primary-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }


        /* =========================================
           9. RESPONSIVE MEDIA QUERIES
        ========================================= */
        @media (max-width: 992px) {
            .bio-grid { 
                grid-template-columns: 1fr; /* Stack vertically on tablet/mobile */
                gap: 40px;
            }
            .bio-sidebar {
                position: static; /* Remove sticky on mobile */
                max-width: 400px;
                margin: 0 auto;
            }
            .mv-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .contact-top-bar { display: none; }
            .mobile-header { display: flex; }
            .mobile-action-buttons { display: flex; }
            .footer { padding-bottom: 80px; }
            
            .page-hero h1 { font-size: 2rem; }
            .bio-content h2 { font-size: 1.8rem; }
            
            .mv-box { flex-direction: column; text-align: center; }
            .mv-icon { margin: 0 auto 15px; }
            
            .section-title { font-size: 1.8rem; }
        }
        
        
        
        /* =========================================
   SERVICES SECTION STYLING
========================================= */


.services-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns on Desktop */
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* --- LEFT COLUMN: Card Styling --- */
.service-list-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.service-list-card:hover {
    box-shadow: 0 20px 40px -5px rgba(6, 78, 59, 0.15);
    border-color: #d4af37; /* Gold border on hover */
    transform: translateY(-5px);
}

.card-header-group {
    margin-bottom: 20px;
}

.service-icon-large {
    width: 60px; height: 60px;
    background: #ecfdf5;
    color: #064e3b;
    font-size: 1.5rem;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
}

.service-title-large {
    font-size: 1.8rem;
    color: #064e3b;
    font-family: 'Cinzel', serif;
    line-height: 1.2;
    margin-bottom: 5px;
}

.service-subtitle {
    color: #64748b;
    font-size: 1rem;
}

/* The Feature Grid (Checklist) */
.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns of text on Desktop */
    gap: 15px 25px;
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.service-features-grid li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #1e293b;
    line-height: 1.4;
}

.service-features-grid i {
    color: #10b981; /* Green Check */
    margin-top: 3px;
    flex-shrink: 0;
}



/* --- RIGHT COLUMN: 3D Visuals --- */
.service-visual-container {
    position: relative;
    height: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../assets/images/bg.jpg);
    border-radius: 20px;
}

/* Gradient Overlay */
.service-visual-container::before {
    content: "";
    position: absolute;
    inset: 0;
    
    background: radial-gradient(circle at center, rgb(2 44 34 / 66%) 0%, rgb(0 0 0 / 57%) 100%);
    z-index: 1;
    border-radius: 20px;
}

/* Background Glow */
.visual-circle-bg {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 5s infinite ease-in-out;
}

.vastu-3d-composition {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rotating Ring */
.vastu-mandala-ring {
    width: 350px; height: 350px;
    border-radius: 50%;
    border: 2px dashed #d4af37;
    padding: 15px;
    animation: rotateSlow 60s linear infinite;
    /*background: rgba(255, 255, 255, 0.4);*/
    backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
}

.mandala-img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Floating Elements */
.float-element {
    position: absolute;
    width: 50px; height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
}

.elem-1 { top: 20px; right: 20px; color: #f59e0b; animation: floatY 4s ease-in-out infinite; }
.elem-2 { bottom: 40px; left: 20px; color: #3b82f6; animation: floatY 5s ease-in-out infinite 1s; }
.elem-3 { top: 40px; left: 10px; color: #10b981; animation: floatY 6s ease-in-out infinite 0.5s; }

.glass-info-card {
    position: absolute;
    bottom: 0; right: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; color: #064e3b;
    z-index: 5;
    font-size: 0.9rem;
    animation: floatY 5s ease-in-out infinite;
}

/* Animations */
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes pulseGlow { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0.8; } }

/* =========================================
   RESPONSIVE BREAKPOINTS (Key for Mobile)
========================================= */

/* Tablet (Landscape) & Small Laptops */
@media (max-width: 1024px) {
    .services-split-grid {
        gap: 30px;
    }
    .vastu-mandala-ring {
        width: 300px; height: 300px;
    }
}

/* Tablet (Portrait) */
@media (max-width: 992px) {
    .services-split-grid {
        grid-template-columns: 1fr; /* Stack into 1 column */
    }
    
    .service-visual-container {
        order: -1; /* Move image to top (optional, remove if you want text first) */
        min-height: 350px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 20px;
    }
    
    .service-list-card {
        padding: 25px;
    }

    .service-title-large {
        font-size: 1.5rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr; /* 1 column text list on mobile */
        gap: 15px;
    }

    /* Adjust 3D Image Size for Mobile */
    .vastu-mandala-ring {
        width: 260px; height: 260px;
    }
    
    .visual-circle-bg {
        width: 300px; height: 300px;
    }
    
    .float-element {
        width: 40px; height: 40px; font-size: 1rem;
    }
    
    .elem-1 { right: 0; }
    .elem-3 { left: 0; }
}

/* VALIDATION STYLES */
.error-msg {
    color: #dc2626; /* Red color */
    font-size: 0.8rem;
    display: none; /* Hidden by default */
    margin-top: 5px;
    font-weight: 500;
}

/* Invalid Input State */
input.invalid, select.invalid, textarea.invalid {
    border-color: #dc2626 !important;
    background-color: #fff5f5;
}

/* Invalid Focus State */
input:focus.invalid, select:focus.invalid, textarea:focus.invalid {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
    outline: none;
}

/* Success Popup Styles */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}
.popup-content {
    background: white; padding: 40px; border-radius: 15px;
    text-align: center; max-width: 400px; width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: popIn 0.3s ease;
}
.popup-icon { font-size: 50px; color: #10b981; margin-bottom: 20px; }
.popup-content h3 { color: #064e3b; margin-bottom: 10px; font-family: 'Cinzel', serif; }
.popup-content p { color: #64748b; margin-bottom: 25px; }
.popup-btn {
    background: #064e3b; color: white; border: none; padding: 10px 30px;
    border-radius: 50px; cursor: pointer; font-weight: bold;
}
@keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }


/* =========================================
   COSMIC ENERGY SECTION (Final Corrected)
========================================= */
.cosmic-section {
    padding: 60px 20px;
    background: radial-gradient(circle at center, #f0fdf4 0%, #ffffff 80%);
    overflow: hidden;
    text-align: center;
}

.cosmic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    min-height: 500px;
}

/* --- ORBIT WRAPPER --- */
.orbit-wrapper {
    position: relative;
    width: 450px; 
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Decorative Ring */
.orbit-ring {
    position: absolute;
    width: 100%; height: 100%;
    border: 3px dashed #ffffff;
    border-radius: 50%;
    opacity: 1;
    animation: rotateSlow 40s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* --- CENTER IMAGE (Uplift) --- */
.center-planet {
    width: 200px; height: 200px;
    position: relative;
    z-index: 10;
    animation: upliftCenter 4s ease-in-out infinite;
}

.center-img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 0 30px rgba(6, 78, 59, 0.2);
    background: white;
}

.planet-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 3s infinite;
}

/* --- SATELLITES (Images in Circular Cover Box) --- */
.satellite {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.sat-img-box {
    width: 110px; 
    height: 110px;
    background: white;
    border-radius: 50%;
    
    /* CRITICAL: Padding 0 ensures image covers the circle */
    padding: 0; 
    
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: 3px solid #ffffff; 
    outline: 2px solid #ecfdf5; 
    
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: hidden; /* Clips image to circle */
    
    /* Animation */
    animation: upliftSatellite 3s ease-in-out infinite;
}

.sat-img-box img {
    width: 100%; 
    height: 100%;
    
    /* CRITICAL: Forces image to cover entire circle */
    object-fit: cover; 
    
    display: block;
}

.sat-label {
    margin-top: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #064e3b;
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    animation: upliftSatellite 3s ease-in-out infinite;
    animation-delay: 0.1s;
}

/* --- POSITIONS & ANIMATION DELAYS --- */
.sat-1 { top: 0; left: 0; }
.sat-1 .sat-img-box, .sat-1 .sat-label { animation-delay: 0s; }

.sat-2 { top: 0; right: 0; }
.sat-2 .sat-img-box, .sat-2 .sat-label { animation-delay: 1.5s; }

.sat-3 { bottom: 0; right: 0; }
.sat-3 .sat-img-box, .sat-3 .sat-label { animation-delay: 0.5s; }

.sat-4 { bottom: 0; left: 0; }
.sat-4 .sat-img-box, .sat-4 .sat-label { animation-delay: 2s; }


/* --- ANIMATIONS --- */
@keyframes upliftCenter {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes upliftSatellite {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

/* =========================================
   RESPONSIVE MEDIA QUERIES (Fixed)
========================================= */

/* Tablet Size */
@media (max-width: 992px) {
    .orbit-wrapper { width: 380px; height: 380px; }
    .center-planet { width: 160px; height: 160px; }
    
    .sat-img-box { 
        width: 90px; 
        height: 90px; 
        padding: 0 !important; /* Forces 0 padding */
    }
}

/* Mobile Size */
@media (max-width: 576px) {
    .cosmic-container { min-height: 400px; margin-top: 20px; }
    
    /* Shrink wrapper to fit screen */
    .orbit-wrapper { width: 300px; height: 300px; }
    
    .center-planet { width: 130px; height: 130px; border-width: 4px; }
    
    /* Smaller Satellites */
    .sat-img-box { 
        width: 65px; 
        height: 65px; 
        padding: 0 !important; /* Forces 0 padding */
    }
    
    .sat-label { font-size: 0.75rem; padding: 2px 8px; margin-top: 5px; }

    /* Adjust positions tighter for mobile */
    .sat-1 { top: 10px; left: 10px; }
    .sat-2 { top: 10px; right: 10px; }
    .sat-3 { bottom: 10px; right: 10px; }
    .sat-4 { bottom: 10px; left: 10px; }
}