/* Hero Section */
.hero {
    background: url('../images/hero-background.jpeg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-text h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    background: #0a5;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #083;
}

/* Services Section */
.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    color: #0a5;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #fff;
    flex: 1 1 250px;
    max-width: 300px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card h3 {
    color: #083;
    margin-bottom: 15px;
}

.card p {
    font-size: 1em;
    color: #555;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2.2em;
    }
    .hero-text p {
        font-size: 1em;
    }
    .cta-button {
        font-size: 1em;
    }
}
