﻿/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: #033f83;
}

.container {
    margin: auto;
    padding: 10px 10px;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 80vh;
    background: url('/images/main-header-page.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 72%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.3;
    }

        .hero-content h1 span {
            color: #00b894;
        }

    .hero-content .subtitle {
        font-size: 1.1rem;
        margin: 15px 0 30px;
        color: #f0f0f0;
    }

.btn-primary {
    display: inline-block;
    background: #00b894;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

    .btn-primary:hover {
        background: #019870;
    }

/* ===== Services Section ===== */
.services-overview {
    background: #fff;
    padding: 30px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1b3a57;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    background: #fefefe;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .service-item h3 {
        margin: 15px;
        font-size: 1.3rem;
        color: #124e91;
    }

    .service-item p {
        margin: 0 15px 20px;
        color: #555;
        font-size: 0.95rem;
    }

    .service-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

/* ===== Why Choose Us ===== */
.why-choose {
    background: #f4f8fb;
    text-align: center;
    padding: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .feature-card i {
        font-size: 2rem;
        color: #00b894;
        margin-bottom: 10px;
    }

    .feature-card h4 {
        font-size: 1.2rem;
        color: #124e91;
        margin-bottom: 10px;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 12px rgba(0,0,0,0.12);
    }

/* ===== Contact CTA ===== */
.contact-cta {
    background: linear-gradient(135deg, #00b894, #124e91);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

    .contact-cta h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .contact-cta p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

.btn-secondary {
    background: #fff;
    color: #124e91;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-secondary:hover {
        background: #f0f0f0;
    }

/* ===== Animations ===== */
.animate-fade-in {
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .contact-cta {
        padding: 60px 15px;
    }
}

/* ===== About Section ===== */
.about-section {
    background: #fff;
    padding: 20px 0;
}

    .about-section .section-title {
        color: #004080;
        font-size: 2.2rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

.about-text p {
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    display: inline-block;
    background: #004080;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: #0066cc;
    }
