/* Why Choose Us Section */
.why-choose-us-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E1E4E5, transparent);
}

/* Why Choose Cards */
.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #F0F0F0;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #63AB45 0%, #113D48 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(99, 171, 69, 0.15);
    border-color: #63AB45;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    margin-bottom: 25px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #63AB45 0%, #113D48 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(99, 171, 69, 0.3);
}

.why-choose-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(99, 171, 69, 0.4);
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.why-choose-card:hover .card-content h3 {
    color: #63AB45;
}

.card-content p {
    font-size: 15px;
    color: #687179;
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.why-choose-cta {
    background: linear-gradient(135deg, #F7F7F7 0%, #E1E4E5 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(99, 171, 69, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: #687179;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-choose-card {
        padding: 30px 25px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .why-choose-cta {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .why-choose-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        border-radius: 15px;
    }

    .card-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 14px;
    }

    .why-choose-cta {
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .theme-btn {
        width: 100%;
        margin: 0 !important;
    }

    .cta-buttons .theme-btn.ms-3 {
        margin-left: 0 !important;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .why-choose-card {
        padding: 20px 15px;
    }

    .card-icon-wrapper {
        margin-bottom: 20px;
    }

    .why-choose-cta {
        padding: 25px 15px;
    }

    .cta-content h3 {
        font-size: 20px;
    }
}

/* Why Choose Section - About Page */
.why-choose-section {
    position: relative;
    overflow: hidden;
}

.why-choose-section.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why-choose-item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #F0F0F0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #63AB45 0%, #113D48 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(99, 171, 69, 0.15);
    border-color: #63AB45;
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #63AB45 0%, #113D48 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(99, 171, 69, 0.3);
    margin: 0 auto 25px;
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(99, 171, 69, 0.4);
}

.why-choose-item .title {
    font-size: 22px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.why-choose-item:hover .title {
    color: #63AB45;
}

.why-choose-item p {
    font-size: 15px;
    color: #687179;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 992px) {
    .why-choose-item {
        padding: 35px 25px;
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .why-choose-item .title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-item {
        padding: 30px 20px;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .why-choose-item .title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .why-choose-item p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .why-choose-item {
        padding: 25px 15px;
    }

    .why-choose-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .why-choose-item .title {
        font-size: 16px;
    }
}

