/* Home Page Styling */

.hero-section {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    color: white;
    padding: 6rem 2rem;
    border-radius: 0 0 50px 50px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-hero-primary {
    background: white;
    color: #1a2980;
    border: 2px solid white;
}

.btn-hero-primary:hover {
    background: transparent;
    color: white;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 1rem;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-desc {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2980;
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-weight: 600;
    color: #7f8c8d;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: #2c3e50;
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 4rem 1rem;
        border-radius: 0 0 30px 30px;
    }
    
    .btn-hero-outline {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        width: 100%;
    }
    
    .btn-hero-primary {
        display: block;
        width: 100%;
    }
}
