/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    background: url("multimedia/Screenshot\ 2026-02-17\ 080832.jpg") center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

/* Dark overlay for readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Content should sit above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 850px;
}

/* Headline styling */
.hero-section h1 {
    font-size: 3rem;
}

/* Bigger paragraph */
.hero-section .lead {
    font-size: 1.2rem;
    line-height: 1.8;
}

.services h5{
    color: #1f6f8b;
    font-weight: bold;
}

/* Service Cards */

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    height: 300px;
    object-fit: cover;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ================= WHY CHOOSE US ================= */

.why-choose-us {
    background-color: #f8f9fa;
}

.feature-box {
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.feature-box .icon i {
    font-size: 40px;
    color: #2aa198; /* brand teal */
}

/* ================= HOW IT WORKS ================= */

.how-it-works {
    background-color: #ffffff;
}

.step-box {
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.step-icon i {
    font-size: 45px;
    color: #1f6f8b; /* brand blue */
}


/* Mobile */
@media (max-width: 768px) {

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
    }

}

/* Small phones */
@media (max-width: 375px) {

    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtext {
        font-size: 0.85rem;
    }
}


