.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f7bd8;
}

.text-justify {
    text-align: justify;
}

/* ================= LINE UNDER TITLE ================= */
.line-bottom {
    position: relative;
    display: inline-block;
}

.line-bottom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 65px;
    height: 4px;
    background: #218bce;
}

/* ================= CAROUSEL ================= */
.seva_slider {
    height: 100%;
}

.carousel-inner {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

/* ================= OFFER / SEVA CARDS ================= */
.offer-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    text-align: center;
    border-bottom: 6px solid #1f7bd8;
    transition: 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
}

.offer-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-img {
    transform: scale(1.05);
}

.offer-title {
    font-size: 20px;
    font-weight: 700;
    padding: 20px 10px 10px;
}

.offer-btn {
    display: inline-block;
    margin: 15px 0 25px;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    background: #fff;
    color: #444;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.offer-btn:hover {
    background: #1f7bd8;
    color: #fff;
    border-color: #1f7bd8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .carousel-item img {
        height: 135px !important;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }

    .offer-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 24px;
    }

    .offer-title {
        font-size: 18px;
    }

    .offer-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}