/* ==========================
   Why Choose Us Section
========================== */
.why-choose-us-section {
    padding: 80px 0;

}

.why-choose-us-section .section-header {
    margin-bottom: 50px;
}

.why-choose-us-section .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.why-choose-us-section .section-header p {
    font-size: 16px;
    color: #555;
}

/* Grid for cards */
.why-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Individual card */
.why-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    flex: 0 0 30%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* SVG Icon */
.why-card .icon {
    margin-bottom: 15px;
}

.why-card .icon svg {
    width: 50px;
    height: 50px;
    fill: #0073AA; /* Change color as needed */
}

/* Card titles and text */
.why-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .why-card {
        flex: 0 0 45%;
    }
}

@media (max-width: 576px) {
    .why-card {
        flex: 0 0 100%;
    }
}
