/* ===== ABOUT SECTION ===== */
        .about-section {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .about-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--green-800);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .about-text p {
            color: var(--slate);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            background: var(--green-50);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--green-600);
        }

        .highlight-item strong {
            color: var(--green-800);
            font-size: 1.1rem;
        }

        .highlight-item p {
            color: var(--slate);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }

        .about-image {
            background: linear-gradient(135deg, var(--green-50), var(--white));
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            position: relative;
            overflow: hidden;
        }

        .about-image svg,
        .about-image img {
            width: 100%;
            height: 100%;
            max-width: 400px;
            max-height: 400px;
            object-fit: contain;
        }

        /* ===== MISSION & VISION ===== */
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 4rem 0;
        }

        .mission-card, .vision-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(13, 92, 69, 0.15);
        }

        .mission-card h3, .vision-card h3 {
            color: var(--green-800);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .mission-card p, .vision-card p {
            color: var(--slate);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .mission-icon, .vision-icon {
            width: 60px;
            height: 60px;
            background: var(--green-50);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: var(--green-600);
        }

        .mission-icon i, .vision-icon i {
            color: var(--green-600);
        }

        /* ===== TEAM SECTION ===== */
        .team-section {
            margin: 4rem 0;
        }

        .team-section h2 {
            font-size: 2.5rem;
            color: var(--green-800);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .team-subtitle {
            text-align: center;
            color: var(--slate);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .team-member {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-12px);
            box-shadow: 0 8px 24px rgba(13, 92, 69, 0.2);
        }

        .team-member-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--green-700), var(--green-600));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .team-member-image .initials {
            font-size: 2.5rem;
            color: white;
        }

        .team-member-info {
            padding: 2rem;
            text-align: center;
        }

        .team-member-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--green-800);
            margin-bottom: 0.5rem;
        }

        .team-member-role {
            color: var(--green-600);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-member-bio {
            color: var(--slate);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== VALUES SECTION ===== */
        .values-section {
            background: linear-gradient(135deg, var(--green-50), var(--white));
            padding: 4rem 2rem;
            border-radius: 16px;
            margin: 4rem 0;
        }

        .values-section h2 {
            font-size: 2.5rem;
            color: var(--green-800);
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 800;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }

        .value-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--green-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--green-600);
        }

        .value-icon i {
            color: var(--green-600);
        }

        .value-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--green-800);
            margin-bottom: 0.5rem;
        }

        .value-description {
            color: var(--slate);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== ACHIEVEMENTS SECTION ===== */
        .achievements {
            margin: 4rem 0;
            text-align: center;
        }

        .achievements h2 {
            font-size: 2.5rem;
            color: var(--green-800);
            margin-bottom: 3rem;
            font-weight: 800;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .achievement-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            border-top: 4px solid var(--green-600);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .achievement-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--green-600);
            margin-bottom: 0.5rem;
        }

        .achievement-label {
            color: var(--slate);
            font-weight: 600;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            nav {
                padding: 1rem 1rem;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }



            .about-intro {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .about-highlights {
                grid-template-columns: 1fr;
            }

            .mission-vision {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .institute-name .main {
                font-size: 1rem;
            }



            .about-section {
                padding: 0 1rem;
            }

            .about-text h2 {
                font-size: 1.5rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
            }
        }

