/* ===== Global ===== */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #f8f9fb;
}

section {
    padding: 70px 40px;
    text-align: center;
}

/* ===== Navbar ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Logo Styling */
.logo img {
    height: 40px;   /* Small logo size */
    width: auto;
}

/* Navigation Links */
.navbar nav a {
    text-decoration: none;
    margin-left: 25px;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #004aad;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(to right, #002855, #004aad);
    color: white;
    padding: 10px 10px;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
}

/* ===== About Section ===== */
.about-section h2 {
    font-size: 30px;
    color: #002855;
}

/* ===== Services ===== */
.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.service-box {
    width: 200px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-box h3 {
    color: #004aad;
}

/* ===== Footer ===== */
footer {
    background: #002855;
    color: #ccc;
    padding: 20px 20px;
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }
}
