* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #1e2a32;
    line-height: 1.6;
}

h1, h2, h3, h4, .nav-links a, .btn {
    font-family: 'Poppins', sans-serif;
}

:root {
    --deep-green: #006633;
    --gold: #c9a03d;
    --light-gray: #F8F9FA;
    --white: #ffffff;
    --dark: #1e2a32;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-green);
}

.logo-text p {
    font-size: 0.7rem;
    color: #666;
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #1e2a32;
    transition: 0.3s;
    padding: 8px 12px;
}

.nav-menu li a:hover {
    color: var(--deep-green);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: var(--deep-green);
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #004d26;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--deep-green);
    color: var(--deep-green);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--deep-green);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 4px solid var(--gold);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--deep-green);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--deep-green);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    width: 60px;
    height: 4px;
    background: #c9a03d;
    position: absolute;
    bottom: -12px;
    left: 0;
}

/* Focus & Program Cards */
.focus-grid, .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.focus-card, .program-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.focus-card:hover, .program-card:hover {
    transform: translateY(-5px);
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--deep-green);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Footer */
footer {
    background: #0a2a1c;
    color: #e0e7e5;
    padding: 50px 0 20px;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 1.3rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--gold);
}

/* Logo Images */
.logo-left {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-right {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 5px 15px;
    border-radius: 40px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 30px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #006633;
}

.team-designation {
    color: #c9a03d;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 5px 0 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 15px;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .focus-grid, .programs-grid {
        grid-template-columns: 1fr;
    }
    .team-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.6rem;
        text-align: center;
    }
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .hero .btn-primary, .hero .btn-outline {
        padding: 8px 16px;
        font-size: 12px;
    }
    .logo-left {
        width: 40px;
        height: 40px;
    }
    .logo-right {
        width: 35px;
        height: 35px;
    }
    .logo-text h2 {
        font-size: 12px;
    }
    .logo-text p {
        font-size: 8px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
}