body {
    font-family: 'Segoe UI', sans-serif;
    color: #2b2b2b;
    margin: 0;
    background: #f8fafc;
}

/* Container base */
.container {
    width: 90%;
    margin: auto;
}

/* Headings */
.section-title {
    color: #003366;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.section-heading {
    color: #003366;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* About Overview */
.about-overview {
    background: linear-gradient(120deg, #e8f0ff, #f8fbff);
    padding: 60px 0;
    border-bottom: 2px solid #dee2e6;
}

    .about-overview img {
        border-radius: 15px;
        transition: transform 0.3s ease;
    }

        .about-overview img:hover {
            transform: scale(1.05);
        }

/* Services */
.services-section {
    padding: 70px 0;
    background: #ffffff;
}

.service-card {
    background: linear-gradient(160deg, #e6f0ff, #ffffff);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

    .service-card i {
        font-size: 2.2rem;
        color: #0056b3;
        margin-bottom: 15px;
    }

/* Stats */
.stats-section {
    background: linear-gradient(120deg, #003366, #004c99);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease;
}

    .stat-card:hover {
        transform: scale(1.05);
    }

    .stat-card h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
    }

    .stat-card p {
        margin: 0;
        color: #dbe9ff;
    }

/* Contact Section */
.contact-info {
    padding: 70px 0;
    background: #f0f6ff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
    }

    .contact-card i {
        font-size: 1.8rem;
        color: #004c99;
        margin-bottom: 10px;
    }

/* CTA */
.cta-section {
    background: linear-gradient(120deg, #004c99, #002b5c);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .cta-section p {
        color: #dbe9ff;
        margin-bottom: 20px;
    }

.btn-contact {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .btn-contact:hover {
        background-color: #0056b3;
    }

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }
}
