/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary) 100%); */
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}
.hero > .container{
    margin-top: 100px;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--bs-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bs-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--bs-box-shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bs-box-shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bs-dark);
}

.feature-card p {
    color: var(--bs-dark);
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background-color: var(--bg-white);
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bs-dark);
}

.cta p {
    font-size: 1.1rem;
    color: var(--bs-dark);
    margin-bottom: 2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .subjects-list {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .quiz-actions {
        flex-direction: column;
    }
    
    .quiz-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .score-card {
        padding: 2rem 1rem;
    }
    
    .score-percentage {
        font-size: 3rem;
    }
}