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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #0f172a;
    overflow-x: hidden;
    /* Normal scroll behavior - no custom settings */
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

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

/* Header and Navigation */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    animation: logoGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(59,130,246,0.5));
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 10px rgba(59,130,246,0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(59,130,246,0.8)); }
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    position: relative;
}





.nav-link:hover,
.nav-link.active {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    transform: translateY(-2px);
}

.login-btn {
    background: #3b82f6;
    color: white !important;
    border: 2px solid #3b82f6;
    font-weight: 600;
}

.login-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f172a 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: heroPulse 8s ease-in-out infinite;
    z-index: 10;
}

@keyframes heroPulse {
    0%, 100% { 
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f172a 100%);
    }
    50% { 
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 197, 253, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-20px) rotate(1deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(10px) rotate(-1deg);
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-10px) rotate(0.5deg);
        opacity: 1;
    }
}

.hero::after {
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(59,130,246,0.15)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-10px) translateY(-10px); }
}

.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: 15;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(59,130,246,0.3);
    letter-spacing: -1px;
    animation: glow 2s ease-in-out infinite alternate, titleFloat 6s ease-in-out infinite;
    position: relative;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite;
    opacity: 0;
}

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

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

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(59,130,246,0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(59,130,246,0.5)); }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    animation: subtitleSlide 1.5s ease-out 0.5s both;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    animation: lineExpand 2s ease-out 1s forwards;
}

@keyframes subtitleSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

@keyframes lineExpand {
    to {
        width: 100%;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: buttonsBounce 1s ease-out 1.5s both;
    position: relative;
    z-index: 20;
}

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

.btn {
    display: inline-block;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 0 30px rgba(59,130,246,0.3);
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 40px rgba(59,130,246,0.4);
    animation: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(59,130,246,0.3);
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa, #93c5fd, #3b82f6);
    border-radius: 22px;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 25px 50px rgba(59,130,246,0.5), 0 0 40px rgba(59,130,246,0.4);
    border-color: rgba(255,255,255,0.2);
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 2px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59,130,246,0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-full {
    width: 100%;
}

/* Game Preview */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroImageBounce 4s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: heroImagePulse 2s ease-in-out infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.15), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: heroImageSpin 8s linear infinite;
    z-index: -1;
}

@keyframes heroImageBounce {
    0%, 100% { 
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    25% { 
        transform: translateY(-20px) scale(1.05) rotate(2deg);
    }
    50% { 
        transform: translateY(-10px) scale(1.02) rotate(-1deg);
    }
    75% { 
        transform: translateY(-25px) scale(1.08) rotate(3deg);
    }
}

@keyframes heroImagePulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.3);
    }
}

@keyframes heroImageSpin {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

.game-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.game-card {
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 25px 50px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
    animation: heroImgGlow 3s ease-in-out infinite alternate;
}

@keyframes heroImgGlow {
    from { 
        filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
    }
    to { 
        filter: drop-shadow(0 12px 24px rgba(59, 130, 246, 0.5));
    }
}

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

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-20px) scale(1.05) rotateY(5deg);
    box-shadow: 
        0 40px 80px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    animation: none;
}

.game-card:hover .hero-img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(59, 130, 246, 0.6));
}

.hero-image:hover::before {
    opacity: 0.8;
    transform: scale(1.2);
}

.hero-image:hover::after {
    animation-duration: 4s;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.25), transparent);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.game-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #60a5fa;
    text-shadow: 0 0 25px rgba(96, 165, 250, 0.6);
    filter: drop-shadow(0 8px 16px rgba(59,130,246,0.5));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.game-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.game-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: conic-gradient(from 0deg, transparent, rgba(96, 165, 250, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 6px 12px rgba(59,130,246,0.4));
    }
    50% { 
        transform: translateY(-8px) scale(1.05);
        filter: drop-shadow(0 12px 20px rgba(59,130,246,0.6));
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

.game-card:hover .game-icon {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 15px 25px rgba(59,130,246,0.8));
    animation: none;
    color: #3b82f6;
    text-shadow: 0 0 35px rgba(59, 130, 246, 0.8);
}

.game-card:hover .game-icon::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
    background: radial-gradient(circle, rgba(96, 165, 250, 0.25) 0%, transparent 70%);
}

.game-card:hover .game-icon::after {
    opacity: 1;
    width: 120px;
    height: 120px;
    animation: iconRotate 3s linear infinite;
    background: conic-gradient(from 0deg, transparent, rgba(96, 165, 250, 0.3), transparent);
}

.game-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #60a5fa;
    font-weight: 600;
}

.game-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}

.about-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float 6s ease-in-out infinite;
}

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

.about-section h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    z-index: 2;
    color: white;
}

.about-section h2::before {
    content: 'ABOUT US';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: #60a5fa;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    color: white;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 2px;
}

.about-text p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.about-features::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    border-radius: 2px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30,41,59,0.8) 0%, rgba(51,65,85,0.6) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.2);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    margin-left: 30px;
}

.about-feature::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}

.about-feature:hover {
    transform: translateY(-8px) translateX(10px);
    box-shadow: 0 25px 50px rgba(59,130,246,0.25);
    border-color: rgba(59,130,246,0.3);
    background: linear-gradient(135deg, rgba(30,41,59,0.9) 0%, rgba(51,65,85,0.7) 100%);
}

.about-feature:hover::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 6px 20px rgba(59,130,246,0.5);
}

.about-feature .feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(59,130,246,0.3));
    transition: all 0.3s ease;
}

.about-feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(59,130,246,0.4));
}

.about-feature .feature-content h4 {
    font-size: 1.3rem;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-feature .feature-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

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

.about-card {
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(96,165,250,0.05) 100%);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(59,130,246,0.2);
    box-shadow: 
        0 25px 50px rgba(59,130,246,0.15),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59,130,246,0.15), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(59,130,246,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: rgba(59,130,246,0.3);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.about-stats .stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(30,41,59,0.9) 0%, rgba(51,65,85,0.7) 100%);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(59,130,246,0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(59,130,246,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-stats .stat-item::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.6s ease;
}

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

.stat-item:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 20px 40px rgba(59,130,246,0.25);
    background: linear-gradient(135deg, rgba(30,41,59,1) 0%, rgba(51,65,85,0.8) 100%);
}

.about-stats .stat-item h4 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(59,130,246,0.3));
}

.about-stats .stat-item p {
    color: #cbd5e1;
    font-weight: 500;
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
    transform: translateY(-2px);
}

.form-group input:focus {
    outline: none;
    border-color: #2c5aa0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.2), transparent);
}

.features-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float 8s ease-in-out infinite reverse;
}

.features-section h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    z-index: 2;
    color: white;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}

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

.feature-card {
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(59,130,246,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59,130,246,0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.2);
    background: rgba(59, 130, 246, 0.08);
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
    filter: drop-shadow(0 4px 8px rgba(59,130,246,0.3));
    position: relative;
    z-index: 2;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: conic-gradient(from 0deg, transparent, rgba(96, 165, 250, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 8px 16px rgba(59,130,246,0.6));
    color: #3b82f6;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(360deg);
    animation: iconRotate 2s linear infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #60a5fa;
    font-weight: 600;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Stats Section - Normal scrolling, no animations */
.stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: visible;
    z-index: 5;
    min-height: 400px;
    /* Ensure visibility */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 6;
    /* Ensure visibility */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fallback for browsers that don't support CSS Grid */
@supports not (display: grid) {
    .stats-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 250px;
        max-width: 300px;
    }
}

.stat-item {
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* Normal static state - no animations */
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .stat-item {
        background: rgba(59, 130, 246, 0.15);
    }
}

.stat-item::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.6s ease;
}

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

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.15);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(59,130,246,0.3);
    position: relative;
    z-index: 2;
    /* Ensure visibility */
    visibility: visible !important;
    opacity: 1 !important;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
    color: #cbd5e1;
    position: relative;
    z-index: 2;
    /* Ensure visibility */
    visibility: visible !important;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(59,130,246,0.3));
    /* Ensure emoji is visible */
    color: inherit;
    text-shadow: none;
    -webkit-text-fill-color: initial;
    -webkit-background-clip: initial;
    background: none;
    line-height: 1;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Android Emoji", "EmojiSymbols", "EmojiOne Mozilla", "Twemoji Mozilla", "Segoe UI Symbol", Arial, sans-serif;
    /* Ensure visibility */
    visibility: visible !important;
    opacity: 1 !important;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(59,130,246,0.5));
}

/* Failsafe - ensure stats are visible even if JavaScript fails */
@media (prefers-reduced-motion: no-preference) {
    .stat-item {
        opacity: 0;
        transform: translateY(50px);
    }
    
    .stat-item.animate {
        animation: statsFadeIn 0.8s ease-out forwards;
    }
}

/* For users who prefer reduced motion or if JavaScript fails */
@media (prefers-reduced-motion: reduce) {
    .stat-item {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fallback for no JavaScript */
.no-js .stat-item {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.8rem;
    }
    
    .stat-item p {
        font-size: 1.1rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    .stat-icon {
        font-size: 2.2rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: contactPulse 8s ease-in-out infinite;
}

@keyframes contactPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.contact-section h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    z-index: 2;
    color: white;
    animation: titleFloat 6s ease-in-out infinite;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

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

.contact-card {
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: contactCardFloat 4s ease-in-out infinite;
}

.contact-card:nth-child(1) { animation-delay: 0s; }
.contact-card:nth-child(2) { animation-delay: 1s; }
.contact-card:nth-child(3) { animation-delay: 2s; }

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

.contact-card::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.6s ease;
}

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

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
    filter: drop-shadow(0 6px 12px rgba(59,130,246,0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    z-index: 2;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: conic-gradient(from 0deg, transparent, rgba(96, 165, 250, 0.15), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 8px 16px rgba(59,130,246,0.6));
    color: #3b82f6;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.7);
}

.contact-card:hover .contact-icon::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
}

.contact-card:hover .contact-icon::after {
    opacity: 1;
    width: 70px;
    height: 70px;
    animation: iconRotate 2s linear infinite;
    background: conic-gradient(from 0deg, transparent, rgba(96, 165, 250, 0.25), transparent);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: #60a5fa;
    font-weight: 600;
}

.contact-card p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.contact-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form:hover::before {
    opacity: 1;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #60a5fa;
    font-weight: 700;
    text-align: center;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #cbd5e1;
    font-family: inherit;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: #94a3b8;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-form .form-group input:focus + label,
.contact-form .form-group input:valid + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group textarea:valid + label {
    top: -0.5rem;
    font-size: 0.85rem;
    color: #60a5fa;
    font-weight: 600;
}

.contact-form .form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease;
}

.contact-form .form-group input:focus ~ .form-line,
.contact-form .form-group textarea:focus ~ .form-line {
    width: 100%;
}

.contact-form .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-icon {
    font-size: 1.2rem;
    animation: sendIcon 2s ease-in-out infinite;
}

@keyframes sendIcon {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: all 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }

    .nav-link {
        width: 80%;
        max-width: 300px;
        margin: 0.5rem 0;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

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

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-img {
        max-width: 250px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

    .registration-form {
        padding: 2rem;
        margin: 0 1rem;
    }

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

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

    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .contact-section h2 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: auto; /* Normal scroll behavior */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #0f172a;
    overflow-x: hidden;
    /* Normal scroll behavior - no custom settings */
}

/* Form validation styles */
.form-group input:invalid {
    border-color: #e53e3e;
}

.form-group input:valid {
    border-color: #38a169;
}

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

.feature-card,
.stat-item {
    animation: fadeInUp 0.6s ease-out;
} 

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top::before {
    content: '↑';
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .back-to-top::before {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .back-to-top::before {
        font-size: 1.3rem;
    }
} 

/* Strong fallback to ensure stat icons are always visible */
.stats-section .stat-item .stat-icon {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit !important;
    -webkit-text-fill-color: initial !important;
    -webkit-background-clip: initial !important;
    background: none !important;
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
    line-height: 1 !important;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Android Emoji", "EmojiSymbols", "EmojiOne Mozilla", "Twemoji Mozilla", "Segoe UI Symbol", Arial, sans-serif !important;
} 

/* Particle animation */
@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
} 