﻿/* --------------- Why Us Section --------------- */
.why-us-section {
    padding: 4rem 1rem;
    background-color: white;
    text-align: center;
}

.why-us-container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #003b5c;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.why-us-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .why-us-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

.icon {
    font-size: 2.2rem;
    color: #e65c0d;
    margin-bottom: 1rem;
}

.why-us-card h3 {
    font-size: 1.2rem;
    color: #003b5c;
    margin-bottom: 0.5rem;
}

.why-us-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}
