.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 140px;  /* Important */
}


.hero-content {
    width: 100%;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.section {
    padding: 100px 0;
}

.section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.features-section {
    background: #f9fafc;
}

.features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    background: #ffffff;
    width: 340px;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.testimonials-section {
    background: #ffffff;
}

.testimonial-card {
    max-width: 750px;
    margin: 0 auto;
    background: #f9fafc;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #111;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

.stats-section {
    background: #f1f5f9;
    padding: 80px 0;
}


.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}



.stat-card {
    padding: 40px 30px;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}


.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
}


.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
    letter-spacing: -1px;
}


.stat-label {
    font-size: 15px;
    color: #555;
}

@media (max-width: 992px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    padding: 90px 0;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}

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