.hero {
    background-image: url('/public/images/hero-gallery.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: black;
}

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.2;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        /* Section Styling */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-blue);
        }

        .section-subtitle {
            text-align: justify;
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 4rem;
            margin-left: auto;
            margin-right: auto;
        }

        .who-we-are {
            background: var(--white);
        }

        .who-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .who-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-gray);
        }

        .who-text h3 {
            color: var(--primary-blue);
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .who-text h3:first-child {
            margin-top: 0;
        }

        .founders-box {
            background: var(--background-light);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent-orange);
        }

        .founders-box h4 {
            color: var(--primary-blue);
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
        }

        .mvv-section {
            background: var(--background-light);
        }

        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .mvv-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .mvv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .mvv-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .mvv-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .mvv-card p {
            color: var(--text-gray);
            line-height: 1.7;
        }

        .timeline-section {
            background: var(--white);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-blue);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            width: 50%;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 2rem;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 2rem;
        }

        .timeline-content {
            background: var(--background-light);
            padding: 2rem;
            border-radius: 12px;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .timeline-year {
            background: var(--accent-orange);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .timeline-content h4 {
            color: var(--primary-blue);
            font-family: 'Playfair Display', serif;
            margin-bottom: 0.5rem;
        }

        .timeline-dot {
            position: absolute;
            top: 2rem;
            width: 15px;
            height: 15px;
            background: var(--accent-orange);
            border-radius: 50%;
            border: 3px solid var(--white);
            box-shadow: 0 0 0 3px var(--primary-blue);
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -7.5px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -7.5px;
        }
        .team-section {
            background: var(--background-light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .team-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

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

        .team-photo {
            width: 100%;
            height: 250px;
            background: var(--background-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--text-gray);
        }

        .team-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: var(--accent-orange);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-bio {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Recognition Section */
        .recognition-section {
            background: var(--white);
        }

        .recognition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .recognition-card {
            background: var(--background-light);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            border-top: 4px solid var(--secondary-green);
        }

        .recognition-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .recognition-card h4 {
            color: var(--primary-blue);
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
        }

        .recognition-card p {
            color: var(--text-gray);
        }

        /* Impact Highlights */
        .impact-highlights {
            background: var(--primary-blue);
            color: var(--white);
            text-align: center;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .impact-stat {
            text-align: center;
        }

        .impact-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent-orange);
        }

        .impact-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            background: var(--secondary-green);
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.2;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

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

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .who-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 3rem !important;
                padding-right: 0 !important;
            }

            .timeline-dot {
                left: 12.5px !important;
            }

             .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .impact-number {
    font-size: 1.5rem;
  }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        html {
            scroll-behavior: smooth;
        }



               .testimonial-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 25px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .member-photo {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #e6e9ff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card:hover .member-photo img {
            transform: scale(1.05);
        }
        
        .member-info {
            flex: 1;
        }
        
        .member-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 5px;
        }
        
        .member-role {
            font-size: 0.9rem;
            color: #4a5568;
            margin-bottom: 12px;
            font-weight: 500;
        }
        
        .member-description {
            color: #4a5568;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .quote-icon {
            color: #667eea;
            font-size: 1.5rem;
            margin-bottom: 10px;
            opacity: 0.7;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .member-photo {
                align-self: center;
            }
        }
        
        @media (max-width: 480px) {
            .testimonial-card {
                padding: 20px;
            }
            
            .member-photo {
                width: 70px;
                height: 70px;
            }
        }

        
        .signature-row {
    display: flex;
    justify-content: space-between; 
    margin-top: 3rem;
    font-weight: 500;
    color: #333;
}

.left-signature, .right-signature {
    line-height: 1.6;
    font-size: 1rem;
}

.right-signature {
    text-align: right;
}

/* 📱 Mobile fix */
@media (max-width: 768px) {
    .signature-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .right-signature {
        text-align: center;
    }
}