body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f7fb;
    color: #333;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

/* Navbar */
.navbar {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.logo {
    display: flex;
    margin-left: 50px;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 30px;
}

.navbar a img {
    max-height: 60px;
    margin-right: 30px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #0b7fab;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 0.5rem 0.5rem;
    background: linear-gradient(135deg, #3498db, #5dade2);
    color: white;
    transition: background 0.3s ease;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: fadeInDown 0.8s ease-in-out;
}

.hero-section p {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease-in-out;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    row-gap: 1.9rem;
    padding: 2rem;
    justify-items: center;
    max-width: 720px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75%;
    max-width: 320px;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    margin-bottom: 1rem;
    height: 50px;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card h3 {
    margin: 0.5rem 0;
    color: #0b7fab;
    font-size: 1.3rem;
}

.service-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
