@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Mukta:wght@300;400;600;700&family=Poppins:wght@400;600;800&display=swap');

:root {
    /* Color Palette */
    --saffron: #FF9933;
    --saffron-dark: #E68A2E;
    --saffron-light: #FFB366;
    --white: #FFFFFF;
    --green: #138808;
    --black: #1a1a1a;
    --gray-dark: #333333;
    --gray-light: #f4f6f9;
    --text-main: #2c3e50;
    --text-muted: #6c757d;

    /* Gradients */
    --gradient-saffron: linear-gradient(135deg, #FF9933 0%, #E68A2E 100%);
    --gradient-dark: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-saffron: 0 10px 20px rgba(255, 153, 51, 0.3);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mukta', 'Inter', sans-serif;
    /* Mukta supports Marathi beautifully */
    color: var(--text-main);
    background-color: var(--gray-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Mukta', sans-serif;
    font-weight: 700;
    /* letter-spacing: -0.5px; */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ================= HEADER & NAV ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.header.scrolled {
    padding: 10px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-subtext {
    font-size: 0.85rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--saffron);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-toggle {
    background: transparent;
    border: 2px solid var(--saffron);
    color: var(--saffron);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-toggle:hover {
    background: var(--saffron);
    color: var(--white);
}

.btn-primary {
    background: var(--gradient-saffron);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-saffron);
    border: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 153, 51, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--saffron);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--black);
    cursor: pointer;
    background: none;
    border: none;
}

/* ================= HERO SECTION ================= */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: var(--gradient-overlay), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.3s;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--saffron-light);
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 30px;
    border-left: 4px solid var(--saffron);
    padding-left: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.7s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.9s;
}

.hero-img-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-left: 30px;
}

.hero-img {
    height: 70vh;
    max-height: 600px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.8);
}

/* ================= SECTIONS ================= */
.section-padding {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--saffron);
    border-radius: 2px;
}

/* ================= ABOUT PREVIEW ================= */
.about-preview {
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* ================= INITIATIVES / CARDS ================= */
.initiatives {
    background: var(--gray-light);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.initiative-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-saffron);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-fast);
}

.initiative-card:hover {
    transform: translateY(-10px);
}

.initiative-card:hover::before {
    opacity: 1;
}

.initiative-card:hover h4,
.initiative-card:hover p,
.initiative-card:hover .icon {
    color: var(--white);
}

.initiative-card .icon {
    font-size: 3rem;
    color: var(--saffron);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.initiative-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.initiative-card p {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

/* ================= CTA SECTION ================= */
.cta-section {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.2) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

/* ================= FOOTER ================= */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--saffron);
}

.footer-col p,
.footer-col a {
    color: #bbb;
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover {
    color: var(--saffron);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--saffron);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* ================= ANIMATIONS & UTILS ================= */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-bounce);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Page Headers for subpages */
.page-header {
    padding: 150px 5% 80px;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--saffron);
}

/* ABOUT PAGE TIMELINE */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--saffron-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--saffron);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.left-tl {
    left: 0;
}

.right-tl {
    left: 50%;
}

.left-tl::after {
    right: -10px;
}

.right-tl::after {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* NEWS GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-img {
    height: 200px;
    background: #ddd;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* FORMS */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-active .nav-actions {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 250px);
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
    }

    .about-preview {
        flex-direction: column;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img-wrap {
        padding-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .hero-img {
        height: auto;
        max-height: 400px;
        width: 100%;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .right-tl {
        left: 0;
    }

    .left-tl::after,
    .right-tl::after {
        left: 21px;
    }
}