
        /* ===== CSS Variables ===== */
        :root {
            --primary-blue: #3b82f6;
            --primary-purple: #8b5cf6;
            --accent-cyan: #06b6d4;
            --text-dark: #1f2937;
            --text-gray: #6b7280;
            --bg-white: #ffffff;
            --bg-light: #f9fafb;
            --bg-card: #ffffff;
        }

        * {
            font-family: 'Inter', sans-serif !important;
        }

        body {
            font-family: 'Inter', sans-serif;
            padding-top: 80px;
            overflow-y: scroll;
        }

        @media (max-width: 768px) {
            body {
                padding-top: 80px;
            }
        }

        /* Ensure all text elements use Inter */
        h1, h2, h3, h4, h5, h6, p, a, span, div, li, ul, ol, button, input, textarea, select, label, .text-gray-900, .text-gray-700, .text-gray-600 {
            font-family: 'Inter', sans-serif !important;
        }

        /* ===== Sticky Navbar ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            min-height: 80px;
            max-height: 80px;
            padding: 0 2rem;
            z-index: 1000;
            background: #15181f; /* deep navy to complement white logo tile */
            transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
            border-bottom: 1px solid rgba(15, 23, 42, 0.9);
            display: flex;
            align-items: center;
            box-sizing: border-box;
        }

        .navbar.scrolled {
            background: #303a63;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
            border-bottom: 1px solid rgba(15, 23, 42, 1);
        }

        .nav-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            height: 65px;
        }

        .logo img {
            height: 65px;
            width: auto;
            display: block;
        }

        .logo-tagline {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(248, 250, 252, 0.9);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
        }

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

        .nav-link {
            position: relative;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            padding: 0.5rem 1.25rem;
            border: 2px solid transparent;
            border-radius: 25px;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: inline-block;
            line-height: 1.5;
            min-height: 40px;
            box-sizing: border-box;
        }

        /* 3D Hover Effect on Nav Links */
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover::before {
            display: none;
        }

        .nav-link:hover {
            color: #ffffff;
            border-color: rgba(59, 130, 246, 0.5);
            background: rgba(59, 130, 246, 0.2);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
        }

        .nav-link.active {
            color: #ffffff;
            border-color: rgba(59, 130, 246, 0.6);
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .nav-link.active::before {
            display: none;
        }

        .cta-button {
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border: none;
            border-radius: 50px;
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            perspective: 1000px;
        }

        .cta-button:hover {
            transform: translateY(-3px) translateZ(20px) scale(1.05);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            color: #ffffff;
            transform: scale(1.1);
        }

        .mobile-menu-btn .hamburger-icon,
        .mobile-menu-btn .close-icon {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active .hamburger-icon {
            display: none;
        }

        .mobile-menu-btn.active .close-icon {
            display: inline-block;
        }

        /* Hide close button on desktop */
        .mobile-menu-close {
            display: none;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
                backdrop-filter: blur(30px);
                -webkit-backdrop-filter: blur(30px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 2rem;
                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
                z-index: 999;
                gap: 2rem;
                overflow-y: auto;
            }

            .mobile-menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                background: rgba(255, 255, 255, 0.1);
                border: 2px solid rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 28px;
                cursor: pointer;
                z-index: 10000;
                transition: all 0.3s ease;
                opacity: 0;
                pointer-events: none;
            }

            .mobile-menu-close:hover {
                background: rgba(255, 255, 255, 0.2);
                border-color: rgba(255, 255, 255, 0.4);
                transform: scale(1.1) rotate(90deg);
            }

            .nav-links.active .mobile-menu-close {
                opacity: 1;
                pointer-events: auto;
            }

            .nav-links.active {
                transform: translateX(0);
            }

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

            .nav-link {
                display: block;
                width: 100%;
                padding: 1rem 2rem;
                font-size: 1.1rem;
                text-align: center;
                border-radius: 12px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem 0;
            }

            .card {
                padding: 2rem 1.5rem;
                width: 100%;
                max-width: 100%;
                margin: 0;
            }

            .section {
                padding: 4rem 1rem;
            }

            .pt-32 {
                padding-top: 6rem;
            }

            .pb-16 {
                padding-bottom: 3rem;
            }

            .py-20 {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }

        @media (max-width: 480px) {
            .cards-grid {
                gap: 1.25rem;
                padding: 1rem 0.5rem;
            }

            .card {
                padding: 1.75rem 1.25rem;
            }
        }

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

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-animate {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .section-animate {
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .text-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .text-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .card-animate {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-animate.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .card-animate:nth-child(1) { transition-delay: 0.1s; }
        .card-animate:nth-child(2) { transition-delay: 0.2s; }
        .card-animate:nth-child(3) { transition-delay: 0.3s; }
        .card-animate:nth-child(4) { transition-delay: 0.4s; }
        .card-animate:nth-child(5) { transition-delay: 0.5s; }
        .card-animate:nth-child(6) { transition-delay: 0.6s; }

        /* ===== Footer ===== */
        .footer {
            background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
            color: #e5e7eb;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .footer-section p {
            color: #e5e7eb;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #60a5fa, #a78bfa, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
            display: block;
            text-decoration: none;
        }

        .footer-tagline {
            color: #60a5fa;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #e5e7eb;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #60a5fa;
            transform: translateX(5px);
        }

        .footer-contact-info {
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

        .footer-contact-info strong {
            color: #ffffff;
            font-weight: 600;
        }

        .footer-hours {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #9ca3af;
        }

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

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #60a5fa;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #e5e7eb;
            margin: 0;
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: #e5e7eb;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #60a5fa;
        }

        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        /* ===== Team Section Styles ===== */
        .team-section {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .team-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(50px) scale(0.95);
        }

        .team-card.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover::before {
            opacity: 1;
        }

        .team-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(59, 130, 246, 0.2);
        }

        .team-image-container {
            width: 140px;
            height: 140px;
            margin: 0 auto 1.5rem;
            position: relative;
            overflow: hidden;
            border-radius: 50%;
            border: 4px solid rgba(59, 130, 246, 0.1);
            transition: all 0.4s ease;
        }

        .team-card:hover .team-image-container {
            border-color: rgba(59, 130, 246, 0.3);
            transform: scale(1.05);
        }

        .team-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .team-card:hover .team-image {
            transform: scale(1.1);
        }

        .team-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            letter-spacing: -0.3px;
        }

        .team-role {
            font-size: 0.95rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        /* ===== Leadership Section ===== */
        .leadership-section {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-heading h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .section-heading p {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            display: block;
        }


        .leadership-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(50px) scale(0.95);
        }

        .leadership-card.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .leadership-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .leadership-card:hover::before {
            opacity: 1;
        }

        .leadership-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .leadership-image-container {
            width: 160px;
            height: 160px;
            margin: 0 auto 1.5rem;
            position: relative;
            overflow: hidden;
            border-radius: 50%;
            border: 5px solid rgba(59, 130, 246, 0.15);
            transition: all 0.4s ease;
        }

        .leadership-card:hover .leadership-image-container {
            border-color: rgba(59, 130, 246, 0.4);
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .leadership-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .leadership-card:hover .leadership-image {
            transform: scale(1.1);
        }

        .leadership-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            letter-spacing: -0.3px;
        }

        .leadership-role {
            font-size: 1rem;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

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

        .team-card:nth-child(1) { transition-delay: 0.1s; }
        .team-card:nth-child(2) { transition-delay: 0.15s; }
        .team-card:nth-child(3) { transition-delay: 0.2s; }
        .team-card:nth-child(4) { transition-delay: 0.25s; }
        .team-card:nth-child(5) { transition-delay: 0.3s; }
        .team-card:nth-child(6) { transition-delay: 0.35s; }
        .team-card:nth-child(7) { transition-delay: 0.4s; }
        .team-card:nth-child(8) { transition-delay: 0.45s; }
        .team-card:nth-child(9) { transition-delay: 0.5s; }
        .team-card:nth-child(10) { transition-delay: 0.55s; }

        .leadership-card:nth-child(1) { transition-delay: 0.1s; }
        .leadership-card:nth-child(2) { transition-delay: 0.2s; }
        .leadership-card:nth-child(3) { transition-delay: 0.3s; }

        @media (max-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .leadership-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

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

            .team-card {
                padding: 1.5rem;
            }

            .team-image-container {
                width: 120px;
                height: 120px;
            }
        }

        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
    