/* ===============================
   SERVICES PAGE — CLEAN CSS FILE
   =============================== */

/* HERO BANNER */
.services-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.services-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 50, 0.55); /* strong blue overlay */
}

.services-hero .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 90px;
}

/* SECTION TITLE */
.services-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-blue);
}

/* SERVICE CARDS */
.service-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.20);
}

/* FIX IMAGE SIZING */
.service-box img {
    width: 100%;
    height: 200px; /* SAME HEIGHT FOR ALL */
    object-fit: cover;
}

/* TEXT AREA */
.service-body {
    padding: 20px;
}

.service-body h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.service-body p {
    color: #555;
    line-height: 1.6;
}
