/* about.css — extracted from about.html */

: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);
            --background: #f8f9fa;
            --card-bg: #ffffff;
            --border-radius: 12px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Dark mode variables - ONLY ADDITION */
        body.dark-mode {
            --white: #0f172a;
            --light-gray: #1e293b;
            --text-dark: #f1f5f9;
            --background: #0f172a;
            --card-bg: #1e293b;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--background);
            color: var(--text-dark);
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* ========== TEAMS PAGE NAVBAR STYLES ========== */
        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);
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
        }

        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 Styles - ONLY NEW ADDITION */
        .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);
        }

        .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;
            color: var(--text-dark);
        }

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

        .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 rgba(0, 0, 0, 0.1);
            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;
        }

        /* Responsive Breakpoints for Navbar */
        @media (max-width: 992px) {
            .nav-items {
                gap: 30px;
            }
            
            .dark-mode-toggle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

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

        @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;
            }
            
            .dark-mode-toggle {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
        }

        /* ========== HERO SECTION ========== */
        .hero {
            position: relative;
            overflow: hidden;
            height: 20vh;
            min-height: 600px;
        }

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

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 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: 100vh;
            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;
        }

        /* ========== LEADERSHIP SECTION ========== */
        .leadership-section {
            padding: 100px 0;
            background-color: var(--card-bg);
            position: relative;
        }

        .leadership-content {
            display: flex;
            gap: 50px;
            align-items: stretch;
        }

        .leadership-carousel-container {
            flex: 1;
            perspective: 1200px;
            position: relative;
        }

        .leadership-carousel {
            height: 500px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .leadership-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .leadership-slide {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.7s ease;
        }

        .leadership-slide.active {
            opacity: 1;
        }

        .leadership-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: var(--transition);
        }

        .leadership-slide:hover img {
            transform: scale(1.05);
        }

        .leadership-features {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 30px;
        }

        body.dark-mode .leadership-features {
            background: rgba(30, 41, 59, 0.95);
        }

        .leadership-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .leadership-features ul li {
            margin-bottom: 15px;
            padding: 15px 20px;
            background: linear-gradient(135deg, rgba(33, 117, 185, 0.08), rgba(26, 94, 154, 0.08));
            border-radius: 10px;
            border-left: 4px solid var(--primary-blue);
            transition: var(--transition);
            position: relative;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .leadership-features ul li:hover {
            background: linear-gradient(135deg, rgba(33, 117, 185, 0.2), rgba(26, 94, 154, 0.2));
            transform: translateX(8px);
            box-shadow: 0 5px 15px rgba(33, 117, 185, 0.25);
        }

        .leadership-features ul li:before {
            content: '→';
            color: var(--primary-blue);
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .leadership-features ul li:hover:before {
            transform: translateX(3px);
        }

        .leadership-features ul li:last-child {
            margin-bottom: 0;
        }

        .description {
            flex: 1;
            background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,249,250,0.98));
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 25px 70px rgba(0,0,0,0.12);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.25);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        body.dark-mode .description {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
        }

        .description-content {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            margin-bottom: 35px;
        }

        .leader-image {
            flex-shrink: 0;
            position: relative;
        }

        .leader-image img {
            width: 280px;
            height: 350px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(33, 117, 185, 0.3);
            transition: opacity 0.35s ease, transform 0.4s ease, box-shadow 0.4s ease;
        }

        .leader-image img:hover {
            transform: scale(1.03) rotateY(-3deg);
            box-shadow: 0 30px 70px rgba(33, 117, 185, 0.4);
        }

        .description-text {
            flex: 1;
        }

        .description h2 {
            font-size: 2.2rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
        }

        .description h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
            border-radius: 2px;
        }

        .description p {
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .carousel-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .carousel-nav-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 5px 20px rgba(33, 117, 185, 0.4);
            position: relative;
            overflow: hidden;
        }

        .carousel-nav-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(33, 117, 185, 0.5);
        }

        .leader-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 20px;
            text-align: center;
        }

        #leaderName {
            color: var(--primary-blue);
            margin: 0;
            font-size: 1.4rem;
            font-weight: 700;
            transition: var(--transition);
        }

        #leaderTitle {
            color: var(--text-dark);
            margin: 8px 0 0 0;
            font-size: 1rem;
            font-weight: 500;
            transition: var(--transition);
        }

        /* ========== PARTNERSHIPS INTRO SECTION ========== */
        .partnerships-intro-section {
            padding: 100px 0;
            background-color: var(--background);
            position: relative;
        }

        .partnerships-content h2 {
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 30px;
            font-weight: 800;
            position: relative;
        }

        .partnerships-content h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
            border-radius: 3px;
        }

        .partnerships-content h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .partnerships-content p {
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .partnerships-content img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: var(--transition);
        }

        .partnerships-content img:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        /* ========== HASHTAGS SECTION ========== */
        .hashtags {
            overflow: hidden;
            white-space: nowrap;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--darker-blue) 100%);
            position: relative;
        }

        .hashtag-track {
            display: inline-block;
            animation: scrollHashtags 25s linear infinite;
        }

        .hashtags h2 {
            display: inline-block;
            font-size: 2.8rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 700;
            margin: 0 40px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
            transition: var(--transition);
        }

        .hashtags h2:hover {
            color: white;
            transform: scale(1.05);
        }

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

        /* ========== PARTNERSHIPS SECTION ========== */
        .partnerships-section {
            padding: 100px 0;
            background-color: var(--card-bg);
        }

        .blue-box {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--darker-blue) 100%);
            color: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .blue-box h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .blue-box p {
            line-height: 1.7;
            margin-bottom: 40px;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }

        .blue-box button {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 15px 30px;
            cursor: pointer;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            overflow: hidden;
            align-self: flex-start;
        }

        .blue-box button:hover {
            color: var(--primary-blue);
            background: white;
        }

        .partnership-card {
            background: var(--card-bg);
            padding: 35px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
            height: 100%;
        }

        body.dark-mode .partnership-card {
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .partnership-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        body.dark-mode .partnership-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .partnership-card h4 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
        }

        .partnership-card p {
            color: var(--text-dark);
            line-height: 1.6;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        /* ========== FOOTER ========== */
        footer {
            background: #1a1a1a;
            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;
            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-links a {
            color: #b0b0b0;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: var(--transition);
            position: relative;
            padding-left: 0;
        }

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

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

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

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

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

        .footer-bottom {
            border-top: 1px solid #333;
            color: #999;
            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;
        }

        .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;
        }

        .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; }

        /* ========== RESPONSIVE STYLES ========== */
        @media (max-width: 1200px) {
            .leadership-content {
                flex-direction: column;
            }
        }

        @media (max-width: 992px) {
            .description-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .description h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .hero .hero-content {
                align-items: center;
                text-align: center;
                padding: 0 30px;
            }

            .leadership-carousel {
                height: 400px;
            }
            
            .leader-image img {
                width: 240px;
                height: 300px;
            }
            
            .partnerships-content h2 {
                font-size: 2.2rem;
            }
            
            .hashtags h2 {
                font-size: 2rem;
                margin: 0 20px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-legal a {
                margin: 0 10px;
            }
        }

        @media (max-width: 576px) {
            .description {
                padding: 30px 20px;
            }
            
            .leader-image img {
                width: 200px;
                height: 260px;
            }
            
            .carousel-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .hashtags h2 {
                font-size: 1.6rem;
            }
            
            .blue-box {
                padding: 30px 25px;
            }
            
            .blue-box h3 {
                font-size: 1.6rem;
            }
        }
