/* ==================================================
   SERVICES PAGE CSS
   ================================================== */
.services-hero-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../assets/ourservice.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 140px 0 100px 0;
    text-align: center;
    position: relative;
}

.services-hero-banner h1 {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .services-hero-img-wrapper img {
        height: 280px;
    }

    .services-img-label {
        letter-spacing: 2px;
    }
}

.services-grid-section {
    background-color: #f4f5f7;
    padding: 100px 0;
}

.services-page-header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    color: var(--primary-black);
    line-height: 1.1;
    margin-bottom: 20px;
}

.services-page-header p {
    font-family: "DM Sans", sans-serif;
    color: var(--text-gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.service-img-wrapper {
    position: relative;
    height: 250px;
}

.service-img-wrapper img {
    height: 100%;
    object-fit: cover;
}

.service-pill {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-black);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card-body {
    padding-top: 40px !important;
    text-align: center;
}

.service-desc {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.service-features {
    text-align: left;
    padding: 0 10px;
}

.service-features li {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-features li i {
    color: #ffffff;
    background: var(--accent-yellow);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

/* Inheriting start-btn styles from global buttons or redefining for this page */
.start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-yellow);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.start-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: #ffffff;
    color: var(--accent-yellow);
    box-shadow: 0 10px 20px #4F94D2;
}

@media (max-width: 768px) {
    .services-hero-banner {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .services-hero-banner h1 {
        font-size: 3rem;
    }

    .services-hero-banner::before {
        height: 45%;
    }

    .service-img-wrapper {
        height: 180px;
    }

    .service-card-body {
        padding-top: 24px !important;
        padding-bottom: 10px;
    }
}