

        /* Floating Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .float-item {
            position: absolute;
            opacity: 0.04;
            font-size: 2.5rem;
            font-weight: 700;
            animation: float 25s ease-in-out infinite;
        }

        .float-item:nth-child(1) {
            top: 12%;
            left: 4%;
            color: var(--math-color);
            animation-delay: 0s;
        }

        .float-item:nth-child(2) {
            top: 28%;
            right: 6%;
            color: var(--physics-color);
            animation-delay: -5s;
        }

        .float-item:nth-child(3) {
            top: 45%;
            left: 7%;
            color: var(--chemistry-color);
            animation-delay: -10s;
        }

        .float-item:nth-child(4) {
            top: 62%;
            right: 4%;
            color: var(--blue-primary);
            animation-delay: -15s;
        }

        .float-item:nth-child(5) {
            top: 78%;
            left: 5%;
            color: var(--green-primary);
            animation-delay: -20s;
        }

        .float-item:nth-child(6) {
            top: 20%;
            left: 50%;
            color: var(--math-color);
            animation-delay: -8s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-35px) rotate(8deg);
            }

            50% {
                transform: translateY(0) rotate(0deg);
            }

            75% {
                transform: translateY(35px) rotate(-8deg);
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-hero);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            box-shadow: var(--shadow-medium);
        }

        .logo-text {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--navy);
        }

        .logo-text span {
            color: var(--blue-primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-hero);
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--blue-primary);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-hero);
            color: var(--white) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 700 !important;
            box-shadow: var(--shadow-medium);
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-strong) !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--navy);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Page Header */
        .page-header {
            padding: 160px 2rem 100px;
            background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -25%;
            width: 800px;
            height: 800px;
            background: var(--gradient-hero);
            border-radius: 50%;
            opacity: 0.05;
            animation: pulse 12s ease-in-out infinite;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -15%;
            width: 600px;
            height: 600px;
            background: var(--gradient-cta);
            border-radius: 50%;
            opacity: 0.05;
            animation: pulse 10s ease-in-out infinite reverse;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }
        }

        .page-header-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            color: var(--blue-primary);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-soft);
            animation: fadeInUp 0.8s ease forwards;
        }

        .page-title {
            font-family: 'Syne', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.1s;
            opacity: 0;
        }

        .page-title .highlight {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: var(--gray-600);
            line-height: 1.7;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.2s;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Banner */
        .hero-banner {
            padding: 0 2rem;
            margin-top: -50px;
            position: relative;
            z-index: 15;
        }

        .hero-banner-inner {
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .hero-banner-image {
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, var(--blue-primary) 0%, var(--green-primary) 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-illustration {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .faculty-avatars {
            display: flex;
            align-items: center;
        }

        .faculty-avatar-circle {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 4px solid rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: -20px;
            position: relative;
            animation: avatarFloat 4s ease-in-out infinite;
        }

        .faculty-avatar-circle:first-child {
            margin-left: 0;
        }

        .faculty-avatar-circle:nth-child(1) {
            animation-delay: 0s;
            z-index: 5;
        }

        .faculty-avatar-circle:nth-child(2) {
            animation-delay: -1s;
            z-index: 4;
        }

        .faculty-avatar-circle:nth-child(3) {
            animation-delay: -2s;
            z-index: 3;
        }

        .faculty-avatar-circle:nth-child(4) {
            animation-delay: -3s;
            z-index: 2;
        }

        @keyframes avatarFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .avatar-placeholder {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
        }

        .hero-banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
            color: var(--white);
            text-align: center;
        }

        .hero-banner-overlay h2 {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .hero-banner-overlay p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Lead Faculty Section */
        .lead-faculty-section {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--green-light);
            color: var(--green-dark);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        .lead-faculty-card {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 4rem;
            align-items: center;
            background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%);
            border-radius: 40px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .lead-faculty-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: var(--gradient-hero);
            border-radius: 50%;
            opacity: 0.1;
        }

        .lead-photo-wrapper {
            position: relative;
            z-index: 2;
        }

        .lead-photo {
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 30px;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .lead-photo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .lead-photo-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .lead-avatar {
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .lead-avatar::before {
            content: '';
            position: absolute;
            top: 15px;
            width: 80px;
            height: 80px;
            background: #ffd5c8;
            border-radius: 50%;
        }

        .lead-avatar::after {
            content: '';
            position: absolute;
            top: 0;
            width: 70px;
            height: 40px;
            background: #333;
            border-radius: 40px 40px 0 0;
        }

        .lead-avatar-body {
            position: absolute;
            bottom: 0;
            width: 120px;
            height: 70px;
            background: var(--white);
            border-radius: 60px 60px 0 0;
        }

        .lead-name-badge {
            background: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            color: var(--navy);
            box-shadow: var(--shadow-medium);
        }

        .lead-experience-badge {
            position: absolute;
            bottom: -15px;
            right: -15px;
            width: 100px;
            height: 100px;
            background: var(--gradient-cta);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-strong);
            color: var(--white);
            text-align: center;
            z-index: 3;
        }

        .lead-experience-badge .years {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
        }

        .lead-experience-badge .text {
            font-size: 0.7rem;
            font-weight: 600;
        }

        .lead-content {
            position: relative;
            z-index: 2;
        }

        .lead-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            color: var(--blue-primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-soft);
        }

        .lead-name {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .lead-designation {
            font-size: 1.2rem;
            color: var(--blue-primary);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .lead-qualifications {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .qualification-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gray-600);
            box-shadow: var(--shadow-soft);
        }

        .qualification-badge i {
            color: var(--green-primary);
        }

        .lead-bio {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .lead-quote {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 20px;
            border-left: 4px solid var(--gradient-hero);
            border-image: var(--gradient-hero) 1;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-soft);
        }

        .lead-quote p {
            font-style: italic;
            color: var(--gray-600);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .lead-quote cite {
            display: block;
            margin-top: 0.75rem;
            font-style: normal;
            font-weight: 700;
            color: var(--navy);
        }

        .lead-subjects {
            display: flex;
            gap: 1rem;
        }

        .subject-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 15px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .subject-badge.math {
            background: var(--math-light);
            color: var(--math-color);
        }

        .subject-badge.physics {
            background: var(--physics-light);
            color: var(--physics-color);
        }

        .subject-badge.chemistry {
            background: var(--chemistry-light);
            color: var(--chemistry-color);
        }

        /* Faculty Grid Section */
        .faculty-grid-section {
            padding: 6rem 2rem;
            background: var(--off-white);
        }

        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .faculty-card {
            background: var(--white);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            position: relative;
        }

        .faculty-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-strong);
        }

        .faculty-card-image {
            height: 280px;
            position: relative;
            overflow: hidden;
        }

        .faculty-card.math .faculty-card-image {
            background: var(--gradient-math);
        }

        .faculty-card.physics .faculty-card-image {
            background: var(--gradient-physics);
        }

        .faculty-card.chemistry .faculty-card-image {
            background: var(--gradient-chemistry);
        }

        .faculty-card-image::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .faculty-image-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .faculty-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .faculty-avatar {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            position: relative;
        }

        .faculty-avatar::before {
            content: '';
            position: absolute;
            top: 15px;
            width: 60px;
            height: 60px;
            background: #ffd5c8;
            border-radius: 50%;
        }

        .faculty-avatar::after {
            content: '';
            position: absolute;
            top: 5px;
            width: 50px;
            height: 30px;
            background: #333;
            border-radius: 30px 30px 0 0;
        }

        .faculty-avatar-body {
            position: absolute;
            bottom: 0;
            width: 90px;
            height: 50px;
            background: var(--white);
            border-radius: 50px 50px 0 0;
        }

        .subject-icon-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            backdrop-filter: blur(10px);
        }

        .faculty-card-body {
            padding: 2rem;
        }

        .faculty-name {
            font-family: 'Syne', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.25rem;
        }

        .faculty-designation {
            font-size: 0.95rem;
            color: var(--gray-400);
            margin-bottom: 1rem;
        }

        .faculty-card.math .faculty-designation {
            color: var(--math-color);
        }

        .faculty-card.physics .faculty-designation {
            color: var(--physics-color);
        }

        .faculty-card.chemistry .faculty-designation {
            color: var(--chemistry-color);
        }

        .faculty-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: var(--gray-600);
        }

        .meta-item i {
            color: var(--green-primary);
        }

        .faculty-quote {
            font-style: italic;
            color: var(--gray-600);
            font-size: 0.9rem;
            line-height: 1.6;
            padding: 1rem;
            background: var(--off-white);
            border-radius: 12px;
            position: relative;
        }

        .faculty-quote::before {
            content: '"';
            position: absolute;
            top: 5px;
            left: 10px;
            font-size: 2rem;
            color: var(--gray-200);
            font-family: serif;
            line-height: 1;
        }

        /* Hover Overlay */
        .faculty-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.8) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .faculty-card:hover .faculty-card-overlay {
            opacity: 1;
        }

        .overlay-content {
            color: var(--white);
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .faculty-card:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .overlay-achievements {
            list-style: none;
            margin-bottom: 1rem;
        }

        .overlay-achievements li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            padding: 0.4rem 0;
            color: rgba(255, 255, 255, 0.9);
        }

        .overlay-achievements li i {
            color: var(--green-primary);
        }

        .overlay-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: var(--gradient-cta);
            color: var(--white);
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .overlay-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 200, 83, 0.3);
        }

        /* Why Our Faculty Section */
        .why-faculty-section {
            padding: 6rem 2rem;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        .why-faculty-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
        }

        .why-faculty-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .why-faculty-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .why-faculty-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            color: var(--green-primary);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .why-faculty-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .why-faculty-subtitle {
            font-size: 1.1rem;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .why-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .why-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-hero);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--white);
            transition: transform 0.4s ease;
        }

        .why-card:hover .why-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .why-card:nth-child(2) .why-icon {
            background: var(--gradient-cta);
        }

        .why-card:nth-child(3) .why-icon {
            background: var(--gradient-math);
        }

        .why-card:nth-child(4) .why-icon {
            background: var(--gradient-physics);
        }

        .why-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.75rem;
        }

        .why-text {
            font-size: 0.9rem;
            color: var(--gray-400);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 5rem 2rem;
            background: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: var(--blue-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--blue-primary);
        }

        .stat-card:nth-child(2) .stat-icon {
            background: var(--green-light);
            color: var(--green-primary);
        }

        .stat-card:nth-child(3) .stat-icon {
            background: var(--math-light);
            color: var(--math-color);
        }

        .stat-card:nth-child(4) .stat-icon {
            background: var(--physics-light);
            color: var(--physics-color);
        }

        .stat-number {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--gray-600);
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.05;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-text {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-white {
            background: var(--white);
            color: var(--blue-primary);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline-white:hover {
            background: var(--white);
            color: var(--blue-primary);
            transform: translateY(-3px);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-medium);
                gap: 1.5rem;
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .lead-faculty-card {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .lead-photo-wrapper {
                max-width: 350px;
                margin: 0 auto;
            }

            .lead-subjects {
                justify-content: center;
            }

            .faculty-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .lead-name {
                font-size: 2rem;
            }

            .faculty-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero-banner-image {
                height: 280px;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .page-header {
                padding: 140px 1.5rem 80px;
            }

            .page-title {
                font-size: 2rem;
            }

            .lead-faculty-card {
                padding: 2rem;
            }

            .lead-qualifications {
                justify-content: center;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .faculty-avatar-circle {
                width: 70px;
                height: 70px;
            }
        }
    