﻿/* --------------- Services Section --------------- */
.services-section {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-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;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    }

.service-icon {
    font-size: 2.5rem;
    color: #e65c0d;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #003b5c;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}
