/* Equal height cards for both sections */
.features-section .row,
.services-section .row {
    display: flex !important;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: stretch;
}

.features-section .features-block,
.services-section .service-style-one {
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 30px);
    margin: 0 15px 30px 15px;
    min-height: 300px;
}

.features-section .features-block .inner-box,
.services-section .service-style-one .inner-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

/* Image styling */
.features-section .icon-box,
.services-section .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 100%;
}

.features-section .icon-box img,
.services-section .icon-box img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Content alignment */
.features-section h3,
.services-section h3 {
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-section .designation,
.services-section .text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.services-section .read-more {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section .features-block,
    .services-section .service-style-one {
        width: calc(100% - 30px);
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .features-section .features-block,
    .services-section .service-style-one {
        width: calc(50% - 30px);
    }
}
