/* Start Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    border-radius: 0 0 30px 30px;
}

.why-choose-section .why-choose-section-title {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.why-choose-section .why-choose-section-heading {
    color: var(--primary-color);
}

.why-choose-section .feature-box {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0px 0px 30px -10px #B6B6B626;
    width: 300px;
}

@media (max-width: 767.98px) {
    .why-choose-section .feature-box {
        width: 100%;
        max-width: 100%;
    }
}

.why-choose-section .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-section .feature-icon {
    background-color: var(--light-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-choose-section .feature-icon i {
    color: var(--primary-color);
}


.why-choose-section .feature-title {
    min-height: 60px;
    text-align: center;
    max-width: 200px;
    margin-inline: auto;
}

@media (max-width: 991.98px) {
    .why-choose-section .feature-title {
        text-align: center;
    }
}
@media (max-width: 767.98px) {
    .why-choose-section .features-box-group {
        flex-direction: column;
    }
}

.why-abci-section {
    background-color: #fff;
}

.why-abci-section .feature-box {
    background-color: var(--light-color);
}

.why-abci-section .feature-box:hover {
    background-color: var(--light-color);
}

.why-abci-section .feature-icon {
    background-color: #fff;
}
@media (min-width: 2400.98px) {
    .features-box-group:first-child{
        padding-inline-end: 9rem;
    }
}
