﻿:root {
    --saffron: #FF9933;
    --saffron-dark: #E67300;
    --saffron-light: #FFB366;
    --white: #FFFFFF;
    --off-white: #F8F6F3;
    --cream: #FFF9F0;
    --green: #138808;
    --green-dark: #0D5F06;
    --green-light: #1AAF0A;
    --charcoal: #1A1A1A;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #E5E5E5;
    --font-display: 'Nunito', Georgia, serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sanskrit: 'Noto Sans Devanagari', sans-serif;
    --section-padding: clamp(2rem, 5vw, 5rem);
    --container-max: 1200px;
    --container-padding: clamp(2rem, 5vw, 5rem);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

.cursor-pointer {
    cursor: pointer;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--charcoal);
}

.logo-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

    .logo-icon svg,
    .logo-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

    .logo-text span {
        display: block;
        font-size: 0.75rem;
        font-family: var(--font-sanskrit);
        color: var(--saffron);
        font-weight: 500;
    }

/* Desktop Navigation - Center Links */
.nav-center {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-center > li {
        position: relative;
    }

        .nav-center > li > a {
            text-decoration: none;
            color: var(--gray-dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

            .nav-center > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, var(--saffron), var(--green));
                transition: width 0.3s ease;
            }

            .nav-center > li > a:hover {
                color: var(--saffron-dark);
            }

                .nav-center > li > a:hover::after {
                    width: 100%;
                }

/* Dropdown Arrow */
.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

    .nav-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid white;
    }

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .nav-dropdown-menu li a:hover {
        background: var(--cream);
        color: var(--saffron-dark);
        padding-left: 1.5rem;
    }

/* Right Side Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .nav-email:hover {
        color: var(--saffron);
    }

    .nav-email svg {
        width: 16px;
        height: 16px;
    }

.nav-cta {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    white-space: nowrap;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(255, 153, 51, 0.4);
    }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

    .mobile-menu-btn span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--charcoal);
        margin: 6px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

/* ========================================
   MOBILE MENU OVERLAY
   ======================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem 2rem;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-lighter);
    padding-bottom: 1rem;
}

    .mobile-menu-header .logo {
        gap: 0.75rem;
    }

    .mobile-menu-header .logo-icon {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-header .logo-text {
        font-size: 1rem;
    }

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

    .mobile-menu-close:hover {
        color: var(--saffron);
    }

    .mobile-menu-close svg {
        width: 28px;
        height: 28px;
    }

/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

    .mobile-nav-links > li {
        margin-bottom: 0.5rem;
    }

        .mobile-nav-links > li > a {
            display: block;
            padding: 1rem 0;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            border-bottom: 1px solid var(--gray-lighter);
            transition: all 0.3s ease;
        }

            .mobile-nav-links > li > a:hover {
                color: var(--saffron);
                padding-left: 0.5rem;
            }

    .mobile-nav-links .mobile-nav-highlight {
        color: var(--saffron);
    }

/* Mobile Nav Section (for About Us dropdown) */
.mobile-nav-section {
    margin-bottom: 0.5rem;
}

.mobile-nav-section-title {
    display: block;
    padding: 1rem 0 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid linear-gradient(180deg, var(--saffron), var(--green));
    border-left: 3px solid var(--saffron);
    margin-bottom: 1rem;
}

    .mobile-nav-submenu li a {
        display: block;
        padding: 0.75rem 0;
        color: var(--charcoal);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .mobile-nav-submenu li a:hover {
            color: var(--saffron);
            padding-left: 0.5rem;
        }

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-lighter);
}

.mobile-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--saffron);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

    .mobile-email:hover {
        color: var(--saffron-dark);
    }

    .mobile-email svg {
        width: 20px;
        height: 20px;
    }

.mobile-social-links {
    display: flex;
    gap: 1rem;
}

    .mobile-social-links a {
        width: 44px;
        height: 44px;
        background: var(--cream);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--charcoal);
        transition: all 0.3s ease;
    }

        .mobile-social-links a:hover {
            background: var(--saffron);
            color: white;
            transform: translateY(-2px);
        }

    .mobile-social-links svg {
        width: 20px;
        height: 20px;
    }

/* ========================================
   RESPONSIVE NAVIGATION
   ======================================== */

/* Tablet - Show simplified nav */
@media (max-width: 1100px) {
    .nav-email {
        display: none;
    }

    .nav-center {
        gap: 1.5rem;
    }

        .nav-center > li > a {
            font-size: 0.9rem;
        }
}

/* Mobile - Full mobile menu */
@media (max-width: 768px) {
    .nav-center,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar-inner {
        padding: 0.5rem 0;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
    }

        .logo-text span {
            font-size: 0.7rem;
        }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo {
        gap: 0.75rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

        .logo-text span {
            font-size: 0.65rem;
        }

    .mobile-menu-content {
        padding: 1rem;
    }

    .mobile-nav-links > li > a {
        font-size: 1rem;
        padding: 0.85rem 0;
    }

    .mobile-nav-submenu li a {
        font-size: 0.95rem;
        padding: 0.65rem 0;
    }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    padding-top: 70px;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(19, 136, 8, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-1 {
    top: -100px;
    right: -50px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(255, 153, 51, 0.02));
    animation: float 8s ease-in-out infinite;
}

.hero-decoration-2 {
    bottom: -150px;
    left: -100px;
    background: linear-gradient(135deg, rgba(19, 136, 8, 0.08), rgba(19, 136, 8, 0.02));
    animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem 3rem;
    width: 100%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    margin-top: 2em;
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

    .hero-badge svg {
        width: 18px;
        height: 18px;
    }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.hero-title-sanskrit {
    font-family: var(--font-sanskrit);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: block;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    max-width: 500px;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2rem;
    padding-left: 1.25rem;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, var(--saffron), var(--green)) 1;
}

    .hero-tagline span {
        display: block;
    }

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 153, 51, 0.35);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(255, 153, 51, 0.45);
    }

.btn-secondary {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

    .btn-secondary:hover {
        background: var(--green);
        color: white;
        transform: translateY(-3px);
    }

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid var(--gray-lighter);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-number {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--saffron);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 48%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.8rem;
    animation: float 2s ease-in-out infinite;
}

    .hero-scroll svg {
        width: 20px;
        height: 20px;
    }

/* Sections */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

    .section-badge::before, .section-badge::after {
        content: '';
        width: 25px;
        height: 2px;
        background: linear-gradient(90deg, var(--saffron), var(--green));
    }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
}

/* About */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

    .about-image-main > div {
        width: 100%;
        /*aspect-ratio: 4/5;*/
        background: linear-gradient(180deg, #138808 0%, #0D5F06 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

.about-image-accent {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 35px rgba(255, 153, 51, 0.3);
}

    .about-image-accent .years {
        font-family: var(--font-display);
        font-size: 2.75rem;
        font-weight: 700;
        line-height: 1;
    }

    .about-image-accent .label {
        font-size: 0.85rem;
        font-weight: 500;
        text-align: center;
        padding: 0 0.75rem;
    }

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.about-content .highlight {
    font-family: var(--font-sanskrit);
    font-size: 1.1rem;
    color: var(--saffron);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .about-feature-icon svg {
        width: 20px;
        height: 20px;
        color: white;
    }

.about-feature h4 {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Vision Mission */
.vision-mission {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

    .vision-mission::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--saffron), var(--green), transparent);
    }

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.vm-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .vm-card:hover {
        transform: translateY(-5px);
    }

    .vm-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .vm-card.vision::before {
        background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
    }

    .vm-card.mission::before {
        background: linear-gradient(90deg, var(--green), var(--green-light));
    }

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.vm-card.vision .vm-icon {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
}

.vm-card.mission .vm-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.vm-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.vm-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.vm-card p {
    color: var(--gray);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.vm-card .emphasis {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.mission-list {
    list-style: none;
    margin-top: 1.25rem;
}

    .mission-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        margin-bottom: 0.75rem;
        color: var(--gray);
        font-size: 0.9rem;
    }

        .mission-list li svg {
            width: 18px;
            height: 18px;
            color: var(--green);
            flex-shrink: 0;
            margin-top: 0.15rem;
        }

/* What We Do */
.what-we-do {
    background: var(--white);
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.wwd-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-lighter);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .wwd-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--saffron), var(--green));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .wwd-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

        .wwd-card:hover::before {
            opacity: 1;
        }

.wwd-card-content {
    position: relative;
    z-index: 1;
}

.wwd-card:hover .wwd-card-content {
    color: white;
}

.wwd-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

.wwd-card:nth-child(even) .wwd-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.wwd-card:hover .wwd-icon {
    background: white;
}

.wwd-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: color 0.4s ease;
}

.wwd-card:hover .wwd-icon svg {
    color: var(--saffron);
}

.wwd-card:nth-child(even):hover .wwd-icon svg {
    color: var(--green);
}

.wwd-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    transition: color 0.4s ease;
}

.wwd-card:hover h3 {
    color: white;
}

.wwd-card ul {
    list-style: none;
}

.wwd-card li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    transition: color 0.4s ease;
}

.wwd-card:hover li {
    color: rgba(255, 255, 255, 0.9);
}

.wwd-card li::before {
    content: '→';
    color: var(--saffron);
    transition: color 0.4s ease;
}

.wwd-card:hover li::before {
    color: white;
}

/* Manifesto */
.manifesto {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2D2D2D 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .manifesto::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 10% 20%, rgba(255, 153, 51, 0.15) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(19, 136, 8, 0.1) 0%, transparent 40%);
        pointer-events: none;
    }

    .manifesto .section-badge {
        color: var(--saffron-light);
    }

    .manifesto .section-title {
        color: white;
    }

    .manifesto .section-subtitle {
        color: rgba(255, 255, 255, 0.7);
    }

.manifesto-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

    .manifesto-hero .manifesto-item {
        background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
        border: none;
        padding: 2rem 3.5rem;
        text-align: center;
        max-width: 480px;
        box-shadow: 0 15px 40px rgba(255, 153, 51, 0.3);
    }

        .manifesto-hero .manifesto-item::before {
            display: none;
        }

    .manifesto-hero .manifesto-sanskrit {
        color: white;
        font-size: 1.35rem;
    }

    .manifesto-hero .manifesto-english {
        color: rgba(255, 255, 255, 0.95);
        font-size: 1rem;
    }

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.manifesto-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .manifesto-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, var(--saffron), var(--green));
        transition: height 0.4s ease;
    }

    .manifesto-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
    }

        .manifesto-item:hover::before {
            height: 100%;
        }

.manifesto-sanskrit {
    font-family: var(--font-sanskrit);
    font-size: 1.05rem;
    color: var(--saffron-light);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.manifesto-english {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Values - 6 items, 3 per row */
.values {
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.value-card:nth-child(2) .value-icon, .value-card:nth-child(4) .value-icon, .value-card:nth-child(6) .value-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Why Matters */
.why-matters {
    background: white;
}

.why-matters-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.why-statements {
    margin-bottom: 1.5rem;
}

.why-statement {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: 10px;
    border-left: 4px solid var(--saffron);
    transition: all 0.3s ease;
}

    .why-statement:nth-child(even) {
        border-left-color: var(--green);
    }

    .why-statement:hover {
        transform: translateX(8px);
    }

    .why-statement p {
        color: var(--gray);
        margin: 0;
        font-size: 0.95rem;
    }

.why-cta {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.why-cta-sub {
    font-family: var(--font-sanskrit);
    font-size: 1.05rem;
    color: var(--saffron);
    margin-bottom: 1.5rem;
}

.why-visual {
    position: relative;
}

.why-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

    .why-image > div {
        width: 100%;
        /*aspect-ratio: 3/4;*/
        background: linear-gradient(180deg, #FF9933 0%, #138808 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Join - Tricolor */
.join {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 28%, rgba(255,255,255,0.95) 46%, rgba(255,255,255,0.95) 54%, var(--green) 72%, var(--green-dark) 100%);
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

    .join::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

    .join::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.1);
        pointer-events: none;
    }

.join-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}

.join h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--charcoal);
    text-shadow: 0 2px 10px rgba(255,255,255,0.5);
}

.join .taglines {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

    .join .taglines span {
        display: block;
    }

.join-points {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.join-point {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    background: rgba(255,255,255,0.8);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .join-point svg {
        width: 20px;
        height: 20px;
    }

.join-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--charcoal);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

    .btn-dark:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

    .btn-outline-dark:hover {
        background: var(--charcoal);
        color: white;
        transform: translateY(-3px);
    }

/* Newsletter */
.newsletter {
    background: var(--white);
}

.newsletter-container {
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid var(--gray-lighter);
}

.newsletter-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.newsletter-text p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.newsletter-text .frequency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--saffron);
    font-weight: 600;
    font-size: 0.85rem;
}

    .newsletter-text .frequency svg {
        width: 16px;
        height: 16px;
    }

.newsletter-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        display: block;
        font-weight: 600;
        color: var(--charcoal);
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
    }

    .form-group input {
        width: 100%;
        padding: 0.9rem 1rem;
        border: 2px solid var(--gray-lighter);
        border-radius: 10px;
        font-size: 0.95rem;
        font-family: var(--font-body);
        transition: all 0.3s ease;
    }

        .form-group input:focus {
            outline: none;
            border-color: var(--saffron);
            box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.1);
        }

.newsletter-form .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 0.75rem;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    max-width: 380px;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--saffron-light);
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
}

    .footer-email:hover {
        color: white;
    }

    .footer-email svg {
        width: 18px;
        height: 18px;
    }

.footer-social {
    display: flex;
    gap: 0.75rem;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background: var(--saffron);
            transform: translateY(-3px);
        }

    .footer-social svg {
        width: 18px;
        height: 18px;
    }

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: var(--saffron-light);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
    }

.footer-tagline {
    font-family: var(--font-sanskrit);
    color: var(--saffron-light);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE - General Sections
   ======================================== */
@media (max-width: 1200px) {
    .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manifesto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-inner, .about-grid, .vm-grid, .why-matters-content, .newsletter-container {
        grid-template-columns: 1fr;
    }

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

    .hero-description, .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tagline {
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid;
        border-image: linear-gradient(90deg, var(--saffron), var(--green)) 1;
        padding-bottom: 0.75rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1.5rem;
        justify-content: center;
    }

    .about-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .manifesto-hero .manifesto-item {
        padding: 1.75rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-scroll {
        left: 44%;
    }

    .wwd-grid, .manifesto-grid, .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-lighter);
        padding: 0 0 0.75rem;
    }

        .stat-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

    .about-features {
        grid-template-columns: 1fr;
    }

    .join-points {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-container {
        padding: 1.5rem;
    }

    .newsletter-form {
        padding: 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-scroll {
        left: 40%;
    }

    .hero-buttons, .join-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
