/* Skip to Content Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary-color);
            color: var(--white);
            padding: 8px 16px;
            z-index: 10000;
            text-decoration: none;
            transition: top 0.3s;
        }
        
        .skip-link:focus {
            top: 0;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
        }

        :root {
            /* Theme: Royal Blue / White / Black */
            --primary-color: #4169E1; /* RoyalBlue */
            --primary-dark: #000000;  /* Black for hovers */
            --secondary-color: #4169E1; /* Same accent */
            --text-dark: #000000;     /* Black */
            --text-medium: #000000;   /* Black */
            --text-light: #000000;    /* Black */
            --background-light: #ffffff; /* White */
            --white: #ffffff;
            --border-color: #000000;  /* Black */
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
            --shadow-md: 0 2px 8px rgba(0,0,0,0.06), 0 6px 20px rgba(0,0,0,0.06);
            --radius: 12px;
            --container-max: 1200px;
            --space-section: 80px;
            /* Team image default heights */
            --team-img-h-desktop: 260px;
            --team-img-h-tablet: 220px;
            --team-img-h-mobile: 200px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Global media defaults: make images/videos responsive and avoid overflow */
        img, video {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        body {
            font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            line-height: 1.65;
            color: var(--text-dark);
            background-color: var(--background-light); /* Off-White */
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }
        
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Navigation Styles */
        .navigation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
        }
        
        .nav-container {
            width: 100%;
        }
        
        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
        }
        
        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
        }
        
        .logo-img {
            height: 40px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-weight: 700;
            font-size: 20px;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .nav-button {
            padding: 8px 16px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-button:hover, .nav-button:focus-visible, .nav-button.active {
            background-color: rgba(0, 102, 255, 0.08);
            color: var(--primary-color);
        }
        
        .contact-btn {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        
        .contact-btn:hover, .contact-btn:focus-visible {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
        }
        
        .mobile-menu-btn {
            display: none;
        }
        
        .mobile-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
        }
        
        .mobile-menu {
            display: none;
            background-color: var(--white);
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .mobile-nav-button {
            padding: 12px 16px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-button:hover, .mobile-nav-button.active {
            background-color: rgba(0, 82, 204, 0.1);
            color: var(--primary-color);
        }
        
        .mobile-contact-btn {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            margin-top: 10px;
        }
        
        /* Mobile Menu Styles */
        .mobile-mega-menu {
            display: none;
            padding-left: 20px;
            margin-top: 10px;
        }
        
        .mobile-mega-menu.active {
            display: block;
        }
        
        .mobile-mega-menu-links {
            list-style: none;
        }
        
        .mobile-mega-menu-links li {
            margin-bottom: 10px;
        }
        
        .mobile-mega-menu-links a {
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 8px 0;
        }
        
        .mobile-mega-menu-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 60vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero-title {
            font-size: clamp(2.2rem, 3.5vw + 1rem, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            color: var(--secondary-color);
        }
        
        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        
        /* About Us Section */
        .about-section {
            padding: 80px 0;
            background-color: var(--background-light);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .section-title {
            font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
            font-weight: 700;
            margin-bottom: 26px;
            letter-spacing: -0.01em;
        }
        
        .accent-text {
            color: var(--primary-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--text-light);
        }
        
        .about-text p.italic {
            font-style: italic;
            color: var(--text-dark);
            font-weight: 500;
        }
        
        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .about-video {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            display: block;
        }
        
        /* Statistics Section */
        .stats-section {
            padding: 60px 0;
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Our Team Section */
        .team-section {
            padding: 80px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .team-card {
            background-color: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.10);
        }
        
        .team-image {
            overflow: hidden;
            background-color: var(--white);
        }
        
        .team-image img {
            width: 100%;
            height: auto;
            object-fit: contain; /* Show full image without cropping */
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.05);
        }
        
        .team-content {
            padding: 25px;
            text-align: center;
        }
        
        .team-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .team-position {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .team-description {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .team-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--background-light);
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .team-social a:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        /* Our Mission Section */
        .mission-section {
            padding: 80px 0;
            background-color: var(--background-light);
        }
        
        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .mission-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--text-light);
        }
        
        .mission-text p.large-text {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .mission-values {
            margin-top: 40px;
        }
        
        .value-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(0, 82, 204, 0.1);
            color: var(--primary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .value-content h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .value-content p {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .mission-video {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .mission-video-element {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            display: block;
        }
        
        /* Our Journey Section */
        .journey-section {
            padding: 80px 0;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        
        .timeline-item {
            position: relative;
            width: 50%;
            margin-bottom: 50px;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 70px;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 70px;
        }
        
        /* Timeline hover effect */
        .timeline-content {
            padding: 20px 30px;
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
        }
        
        .timeline-date {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .timeline-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .timeline-description {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .timeline-item::after {
            display: none; /* Hide circular markers; we'll use icons inside cards */
        }
        
        .timeline-item:nth-child(odd)::after {
            right: -10px; /* no-op with display none */
        }
        
        .timeline-item:nth-child(even)::after {
            left: -10px; /* no-op with display none */
        }

        /* Timeline icon inside the card */
        .timeline-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(0, 102, 255, 0.1);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 12px;
        }
        
        /* Partners Section - NEW CAROUSEL STYLES */
        .partners-section {
            padding: 80px 0;
            background-color: var(--background-light);
            text-align: center;
            overflow: hidden;
            position: relative;
        }
        
        .partners-container {
            width: 100%;
            padding: 40px 0;
            position: relative;
        }
        
        .partners-track {
            display: flex;
            animation: scroll 30s linear infinite;
            width: max-content;
        }
        
        .partner-item {
            flex: 0 0 auto;
            width: 200px;
            margin: 0 30px;
            text-align: center;
            transition: transform 0.3s ease, opacity 0.3s ease;
            display: block;
            text-decoration: none;
            color: inherit;
        }
        
        .partner-item:hover {
            transform: translateY(-4px);
        }
        
        .partner-item:focus-visible {
            outline: 2px solid var(--primary-color);
            outline-offset: 4px;
            border-radius: 8px;
        }
        
        .partner-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .partner-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: none !important;
        }
        
        .partner-name {
            font-weight: 500;
            color: var(--text-dark);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* YouTube Video Carousel Section */
        .youtube-section {
            padding: 80px 0;
            background-color: var(--background-light);
            text-align: center;
            position: relative;
        }

        .youtube-header {
            margin-bottom: 50px;
        }

        .youtube-description {
            max-width: 700px;
            margin: 20px auto 0;
            color: var(--text-light);
            line-height: 1.6;
        }

        .youtube-channel-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            padding: 12px 24px;
            background-color: #FF0000;
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .youtube-channel-link:hover {
            background-color: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
        }

        .youtube-carousel {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }

        .youtube-track {
            display: flex;
            gap: 30px;
            animation: youtube-scroll 40s linear infinite;
            width: max-content;
        }

        .youtube-track:hover {
            animation-play-state: paused;
        }

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

        .youtube-video-card {
            flex: 0 0 auto;
            width: 380px;
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .youtube-video-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .youtube-thumbnail {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background-color: #f0f0f0;
            overflow: hidden;
        }

        .youtube-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .youtube-video-card:hover .youtube-thumbnail img {
            transform: scale(1.05);
        }

        .youtube-play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255, 0, 0, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }

        .youtube-video-card:hover .youtube-play-overlay {
            background-color: #FF0000;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .youtube-video-info {
            padding: 20px;
            text-align: left;
        }

        .youtube-video-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .youtube-video-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .youtube-video-meta i {
            color: var(--primary-color);
        }

        /* Locations Section */
        .locations-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .section-subtitle {
            max-width: 700px;
            margin: 0 auto 50px;
            color: var(--text-medium);
            font-size: 1.1rem;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .location-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
            padding: 30px;
            text-align: center;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .location-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(65, 105, 225, 0.15);
        }

        .location-card.active {
            border-color: var(--primary-color);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: var(--white);
        }

        .location-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: var(--background-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .location-card:hover .location-icon {
            background: var(--primary-color);
            color: var(--white);
        }

        .location-card.active .location-icon {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .location-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .location-card p {
            color: var(--text-medium);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .location-card.active p {
            color: rgba(255, 255, 255, 0.9);
        }

        .location-arrow {
            position: absolute;
            top: 15px;
            right: 15px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: var(--primary-color);
        }

        .location-card:hover .location-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        .location-card.active .location-arrow {
            opacity: 1;
            color: var(--white);
        }

        /* Footer Section */
        .footer-section {
            background-color: #1a1a1a;
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .footer-logo img {
            height: 40px;
            width: auto;
        }
        
        .footer-description {
            color: #ccc;
            line-height: 1.6;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #333;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover, .social-link:focus-visible {
            background-color: var(--primary-color);
            transform: translateY(-2px);
            text-decoration: none;
        }
        
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--white);
        }
        
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #ccc;
        }
        
        .contact-item i {
            color: var(--primary-color);
        }
        
        .footer-newsletter h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--white);
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 6px;
            background-color: #333;
            color: var(--white);
        }
        
        .newsletter-form button {
            padding: 12px 20px;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--primary-dark);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 20px;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            color: #ccc;
        }
        
        .footer-legal {
            display: flex;
            gap: 20px;
        }
        
        .footer-legal a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: var(--white);
        }
        
        /* Support Links in Footer */
        .support-links {
            margin-top: 15px;
        }
        
        .support-links a {
            color: #ccc;
            text-decoration: none;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        
        .support-links a:hover {
            color: var(--white);
        }
        
        /* Smooth scroll for anchor links */
        html {
            scroll-behavior: smooth;
        }
        
        /* Animation Classes */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Accessibility and motion */
        :focus-visible {
            outline: 2px solid rgba(0,102,255,0.5);
            outline-offset: 2px;
            border-radius: 6px;
        }
        
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
            
            html {
                scroll-behavior: auto !important;
            }
        }
        
        /* Text center utility class */
        .text-center {
            text-align: center;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .about-grid,
            .mission-grid {
                grid-template-columns: 1fr;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .team-image {
                height: auto;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item:nth-child(odd)::after,
            .timeline-item:nth-child(even)::after {
                left: 21px;
            }
            
            /* Partners carousel adjustments */
            .partner-item {
                width: 180px;
                margin: 0 20px;
            }

            /* YouTube carousel adjustments */
            .youtube-video-card {
                width: 320px;
            }

            .youtube-carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .youtube-carousel-btn.prev {
                left: -15px;
            }

            .youtube-carousel-btn.next {
                right: -15px;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-legal {
                justify-content: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            .team-image {
                height: auto;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            /* Partners carousel adjustments */
            .partner-item {
                width: 150px;
                margin: 0 15px;
            }
            
            .partner-logo {
                height: 80px;
            }
            
            .back-to-top {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            /* Partners carousel adjustments */
            .partner-item {
                width: 120px;
                margin: 0 10px;
            }
            
            .partner-logo {
                height: 60px;
            }
            
            .back-to-top {
                bottom: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
