/* teams.css — extracted from khethopages/teams.html */

/* Critical above-the-fold CSS only */
        body {
            margin: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #ffffff;
            min-height: 100vh;
        }
        
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 999;
            background: rgba(255, 255, 255, 0.95);
            transition: all 0.3s ease;
        }
        
        .hero {
            position: relative;
            overflow: hidden;
            height: 65vh;
            min-height: 420px;
        }

        .hero .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 1;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.6) 100%);
            z-index: 1;
        }

        .hero .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            min-height: 65vh;
            text-align: right;
            color: #ffffff;
            padding: 0 80px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-eyebrow {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 14px;
        }

        .hero .hero-content h1 {
            font-size: 4rem;
            font-weight: 300;
            color: #ffffff;
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.01em;
            line-height: 1.15;
            margin-bottom: 0;
            font-family: 'Inter', sans-serif;
        }

        /* Loading progress bar */
        #page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #2175b9, #60a5fa);
            z-index: 9999;
            transition: width 0.3s ease;
        }

:root {
            --primary-blue: #2175b9;
            --light-blue: #60a5fa;
            --darker-blue: #1a5e9a;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --text-dark: #1e293b;
            --shadow-color: rgba(33, 117, 185, 0.1);
        }
        
        /* ========== DARK MODE VARIABLES ========== */
        body.dark-mode {
            --white: #0f172a;
            --light-gray: #1e293b;
            --text-dark: #f1f5f9;
            --text-medium: #cbd5e1;
            --off-white: #1e293b;
            --border-light: #334155;
            --shadow-color: rgba(0, 0, 0, 0.2);
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #f8fafc;
            color: var(--text-dark);
            min-height: 100vh;
        }
        
        body.dark-mode {
            background: #0f172a !important;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .navbar {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            transition: all 0.3s ease;
            padding: 15px 0;
            border-bottom: 1px solid rgba(33, 117, 185, 0.1);
        }
        
        body.dark-mode .navbar {
            background: rgba(15, 23, 42, 0.95) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 10px 30px rgba(33, 117, 185, 0.1);
        }
        
        body.dark-mode .navbar.scrolled {
            background: rgba(15, 23, 42, 0.98) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            letter-spacing: -0.01em;
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            color: var(--primary-blue) !important;
        }
        
        .team-section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            font-family: 'Inter', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), var(--darker-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-title::after {
            display: none;
        }
        
        .team-subtitle {
            color: var(--text-dark);
            font-size: 1.2rem;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            font-weight: 400;
        }
        
        .team-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            height: 100%;
            box-shadow: 0 2px 20px rgba(33, 117, 185, 0.08);
            position: relative;
            border: 1px solid rgba(33, 117, 185, 0.1);
            display: flex;
            flex-direction: column;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
            z-index: 2;
        }
        
        body.dark-mode .team-card {
            background: #1e293b !important;
            border-color: rgba(255, 255, 255, 0.08) !important;
        }
        


        .team-hover-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 20, 40, 0.92) 0%, rgba(33, 117, 185, 0.45) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 18px;
        }
        
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(33, 117, 185, 0.18);
            border-color: rgba(33, 117, 185, 0.3);
        }
        
        .team-img-container {
            aspect-ratio: 4 / 5;
            height: auto;
            overflow: hidden;
            position: relative;
        }

        .team-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, opacity 0.4s ease;
        }
        
        .team-img-container .hover-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .team-img-container:hover .main-img {
            opacity: 0;
            transform: scale(1.04);
        }
        
        .team-img-container:hover .hover-img {
            opacity: 1;
        }
        

        
        .team-img-container:hover .team-hover-overlay {
            opacity: 1;
        }
        
        .hover-content {
            color: white;
            transform: translateY(10px);
            transition: transform 0.4s ease;
            width: 100%;
        }
        
        .team-img-container:hover .hover-content {
            transform: translateY(0);
        }
        
        .fun-fact {
            font-size: 0.82rem;
            line-height: 1.5;
            margin-bottom: 8px;
            font-style: italic;
            opacity: 0.9;
        }

        .favorite-quote {
            font-size: 0.8rem;
            line-height: 1.5;
            padding: 7px 10px;
            background: rgba(255, 255, 255, 0.1);
            border-left: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 0 4px 4px 0;
            margin-bottom: 0;
        }
        
        .quote-author {
            font-style: normal;
            font-size: 0.7rem;
            opacity: 0.65;
            margin-top: 4px;
            display: block;
        }
        
        .click-hint {
            display: none;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }
        
        .team-card h3 {
            color: var(--text-dark);
            font-weight: 700;
            margin: 18px 0 6px;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
            font-family: 'Inter', sans-serif;
            transition: color 0.25s ease;
            padding: 0 16px;
        }
        
        .team-card:hover h3 {
            color: var(--primary-blue);
        }
        
        .team-card .role {
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary-blue);
            opacity: 0.8;
            margin: 0;
            padding: 0 16px 16px;
            transition: opacity 0.25s ease;
        }
        
        .team-card .social-links {
            padding: 14px 20px;
            display: flex;
            justify-content: center;
            gap: 10px;
            background: transparent;
            border-top: 1px solid rgba(33, 117, 185, 0.08);
            margin-top: auto;
        }
        
        .team-card .social-links a {
            color: #94a3b8;
            font-size: 0.88rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid #e2e8f0;
            background: transparent;
            text-decoration: none;
            transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
        }
        
        .team-card .social-links a:hover {
            color: #fff;
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            transform: translateY(-2px);
        }

        body.dark-mode .team-card .social-links {
            border-top-color: rgba(255, 255, 255, 0.06);
        }

        body.dark-mode .team-card .social-links a {
            color: #64748b;
            border-color: #334155;
        }

        body.dark-mode .team-card h3 {
            color: #f1f5f9;
        }
        
        .fun-title {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            font-size: 2.5rem;
            text-align: center;
            margin: 40px 0;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue), var(--darker-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 8s ease infinite;
        }
        
        .choice-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(33, 117, 185, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
        }
        
        .choice-modal.active {
            display: flex;
        }
        
        .choice-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 90%;
        }
        
        body.dark-mode .choice-container {
            background: var(--light-gray) !important;
        }
        
        .choice-container h3 {
            color: var(--primary-blue);
            margin-bottom: 30px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        
        .choice-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .choice-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 150px;
        }
        
        .choice-btn.profile {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: white;
        }
        
        .choice-btn.video {
            background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
            color: white;
        }
        
        .choice-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(33, 117, 185, 0.3);
        }
        
        .close-choice {
            position: absolute;
            top: 20px;
            right: 25px;
            color: var(--primary-blue);
            font-size: 30px;
            cursor: pointer;
        }
        
        .profile-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(33, 117, 185, 0.95), rgba(26, 94, 154, 0.95));
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(15px);
        }
        
        .profile-modal.active {
            display: flex;
        }
        
        .profile-container {
            background: white;
            border-radius: 25px;
            padding: 0;
            max-width: 900px;
            width: 95%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: perspective(1000px) rotateX(0deg);
            transition: transform 0.6s ease;
        }
        
        body.dark-mode .profile-container {
            background: var(--light-gray) !important;
        }
        
        .profile-container.hologram {
            animation: hologramEffect 3s ease-in-out infinite;
        }
        
        @keyframes hologramEffect {
            0%, 100% { 
                transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
                box-shadow: 0 25px 80px rgba(33, 117, 185, 0.4);
            }
            25% { 
                transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
                box-shadow: 0 30px 90px rgba(96, 165, 250, 0.5);
            }
            50% { 
                transform: perspective(1000px) rotateX(0deg) rotateY(2deg);
                box-shadow: 0 35px 100px rgba(26, 94, 154, 0.6);
            }
            75% { 
                transform: perspective(1000px) rotateX(-2deg) rotateY(0deg);
                box-shadow: 0 30px 90px rgba(96, 165, 250, 0.5);
            }
        }
        
        .profile-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            padding: 40px;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            margin-bottom: 20px;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .profile-content {
            padding: 40px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .profile-section {
            margin-bottom: 25px;
        }
        
        .profile-section h4 {
            color: var(--primary-blue);
            border-bottom: 2px solid var(--light-blue);
            padding-bottom: 8px;
            margin-bottom: 15px;
        }
        
        .close-profile {
            position: absolute;
            top: 20px;
            right: 25px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 10;
        }
        
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .video-modal.active {
            display: flex;
        }
        
        .video-container {
            width: 95%;
            max-width: 1200px;
            max-height: 90vh; 
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-container video {
            width: 100%;
            height: auto;
            max-height: 90vh; 
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(33, 117, 185, 0.3);
            object-fit: contain; 
        }
        
        .close-video {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 35px;
            cursor: pointer;
        }
        
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.98);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .gallery-container {
            width: 95%;
            max-width: 1400px;
            position: relative;
            background: #1a1a1a;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        body.dark-mode .gallery-container {
            background: #0f172a !important;
        }
        
        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
        }
        
        .gallery-title {
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 700;
        }
        
        .close-gallery {
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .close-gallery:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }
        
        .gallery-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            pointer-events: none;
            z-index: 10;
        }
        
        .gallery-control-btn {
            pointer-events: all;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 20px;
        }
        
        .gallery-control-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            max-height: 70vh;
            overflow-y: auto;
            padding: 10px;
            align-items: stretch; 
        }

        .gallery-grid::-webkit-scrollbar {
            width: 8px;
        }

        .gallery-grid::-webkit-scrollbar-track {
            background: #2c2c2c;
            border-radius: 10px;
        }

        body.dark-mode .gallery-grid::-webkit-scrollbar-track {
            background: #1e293b !important;
        }

        .gallery-grid::-webkit-scrollbar-thumb {
            background: #555;
            border-radius: 10px;
        }

        body.dark-mode .gallery-grid::-webkit-scrollbar-thumb {
            background: #475569 !important;
        }

        .gallery-grid::-webkit-scrollbar-thumb:hover {
            background: #777;
        }

        body.dark-mode .gallery-grid::-webkit-scrollbar-thumb:hover {
            background: #64748b !important;
        }

        .gallery-item {
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 20px 15px 15px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        
        .gallery-actions {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .gallery-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .gallery-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .gallery-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.98);
            z-index: 3000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-lightbox.active {
            display: flex;
            opacity: 1;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        
        .lightbox-controls {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .lightbox-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 20px;
        }
        
        .lightbox-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .lightbox-counter {
            position: absolute;
            top: -40px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            font-size: 1.2rem;
        }
        
        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .lightbox-content img {
            animation: zoomIn 0.3s ease;
        }
        
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 15px;
            }
            
            .gallery-item {
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            
            .gallery-item {
                height: 160px;
            }
            
            .gallery-title {
                font-size: 1.5rem;
            }
            
            .gallery-control-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
        
        footer {
            background: #1a1a1a !important;
            color: #e0e0e0;
            padding: 80px 0 0;
            position: relative;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        }

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

        footer h4 {
            color: white !important;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
        }

        footer h4:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-blue);
            border-radius: 2px;
        }

        footer .footer-links a {
            color: #b0b0b0 !important;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            position: relative;
            padding-left: 0;
            transition: color 0.2s ease, padding-left 0.2s ease;
        }

        footer .footer-links a:before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            color: var(--primary-blue);
            transition: opacity 0.2s ease, left 0.2s ease;
        }

        footer .footer-links a:hover {
            color: var(--primary-blue) !important;
            padding-left: 20px;
        }

        footer .footer-links a:hover:before {
            opacity: 1;
            left: 0;
        }

        footer .contact-info {
            color: #b0b0b0 !important;
            line-height: 1.8;
        }

        footer .contact-info i {
            color: var(--primary-blue) !important;
            width: 20px;
            margin-right: 10px;
        }

        footer .footer-bottom {
            border-top: 1px solid #333 !important;
            color: #999 !important;
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        footer .social-links a,
        .social-links a {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            text-decoration: none;
            transition: background 0.25s ease, border-color 0.25s ease,
                        color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        footer .social-links a:hover,
        .social-links a:hover {
            color: #fff;
            transform: translateY(-4px);
            border-color: transparent;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
        }

        .social-links a[aria-label="LinkedIn"]:hover   { background: #0A66C2; }
        .social-links a[aria-label="Twitter"]:hover    { background: #1DA1F2; }
        .social-links a[aria-label="Facebook"]:hover   { background: #1877F2; }
        .social-links a[aria-label="Instagram"]:hover  {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
        .social-links a[aria-label="YouTube"]:hover    { background: #FF0000; }

        .social-links a i {
            position: relative;
            z-index: 1;
        }
        
        .floating-shapes {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            pointer-events: none;
        }
        
        .shape {
            position: absolute;
            opacity: 0.1;
            animation: floatShapes 20s infinite linear;
        }
        
        @keyframes floatShapes {
            0% {
                transform: translateY(100vh) rotate(0deg);
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
            }
        }
        
        .video-fullscreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: black;
            z-index: 3000;
            display: none;
        }
        
        .video-fullscreen.active {
            display: block;
        }
        
        .video-fullscreen video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .close-fullscreen {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 10;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .team-img-container {
                height: 250px;
            }
            
            .fun-title {
                font-size: 1.8rem;
            }
            
            .choice-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .choice-btn {
                width: 200px;
            }
            
            .profile-container {
                width: 98%;
                margin: 10px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .gallery-item {
                height: 150px;
            }
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            box-shadow: 0 1px 20px rgba(0, 102, 204, 0.05);
        }

        body.dark-mode header {
            background: rgba(15, 23, 42, 0.75);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
            backdrop-filter: blur(32px);
            -webkit-backdrop-filter: blur(32px);
        }

        body.dark-mode header.scrolled {
            background: rgba(15, 23, 42, 0.9);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo-box {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 14px;
            box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .logo-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(-45deg);
            transition: all 0.3s ease;
        }

        .logo-box:hover {
            transform: rotate(8deg) scale(1.08);
            box-shadow: 0 8px 30px rgba(0, 102, 204, 0.35);
        }

        .logo-box:hover::before {
            animation: shine 0.6s ease;
        }

        @keyframes shine {
            0% { transform: rotate(-45deg) translateX(-200%); }
            100% { transform: rotate(-45deg) translateX(200%); }
        }

        .logo-box img {
            max-width: 28px;
            height: auto;
            filter: brightness(0) invert(1);
            z-index: 2;
        }

        .brand {
            font-weight: 800;
            font-size: 1.4rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.6px;
        }

        .nav-items {
            display: flex;
            gap: 40px;
        }

        .nav-items a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .nav-items a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .nav-items a:hover, 
        .nav-items a.active {
            color: var(--primary-blue);
        }

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

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        /* ========== DARK MODE TOGGLE BUTTON ========== */
        .dark-mode-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--border-light);
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-dark);
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        body.dark-mode .dark-mode-toggle {
            background: var(--light-gray);
            border-color: var(--primary-blue);
            box-shadow: 0 2px 8px rgba(33, 117, 185, 0.2);
        }

        .dark-mode-toggle:hover {
            transform: scale(1.05);
            border-color: var(--primary-blue);
            box-shadow: 0 4px 12px rgba(33, 117, 185, 0.15);
        }

        .dark-mode-toggle i {
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .dark-mode-toggle .fa-sun {
            position: absolute;
            opacity: 0;
            transform: scale(0.5) rotate(90deg);
        }

        .dark-mode-toggle .fa-moon {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        body.dark-mode .dark-mode-toggle .fa-sun {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        body.dark-mode .dark-mode-toggle .fa-moon {
            opacity: 0;
            transform: scale(0.5) rotate(-90deg);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transition: all 0.3s ease;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-outline:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            cursor: pointer;
            background: none;
            border: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            background: rgba(0, 102, 204, 0.1);
        }

        .hamburger i {
            font-size: 1.5rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(32px);
            -webkit-backdrop-filter: blur(32px);
            z-index: 2000;
            transition: all 0.3s ease;
            padding: 80px 40px 40px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.dark-mode .mobile-menu {
            background: rgba(15, 23, 42, 0.95);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .mobile-menu-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        body.dark-mode .mobile-menu-close {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-close:hover {
            background: var(--primary-blue);
            color: white;
        }

        .mobile-menu-items {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .mobile-menu-items a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        body.dark-mode .mobile-menu-items a {
            color: var(--text-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-items a:hover {
            color: var(--primary-blue);
            padding-left: 16px;
        }

        /* Mobile Dark Mode Toggle */
        .dark-mode-toggle-mobile {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            background: none;
            border: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            cursor: pointer;
        }

        body.dark-mode .dark-mode-toggle-mobile {
            color: var(--text-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dark-mode-toggle-mobile:hover {
            color: var(--primary-blue);
            padding-left: 16px;
        }

        .dark-mode-toggle-mobile i {
            font-size: 1.1rem;
        }

        @media (max-width: 992px) {
            .nav-items {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-items {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .brand {
                font-size: 1.2rem;
            }
            
            .btn {
                padding: 12px 20px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .logo-box {
                width: 40px;
                height: 40px;
            }
            
            .brand {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            
            .mobile-menu {
                max-width: 320px;
                padding: 60px 25px 25px;
            }
            
            .mobile-menu-items a {
                font-size: 1rem;
                padding: 14px 0;
            }
        }

        @media (max-width: 768px) {
            .hero .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero .hero-content {
                padding: 0 20px;
                padding-bottom: 18vh;
                align-items: center;
                text-align: center;
            }

        @media (max-width: 480px) {
            .hero .hero-content h1 {
                font-size: 2rem;
            }
        }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .team-subtitle {
                font-size: 1rem;
            }
            
            .fun-title {
                font-size: 1.8rem;
            }
            
            .team-img-container {
                height: 320px;
            }
            
            .profile-container {
                width: 95%;
                margin: 10px;
            }
            
            .profile-header {
                padding: 30px 20px;
            }
            
            .profile-content {
                padding: 25px;
                max-height: 50vh;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .gallery-item {
                height: 180px;
            }
            
            .choice-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .choice-btn {
                width: 200px;
                margin-bottom: 10px;
            }
            
            .nav-items {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
        

        @media (max-width: 576px) {
            .hero-section {
                height: 70vh;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .team-img-container {
                height: 280px;
            }
            
            .profile-img {
                width: 120px;
                height: 120px;
            }
            
            .profile-header h2 {
                font-size: 1.5rem;
            }
            
            .profile-header h4 {
                font-size: 1rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            
            .gallery-item {
                height: 150px;
            }
            
            .gallery-title {
                font-size: 1.5rem;
            }
            
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer .col-md-4 {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                width: 80%;
                max-width: none;
                padding: 60px 25px 25px;
            }
            
            .mobile-menu-items a {
                font-size: 1rem;
                padding: 12px 0;
            }
        }

        @media (max-width: 768px) {
            .team-section {
                padding: 60px 0;
            }
            
            .team-card {
                margin-bottom: 25px;
            }
        }

        @media (max-width: 768px) {
            .choice-container {
                padding: 30px 20px;
                width: 90%;
            }
            
            .video-container {
                width: 95%;
            }
            
            .close-video {
                top: -40px;
                right: 10px;
                font-size: 30px;
            }
        }

        @media (max-width: 576px) {
            .lightbox-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .lightbox-controls {
                bottom: -50px;
            }
            @media (max-width: 768px) {
            .team-img-container {
                height: auto !important;
                aspect-ratio: 3/4 !important; /* Consistent portrait ratio */
                min-height: 280px;
            }
            
            .team-img-container img {
                height: 100% !important;
                object-fit: cover !important;
                object-position: top center !important;
            }
        }
        }
