/* ===== SERVICES ===== */
.services-section {
    padding: 20px 20px;
    background: linear-gradient(180deg, #e8fff0 0%, #c8f7d4 100%);
}

/* HEADER */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 36px;
    color: #0f3d2e;
}

.services-header p {
    color: #2f5d4a;
    max-width: 600px;
    margin: 0 auto;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* ICON */
.service-card img {
    width: 50px;
    margin-bottom: 15px;
}

/* TITLE */
.service-card h3 {
    color: #0f3d2e;
    margin-bottom: 10px;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #355c4a;
    margin-bottom: 15px;
}

/* LINK */
.service-card a {
    color: #0f3d2e;
    text-decoration: none;
    font-weight: 600;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* OUTER BOX */
 .my-logo-slider-box {
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(180deg, #0f3d2e 0%, #081c16 100%);
}

@media (max-width: 992px){

    .services-grid{
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-card{
        width: 100%;
    }
}