﻿ 
.alt-services {
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
    transition: all .3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.service-content p {
    margin: 0;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

/* Tablet */
@media (max-width: 991px) {

    .service-card img {
        height: 240px;
    }

    .service-content h3 {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .service-card {
        margin-bottom: 20px;
    }

    .service-card img {
        height: 220px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}