﻿.services-container {
    font-family: "Poppins", sans-serif;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Header */
.header-section {
    position: relative;
    background: url('/Images/pexels-act13.jpg') center / cover no-repeat;
    height: 60vh;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-title {
    color: #fff;
    font-size: 4.5rem;
    margin-top: 6rem;
}

.small-description {
    width: 35%;
}

.small-p {
    color: #fff;
    font-size: 1.5rem;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 3rem;
}

/* Cards */
.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,.1);
    transition: transform .3s ease;
}

    .service-card:hover {
        transform: scale(1.05);
    }

.card-header {
    background: linear-gradient(135deg,#1a1a1a96,#4f94d4bf,#d6cfcfa1);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.card-content {
    padding: 1.5rem;
}

.service-desc,
.ofr,
.importance {
    font-size: 1.6rem;
}

.whatwo,
.wii {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 767px) {
    .header-title {
        font-size: 2rem;
    }

    .small-description {
        width: 90%;
    }

    .service-card {
        height: auto;
    }
}
