﻿.hero {
    min-height: 90vh;
    background: linear-gradient( 135deg, #1E8E5A, #43AA6B );
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    color: white;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 2rem;
    margin-top: 15px;
}

.hero-text {
    font-size: 1.2rem;
}

.search-widget {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.why-us {
    background: #f8f9fa;
    padding: 100px 0;
    font-size: 1.2rem;
}

.stats {
    background: #183153;
    color: white;
    padding: 100px 0;
}

    .stats h2 {
        font-size: 4rem;
        font-weight: 800;
    }
