* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1e3a8a;
            --secondary-blue: #3b82f6;
            --light-blue: #dbeafe;
            --gold: #f59e0b;
            --light-gold: #fef3c7;
            --white: #ffffff;
            --light-grey: #f8fafc;
            --dark-grey: #64748b;
            --text-dark: #1e293b;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* 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;
            padding: 1rem 0;
        }

        .navbar.scrolled {
            background: var(--white);
            box-shadow: var(--shadow);
            padding: 0.8rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a.active {
            color: var(--secondary-blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--secondary-blue);
        }

        .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding-top: 60px;
}

.modal-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    animation: zoomIn 0.3s ease-in-out;
}

.modal-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.1rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.student-photo {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.student-photo img.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
    transition: transform 0.3s ease;
}

.cooperative-card:hover .student-photo img.student-img {
    transform: scale(1.05);
}

        /* Page Title Section */

    

        .page-hero {
            margin-top: 80px;
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--light-blue), var(--light-gold));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="trophy" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="30" fill="none" stroke="%23f59e0b" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23trophy)"/></svg>');
            animation: float 20s infinite linear;
            z-index: 1;
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .page-hero p {
            font-size: 1.3rem;
            color: var(--dark-grey);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* Section Styles */
        .section {
            padding: 5rem 0;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-blue), var(--gold));
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--dark-grey);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Student Awards Section */
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .award-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .award-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--secondary-blue));
        }

        .award-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--light-gold);
        }

        .award-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
            animation: bounce 2s infinite;
        }

        .award-card h4 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .award-date {
            font-size: 0.9rem;
            color: var(--dark-grey);
            margin-bottom: 1rem;
        }

        /* Toppers Section */
        .toppers-section {
            background: var(--light-grey);
        }

        .toppers-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }

        .toppers-table th,
        .toppers-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--light-blue);
        }

        .toppers-table th {
            background: var(--primary-blue);
            color: var(--white);
            font-weight: 600;
        }

        .toppers-table tr {
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-20px);
        }

        .toppers-table tr.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .toppers-table tr:hover {
            background: var(--light-blue);
        }

        .rank-badge {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: var(--gold);
            color: var(--white);
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            font-weight: 600;
        }

        .percentage-counter {
            font-weight: 600;
            color: var(--secondary-blue);
            font-size: 1.1rem;
        }

        /* Cooperative Students Section */
        .cooperative-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .cooperative-card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
        }

        .cooperative-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--secondary-blue));
        }

        .cooperative-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .student-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto 1rem;
            font-size: 3rem;
            color: var(--white);
            transition: transform 0.3s ease;
        }

        .cooperative-card:hover .student-photo {
            transform: scale(1.1);
        }

        .student-info {
            padding: 0 2rem 2rem;
        }

        .student-info h4 {
            font-size: 1.2rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .student-class {
            color: var(--dark-grey);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .student-note {
            font-size: 0.9rem;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .certificate-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: var(--gold);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cooperative-card:hover .certificate-icon {
            opacity: 1;
        }

        /* Group Photo Section */
        .group-photo-section {
            background: var(--light-grey);
            text-align: center;
        }

        .photo-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .photo-container:hover {
            transform: scale(1.02);
        }

        .photo-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--light-blue), var(--light-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--primary-blue);
            font-size: 1.2rem;
            position: relative;
        }

        .photo-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .zoom-hint {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .photo-container:hover .zoom-hint {
            opacity: 1;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            overflow: hidden;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 2001;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--gold);
        }

        /* Footer */
        .footer {
            background: var(--primary-blue);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .footer-section p, .footer-section a {
            color: var(--light-blue);
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--white);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: var(--secondary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--white);
        }

        .social-icons a:hover {
            background: var(--white);
            color: var(--primary-blue);
            transform: scale(1.1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-blue);
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--secondary-blue);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(100px);
            z-index: 1000;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-blue);
            cursor: pointer;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            transition: right 0.3s ease;
            z-index: 1001;
            padding: 5rem 2rem 2rem;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
        }

        .mobile-menu li {
            margin-bottom: 1.5rem;
        }

        .mobile-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--secondary-blue);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes float {
            0% {
                transform: translateX(-50px);
            }
            100% {
                transform: translateX(50px);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

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

            .page-hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .awards-grid,
            .cooperative-grid {
                grid-template-columns: 1fr;
            }

            .toppers-table {
                font-size: 0.9rem;
            }

            .toppers-table th,
            .toppers-table td {
                padding: 0.8rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 2rem;
            }

            .section {
                padding: 3rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            .photo-placeholder {
                height: 250px;
            }

            .awards-grid {
                grid-template-columns: 1fr;
            }

            .cooperative-grid {
                grid-template-columns: 1fr;
            }

            .toppers-table {
                font-size: 0.8rem;
            }
        }

       