
        :root {
            --navy: #0A1931;
            --orange: #FF6B35;
            --white: #FFFFFF;
            --black: #000000;
            --light-gray: #F8F9FA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: var(--navy);
        }

        /* Navbar */
        .navbar {
            background: rgba(10, 25, 49, 0.95) !important;
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: all 0.4s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .navbar-scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 30px rgba(0,0,0,0.3);
            background: rgba(10, 25, 49, 1) !important;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white) !important;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .navbar-brand img {
            height: 40px;
            width: auto;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .navbar-scrolled .navbar-brand img {
            height: 35px;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-brand span {
            color: var(--orange);
        }

        .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 0 !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--orange) !important;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, rgba(10, 25, 49, 0.9), rgba(255, 107, 53, 0.7)),
                        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&h=600&fit=crop&q=80') center/cover;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 76px;
        }

        .page-header h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        .page-header p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Leadership Section */
        .leadership-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            color: var(--navy);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 5px;
            background: var(--orange);
            border-radius: 3px;
        }

        .leader-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            border: 3px solid transparent;
        }

        .leader-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
            border-color: var(--orange);
        }

        .leader-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 350px;
        }

        .leader-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .leader-card:hover .leader-img-wrapper img {
            transform: scale(1.1);
        }

        .leader-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 25, 49, 0.9), transparent);
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: all 0.4s ease;
        }

        .leader-card:hover .leader-overlay {
            transform: translateY(0);
        }

        .leader-social {
            display: flex;
            gap: 10px;
        }

        .leader-social a {
            width: 40px;
            height: 40px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .leader-social a:hover {
            background: var(--white);
            color: var(--orange);
            transform: translateY(-5px);
        }

        .leader-content {
            padding: 30px;
            text-align: center;
        }

        .leader-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .leader-position {
            color: var(--orange);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .leader-bio {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .btn-view-profile {
            background: var(--navy);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            border: 2px solid var(--navy);
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-view-profile:hover {
            background: transparent;
            color: var(--navy);
            transform: translateY(-3px);
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
            color: var(--white);
        }

        .stat-item {
            text-align: center;
            padding: 30px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--orange);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 70px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--orange), var(--navy), var(--orange));
        }

        .footer-title {
            color: var(--orange);
            font-weight: 800;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin: 12px 0;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .footer-link:hover {
            color: var(--orange);
            padding-left: 12px;
        }

        .social-icons {
            margin-top: 25px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .social-icon:hover {
            background: var(--orange);
            border-color: var(--white);
        }

        .social-icon i {
            color: var(--white);
            font-size: 1.2rem;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
