/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-small {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #2d5016;
    position: absolute;
    top: 0;
    left: 0;
}

.inner-ring {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: #f4d03f;
    position: absolute;
    top: 5%;
    left: 5%;
}

.center-circle {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 15%;
    left: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.letter-a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d5016;
    font-family: 'Arial Black', Arial, sans-serif;
    line-height: 1;
    position: relative;
}

.letter-a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 2px;
    background: linear-gradient(90deg, #2d5016 0%, #2d5016 30%, #f4d03f 30%, #f4d03f 100%);
    border-radius: 1px;
}

.logo-text h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.logo-text span {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-separator {
    color: #666;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 10px;
    align-self: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5aa0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('images/image1 (4).jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(244, 208, 63, 0.3) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/image1 (4).jpeg');
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.4);
    z-index: 0;
    transform: scale(1.05);
}

/* Hero Brush Decorations */
.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(244, 208, 63, 0.1), transparent);
    border-radius: 50% 30% 70% 40%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

/* Hero Black Lines - Geometric Elements */
.hero .line-1 {
    position: absolute;
    top: 20%;
    left: 0;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.8), transparent);
    transform: rotate(-15deg);
    z-index: 2;
    animation: slideIn 3s ease-out;
}

.hero .line-2 {
    position: absolute;
    top: 60%;
    right: 0;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.6), transparent);
    transform: rotate(25deg);
    z-index: 2;
    animation: slideIn 3.5s ease-out;
}

.hero .line-3 {
    position: absolute;
    bottom: 30%;
    left: 10%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.9), transparent);
    transform: rotate(-45deg);
    z-index: 2;
    animation: slideIn 4s ease-out;
}

.hero .line-4 {
    position: absolute;
    top: 40%;
    right: 20%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.7), transparent);
    transform: rotate(60deg);
    z-index: 2;
    animation: slideIn 2.5s ease-out;
}

.hero .line-5 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.8), transparent);
    transform: rotate(10deg);
    z-index: 2;
    animation: slideIn 3.8s ease-out;
}

.hero .line-6 {
    position: absolute;
    top: 80%;
    left: 30%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.6), transparent);
    transform: rotate(-30deg);
    z-index: 2;
    animation: slideIn 4.2s ease-out;
}

@keyframes slideIn {
    0% { 
        opacity: 0; 
        transform: translateX(-100px) rotate(var(--rotation, 0deg));
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) rotate(var(--rotation, 0deg));
    }
}

.hero .brush-1 {
    position: absolute;
    top: 20%;
    left: -30px;
    width: 150px;
    height: 100px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), transparent);
    border-radius: 60% 40% 80% 20%;
    z-index: 2;
    animation: float 8s ease-in-out infinite reverse;
}

.hero .brush-2 {
    position: absolute;
    bottom: 10%;
    right: -40px;
    width: 120px;
    height: 80px;
    background: linear-gradient(225deg, rgba(244, 208, 63, 0.12), transparent);
    border-radius: 40% 70% 30% 60%;
    z-index: 2;
    animation: float 7s ease-in-out infinite;
}

.hero .brush-3 {
    position: absolute;
    top: 60%;
    left: 10%;
    width: 80px;
    height: 60px;
    background: linear-gradient(315deg, rgba(45, 80, 22, 0.06), transparent);
    border-radius: 50% 20% 80% 30%;
    z-index: 2;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    z-index: 3;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(45, 80, 22, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    padding: 60px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4d03f 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f4d03f 0%, #2d5016 100%);
    border-radius: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #2d5016 0%, #f4d03f 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3a0f 0%, #e6c200 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #2d5016;
    border-color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-card {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9) 0%, rgba(244, 208, 63, 0.8) 100%);
    backdrop-filter: blur(20px);
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: 1;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 2;
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-15px) scale(1.05);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-card i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hero-card h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 3;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    margin: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2d5016 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 208, 63, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(45, 80, 22, 0.02) 50%, transparent 70%);
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(244, 208, 63, 0.03), transparent);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mission, .vision {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2c5aa0;
}

.mission h4, .vision h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission i, .vision i {
    color: #ff6b6b;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Who We Are Section */
.who-we-are {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #ffffff 50%, #f8f9fa 75%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d5016 0%, #f4d03f 50%, #2d5016 100%);
    z-index: 3;
}

.who-we-are::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(45, 80, 22, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(244, 208, 63, 0.04) 0%, transparent 40%),
        linear-gradient(30deg, transparent 40%, rgba(45, 80, 22, 0.02) 50%, transparent 60%),
        linear-gradient(-30deg, transparent 40%, rgba(244, 208, 63, 0.02) 50%, transparent 60%);
    z-index: 1;
}

.ceo-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.ceo-image {
    text-align: center;
}

.ceo-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.1);
}

.ceo-photo:hover {
    transform: translateY(-5px);
}

.ceo-title {
    text-align: center;
    margin-top: 20px;
}

.ceo-title h4 {
    color: #2d5016;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.ceo-title p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 2px 0;
}

.ceo-title p:first-of-type {
    color: #2d5016;
    font-weight: 600;
    font-size: 1rem;
}

.ceo-content h3 {
    color: #2d5016;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.ceo-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2d5016 0%, #f4d03f 100%);
    border-radius: 2px;
}

.ceo-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0 0 30px 0;
    padding: 0;
    border: none;
    background: none;
    position: relative;
}

.ceo-quote::before {
    content: '"';
    font-size: 4rem;
    background: linear-gradient(135deg, #2d5016 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
    opacity: 0.4;
}

.ceo-signature {
    text-align: right;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.ceo-signature p {
    margin: 5px 0;
    color: #666;
}

.ceo-signature p:first-child {
    font-size: 1.1rem;
    color: #2d5016;
}

/* Responsive design for Who We Are section */
@media (max-width: 768px) {
    .ceo-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ceo-photo {
        max-width: 250px;
        height: 300px;
    }
    
    .ceo-quote {
        font-size: 1rem;
    }
    
    .ceo-quote::before {
        font-size: 3rem;
        top: -15px;
        left: -10px;
    }
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 20px 15px 15px;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-photo {
        max-width: 300px;
        height: 250px;
    }
}

/* Objectives Section */
.objectives {
    padding: 100px 0;
    background: white;
}

.objectives h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-weight: 700;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.objective-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2c5aa0;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.objective-card i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.objective-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.objective-card p {
    color: #666;
    line-height: 1.6;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 25%, #e9ecef 50%, #f8f9fa 75%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(45, 80, 22, 0.02) 2px, rgba(45, 80, 22, 0.02) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(244, 208, 63, 0.02) 2px, rgba(244, 208, 63, 0.02) 4px);
    z-index: 1;
}

.programs::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(45, 80, 22, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(244, 208, 63, 0.08) 0%, transparent 30%);
    z-index: 1;
}


.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d5016, #f4d03f);
}

.program-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5016, #f4d03f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-card ul {
    list-style: none;
}

.program-card li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(45, 80, 22, 0.02) 1deg, transparent 2deg, transparent 10deg, rgba(244, 208, 63, 0.02) 11deg, transparent 12deg);
    z-index: 1;
}

.gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(45, 80, 22, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(244, 208, 63, 0.04) 0%, transparent 40%);
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 80, 22, 0.9));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* About Section Updates */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.05), transparent);
    border-radius: 50% 30% 70% 40%;
    z-index: 1;
}

.about-visual::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 60px;
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.06), transparent);
    border-radius: 40% 70% 30% 60%;
    z-index: 1;
}

.about-image {
    text-align: center;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.1);
}

.about-photo:hover {
    transform: translateY(-5px);
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(45, 80, 22, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(244, 208, 63, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.impact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(45, 80, 22, 0.01) 25%, transparent 50%, rgba(244, 208, 63, 0.01) 75%, transparent 100%);
    z-index: 1;
}

.impact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-text h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.impact-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.impact-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.feature i {
    color: #2c5aa0;
    font-size: 1.2rem;
}

.impact-image {
    display: flex;
    justify-content: center;
}

.impact-card {
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(44, 90, 160, 0.3);
}

.impact-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.impact-card ul {
    list-style: none;
}

.impact-card li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.impact-card i {
    color: #ffd93d;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 208, 63, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(45, 80, 22, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(244, 208, 63, 0.02) 50%, transparent 70%);
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd93d;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd93d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .about-content,
    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .impact-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .objectives h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .program-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2c5aa0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e3a6f;
}

/* Loading states and disabled buttons */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Loading spinner */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced focus states for accessibility */
.btn:focus,
.nav-link:focus,
.social-icon:focus,
.hamburger:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Improved form focus states */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
    transform: translateY(-1px);
}

/* Enhanced card hover effects */
.objective-card:hover,
.impact-card:hover,
.stat:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
