/**

 * Why choose section Styles

 *

 * @package UltraLite_BS_ACF

 * @since 1.0.0

 */

.feature-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    display: flex;
    align-items: self-start;
    margin-bottom: 32px;
}


.feature-card h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: #000;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .feature-card {
        padding: 30px 20px;
    }

    .feature-card h3 {
        font-size: 24px;
    }
    .feature-icon img {
        width: 48px;
        height: 48px;
    }
    .feature-icon {
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) { 

    h2.whychoose {
        line-height: 56px;
    }
}


/* MOBILE + TABLET HORIZONTAL SCROLL */
@media (max-width: 1024px) {

    .features-section .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start !important;
    }

    .features-section .row::-webkit-scrollbar {
        display: none;
    }

    .features-section .col-md-4 {
        flex: 0 0 auto;
        width: 359px;
        max-width: 359px;
        padding: 0;
    }

    .features-section .feature-card:hover {
        transform: none;
    }
}