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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #0a0a0a;
    color: #ffffff;
}

body.dark-mode .header {
    background: #000000 !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .header.scrolled {
    background: #000000 !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Comprehensive fix for header background in dark mode - more specific targeting */
body.dark-mode .header,
body.dark-mode .header.scrolled {
    background: #000000 !important;
    background-image: none !important;
    background-color: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Ensure no gradients show through - only target header pseudo-elements */
body.dark-mode .header::before,
body.dark-mode .header::after,
body.dark-mode .header.scrolled::before,
body.dark-mode .header.scrolled::after {
    display: none !important;
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #000000 0%, #0f0f23 20%, #1a1a2e 40%, #1e293b 70%, #334155 85%, #475569 100%);
}

body.dark-mode .about {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

body.dark-mode .service-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

body.dark-mode .product-card {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.8) 0%, 
        rgba(51, 65, 85, 0.6) 50%, 
        rgba(30, 41, 59, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.dark-mode .sports-gallery {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

body.dark-mode .quiz-section {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

body.dark-mode .section-header h2 {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 20%, #16213e 40%, #1e293b 70%, #334155 85%, #475569 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.loading-logo-image {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: genzLogoGlow 3s ease-in-out infinite alternate;
}

@keyframes genzLogoGlow {
    0% { 
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
        transform: scale(1.02);
    }
}

body.dark-mode .loading-logo-image {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
    animation: genzLogoGlowDark 3s ease-in-out infinite alternate;
}

/* Dark Mode Contact Overrides */
body.dark-mode .contact-info {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .contact-info .info-header h3 {
    color: #f1f5f9 !important;
}

body.dark-mode .contact-info .info-header p {
    color: #94a3b8 !important;
}

body.dark-mode .contact-item {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
    background-image: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .contact-item .item-content h4 {
    color: #f1f5f9 !important;
}

body.dark-mode .contact-item .item-content p {
    color: #cbd5e1 !important;
}

body.dark-mode .contact-form {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .contact-form .form-header h3 {
    color: #f1f5f9 !important;
}

body.dark-mode .contact-form .form-header p {
    color: #94a3b8 !important;
}

@keyframes genzLogoGlowDark {
    0% { 
        filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.4));
        transform: scale(1.02);
    }
}

.loading-logo span {
    font-size: 1.2rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 2rem;
}

.loading-animation {
    margin: 2rem 0;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, #1e293b, #334155, #475569);
    animation: loadingProgress 2s infinite ease-in-out;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
    animation: loadingDots 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

.loading-text {
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.8;
    animation: fadeInOut 2s infinite ease-in-out;
}

@keyframes logoGlow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 10px rgba(251, 191, 36, 0.5)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(251, 191, 36, 0.8)); }
}

@keyframes loadingProgress {
    0% { left: -200px; }
    100% { left: 200px; }
}

@keyframes loadingDots {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Quiz Section Styles */
.quiz-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.quiz-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: floatingBackground 15s infinite linear;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.quiz-progress {
    margin-bottom: 2rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e293b 0%, #334155 50%, #475569 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 20%;
}

.progress-text {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
}

.quiz-question {
    display: none;
    text-align: center;
    animation: slideInFade 0.5s ease-out;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e40af;
    background: linear-gradient(45deg, #1e293b, #334155, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quiz-options {
    display: grid;
    gap: 1rem;
}

.quiz-option {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quiz-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.5s ease;
}

.quiz-option:hover::before {
    left: 100%;
}

.quiz-option:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #fbbf24;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.quiz-option.selected {
    background: linear-gradient(145deg, #fbbf24, #f59e0b);
    color: white;
    border-color: #f59e0b;
    transform: scale(1.05);
}

.quiz-result {
    text-align: center;
    animation: bounceIn 0.8s ease-out;
}

.result-animation {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.result-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Achievement System */
.achievement-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    transition: all 0.5s ease;
    transform: translateX(100%);
}

.achievement-popup.show {
    transform: translateX(0);
}

.achievement-content {
    background: linear-gradient(145deg, #fbbf24, #f59e0b);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    text-align: center;
    min-width: 200px;
}

.achievement-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: pulse 1s infinite;
}

@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 41, 59, 0.6);
}

.fab-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.fab-container.open .fab-options {
    opacity: 1;
    transform: scale(1);
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(71, 85, 105, 0.3);
}

.fab-option:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(71, 85, 105, 0.5);
}

/* Social Share Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.social-modal {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 25px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay:not(.hidden) .social-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: scale(1.2);
}

.social-buttons {
    display: grid;
    gap: 1rem;
}

.social-btn {
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    color: white;
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.social-btn.copy {
    background: linear-gradient(145deg, #374151 0%, #111827 100%);
    color: white;
}

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



/* Cursor Trail */
.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
}

.trail-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.8) 0%, rgba(220, 38, 38, 0.6) 100%);
    border-radius: 50%;
    animation: trailFade 1s ease-out forwards;
}



@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.header.scrolled {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px !important;
    width: auto !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}

.logo-image:hover {
    transform: scale(1.05) !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15)) !important;
}

.logo-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 400;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

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

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.theme-toggle,
.sound-toggle {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover,
.sound-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.theme-toggle .moon-icon,
.sound-toggle .sound-off {
    display: none;
}

body.dark-mode .theme-toggle .sun-icon {
    display: none;
}

body.dark-mode .theme-toggle .moon-icon {
    display: inline;
}

.sound-toggle.muted .sound-on {
    display: none;
}

.sound-toggle.muted .sound-off {
    display: inline;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 1rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

body.dark-mode .bar {
    background: #e2e8f0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 20%, #16213e 40%, #1e293b 70%, #334155 85%, #475569 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 214, 160, 0.2) 0%, transparent 50%);
    animation: gradientPulse 8s infinite alternate;
}

@keyframes gradientPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(251, 191, 36, 0.6) 100%);
    animation: float-particle 15s infinite linear;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.particle:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-duration: 18s;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(220, 38, 38, 0.6) 100%);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.particle:nth-child(3) {
    left: 35%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 55%;
    animation-duration: 14s;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(6, 214, 160, 0.6) 100%);
    box-shadow: 0 0 20px rgba(6, 214, 160, 0.5);
}

.particle:nth-child(5) {
    left: 70%;
    animation-duration: 16s;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    left: 85%;
    animation-duration: 22s;
    animation-delay: 10s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    color: #dc2626;
    border-color: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

/* Slideshow Styles */
.hero-slideshow {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    animation: slideIn 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: left;
}

.slide-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 38, 38, 0.8);
    color: white;
    border: none;
    padding: 15px 12px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-nav:hover {
    background: #dc2626;
    transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #fbbf24;
    transform: scale(1.2);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slideshow hover effects */
.slideshow-container:hover .slide-nav {
    opacity: 1;
}

.slide-nav {
    opacity: 0.7;
}

/* Image loading animation */
.slide img {
    transition: transform 0.5s ease;
}

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

/* Sports Gallery Styles */
.sports-gallery {
    padding: 80px 0;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
}

.sports-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(6, 214, 160, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(220, 38, 38, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Cricket styles moved to css/sports/cricket.css */

/* Badminton styles moved to css/sports/badminton.css */

.racket::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 8px;
    width: 3px;
    height: 20px;
    background: #8b4513;
    border-radius: 2px;
}

.racket::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 15px;
    height: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
}

@keyframes shuttlecockFly {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) translateX(10px) rotate(20deg);
    }
    50% {
        transform: translateY(-35px) translateX(5px) rotate(-10deg);
    }
    75% {
        transform: translateY(-20px) translateX(-5px) rotate(15deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

@keyframes racketSwing {
    0%, 100% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(30deg);
    }
}

/* Football styles moved to css/sports/football.css */

/* Enhanced hover effects for cricket and badminton */
.cricket-item:hover {
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.badminton-item:hover {
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.4);
}

.football-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Sports Showcase Section */
.sports-showcase {
    padding: 80px 0;
    background: white;
}

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

.sport-showcase {
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.sport-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cricket-showcase {
    border-left: 5px solid #dc2626;
}

.badminton-showcase {
    border-left: 5px solid #fbbf24;
}

.football-showcase {
    border-left: 5px solid #000;
}

.archery-showcase {
    border-left: 5px solid #f59e0b;
}

.swimming-showcase {
    border-left: 5px solid #06b6d4;
}

.sport-icon {
    width: 200px;
    height: 150px;
    margin: 0 auto 2rem;
    position: relative;
}

/* Cricket Scene Animation */
.animated-cricket-scene {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(to bottom, #22c55e 0%, #16a34a 100%);
    border-radius: 15px;
    overflow: hidden;
}

.cricket-field {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(34, 197, 94, 0.3) 20%, 
        transparent 40%, 
        rgba(34, 197, 94, 0.3) 60%, 
        transparent 80%, 
        rgba(34, 197, 94, 0.3) 100%);
    animation: fieldLines 4s infinite linear;
}

.cricket-stumps {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
}

.cricket-stumps::before,
.cricket-stumps::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 25px;
    background: #fbbf24;
    border-radius: 1px;
}

.cricket-stumps::before {
    left: 2px;
}

.cricket-stumps::after {
    right: 2px;
}

.bouncing-cricket-ball {
    position: absolute;
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #1e293b, #334155);
    border-radius: 50%;
    top: 30px;
    left: 20px;
    animation: cricketBallTrajectory 3s infinite ease-in-out;
}

.swinging-bat {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 3px;
    height: 35px;
    background: linear-gradient(to bottom, #8b4513, #d2691e);
    border-radius: 2px;
    transform-origin: bottom center;
    animation: batSwingAnimation 3s infinite ease-in-out;
}

/* Badminton Scene Animation */
.animated-badminton-scene {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(to bottom, #06b6d4 0%, #0891b2 100%);
    border-radius: 15px;
    overflow: hidden;
}

.badminton-court {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, transparent 0%, white 49%, white 51%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, white 24%, white 26%, transparent 30%, white 74%, white 76%, transparent 100%);
    opacity: 0.3;
}

.badminton-net {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 40px;
    background: white;
    animation: netSway 2s infinite ease-in-out;
}

.badminton-net::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 20px;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        white 2px,
        white 3px
    );
    opacity: 0.5;
}

.flying-shuttlecock {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    top: 30px;
    left: 30px;
    animation: shuttlecockTrajectory 4s infinite ease-in-out;
}

.flying-shuttlecock::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 2px;
    width: 8px;
    height: 12px;
    background: linear-gradient(to bottom, white 0%, transparent 100%);
    border-radius: 50%;
}

.swinging-racket-left,
.swinging-racket-right {
    position: absolute;
    width: 20px;
    height: 25px;
    border: 2px solid #fbbf24;
    border-radius: 50%;
    bottom: 20px;
}

.swinging-racket-left {
    left: 20px;
    animation: leftRacketSwing 4s infinite ease-in-out;
}

.swinging-racket-right {
    right: 20px;
    animation: rightRacketSwing 4s infinite ease-in-out;
}

.swinging-racket-left::before,
.swinging-racket-right::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: #8b4513;
    border-radius: 1px;
}

/* Football Scene Animation */
.animated-football-scene {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(to bottom, #22c55e 0%, #16a34a 100%);
    border-radius: 15px;
    overflow: hidden;
}

.football-field {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, transparent 0%, white 49%, white 51%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, white 32%, white 34%, transparent 36%, white 64%, white 66%, transparent 68%);
    opacity: 0.3;
}

.football-goal {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 40px;
    height: 30px;
    border: 2px solid white;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.football-goal::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -2px;
    right: -2px;
    height: 2px;
    background: white;
}

.rolling-football {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, #fff, #000 40%, #fff 50%);
    border-radius: 50%;
    top: 60px;
    left: 20px;
    animation: footballRoll 4s infinite ease-in-out;
}

.rolling-football::before,
.rolling-football::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
}

.rolling-football::before {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    animation: footballSpinVertical 0.5s infinite linear;
}

.rolling-football::after {
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    animation: footballSpinHorizontal 0.7s infinite linear;
}

.kicking-foot {
    position: absolute;
    bottom: 20px;
    left: 30px;
    width: 15px;
    height: 25px;
    background: #8b4513;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform-origin: top center;
    animation: footKick 4s infinite ease-in-out;
}

.kicking-foot::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 2px;
    width: 18px;
    height: 8px;
    background: #654321;
    border-radius: 50%;
}

/* Sport Content Styles */
.sport-content h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.sport-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.sport-content li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.sport-content li::before {
    content: '🏏';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.badminton-showcase .sport-content li::before {
    content: '🏸';
}

.football-showcase .sport-content li::before {
    content: '⚽';
}

.archery-showcase .sport-content li::before {
    content: '🏹';
}

.swimming-showcase .sport-content li::before {
    content: '🏊';
}

.sport-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sport-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* Animation Keyframes */
@keyframes fieldLines {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

@keyframes cricketBallTrajectory {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(40px) translateY(-20px);
    }
    50% {
        transform: translateX(80px) translateY(-30px);
    }
    75% {
        transform: translateX(120px) translateY(-20px);
    }
    100% {
        transform: translateX(160px) translateY(0);
    }
}

@keyframes batSwingAnimation {
    0%, 60% {
        transform: rotate(0deg);
    }
    70% {
        transform: rotate(45deg);
    }
    80% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes netSway {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(2deg); }
}

@keyframes shuttlecockTrajectory {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(50px) translateY(-30px) rotate(180deg);
    }
    50% {
        transform: translateX(100px) translateY(-40px) rotate(360deg);
    }
    75% {
        transform: translateX(150px) translateY(-20px) rotate(540deg);
    }
    100% {
        transform: translateX(200px) translateY(0) rotate(720deg);
    }
}

@keyframes leftRacketSwing {
    0%, 80% {
        transform: rotate(-15deg);
    }
    20% {
        transform: rotate(30deg);
    }
    40% {
        transform: rotate(-15deg);
    }
}

@keyframes rightRacketSwing {
    0%, 60% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-30deg);
    }
    80% {
        transform: rotate(15deg);
    }
}

@keyframes footballRoll {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(40px) translateY(-10px);
    }
    50% {
        transform: translateX(80px) translateY(-15px);
    }
    75% {
        transform: translateX(120px) translateY(-10px);
    }
    100% {
        transform: translateX(160px) translateY(0);
    }
}

@keyframes footballSpinVertical {
    0% { transform: rotateX(0deg); }
    100% { transform: rotateX(360deg); }
}

@keyframes footballSpinHorizontal {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes footKick {
    0%, 70% {
        transform: rotate(0deg);
    }
    80% {
        transform: rotate(-30deg);
    }
    90% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Archery Scene Animation */
.animated-archery-scene {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(to bottom, #fbbf24 0%, #f59e0b 100%);
    border-radius: 15px;
    overflow: hidden;
}

.archery-range {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, transparent 0%, rgba(251, 191, 36, 0.3) 80%, rgba(251, 191, 36, 0.5) 90%, transparent 100%),
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 25%, transparent 50%, rgba(255, 255, 255, 0.1) 75%, transparent 100%);
    animation: rangeShimmer 3s infinite ease-in-out;
}

.archery-target {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: 
        radial-gradient(circle, 
            #fbbf24 0% 15%, 
            #dc2626 15% 30%, 
            #fbbf24 30% 45%, 
            #dc2626 45% 60%, 
            #fbbf24 60% 75%, 
            #dc2626 75% 90%, 
            #fbbf24 90% 100%);
    border: 2px solid white;
    animation: targetPulse 2s infinite ease-in-out;
}

.archery-target::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    border: 1px solid #dc2626;
}

.flying-arrow {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background: linear-gradient(to right, #8b4513 0%, #d2691e 70%, #dc2626 100%);
    border-radius: 1px;
    animation: arrowFlight 3s infinite ease-in-out;
}

.flying-arrow::before {
    content: '';
    position: absolute;
    right: -3px;
    top: -2px;
    width: 0;
    height: 0;
    border-left: 5px solid #dc2626;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.flying-arrow::after {
    content: '';
    position: absolute;
    left: -4px;
    top: -1px;
    width: 4px;
    height: 4px;
    background: #8b4513;
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
}

.archery-bow {
    position: absolute;
    bottom: 20px;
    left: 15px;
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, #8b4513, #d2691e);
    border-radius: 2px;
    transform-origin: bottom center;
    animation: bowDraw 3s infinite ease-in-out;
}

.archery-bow::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -8px;
    width: 20px;
    height: 50px;
    border: 2px solid #8b4513;
    border-radius: 50%;
    background: transparent;
    border-left: none;
}

/* Swimming styles moved to css/sports/swimming.css */

/* Sports keyframes moved to respective sports CSS files */

/* Gallery responsive styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .cricket-animation,
    .badminton-animation,
    .football-animation {
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
    }
    
    .cricket-ball {
        width: 15px;
        height: 15px;
    }
    
    .cricket-bat {
        height: 30px;
        width: 3px;
    }
    
    .racket {
        width: 20px;
        height: 25px;
    }
    
    /* Responsive showcase styles */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sport-showcase {
        padding: 2rem;
    }
    
    .sport-icon {
        width: 150px;
        height: 120px;
    }
    
    .animated-cricket-scene,
    .animated-badminton-scene {
        border-radius: 10px;
    }
    
    .bouncing-cricket-ball {
        width: 12px;
        height: 12px;
    }
    
    .swinging-bat {
        height: 25px;
        width: 2px;
    }
    
    .flying-shuttlecock {
        width: 10px;
        height: 10px;
    }
    
    .swinging-racket-left,
    .swinging-racket-right {
        width: 15px;
        height: 20px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: floatingBackground 20s infinite linear;
}

@keyframes floatingBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.about-text h3 {
    font-size: 1.8rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626 0%, #fbbf24 100%);
}

.stat h4 {
    font-size: 2rem;
    color: #dc2626;
    font-weight: 700;
}

.stat p {
    color: #64748b;
    font-size: 0.9rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature:nth-child(2) i {
    color: #fbbf24;
}

.feature:nth-child(2) h4 {
    color: #f59e0b;
}

.feature i {
    font-size: 2rem;
    color: #dc2626;
    min-width: 50px;
}

.feature h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #64748b;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.service-card:nth-child(1) {
    background: linear-gradient(145deg, #fff5f5 0%, #fee2e2 100%);
}

.service-card:nth-child(2) {
    background: linear-gradient(145deg, #fef7ff 0%, #fae8ff 100%);
}

.service-card:nth-child(3) {
    background: linear-gradient(145deg, #f0f9ff 0%, #dbeafe 100%);
}

.service-card:nth-child(4) {
    background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
}

.service-card:nth-child(5) {
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
}

.service-card:nth-child(6) {
    background: linear-gradient(145deg, #fdf4ff 0%, #fae8ff 100%);
}

.service-card i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8fafc;
}

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

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
    animation: cardEntrance 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 3s ease-in-out infinite;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.equipment-card:hover::before {
    height: 6px;
    background: linear-gradient(90deg, #ec4899, #f59e0b, #3b82f6, #8b5cf6);
}

.equipment-card:hover::after {
    transform: scale(1.5);
    opacity: 1;
}

.product-card:nth-child(1) .product-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-card:nth-child(2) .product-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-card:nth-child(3) .product-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-card:nth-child(4) .product-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.product-image {
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #f5576c 75%, 
        #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: grainMove 20s linear infinite;
}

.product-image i {
    font-size: 4.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

.product-card h3 {
    padding: 1.8rem 1.8rem 0.8rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    position: relative;
}

/* Sports Gear Card - Step 1: Basic Background Image */
.product-card.sports-gear-card {
    background: url('images/Sports_Gear.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    /* Debug: Add a border to see if this style is being applied */
    border: 5px solid red !important;
}

/* Even more specific selector */
div.product-card.sports-gear-card {
    background: url('images/Sports_Gear.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    border: 5px solid red !important;
}

/* Most specific selector possible */
div[class*="product-card"][class*="sports-gear-card"] {
    background: url('images/Sports_Gear.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    border: 5px solid red !important;
}

.product-card h3::before {
    content: '⚽';
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    font-size: 1.2rem;
    opacity: 0.7;
    animation: emojiBounce 2s ease-in-out infinite;
}

.product-card p {
    padding: 0 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-link {
    display: block;
    padding: 1.2rem 1.8rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff6348 100%);
    margin: 0 1.8rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

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

.product-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, #ff5252 0%, #d32f2f 50%, #c62828 100%);
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}



/* Contact Section - Enhanced Gen Z Style */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Particles */
.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.contact-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #f59e0b, #ef4444, #8b5cf6);
    border-radius: 50%;
    animation: float-particle 8s ease-in-out infinite;
    opacity: 0.6;
}

.contact-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: #f59e0b;
}

.contact-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    background: #ef4444;
}

.contact-particles .particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    background: #8b5cf6;
}

.contact-particles .particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 6s;
    background: #10b981;
}

.contact-particles .particle:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 3s;
    background: #06b6d4;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

/* Enhanced Section Header */
.contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact .header-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.contact .gradient-text {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #ef4444, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact .header-subtitle {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact .header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact .decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 2px;
}

.contact .decoration-dot {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Contact Info Panel */
.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.1) !important;
    border: 2px solid rgba(220, 38, 38, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}

.contact-info .info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info .info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b !important;
    margin-bottom: 0.5rem;
}

.contact-info .info-header p {
    color: #94a3b8 !important;
    font-size: 1.1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%) !important;
    border-radius: 15px;
    border: 1px solid rgba(220, 38, 38, 0.1) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.contact-item .item-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.contact-item .item-content {
    flex: 1;
}

.contact-item .item-content h4 {
    color: #1e293b !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-item .item-content p {
    color: #475569 !important;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-item .item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Quick Action Buttons */
.quick-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    flex-wrap: wrap;
}

.quick-btn {
    flex: 1;
    min-width: 140px;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.quick-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.quick-btn.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.quick-btn.call-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.quick-btn.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Contact Form Panel */
.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}

.contact-form .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form .form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-form .form-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Modern Form Styling */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #64748b;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.input-wrapper.focused i {
    color: #06b6d4;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f1f5f9;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #94a3b8;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #06b6d4;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.input-wrapper.focused {
    transform: scale(1.02);
}

/* Submit Button */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
    padding-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.form-note i {
    color: #10b981;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.notification-message {
    color: #1f2937;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact .gradient-text {
        font-size: 2.5rem;
    }
    
    .contact .header-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-btn {
        min-width: auto;
    }
    
    .contact-particles .particle {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact .gradient-text {
        font-size: 2rem;
    }
    
    .contact .header-icon {
        font-size: 3rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item .item-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .submit-btn {
        min-width: 180px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Dark Mode Support for Contact Section - Enhanced Visibility */
body.dark-mode .contact {
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%);
}

body.dark-mode .contact-info {
    background: rgba(30, 41, 59, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .contact-info .info-header h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.dark-mode .contact-info .info-header p {
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body.dark-mode .contact-item {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Dark mode hover effect is now the same as light mode since we unified the theme */

body.dark-mode .contact-item .item-content h4 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

body.dark-mode .contact-item .item-content p {
    color: #f1f5f9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Enhanced Badge Visibility in Dark Mode */
body.dark-mode .contact-item .item-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .contact-item .item-badge:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    transform: scale(1.05);
}

/* Enhanced Icon Visibility in Dark Mode */
body.dark-mode .contact-item .item-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .contact-item:hover .item-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.6);
    transform: scale(1.1);
}

body.dark-mode .contact-form {
    background: rgba(15, 23, 42, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode .contact-form .form-header h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.dark-mode .contact-form .form-header p {
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body.dark-mode .input-wrapper input,
body.dark-mode .input-wrapper select,
body.dark-mode .input-wrapper textarea {
    background: rgba(51, 65, 85, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode .input-wrapper input:focus,
body.dark-mode .input-wrapper select:focus,
body.dark-mode .input-wrapper textarea:focus {
    background: rgba(71, 85, 105, 0.95);
    border-color: #06b6d4;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2), 0 8px 25px rgba(0, 0, 0, 0.3);
}

body.dark-mode .input-wrapper input::placeholder,
body.dark-mode .input-wrapper textarea::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/* Force override any conflicting contact styles */
#contact .contact-info,
.contact .contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: #1e293b !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

#contact .contact-form,
.contact .contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

#contact .contact-item,
.contact .contact-item {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%) !important;
    color: #1e293b !important;
}

#contact .contact-items,
.contact .contact-items {
    flex: 1 !important;
}

#contact .modern-form,
.contact .modern-form {
    flex: 1 !important;
}

#contact .contact-info .info-header h3,
.contact .contact-info .info-header h3 {
    color: #f1f5f9 !important;
}

#contact .contact-info .info-header p,
.contact .contact-info .info-header p {
    color: #94a3b8 !important;
}

#contact .contact-item .item-content h4,
.contact .contact-item .item-content h4 {
    color: #f1f5f9 !important;
}

#contact .contact-item .item-content p,
.contact .contact-item .item-content p {
    color: #cbd5e1 !important;
}

/* Enhanced Label Visibility in Dark Mode */
body.dark-mode .form-group label {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

/* Enhanced Quick Action Buttons in Dark Mode */
body.dark-mode .quick-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .quick-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px) scale(1.02);
}

body.dark-mode .quick-btn.call-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .quick-btn.call-btn:hover {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.6);
    transform: translateY(-3px) scale(1.02);
}

/* Form button loading state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Loading animation for submit button */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e293b 0%, #334155 25%, #475569 50%, #64748b 75%, #1e293b 100%);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #dc2626;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: #dc2626;
    min-width: 20px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    

    
    .product-link {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-features {
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-slideshow {
        max-width: 100%;
    }
    
    .slideshow-container {
        height: 300px;
        margin: 0 10px;
    }
    
    .slide-overlay {
        padding: 1.5rem;
    }
    
    .slide-overlay h3 {
        font-size: 1.2rem;
    }
    
    .slide-nav {
        padding: 12px 10px;
        font-size: 1rem;
    }
    
    .slide-nav.prev {
        left: 10px;
    }
    
    .slide-nav.next {
        right: 10px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth animations */
.service-card,
.product-card,
.feature {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Loading animation for hero graphic */
.hero-graphic i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* About Page Hero Section */
.about-hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    margin-top: 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23heroPattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.company-story {
    padding: 80px 0;
    background: #f8fafc;
}

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

.story-text h2 {
    color: #dc2626;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.story-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* LIGHT MODE VISIBILITY FIXES - MAXIMUM OVERRIDE */
/* Force all text to be visible in light mode with maximum specificity */
html body:not(.dark-mode) .story-text h2,
html body:not(.dark-mode) .story-text h3,
html body:not(.dark-mode) .story-text h4,
html body:not(.dark-mode) .story-text h5,
html body:not(.dark-mode) .story-text h6 {
    color: #1f2937 !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

html body:not(.dark-mode) .story-text p,
html body:not(.dark-mode) .story-text div,
html body:not(.dark-mode) .story-text span,
html body:not(.dark-mode) .story-text li {
    color: #374151 !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

/* Override content boxes in light mode */
html body:not(.dark-mode) .our-commitment,
html body:not(.dark-mode) .founding-vision,
html body:not(.dark-mode) .vision-strategic-goals,
html body:not(.dark-mode) .our-mission {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.98) 100%) !important;
    border-left: 4px solid #dc2626 !important;
    color: #1f2937 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Override all text within content boxes */
html body:not(.dark-mode) .our-commitment *,
html body:not(.dark-mode) .founding-vision *,
html body:not(.dark-mode) .vision-strategic-goals *,
html body:not(.dark-mode) .our-mission * {
    color: #374151 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

/* Specific title overrides */
html body:not(.dark-mode) .commitment-title,
html body:not(.dark-mode) .vision-title,
html body:not(.dark-mode) .strategic-title,
html body:not(.dark-mode) .mission-title {
    color: #dc2626 !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

/* Strategic points list */
html body:not(.dark-mode) .strategic-points {
    color: #374151 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

html body:not(.dark-mode) .strategic-points li {
    color: #374151 !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

html body:not(.dark-mode) .strategic-points li strong {
    color: #1e40af !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

html body:not(.dark-mode) .strategic-points li::before {
    color: #dc2626 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Journey subtitle */
html body:not(.dark-mode) .journey-subtitle {
    color: #dc2626 !important;
    background: linear-gradient(90deg, #dc2626, #b91c1c) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

/* Universal override for any remaining invisible text */
html body:not(.dark-mode) .company-story *,
html body:not(.dark-mode) .story-content *,
html body:not(.dark-mode) .story-text * {
    color: #374151 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

/* Force specific heading colors */
html body:not(.dark-mode) .story-text h2 {
    color: #1f2937 !important;
}

html body:not(.dark-mode) .story-text h3 {
    color: #dc2626 !important;
}

/* Additional safety overrides */
html body:not(.dark-mode) .container * {
    color: #374151 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

html body:not(.dark-mode) .container h1,
html body:not(.dark-mode) .container h2,
html body:not(.dark-mode) .container h3,
html body:not(.dark-mode) .container h4,
html body:not(.dark-mode) .container h5,
html body:not(.dark-mode) .container h6 {
    color: #1f2937 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

.our-commitment {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-left: 4px solid #dc2626;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.our-commitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="commitmentPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(220, 38, 38, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23commitmentPattern)"/></svg>');
    border-radius: 0 8px 8px 0;
    opacity: 0.3;
}

.commitment-title {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.our-commitment p {
    color: #374151;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.founding-vision {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-left: 4px solid #fbbf24;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.founding-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="visionPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(251, 191, 36, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23visionPattern)"/></svg>');
    border-radius: 0 8px 8px 0;
    opacity: 0.3;
}

.vision-title {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.founding-vision p {
    color: #374151;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.vision-strategic-goals {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-left: 4px solid #3b82f6;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.vision-strategic-goals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="strategicPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(59, 130, 246, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23strategicPattern)"/></svg>');
    border-radius: 0 8px 8px 0;
    opacity: 0.3;
}

.strategic-title {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.vision-strategic-goals p {
    color: #374151;
    line-height: 1.8;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.strategic-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.strategic-points li {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

.strategic-points li::before {
    content: '▶';
    color: #3b82f6;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-weight: bold;
}

.strategic-points li strong {
    color: #1e40af;
    font-weight: 600;
}

.our-mission {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-left: 4px solid #22c55e;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.our-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="missionPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(34, 197, 94, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23missionPattern)"/></svg>');
    border-radius: 0 8px 8px 0;
    opacity: 0.3;
}

.mission-title {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.our-mission p {
    color: #374151;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.story-graphic {
    text-align: center;
    font-size: 6rem;
    color: #dc2626;
    opacity: 0.7;
}

.mission-vision {
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    color: #dc2626;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #64748b;
    line-height: 1.6;
}

.values {
    padding: 80px 0;
    background: #f8fafc;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.value-card i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.team {
    padding: 80px 0;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000000 0%, #dc2626 60%, #fbbf24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2.5rem;
}

.team-member h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

.achievements {
    padding: 80px 0;
    background: #f8fafc;
}

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

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #dc2626;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achievement-card:nth-child(even) {
    border-left: 4px solid #fbbf24;
}

.achievement-card:nth-child(even) .achievement-year {
    background: #fbbf24;
    color: #000;
}

.achievement-card:nth-child(even) h4 {
    color: #f59e0b;
}

.achievement-card:hover {
    transform: translateX(10px);
}

.achievement-year {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.achievement-card h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 20%, #16213e 30%, #1e293b 60%, #334155 80%, #475569 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 191, 36, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(6, 214, 160, 0.2) 0%, transparent 50%);
    animation: gradientPulse 6s infinite alternate;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.nav-link.active {
    color: #dc2626;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
        margin-top: 70px;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-graphic {
        font-size: 4rem;
    }
    
    .our-commitment {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .commitment-title {
        font-size: 1.3rem;
    }
    
    .founding-vision {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .vision-title {
        font-size: 1.3rem;
    }
    
    .vision-strategic-goals {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .strategic-title {
        font-size: 1.3rem;
    }
    
    .strategic-points li {
        padding-left: 1.2rem;
    }
    
    .our-mission {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .mission-title {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .soccer-ball {
        width: 15px;
        height: 15px;
    }
    
    .goal-post {
        width: 20px;
        height: 15px;
    }
    
    /* Gen Z Mobile Responsive */
    .nav-controls {
        gap: 0.5rem;
    }
    
    .theme-toggle,
    .sound-toggle {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    

    
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .fab-option {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .quiz-container {
        padding: 2rem;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 50px;
        margin-top: 60px;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .our-commitment {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .commitment-title {
        font-size: 1.2rem;
    }
    
    .founding-vision {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .vision-title {
        font-size: 1.2rem;
    }
    
    .vision-strategic-goals {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .strategic-title {
        font-size: 1.2rem;
    }
    
    .strategic-points li {
        padding-left: 1rem;
        font-size: 0.9rem;
    }
    
    .our-mission {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .mission-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .about-hero {
        padding: 60px 0 40px;
        margin-top: 50px;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}

/* Additional Gen Z Animations */
@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5);
    }
}

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Neon Glow Effects for Dark Mode */
body.dark-mode .hero-title {
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
}

body.dark-mode .service-card:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(251, 191, 36, 0.3);
}

body.dark-mode .product-card:hover {
    transform: translateY(-16px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(6, 214, 160, 0.3);
    filter: brightness(1.2) contrast(1.1);
}

/* Gen Z Social Media Styles */
.gen-z-social-section {
    margin-top: 2rem;
}

.gen-z-social-section h4 {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover { box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4); }
.social-link.tiktok:hover { box-shadow: 0 10px 30px rgba(255, 0, 80, 0.4); }
.social-link.youtube:hover { box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4); }
.social-link.twitter:hover { box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4); }
.social-link.discord:hover { box-shadow: 0 10px 30px rgba(114, 137, 218, 0.4); }
.social-link.snapchat:hover { box-shadow: 0 10px 30px rgba(255, 252, 0, 0.4); }

.social-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.followers {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #fbbf24;
}

.social-stats {
    text-align: center;
    margin-top: 1rem;
}

.total-followers {
    display: block;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.cta {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Additional Social Links */
.additional-socials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-link-small {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

.social-link-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.social-link-small .social-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.social-link-small .social-name {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Instant Messaging */
.instant-messaging {
    margin: 1.5rem 0;
}

.instant-messaging h5 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.instant-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.instant-btn.viber {
    background: linear-gradient(135deg, #665CAC 0%, #7D4F99 100%);
}

.instant-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.instant-btn span {
    margin-right: 0.5rem;
}

/* Footer Bottom Enhancements */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-follow {
    font-weight: 600;
    color: #fbbf24;
    margin-right: 0.5rem;
}

.quick-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-social:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
}

/* Enhanced Social Share Modal */
.social-modal {
    max-height: 80vh;
    overflow-y: auto;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #ff0050 0%, #000000 100%);
    color: white;
}

.social-btn.discord {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    color: white;
}

.social-btn.snapchat {
    background: linear-gradient(135deg, #fffc00 0%, #ffffff 100%);
    color: #000;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006ba6 100%);
    color: white;
}

.social-btn.reddit {
    background: linear-gradient(135deg, #ff4500 0%, #ff5722 100%);
    color: white;
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #0e76a8 100%);
    color: white;
}

.social-btn.pinterest {
    background: linear-gradient(135deg, #bd081c 0%, #e60023 100%);
    color: white;
}

.social-btn.threads {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

/* Dark Mode Social Enhancements */
body.dark-mode .social-link {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .social-link:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

body.dark-mode .quick-social:hover {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.2));
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

/* Mobile Responsive Social Media */
@media (max-width: 768px) {
    .social-media-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .additional-socials {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        justify-content: center;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    .social-btn {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

.footer-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 80px !important;
    width: auto !important;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1)) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: block !important;
    margin: 0 auto 1rem auto !important;
    object-fit: contain !important;
}

.footer-logo-image:hover {
    transform: scale(1.08) rotate(1deg);
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.3));
}

body.dark-mode .footer-logo-image {
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.15));
}

body.dark-mode .footer-logo-image:hover {
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.4));
}

/* Mobile responsive logo */
@media (max-width: 768px) {
    .logo-image {
        height: 40px !important;
    }
    
    .loading-logo-image {
        height: 60px !important;
    }
    
    .footer-logo-image {
        height: 60px !important;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px !important;
    }
    
    .loading-logo-image {
        height: 50px !important;
    }
    
    .footer-logo-image {
        height: 50px !important;
    }
}

/* Logo dark/light mode switching */
body.dark-mode .logo-text-light,
body.dark-mode .logo-subtitle-light {
    display: none !important;
}

body.dark-mode .logo-text-dark,
body.dark-mode .logo-subtitle-dark {
    display: block !important;
}

/* Light mode (default) - hide dark version */
.logo-text-dark,
.logo-subtitle-dark {
    display: none;
}

/* Logo Container Alignment Fixes */
.nav-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 60px !important;
}

.logo-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 50px !important;
}

.loading-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 100px !important;
}

.footer-logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 120px !important;
}



/* Professional Loading Logo */
.loading-logo-image {
    height: 80px !important;
    width: auto !important;
    animation: professionalPulse 2s ease-in-out infinite !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}

@keyframes professionalPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Professional Footer Logo */
.footer-logo-image {
    height: 80px !important;
    width: auto !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    margin-bottom: 1rem !important;
    display: block !important;
    margin: 0 auto 1rem auto !important;
    object-fit: contain !important;
}

/* Logo Image Alignment Fixes */
.logo-image,
.loading-logo-image,
.footer-logo-image {
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    max-width: 100% !important;
    height: auto !important;
    vertical-align: middle !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    backface-visibility: hidden !important;
    transform: translateZ(0) !important;
}

/* Specific height overrides */
.logo-image {
    height: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.loading-logo-image {
    height: 80px !important;
    transition: all 0.3s ease !important;
}

.footer-logo-image {
    height: 80px !important;
    transition: all 0.3s ease !important;
}

/* Logo Hover Effects */
.logo-image:hover,
.footer-logo-image:hover {
    transform: scale(1.05) !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

.loading-logo-image:hover {
    transform: scale(1.02) !important;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) !important;
}

/* Logo Container Responsive Fixes */
@media (max-width: 768px) {
    .nav-logo,
    .logo-container,
    .loading-logo,
    .footer-logo {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .logo-image,
    .loading-logo-image,
    .footer-logo-image {
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .nav-logo,
    .logo-container,
    .loading-logo,
    .footer-logo {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .logo-image,
    .loading-logo-image,
    .footer-logo-image {
        margin: 0 auto !important;
    }
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}



/* Ensure logo containers support positioning */
.nav-logo,
.loading-logo,
.footer-logo {
    position: relative;
    display: inline-block;
}

/* Professional Animations */
@keyframes professionalFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.logo-image:hover {
    animation: professionalFloat 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .loading-logo-image {
        height: 60px;
    }
    
    .footer-logo-image {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .loading-logo-image {
        height: 50px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
}

/* Dark Mode Adjustments */
body.dark-mode .logo-image {
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1)) brightness(1.1);
}

body.dark-mode .loading-logo-image {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.15)) brightness(1.1);
}

body.dark-mode .footer-logo-image {
    filter: brightness(1.1);
}

/* Exact Company Logo Mode Switching */
body.dark-mode .company-wave-light,
body.dark-mode .company-text-light,
body.dark-mode .company-subtitle-light {
    display: none !important;
}

body.dark-mode .company-wave-dark,
body.dark-mode .company-text-dark,
body.dark-mode .company-subtitle-dark {
    display: block !important;
}

/* Light mode (default) - hide dark version */
.company-wave-dark,
.company-text-dark,
.company-subtitle-dark {
    display: none;
}

/* Professional Button Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* Achievement Placeholder Styling */
.achievement-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 2px dashed #cbd5e1;
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-icon {
    font-size: 3rem;
    color: #64748b;
    margin-bottom: 20px;
}

.achievement-placeholder p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Dark mode adjustments for achievement placeholder */
body.dark-mode .achievement-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: #475569;
}

body.dark-mode .placeholder-icon {
    color: #94a3b8;
}

body.dark-mode .achievement-placeholder p {
    color: #94a3b8;
}

/* Founders Mission Styling */
.founders-mission {
    margin-top: 50px;
    padding: 40px 0;
    border-top: 2px solid #e2e8f0;
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border-left: 5px solid #dc2626;
}

.mission-statement h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.mission-statement strong {
    color: #1f2937;
    font-weight: 700;
}

/* Dark mode adjustments for founders mission */
body.dark-mode .founders-mission {
    border-top-color: #475569;
}

body.dark-mode .mission-statement {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-left-color: #dc2626;
}

body.dark-mode .mission-statement h3 {
    color: #ef4444;
}

body.dark-mode .mission-statement p {
    color: #cbd5e1;
}

body.dark-mode .mission-statement strong {
    color: #f1f5f9;
}

/* Journey Subtitle Styling */
.journey-subtitle {
    color: #dc2626;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
    font-style: italic;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 15px;
}

/* Dark mode adjustments for journey subtitle */
body.dark-mode .journey-subtitle {
    color: #ef4444;
    border-bottom-color: #ef4444;
}

/* Jharkhand Commitment Styling */
.jharkhand-commitment {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    border-radius: 12px;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.commitment-title {
    color: #92400e;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.commitment-title::before {
    content: "🏛️";
    font-size: 1.5rem;
}

.jharkhand-commitment p {
    color: #78350f;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Dark mode adjustments for Jharkhand commitment */
body.dark-mode .jharkhand-commitment {
    background: linear-gradient(135deg, #451a03 0%, #78350f 100%);
    border-left-color: #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

body.dark-mode .commitment-title {
    color: #fbbf24;
}

body.dark-mode .jharkhand-commitment p {
    color: #fde68a;
}

/* Vision Points Styling - Enhanced Readability */
.vision-points {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.vision-points li {
    position: relative;
    padding: 15px 0 15px 40px;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    border-bottom: 2px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.vision-points li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.vision-points li::before {
    content: "🎯";
    position: absolute;
    left: 10px;
    top: 15px;
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.vision-points li:hover {
    background: rgba(220, 38, 38, 0.05);
    padding-left: 45px;
    transform: translateX(3px);
    color: #dc2626;
    font-weight: 600;
}

/* Dark mode adjustments for vision points */
body.dark-mode .vision-points {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .vision-points li {
    color: #f1f5f9;
    border-bottom-color: rgba(239, 68, 68, 0.2);
}

body.dark-mode .vision-points li:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #fecaca;
}

/* Equipment Page Styles */
.equipment-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.equipment-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.equipment-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.equipment-section {
    padding: 80px 0;
}

.equipment-section:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.equipment-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
    animation: cardEntrance 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.equipment-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 3s ease-in-out infinite;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.equipment-card:hover::before {
    height: 6px;
    background: linear-gradient(90deg, #ec4899, #f59e0b, #3b82f6, #8b5cf6);
}

.equipment-card:hover::after {
    transform: scale(1.5);
    opacity: 1;
}



/* Enhanced icon animations */
.equipment-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.equipment-icon::before {
    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;
}

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

.equipment-card:hover .equipment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Enhanced feature tags with better animations */
.equipment-features span {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.equipment-features span:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

/* Add emoji reactions to feature tags */
.equipment-features span::after {
    content: '✨';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.6rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.equipment-features span:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced button with better hover effects */
.equipment-card .btn {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 15px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    cursor: pointer;
}

.equipment-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* Add success state to buttons */
.equipment-card .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Enhanced card entrance animations */
.equipment-card {
    animation: cardEntrance 0.6s ease-out;
    animation-fill-mode: both;
}

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

/* Add keyframe animations */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.8;
    }
}

/* Enhanced gradient shift animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.equipment-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.equipment-icon::before {
    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;
}

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

.equipment-card:hover .equipment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.equipment-card h3 {
    font-size: 1.5rem;
    margin: 0 25px 15px;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
}

.equipment-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.equipment-card:hover h3::after {
    width: 60px;
}

.equipment-card p {
    margin: 0 25px 20px;
    color: #64748b;
    line-height: 1.7;
    text-align: center;
    font-size: 0.95rem;
}

.equipment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 25px 25px;
    justify-content: center;
}

.equipment-features span {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.equipment-features span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.equipment-card:hover .equipment-features span::before {
    left: 100%;
}

.equipment-card:hover .equipment-features span {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.equipment-card .btn {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 15px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

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

.equipment-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* Add some variety to different card types */
.equipment-card:nth-child(1) .equipment-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.equipment-card:nth-child(2) .equipment-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.equipment-card:nth-child(3) .equipment-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.equipment-card:nth-child(4) .equipment-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.equipment-card:nth-child(5) .equipment-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.equipment-card:nth-child(6) .equipment-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

/* Dark mode support */
body.dark-mode .equipment-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

body.dark-mode .equipment-card h3 {
    color: #f1f5f9;
}

body.dark-mode .equipment-card p {
    color: #cbd5e1;
}

body.dark-mode .equipment-features span {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: #e2e8f0;
    border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .equipment-card:hover .equipment-features span {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .equipment-card {
        border-radius: 16px;
    }
    
    .equipment-icon {
        width: 70px;
        height: 70px;
        margin: 20px auto 15px;
    }
    
    .equipment-icon i {
        font-size: 1.8rem;
    }
    
    .equipment-card h3 {
        font-size: 1.3rem;
        margin: 0 20px 12px;
    }
    
    .equipment-card p {
        margin: 0 20px 15px;
        font-size: 0.9rem;
    }
    
    .equipment-features {
        margin: 0 20px 20px;
    }
    
    .equipment-card .btn {
        margin: 0 20px 20px;
        width: calc(100% - 40px);
        padding: 12px 18px;
    }
}

/* Featured Agility Section */
.featured-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.featured-section .section-header h2,
.featured-section .section-header p {
    color: white;
}

.agility-showcase {
    margin-top: 50px;
}

.agility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.agility-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.agility-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.agility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.agility-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.agility-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.features span {
    background: #f1f5f9;
    color: #475569;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.agility-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Dark Mode Adjustments */
body.dark-mode .equipment-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .equipment-card h3 {
    color: #f1f5f9;
}

body.dark-mode .equipment-card p {
    color: #cbd5e1;
}

body.dark-mode .equipment-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

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

body.dark-mode .agility-card h3 {
    color: #f1f5f9;
}

body.dark-mode .agility-card p {
    color: #cbd5e1;
}

body.dark-mode .features span {
    background: #334155;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .equipment-hero h1 {
        font-size: 2.2rem;
    }
    
    .equipment-hero p {
        font-size: 1rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .agility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Enhanced Football-Themed CSS Styling */

/* Football Field Background Pattern */
.football-field-pattern {
    background-image: 
        linear-gradient(90deg, transparent 0%, #22c55e 49%, #22c55e 51%, transparent 100%),
        linear-gradient(0deg, transparent 0%, #22c55e 32%, #22c55e 34%, transparent 36%, #22c55e 64%, #22c55e 66%, transparent 68%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    background-size: 100% 100%, 100% 100%, 200px 200px;
    animation: fieldShimmer 4s ease-in-out infinite;
}

@keyframes fieldShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Floating Football Icons */
.floating-football-icon {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #fff, #000 40%, #fff 50%);
    border-radius: 50%;
    animation: floatBounce 2s ease-in-out infinite;
}

.floating-football-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    animation: spinVertical 0.8s linear infinite;
}

.floating-football-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    animation: spinHorizontal 1.2s linear infinite;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes spinVertical {
    0% { transform: translate(-50%, -50%) rotateX(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(360deg); }
}

@keyframes spinHorizontal {
    0% { transform: translate(-50%, -50%) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg); }
}

/* Football Goal Net Effect */
.football-goal-net {
    position: relative;
    width: 60px;
    height: 40px;
    border: 2px solid #fbbf24;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.football-goal-net::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.3) 25%, transparent 50%, rgba(251, 191, 36, 0.3) 75%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(251, 191, 36, 0.3) 25%, transparent 50%, rgba(251, 191, 36, 0.3) 75%, transparent 100%);
    background-size: 20px 20px, 20px 20px;
    animation: netShimmer 3s ease-in-out infinite;
}

@keyframes netShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Football Player Silhouette */
.football-player {
    position: relative;
    width: 30px;
    height: 50px;
    margin: 0 auto;
}

.football-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #8b4513;
    border-radius: 50%;
}

.football-player::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 25px;
    background: #3b82f6;
    border-radius: 20px 20px 0 0;
}

.football-player .player-legs {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: #8b4513;
    border-radius: 0 0 10px 10px;
}

.football-player .player-legs::before,
.football-player .player-legs::after {
    content: '';
    position: absolute;
    bottom: -8px;
    width: 8px;
    height: 8px;
    background: #654321;
    border-radius: 50%;
}

.football-player .player-legs::before {
    left: 2px;
}

.football-player .player-legs::after {
    right: 2px;
}

/* Football Trophy */
.football-trophy {
    position: relative;
    width: 40px;
    height: 50px;
    margin: 0 auto;
}

.football-trophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 15px 15px 0 0;
    border: 2px solid #d97706;
}

.football-trophy::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 25px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 0 0 10px 10px;
    border: 2px solid #d97706;
    border-top: none;
}

.football-trophy .trophy-handles {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
}

.football-trophy .trophy-handles::before,
.football-trophy .trophy-handles::after {
    content: '';
    position: absolute;
    top: 0;
    width: 8px;
    height: 15px;
    background: #d97706;
    border-radius: 4px;
}

.football-trophy .trophy-handles::before {
    left: -4px;
    transform: rotate(-15deg);
}

.football-trophy .trophy-handles::after {
    right: -4px;
    transform: rotate(15deg);
}

/* Football Scoreboard */
.football-scoreboard {
    position: relative;
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 2px solid #fbbf24;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    animation: scoreboardGlow 2s ease-in-out infinite;
}

@keyframes scoreboardGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.6); }
}

/* Football Corner Flag */
.football-corner-flag {
    position: relative;
    width: 20px;
    height: 30px;
}

.football-corner-flag::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 30px;
    background: #8b4513;
}

.football-corner-flag::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 2px;
    width: 15px;
    height: 10px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border-radius: 0 5px 5px 0;
    animation: flagWave 3s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

/* Football Referee Whistle */
.football-whistle {
    position: relative;
    width: 25px;
    height: 15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 15px;
    border: 1px solid #d97706;
}

.football-whistle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -3px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #d97706;
    border-radius: 50%;
}

.football-whistle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #d97706;
    border-radius: 50%;
}

/* Football Boot */
.football-boot {
    position: relative;
    width: 25px;
    height: 20px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px 20px 5px 5px;
    border: 1px solid #475569;
}

.football-boot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 5px;
    width: 15px;
    height: 8px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 8px 8px 0 0;
    border: 1px solid #475569;
    border-bottom: none;
}

.football-boot::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 8px;
    width: 8px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
}

/* Football Stadium Lights */
.football-stadium-lights {
    position: relative;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.1) 20%, transparent 40%, rgba(251, 191, 36, 0.1) 60%, transparent 80%, rgba(251, 191, 36, 0.1) 100%);
    animation: stadiumLights 4s ease-in-out infinite;
}

@keyframes stadiumLights {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Football Team Banner */
.football-team-banner {
    position: relative;
    width: 120px;
    height: 30px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: bannerWave 3s ease-in-out infinite;
}

@keyframes bannerWave {
    0%, 100% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
}

/* Football Match Timer */
.football-match-timer {
    position: relative;
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 2px solid #22c55e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: timerPulse 1s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 25px rgba(34, 197, 94, 0.6); }
}

/* Football Crowd Cheer Effect */
.football-crowd-cheer {
    position: relative;
    width: 100%;
    height: 40px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: crowdCheer 2s ease-in-out infinite;
}

@keyframes crowdCheer {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

/* Football Victory Confetti */
.football-victory-confetti {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.football-victory-confetti::before,
.football-victory-confetti::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
    animation: confettiFall 3s linear infinite;
}

.football-victory-confetti::before {
    left: 20%;
    animation-delay: 0s;
}

.football-victory-confetti::after {
    left: 80%;
    animation-delay: 1.5s;
}

@keyframes confettiFall {
    0% { transform: translateY(-60px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(60px) rotate(360deg); opacity: 0; }
}

/* Football Equipment Bag */
.football-equipment-bag {
    position: relative;
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    border: 2px solid #1e40af;
}

.football-equipment-bag::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: #1e40af;
    border-radius: 4px;
}

.football-equipment-bag::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: bagShine 2s ease-in-out infinite;
}

@keyframes bagShine {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Football Training Cones */
.football-training-cone {
    position: relative;
    width: 20px;
    height: 25px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 0 0 10px 10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.football-training-cone::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: coneGlow 2s ease-in-out infinite;
}

@keyframes coneGlow {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* Football Water Bottle */
.football-water-bottle {
    position: relative;
    width: 15px;
    height: 25px;
    background: linear-gradient(135deg, #06d6a0, #059669);
    border-radius: 8px;
    border: 1px solid #047857;
}

.football-water-bottle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: #059669;
    border-radius: 6px 6px 0 0;
}

.football-water-bottle::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: waterBubble 3s ease-in-out infinite;
}

@keyframes waterBubble {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
    50% { transform: translateX(-50%) translateY(-3px); opacity: 0.6; }
}

/* Football First Aid Kit */
.football-first-aid-kit {
    position: relative;
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 5px;
    border: 1px solid #b91c1c;
}

.football-first-aid-kit::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.football-first-aid-kit::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background: #b91c1c;
    border-radius: 2px;
}

/* Football Team Bench */
.football-team-bench {
    position: relative;
    width: 80px;
    height: 15px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 8px;
    border: 1px solid #654321;
}

.football-team-bench::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 8px 8px 0 0;
    border: 1px solid #654321;
    border-bottom: none;
}

.football-team-bench::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 10px;
    right: 10px;
    height: 7px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 7px 7px 0 0;
    border: 1px solid #654321;
    border-bottom: none;
}

/* Football Match Ball */
.football-match-ball {
    position: relative;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, #fff, #000 40%, #fff 50%);
    border-radius: 50%;
    animation: matchBallBounce 2s ease-in-out infinite;
}

.football-match-ball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    animation: matchBallSpinVertical 0.6s linear infinite;
}

.football-match-ball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    animation: matchBallSpinHorizontal 0.8s linear infinite;
}

@keyframes matchBallBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes matchBallSpinVertical {
    0% { transform: translate(-50%, -50%) rotateX(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(360deg); }
}

@keyframes matchBallSpinHorizontal {
    0% { transform: translate(-50%, -50%) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg); }
}

/* Football Championship Ring */
.football-championship-ring {
    position: relative;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    border: 3px solid #d97706;
    animation: ringGlow 3s ease-in-out infinite;
}

.football-championship-ring::before {
    content: '🏆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

@keyframes ringGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.8); }
}

/* Football Stadium */
.football-stadium {
    position: relative;
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 30px 30px 0 0;
    border: 2px solid #15803d;
    overflow: hidden;
}

.football-stadium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 25%, transparent 50%, rgba(255, 255, 255, 0.1) 75%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    background-size: 40px 40px, 100% 100%;
}

.football-stadium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 0 0 40px 40px;
    border: 2px solid #15803d;
    border-top: none;
}

/* Football Weather Effects */
.football-rain-effect {
    position: relative;
    width: 100%;
    height: 40px;
    overflow: hidden;
}

.football-rain-effect::before,
.football-rain-effect::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #3b82f6);
    animation: rainFall 1s linear infinite;
}

.football-rain-effect::before {
    left: 20%;
    animation-delay: 0s;
}

.football-rain-effect::after {
    left: 80%;
    animation-delay: 0.5s;
}

@keyframes rainFall {
    0% { transform: translateY(-40px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(40px); opacity: 0; }
}

/* Football Sunset Effect */
.football-sunset-effect {
    position: relative;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, #fbbf24, #f59e0b, #dc2626, #7c2d12);
    border-radius: 0 0 25px 25px;
    animation: sunsetGlow 4s ease-in-out infinite;
}

@keyframes sunsetGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Football Night Mode */
.football-night-mode {
    position: relative;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    border-radius: 0 0 25px 25px;
    overflow: hidden;
}

.football-night-mode::before {
    content: '⭐';
    position: absolute;
    top: 10px;
    left: 20%;
    font-size: 12px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.football-night-mode::after {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 20%;
    font-size: 10px;
    animation: starTwinkle 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Football Victory Fireworks */
.football-victory-fireworks {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.football-victory-fireworks::before,
.football-victory-fireworks::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #fbbf24, #f59e0b, #dc2626);
    border-radius: 50%;
    animation: fireworkExplode 2s ease-out infinite;
}

.football-victory-fireworks::before {
    left: 30%;
    animation-delay: 0s;
}

.football-victory-fireworks::after {
    left: 70%;
    animation-delay: 1s;
}

@keyframes fireworkExplode {
    0% { 
        transform: scale(0) translateY(30px); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1) translateY(0); 
        opacity: 1; 
    }
    100% { 
        transform: scale(2) translateY(-30px); 
        opacity: 0; 
    }
}

/* Football Team Huddle */
.football-team-huddle {
    position: relative;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.football-team-huddle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3), transparent);
    border-radius: 50%;
    animation: huddleGlow 3s ease-in-out infinite;
}

@keyframes huddleGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* Football Strategy Board */
.football-strategy-board {
    position: relative;
    width: 100px;
    height: 70px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 2px solid #fbbf24;
    border-radius: 10px;
    overflow: hidden;
}

.football-strategy-board::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.1) 25%, transparent 50%, rgba(251, 191, 36, 0.1) 75%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(251, 191, 36, 0.1) 50%, transparent 100%);
    background-size: 20px 20px, 100% 100%;
}

.football-strategy-board::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: strategyMove 4s ease-in-out infinite;
}

@keyframes strategyMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(40px, 0); }
    50% { transform: translate(40px, 20px); }
    75% { transform: translate(0, 20px); }
    100% { transform: translate(0, 0); }
}

/* Football Team Bus */
.football-team-bus {
    position: relative;
    width: 100px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    border: 2px solid #1e40af;
}

.football-team-bus::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.football-team-bus::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.football-team-bus .bus-wheels {
    position: absolute;
    bottom: -5px;
    width: 100%;
    height: 10px;
}

.football-team-bus .bus-wheels::before,
.football-team-bus .bus-wheels::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: #1e293b;
    border-radius: 50%;
    border: 2px solid #475569;
}

.football-team-bus .bus-wheels::before {
    left: 15px;
}

.football-team-bus .bus-wheels::after {
    right: 15px;
}

/* Football Training Ground */
.football-training-ground {
    position: relative;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 10px;
    border: 2px solid #15803d;
    overflow: hidden;
}

.football-training-ground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 25%, transparent 50%, rgba(255, 255, 255, 0.1) 75%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    background-size: 30px 30px, 100% 100%;
}

.football-training-ground::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Football Team Locker Room */
.football-locker-room {
    position: relative;
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 10px;
    border: 2px solid #334155;
    overflow: hidden;
}

.football-locker-room::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    background: rgba(251, 191, 36, 0.3);
    border-radius: 3px;
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.football-locker-room::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: rgba(251, 191, 36, 0.3);
    border-radius: 3px;
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.football-locker-room .locker-benches {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 8px;
    background: #475569;
    border-radius: 4px;
}

/* Football Team Trophy Case */
.football-trophy-case {
    position: relative;
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 10px;
    border: 3px solid #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.football-trophy-case::before {
    content: '🏆';
    font-size: 24px;
    animation: trophyShine 3s ease-in-out infinite;
}

@keyframes trophyShine {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Football Team Flag */
.football-team-flag {
    position: relative;
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 0 5px 5px 0;
    border: 1px solid #b91c1c;
}

.football-team-flag::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 30px;
    background: #8b4513;
    border-radius: 2px;
}

.football-team-flag::after {
    content: '⚽';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    animation: flagWave 3s ease-in-out infinite;
}

/* Football Team Anthem */
.football-team-anthem {
    position: relative;
    width: 100%;
    height: 30px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #fbbf24, #22c55e, #3b82f6);
    border-radius: 15px;
    animation: anthemWave 4s ease-in-out infinite;
}

@keyframes anthemWave {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Football Team Victory Parade */
.football-victory-parade {
    position: relative;
    width: 100%;
    height: 40px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(251, 191, 36, 0.3) 0%, transparent 50%);
    animation: paradeFloat 3s ease-in-out infinite;
}

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

/* Football Team Championship Celebration */
.football-championship-celebration {
    position: relative;
    width: 100%;
    height: 50px;
    background: 
        radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(251, 191, 36, 0.4) 0%, transparent 50%);
    animation: celebrationGlow 2s ease-in-out infinite;
}

@keyframes celebrationGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Football Team Legacy */
.football-team-legacy {
    position: relative;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 0 0 30px 30px;
    border: 2px solid #fbbf24;
    overflow: hidden;
}

.football-team-legacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: legacyShine 5s ease-in-out infinite;
}

@keyframes legacyShine {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Football Team Future */
.football-team-future {
    position: relative;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #06d6a0, #059669, #0d9488);
    border-radius: 20px;
    animation: futureGlow 3s ease-in-out infinite;
}

@keyframes futureGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(6, 214, 160, 0.3); }
    50% { box-shadow: 0 0 30px rgba(6, 214, 160, 0.6); }
}

/* Product Detail Page Styles - Gen Z Edition */
.product-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: grainMove 20s linear infinite;
}

@keyframes grainMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: slideInLeft 0.8s ease-out;
}

.product-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.product-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.highlight {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.product-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.product-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.product-icon-large::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

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

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

/* Product Details Section */
.product-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    position: relative;
}

.product-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
}

.product-specifications,
.product-features {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-specifications:hover,
.product-features:hover {
    transform: translateY(-5px);
}

.product-specifications h3,
.product-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-specifications h3::before,
.product-features h3::before {
    content: '⚡';
    font-size: 1.2rem;
}

.product-specifications ul,
.product-features ul {
    list-style: none;
    padding: 0;
}

.product-specifications li,
.product-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.product-specifications li:last-child,
.product-features li:last-child {
    border-bottom: none;
}

.product-specifications li:hover,
.product-features li:hover {
    background: #f7fafc;
    padding-left: 1rem;
    border-radius: 8px;
}

.product-specifications strong {
    color: #667eea;
    font-weight: 600;
    min-width: 120px;
}

/* Product Options */
.product-options {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

.product-options h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.product-options h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.option-group {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.option-group:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.option-group h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-group h4::before {
    content: '🎯';
    font-size: 1rem;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.option-item:last-child {
    border-bottom: none;
}

.option-item:hover {
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    transform: translateX(5px);
}

.option-label {
    font-weight: 600;
    color: #2d3748;
}

.option-desc {
    color: #718096;
    font-size: 0.9rem;
    text-align: right;
}

/* Usage Guide Section */
.usage-guide {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.usage-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.usage-guide h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

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

.usage-item {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.usage-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.usage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.usage-item:hover .usage-icon {
    transform: rotate(360deg) scale(1.1);
}

.usage-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.usage-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Related Products Section */
.related-products {
    padding: 5rem 0;
    background: #f7fafc;
}

.related-products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.related-products h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

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

.related-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.related-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.related-item:hover::before {
    left: 100%;
}

.related-item:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.related-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.related-item:hover .related-icon {
    transform: scale(1.1) rotate(5deg);
}

.related-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.related-item p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Breadcrumb Styles */
.breadcrumb-section {
    background: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
    background: rgba(102, 126, 234, 0.1);
}

.breadcrumb span {
    color: #2d3748;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .product-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-options {
        position: static;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .product-highlights {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-hero-text h1 {
        font-size: 2rem;
    }
    
    .product-subtitle {
        font-size: 1.1rem;
    }
    
    .product-icon-large {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .highlight {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Dark Mode Support */
body.dark-mode .product-details {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

body.dark-mode .product-info h2,
body.dark-mode .product-options h3,
body.dark-mode .related-products h2 {
    color: #e2e8f0;
}

body.dark-mode .product-description p,
body.dark-mode .product-specifications,
body.dark-mode .product-features,
body.dark-mode .product-options,
body.dark-mode .related-item {
    background: #2d3748;
    color: #e2e8f0;
}

body.dark-mode .product-specifications li:hover,
body.dark-mode .product-features li:hover {
    background: #4a5568;
}

body.dark-mode .option-group {
    background: #4a5568;
}

body.dark-mode .option-item:hover {
    background: #2d3748;
}

body.dark-mode .related-products {
    background: #1a202c;
}

body.dark-mode .breadcrumb-section {
    background: #2d3748;
    border-bottom-color: #4a5568;
}

body.dark-mode .breadcrumb span {
    color: #e2e8f0;
}

/* Additional Product Detail Page Styles */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.hero-cta .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: floatElement 4s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.7;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
}

.floating-element:nth-child(3) {
    top: 40%;
    left: 20%;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 1;
    }
}

.product-benefits {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-benefits:hover {
    transform: translateY(-5px);
}

.product-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

.quick-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.quick-cta h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.quick-cta .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-cta .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.view-more {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.related-item:hover .view-more {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced hover effects */
.product-specifications li:hover strong,
.product-features li:hover {
    color: #667eea;
}

.option-group:hover h4::before {
    animation: spin 0.5s ease-in-out;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced animations for product icon */
.product-icon-large i {
    animation: ballSpin 4s linear infinite;
}

@keyframes ballSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced breadcrumb */
.breadcrumb a:hover {
    transform: translateY(-1px);
}

/* Enhanced CTA section */
.cta-section .btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Dark mode enhancements */
body.dark-mode .product-benefits {
    background: #2d3748;
    color: #e2e8f0;
}

body.dark-mode .benefit-item {
    background: #4a5568;
    color: #e2e8f0;
}

body.dark-mode .benefit-item:hover {
    background: #2d3748;
    border-color: #667eea;
}

body.dark-mode .quick-cta {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

body.dark-mode .quick-cta .btn {
    background: #e2e8f0;
    color: #2d3748;
}

body.dark-mode .quick-cta .btn:hover {
    background: #cbd5e0;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-elements {
        display: none;
    }
    
    .quick-cta {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-cta .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .quick-cta {
        padding: 1.5rem;
    }
}

/* Product Categories Section - Gen Z Style */
.product-categories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.product-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: grainMove 20s linear infinite;
}

.product-categories .container {
    position: relative;
    z-index: 2;
}

.product-categories h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 3rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes grainMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

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

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

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(255, 107, 107, 0.5);
    }
}

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

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.category-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    border-color: rgba(255, 107, 107, 0.3);
}

.category-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(78, 205, 196, 0.05));
    border-color: rgba(78, 205, 196, 0.3);
}

.category-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.1), rgba(69, 183, 209, 0.05));
    border-color: rgba(69, 183, 209, 0.3);
}

.category-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(150, 206, 180, 0.1), rgba(150, 206, 180, 0.05));
    border-color: rgba(150, 206, 180, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.category-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-icon::after {
    opacity: 1;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.category-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.category-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.category-card li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.category-card li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.category-card:hover li {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.category-card:hover li::before {
    transform: scale(1.2) rotate(15deg);
    opacity: 1;
}

/* Floating particles for extra Gen Z vibes */
.category-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 3s ease-in-out infinite;
}

.category-card:nth-child(2)::after {
    animation-delay: 0.5s;
}

.category-card:nth-child(3)::after {
    animation-delay: 1s;
}

.category-card:nth-child(4)::after {
    animation-delay: 1.5s;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 0.8; }
}

/* Responsive design for Gen Z mobile users */
@media (max-width: 768px) {
    .product-categories h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .category-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .category-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .product-categories h2 {
        font-size: 2rem;
    }
    
    .category-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.4rem;
    }
    
    .category-card p {
        font-size: 0.9rem;
    }
    
    .category-card li {
        font-size: 0.85rem;
    }
}

/* Dark mode support for Gen Z night owls */
body.dark-mode .product-categories {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

body.dark-mode .product-categories h2 {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .category-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .category-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hover effects for touch devices */
@media (hover: none) {
    .category-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .category-card:active {
        transform: scale(0.98);
    }
}

/* Enhanced equipment card button with better hover effects */
.equipment-card .btn {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 25px 25px;
    display: block;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

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

.equipment-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.equipment-card .btn:active {
    transform: translateY(0);
}

/* Enhanced feature tags with better hover effects */
.equipment-features span {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.equipment-features span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.equipment-features span:hover::before {
    left: 100%;
}

.equipment-features span:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Enhanced equipment icon with unique colors for each card */
.equipment-card:nth-child(1) .equipment-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.equipment-card:nth-child(2) .equipment-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.equipment-card:nth-child(3) .equipment-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.equipment-card:nth-child(4) .equipment-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.equipment-card:nth-child(5) .equipment-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.equipment-card:nth-child(6) .equipment-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Enhanced card entrance animation with staggered delays */
.equipment-card:nth-child(1) { animation-delay: 0.1s; }
.equipment-card:nth-child(2) { animation-delay: 0.2s; }
.equipment-card:nth-child(3) { animation-delay: 0.3s; }
.equipment-card:nth-child(4) { animation-delay: 0.4s; }
.equipment-card:nth-child(5) { animation-delay: 0.5s; }
.equipment-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced card entrance animation */
@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced floating particle animation */
@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.8;
    }
}

/* Enhanced gradient shift animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced equipment grid with better spacing and layout */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
    padding: 0 20px;
}

/* Enhanced equipment card with better visual hierarchy */
.equipment-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
    animation: cardEntrance 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    padding: 30px 0;
}

/* Enhanced floating particle effect */
.equipment-card::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.7;
    animation: floatParticle 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Enhanced top gradient bar */
.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Enhanced hover effects */
.equipment-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.equipment-card:hover::before {
    height: 7px;
    background-size: 300% 100%;
}

.equipment-card:hover::after {
    transform: scale(1.8);
    opacity: 1;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

/* Enhanced equipment icon with better sizing and effects */
.equipment-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.equipment-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    position: relative;
}

/* Enhanced icon shine effect */
.equipment-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

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

.equipment-card:hover .equipment-icon {
    transform: scale(1.15) rotate(8deg);
}

/* Enhanced Dark Mode Contact Styles - Force Override */
body.dark-mode .contact-info,
body.dark-mode .contact-info * {
    background: rgba(30, 41, 59, 0.95) !important;
    color: #ffffff !important;
}

/* Force override the white background specifically */
body.dark-mode .contact-info {
    background: rgba(30, 41, 59, 0.95) !important;
    background-image: none !important;
}

body.dark-mode .contact-info .info-header h3,
body.dark-mode .contact-info .info-header p {
    color: #ffffff !important;
}

body.dark-mode .contact-item,
body.dark-mode .contact-item * {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Force override the light background specifically */
body.dark-mode .contact-item {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
    background-image: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
}

body.dark-mode .contact-item .item-content h4,
body.dark-mode .contact-item .item-content p {
    color: #ffffff !important;
}

body.dark-mode .contact-form,
body.dark-mode .contact-form * {
    background: rgba(15, 23, 42, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Ensure consistent dark mode appearance */
body.dark-mode .contact-info,
body.dark-mode .contact-form {
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

/* Ultimate override for dark mode contact styling */
body.dark-mode #contact .contact-info,
body.dark-mode .contact .contact-info {
    background: rgba(30, 41, 59, 0.95) !important;
    background-image: none !important;
    color: #ffffff !important;
}

body.dark-mode #contact .contact-item,
body.dark-mode .contact .contact-item {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
    background-image: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
    color: #ffffff !important;
}

/* Nuclear option - force override everything */
body.dark-mode .contact-info,
body.dark-mode .contact-info *,
body.dark-mode .contact-item,
body.dark-mode .contact-item * {
    background: rgba(30, 41, 59, 0.95) !important;
    background-image: none !important;
    color: #ffffff !important;
}

body.dark-mode .contact-item {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
    background-image: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.95)) !important;
}