/* ==============================================
   Service Section - Custom Styling
   White text with consistent sizing
   ============================================== */

/* Service Card Container - Equal Heights */
.service-wrap .row.term-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Service Card Column */
.service-wrap .col {
    display: flex;
    margin-bottom: 30px;
}

/* Service Card - Fixed Equal Height */
.service-single-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 320px;
    height: 100%;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

/* Icon Section - Auto Height */
.service-single-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-single-card .icon img {
    max-width: 100%;
    height: auto;
}

/* Text Section - Flex Grow */
.service-single-card .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Service Card Title */
.service-single-card .text h2 {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 15px !important;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Service Card Description */
.service-single-card .text p {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    opacity: 0.9 !important;
    flex: 1;
}

/* Hover effect for better interactivity */
.service-single-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.2);
}

.service-single-card:hover .text h2 {
    color: #00c896 !important;
    transition: color 0.3s ease;
}

.service-single-card:hover .text p {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .service-single-card {
        min-height: 300px;
    }

    .service-single-card .text h2 {
        font-size: 18px !important;
        min-height: 50px;
    }

    .service-single-card .text p {
        font-size: 14px !important;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .service-single-card {
        min-height: auto;
        margin-bottom: 20px;
    }

    .service-single-card .text h2 {
        min-height: auto;
    }
}