.why-choose-us {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-point {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-point:hover {
    transform: translateX(15px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #f0f8ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.text-box {
    margin-left: 1.5rem;
    flex: 1;
    color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.text-box h5 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.text-box p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.service-point:hover .text-box {
    transform: translateX(10px);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .service-point {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-point .text-box {
        margin-left: 0;
        margin-top: 10px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }
}

[data-aos="fade-right"],
[data-aos="fade-left"] {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s, transform 1s;
}

[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
