/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure crisp text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

:root {
    /* Brand Colors - Orange and Black Theme */
    --sports-primary: #ff6b35;
    --sports-secondary: #e63946;
    --sports-accent: #ff8c42;
    
    --education-primary: #ff6b35;
    --education-secondary: #e63946;
    --education-accent: #ff8c42;
    
    /* Neutral Colors - Better Contrast */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #374151;
    --dark-gray: #111827;
    --black: #000000;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 60px 0;
    --container-padding: 0 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Responsive breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --large-desktop: 1200px;
    
    /* New Unique Effects */
    --glow-primary: 0 0 5px rgba(255, 107, 53, 0.2);
    --glow-secondary: 0 0 5px rgba(255, 107, 53, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --white: #0a0a0a;
    --light-gray: #1a1a1a;
    --gray: #b0b0b0;
    --dark-gray: #f5f5f5;
    --black: #ffffff;
    --glass-bg: rgba(10, 10, 10, 0.95);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Subtle Animated Background - Much More Stable */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundFloat 30s ease-in-out infinite;
}

[data-theme="dark"] body::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

/* Subtle Floating Particles - Much More Gentle */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, var(--sports-primary), var(--education-primary));
    border-radius: 50%;
    animation: particleFloat 25s linear infinite;
    opacity: 0.3;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 30s; }
.particle:nth-child(2) { left: 20%; animation-delay: 5s; animation-duration: 35s; }
.particle:nth-child(3) { left: 30%; animation-delay: 10s; animation-duration: 28s; }
.particle:nth-child(4) { left: 40%; animation-delay: 15s; animation-duration: 32s; }
.particle:nth-child(5) { left: 50%; animation-delay: 20s; animation-duration: 29s; }
.particle:nth-child(6) { left: 60%; animation-delay: 25s; animation-duration: 34s; }
.particle:nth-child(7) { left: 70%; animation-delay: 30s; animation-duration: 31s; }
.particle:nth-child(8) { left: 80%; animation-delay: 35s; animation-duration: 27s; }
.particle:nth-child(9) { left: 90%; animation-delay: 40s; animation-duration: 33s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    transition: var(--transition);
}

[data-theme="dark"] body {
    color: #e0e0e0;
}

/* Typography with better responsive scaling */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { 
    font-size: clamp(2rem, 6vw, 4rem); 
    line-height: 1.1;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary), var(--sports-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 0.3s ease;
}

h1:hover {
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4));
}

h2 { 
    font-size: clamp(1.75rem, 5vw, 3rem); 
    line-height: 1.2;
}
h3 { 
    font-size: clamp(1.5rem, 4vw, 2rem); 
    line-height: 1.3;
}
h4 { 
    font-size: clamp(1.25rem, 3.5vw, 1.5rem); 
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--gray);
    line-height: 1.6;
}

[data-theme="dark"] p {
    color: #b0b0b0;
}

/* Container with better responsive padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Better spacing for content */
.container > * + * {
    margin-top: 2rem;
}

/* Section Headers with Unique Effects */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    animation: sectionHeaderFloat 16s ease-in-out infinite;
}

@keyframes sectionHeaderFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: black;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    border-radius: 2px;
    transition: box-shadow 0.3s ease;
}

.section-header:hover h2::after {
    box-shadow: 0 0 10px var(--sports-primary);
    animation: headerGlow 1s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { box-shadow: 0 0 10px var(--sports-primary); }
    100% { box-shadow: 0 0 20px var(--education-primary); }
}

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 800;
}

[data-theme="dark"] .section-header h2 {
    color: var(--white);
}

.section-tagline {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--black);
    font-weight: 600;
    line-height: 1.6;
}

[data-theme="dark"] .section-tagline {
    color: var(--white);
}

/* Enhanced Navigation with Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
}

[data-theme="dark"] .navbar {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.9));
}

[data-theme="dark"] .navbar {
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

[data-theme="dark"] .nav-menu {
    background-color: var(--white);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--sports-primary);
    position: relative;
}

.nav-logo i {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    transition: transform 0.3s ease;
}

.nav-logo:hover i {
    transform: scale(1.1);
    animation: logoSpin 0.6s ease-in-out;
}

@keyframes logoSpin {
    0% { transform: scale(1.1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(360deg); }
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sports-primary), var(--education-primary));
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-logo:hover::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    overflow: hidden;
    animation: navLinkFloat 15s ease-in-out infinite;
}

@keyframes navLinkFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-1px); }
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--sports-primary);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sports-primary), var(--education-primary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.theme-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark-gray);
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--sports-primary), var(--education-primary));
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 50%;
}

.theme-toggle:hover::before {
    left: 0;
}

.theme-toggle:hover {
    color: var(--white);
    transform: rotate(180deg);
    animation: themeToggleBounce 0.6s ease-in-out;
}

@keyframes themeToggleBounce {
    0%, 100% { transform: rotate(180deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* Enhanced Hero Section with Unique Effects */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--sports-primary), var(--education-primary), var(--sports-accent)) 1;
    animation: borderGlow 4s ease-in-out infinite alternate;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
}

@keyframes borderGlow {
    0% { border-image-source: linear-gradient(90deg, var(--sports-primary), var(--education-primary), var(--sports-accent)); }
    100% { border-image-source: linear-gradient(90deg, var(--education-primary), var(--sports-accent), var(--sports-primary)); }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
    font-weight: 700;
}

[data-theme="dark"] .hero-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 0.3s ease;
}

.hero-highlight:hover {
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 2rem;
    color: var(--black);
    line-height: 1.6;
    font-weight: 600;
}

[data-theme="dark"] .hero-subtitle {
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    transform: translateY(0);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    animation: ctaButtonFloat 14s ease-in-out infinite;
}

@keyframes ctaButtonFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: buttonWiggle 0.6s ease-in-out;
}

@keyframes buttonWiggle {
    0%, 100% { transform: translateY(-5px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-2deg); }
    75% { transform: translateY(-5px) rotate(2deg); }
}

.cta-sports {
    background: linear-gradient(135deg, var(--sports-primary), var(--sports-secondary));
    color: var(--white);
    box-shadow: var(--glow-primary);
}

.cta-sports:hover {
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
}

.cta-education {
    background: linear-gradient(135deg, var(--education-primary), var(--education-secondary));
    color: var(--white);
    box-shadow: var(--glow-secondary);
}

.cta-education:hover {
    box-shadow: 0 0 5px rgba(42, 157, 143, 0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: heroVisualFloat 6s ease-in-out infinite;
}

@keyframes heroVisualFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-split {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.hero-split::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--sports-primary), var(--education-primary));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.15;
    transition: opacity 0.3s ease;
    filter: blur(20px);
}

.hero-split:hover::before {
    opacity: 0.4;
}

.hero-sports, .hero-education {
    aspect-ratio: 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-sports {
    background: linear-gradient(135deg, var(--sports-primary), var(--sports-secondary));
    transition: transform 0.3s ease;
}

.hero-education {
    background: linear-gradient(135deg, var(--education-primary), var(--education-secondary));
    transition: transform 0.3s ease;
}

.hero-sports:hover,
.hero-education:hover {
    transform: translateY(-5px) scale(1.02);
}

.vr-preview {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.vr-preview i {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.vr-preview:hover i {
    transform: scale(1.1);
}

.vr-preview span {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    position: absolute;
    width: 50%;
    height: 100%;
    opacity: 0.1;
}

.sports-bg {
    left: 0;
    background: linear-gradient(45deg, var(--sports-primary), var(--sports-secondary));
}

.education-bg {
    right: 0;
    background: linear-gradient(45deg, var(--education-primary), var(--education-secondary));
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sports-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vr-headset-animation {
    font-size: 8rem;
    color: var(--sports-primary);
    animation: float 3s ease-in-out infinite;
}

.logo-animation img {
    width: 300px;
    height: 175px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.about-cta {
    margin-top: 2rem;
}

/* Products Section */
.products {
    padding: var(--section-padding);
}

.products-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .products-grid {
        max-width: 600px;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        gap: 2rem;
    }
    
    .product-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    animation: cardPulse 8s ease-in-out infinite;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@keyframes cardPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
}

[data-theme="dark"] .product-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    transition: box-shadow 0.3s ease;
}

.product-card:hover::before {
    box-shadow: 0 0 15px var(--sports-primary);
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.product-icon::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.6s ease;
    opacity: 0;
}

.product-card:hover .product-icon::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.sports-card .product-icon {
    background: linear-gradient(135deg, var(--sports-primary), var(--sports-secondary));
}

.education-card .product-icon {
    background: linear-gradient(135deg, var(--education-primary), var(--education-secondary));
}

.product-tagline {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

[data-theme="dark"] .product-tagline {
    color: var(--white);
}

.product-features {
    list-style: none;
    margin: 2rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
}

[data-theme="dark"] .product-features li {
    color: var(--white);
}

[data-theme="dark"] .product-tagline {
    color: var(--white);
}

.product-features i {
    color: var(--sports-primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.product-features li:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--education-primary);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}

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

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Impact Section */
.impact {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.impact-areas {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.impact-area {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.impact-area i {
    font-size: 1.5rem;
    color: var(--sports-primary);
    margin-top: 0.25rem;
}

.impact-area h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.impact-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    animation: statCardFloat 12s ease-in-out infinite;
}

@keyframes statCardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: statCardBounce 0.6s ease-in-out;
}

@keyframes statCardBounce {
    0%, 100% { transform: translateY(-5px); }
    50% { transform: translateY(-8px); }
}

.stat-card .stat-number {
    font-size: 3rem;
    color: var(--sports-primary);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--gray);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
}


@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .process-steps {
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.25rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}




/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
    background: var(--light-gray);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

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

@media (max-width: 480px) {
    .portfolio-grid {
        gap: 1rem;
    }
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: portfolioFloat 10s ease-in-out infinite;
}

@keyframes portfolioFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.portfolio-item:hover::before {
    transform: translateX(100%);
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover .play-button {
    animation: playButtonPulse 0.6s ease-in-out;
}

@keyframes playButtonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(42, 157, 143, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 2rem;
}

.portfolio-preview h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-preview p {
    opacity: 0.9;
    font-weight: 500;
}

.sports-item .portfolio-preview {
    background: linear-gradient(135deg, var(--sports-primary), var(--sports-secondary));
}

.education-item .portfolio-preview {
    background: linear-gradient(135deg, var(--education-primary), var(--education-secondary));
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.portfolio-item:hover .play-button {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.portfolio-preview h4 {
    margin-bottom: 0.5rem;
}

/* Partners Section */
.partners {
    padding: var(--section-padding);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

.partners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-logo {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo i {
    font-size: 2rem;
    color: var(--sports-primary);
    margin-bottom: 1rem;
    display: block;
}

.looking-partners {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.looking-partners h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.looking-partners p {
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sports-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--sports-primary);
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sports-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    color: var(--white);
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

/* Removed the overlay that was making text appear faded */

.page-header h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    color: #000000 !important;
    color: black !important;
    font-weight: 800;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    z-index: 10;
}

/* Force black color for all page headers */
.page-header h1,
.page-header .page-header h1,
.page-header h1.page-header {
    color: #000000 !important;
}

/* Ultra-specific selector to override any conflicting styles */
.page-header h1,
.page-header > div > h1,
.page-header .container h1,
.page-header section h1,
.page-header div h1 {
    color: #000000 !important;
    color: black !important;
}

.page-subtitle {
    font-size: 1.4rem;
    color: #ffffff !important;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Team Section */
.team {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.team-member h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-member h4 {
    color: var(--sports-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--sports-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Values Section */
.values {
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
}

/* Product Detail Pages */
.product-detail {
    padding: var(--section-padding);
}

.product-detail:nth-child(even) {
    background: var(--light-gray);
}

.product-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.product-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.product-intro h2 {
    color: var(--black);
    margin-bottom: 1rem;
}

.product-tagline {
    color: var(--sports-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
}

.product-features-detailed {
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-item h4 {
    color: var(--black);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--gray);
}

.product-cta {
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 1rem;
    color: var(--gray);
    font-style: italic;
}

/* Technology Section */
.technology {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.tech-item h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.tech-item p {
    color: var(--gray);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    margin: 0;
    color: var(--black);
}

.faq-question i {
    color: var(--sports-primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Form Enhancements */
.contact-form h2,
.contact-info h2 {
    color: var(--black);
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray);
    margin-bottom: 0.25rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--sports-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .mission-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .member-avatar {
        width: 100px;
        height: 100px;
        margin: 0 auto 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-tagline {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-container {
        padding: 1rem 0.5rem;
    }
    
    .about-content {
        padding: 0 0.5rem;
    }
    
    .contact-content {
        padding: 0 0.5rem;
    }
    
    .team-grid {
        padding: 0 0.5rem;
    }
    
    .values-grid {
        padding: 0 0.5rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
        margin: 0 0.25rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
        margin: 0 0.25rem;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .nav-logo img {
        width: 140px;
        height: 45px;
    }
    
    .footer-logo img {
        width: 100px;
        height: 35px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), #2c3e50);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    animation: footerFloat 18s ease-in-out infinite;
}

.footer p {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

@keyframes footerFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-1px); }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sports-primary), transparent);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section span {
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: var(--sports-primary);
}

[data-theme="dark"] .footer-section ul li a {
    color: var(--light-gray);
}

[data-theme="dark"] .footer-section ul li a:hover {
    color: var(--sports-primary);
}

/* Dark mode footer adjustments */
[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #1a1a1a, #2c3e50);
}

[data-theme="dark"] .footer p,
[data-theme="dark"] .footer-logo,
[data-theme="dark"] .footer-section h4,
[data-theme="dark"] .footer-section span {
    color: var(--light-gray);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sports-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--sports-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #000000;
    color: #000000;
}

[data-theme="dark"] .footer-bottom {
    color: #000000;
    border-top-color: #000000;
}

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

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

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

/* Scroll Animations */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: var(--transition-slow);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: var(--transition-slow);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-content,
    .impact-content,
    .partners-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .container-padding {
        padding: 0 16px;
    }
    
    /* Mobile Typography */
    h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
    h2 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
    h3 { font-size: clamp(1.5rem, 6vw, 1.75rem); }
    h4 { font-size: clamp(1.25rem, 5vw, 1.5rem); }
    
    /* Mobile Spacing */
    .product-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-container {
        padding: 0 12px;
        gap: 1.5rem;
    }
    
    .hero-split {
        max-width: 250px;
        gap: 0.75rem;
    }
    
    .vr-preview i {
        font-size: 2rem;
    }
    
    .vr-preview span {
        font-size: 0.9rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .nav-container {
        padding: 0.75rem;
    }
    
    .cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 30px 0;
    }
    
    .container-padding {
        padding: 0 12px;
    }
    
    /* Ultra-small devices */
    .hero-cta {
        gap: 0.75rem;
    }
    
    .cta-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .product-card {
        padding: 1.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
}

/* Enhanced Touch Support for Mobile */
@media (hover: none) and (pointer: coarse) {
    .cta-btn:hover,
    .btn:hover,
    .portfolio-item:hover,
    .product-card:hover,
    .step:hover .step-icon,
    .stat-card:hover,
    .team-member:hover,
    .value-card:hover,
    .feature-item:hover,
    .tech-item:hover {
        transform: none;
    }
    
    .cta-btn:active,
    .btn:active {
        transform: translateY(-1px);
    }
    
    .portfolio-item:active,
    .product-card:active,
    .stat-card:active,
    .team-member:active,
    .value-card:active,
    .feature-item:active,
    .tech-item:active {
        transform: scale(0.98);
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .section-padding {
        padding: 30px 0;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background {
        background-attachment: fixed;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-cta,
    .contact-form,
    .footer,
    .nav-toggle,
    .theme-toggle {
        display: none;
    }
    
    body {
        color: black;
        background: white;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-padding {
        padding: 1rem 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--sports-primary);
    outline-offset: 2px;
}

/* Enhanced animations and effects */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideInFromBottom 0.8s ease-out;
}

/* Beautiful gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced card shadows */
.enhanced-shadow {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.enhanced-shadow:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Additional Responsive Enhancements */
@media (max-width: 1024px) {
    .hero-split {
        max-width: 350px;
    }
    
    .product-card {
        padding: 2.5rem;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Enhanced Mobile Navigation */
.nav-menu {
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.active {
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 107, 53, 0.1);
        color: var(--sports-primary);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Better mobile menu spacing */
    .nav-menu {
        padding: 1rem 0;
    }
    
    .nav-menu .nav-link {
        margin: 0.5rem 0;
        border-radius: 8px;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

/* Responsive Body Classes */
body.mobile .hero-container {
    gap: 1.5rem;
}

body.tablet .hero-container {
    gap: 2rem;
}

body.desktop .hero-container {
    gap: 3rem;
}

body.large-desktop .hero-container {
    gap: 4rem;
}

/* Touch Device Optimizations */
body.touch-device .cta-btn,
body.touch-device .btn {
    min-height: 44px; /* iOS minimum touch target */
}

body.touch-device .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .section-padding {
        padding: 25px 0;
    }
}

/* Ultra-wide Screen Support */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-container {
        gap: 5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cta-btn,
    .btn {
        border: 2px solid currentColor;
    }
    
    .nav-link::after {
        height: 3px;
    }
    
    .section-header h2::after {
        height: 4px;
    }
}

/* Focus Visible for Better Accessibility */
.nav-link:focus-visible,
.cta-btn:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--sports-primary);
    outline-offset: 2px;
}

/* Smooth Scrolling for All Devices */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Removed excessive dynamic cursor for cleaner experience */

/* Enhanced Scroll Animations - More Subtle */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.animate-child.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle Card Effects - No More Excessive Floating */
.floating-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Removed excessive shimmer effects for cleaner look */

/* Enhanced Button States */
.cta-btn:active,
.btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Subtle but visible improvements */
.product-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

/* Enhanced card content */
.product-card h3 {
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.product-tagline {
    color: var(--sports-primary);
    font-weight: 600;
    font-style: italic;
}

[data-theme="dark"] .product-tagline {
    color: #ff8c42;
}

/* Enhanced navigation hover effects */
.nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 25px;
}

/* Subtle section transitions */
section {
    transition: opacity 0.3s ease;
}

/* Enhanced focus states for accessibility */
.cta-btn:focus,
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--sports-primary);
    outline-offset: 2px;
}

/* Enhanced overall spacing and typography */
.section-header {
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced button styles */
.btn {
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Removed excessive magnetic effects for cleaner look */

/* Removed excessive glitch effects for cleaner look */

/* Removed excessive neon effects for cleaner look */

/* Removed excessive 3D effects for cleaner look */

/* Removed excessive liquid button effects for cleaner look */

/* Logo Animation Video Overlay */
.logo-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.logo-video-overlay.fade-out {
    opacity: 0;
}

.logo-video-overlay.hidden {
    display: none;
}

#logo-video {
    max-width: 800px;
    max-height: 800px;
    width: 80vw;
    height: 80vh;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    object-fit: contain;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

#logo-video.move-to-nav {
    max-width: 180px;
    max-height: 60px;
    width: 180px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 20px;
    left: 24px;
    z-index: 10001;
}

/* Hide the original nav logo initially */
.nav-logo {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.nav-logo.show {
    opacity: 1;
}

/* Logo image in navigation */
        .nav-logo img {
            width: 180px;
            height: 60px;
            border-radius: 10px;
            object-fit: cover;
        }

        /* Footer logo */
        .footer-logo img {
            width: 120px;
            height: 40px;
            border-radius: 8px;
            margin-bottom: 15px;
            object-fit: cover;
        }

/* Team Section */
.team {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(42, 157, 143, 0.05));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--sports-primary), var(--education-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member h3 {
    color: var(--sports-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-member h4 {
    color: var(--education-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.team-member p {
    color: var(--gray);
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.05), rgba(255, 107, 53, 0.05));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(42, 157, 143, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--education-primary), var(--sports-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.value-card h3 {
    color: var(--education-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}
.skip-intro { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, 0.7); font-size: 14px; cursor: pointer; padding: 10px 20px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 20px; background: rgba(0, 0, 0, 0.5); transition: all 0.3s ease; z-index: 10001; } .skip-intro:hover { color: white; border-color: rgba(255, 255, 255, 0.6); background: rgba(0, 0, 0, 0.7); }

/* Mobile Touch Improvements */
@media (max-width: 768px) {
    /* Better touch targets */
    .btn, .nav-link, .nav-toggle, .theme-toggle, .portfolio-item, .faq-question {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }
    
    /* Fix button interactions on mobile */
    .btn {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 24px;
        font-size: 16px;
        line-height: 1.2;
    }
    
    .btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .btn:hover {
        transform: none; /* Disable hover effects on mobile */
    }
    
    /* Fix text overlap issues */
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-tagline {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.4;
    }
    
    /* Fix product card layout */
    .product-card {
        margin: 0 auto;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .product-card h3 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .product-card p {
        font-size: clamp(0.9rem, 3vw, 1rem);
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    /* Fix portfolio grid */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .portfolio-item {
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Fix impact stats layout */
    .impact-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }
    
    .stat-card {
        max-width: 200px;
        margin: 0 auto;
    }
}
    
    /* Improve mobile menu touch */
    .nav-menu .nav-link {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .nav-menu .nav-link:active {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    /* Fix portfolio item touch */
    .portfolio-item {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .portfolio-item:active {
        transform: scale(0.98);
    }
    
    /* Fix FAQ touch */
    .faq-question {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .faq-question:active {
        background-color: rgba(0, 0, 0, 0.05);
    }
}

/* Force black text for page header titles */
.page-header h1 {
    color: black !important;
    background-color: white !important;
    padding: 10px !important;
    border-radius: 5px !important;
    -webkit-text-fill-color: black !important; /* override gradient */
    background: none !important; /* remove gradient */
}

/* Contact page logos */
.contact-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--education-primary);
    transition: all 0.3s ease;
}

.contact-logo:hover {
    transform: scale(1.1);
    border-color: var(--sports-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-right: 1rem;
}

/* Ensure navigation logo is always visible */
.nav-logo {
    opacity: 1 !important;
    transition: opacity 0.5s ease-in-out;
}

.nav-logo img {
    width: 180px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

/* Dark mode: Force ALL text to be pure white for maximum visibility */
[data-theme="dark"] * {
    color: white !important;
}

[data-theme="dark"] .page-header h1 {
    color: white !important;
    background-color: transparent !important;
    padding: 10px !important;
    border-radius: 5px !important;
    -webkit-text-fill-color: white !important;
}

/* Force section headings to be white in dark mode */
[data-theme="dark"] .section-header h2,
[data-theme="dark"] .section-header h3,
[data-theme="dark"] .section-header h4,
[data-theme="dark"] .section-header h5,
[data-theme="dark"] .section-header h6 {
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-shadow: none !important;
}

[data-theme="dark"] .technology h2,
[data-theme="dark"] .technology h3,
[data-theme="dark"] .technology h4 {
    color: #f0f0f0 !important;
}

[data-theme="dark"] .technology p {
    color: #d0d0d0 !important;
}

[data-theme="dark"] .social-impact h2,
[data-theme="dark"] .social-impact h3,
[data-theme="dark"] .social-impact h4 {
    color: #f0f0f0 !important;
}

[data-theme="dark"] .social-impact p {
    color: #d0d0d0 !important;
}


[data-theme="dark"] .portfolio h2,
[data-theme="dark"] .portfolio h3,
[data-theme="dark"] .portfolio h4 {
    color: #f0f0f0 !important;
}

[data-theme="dark"] .portfolio p {
    color: #d0d0d0 !important;
}

[data-theme="dark"] .contact h2,
[data-theme="dark"] .contact h3,
[data-theme="dark"] .contact h4 {
    color: #f0f0f0 !important;
}

[data-theme="dark"] .contact p {
    color: #d0d0d0 !important;
}

[data-theme="dark"] .contact-item h4 {
    color: #f0f0f0 !important;
}

[data-theme="dark"] .contact-item p {
    color: #d0d0d0 !important;
}

[data-theme="dark"] .form-group label {
    color: #f0f0f0 !important;
}

[data-theme="dark"] .checkbox-label {
    color: #d0d0d0 !important;
}
