/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #1d3557;
    color: white;
}

header .logo img {
    height: 100px;
}


/* Navigation styling */
nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row; /* Vertically stack items for dropdown effect */
    padding: 0;
    margin: 0;
    gap: 20px;
    text-align: center;
}

/* Navigation links */
nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block; /* Ensure links are block elements for easier clicking */
}


/* Hero Section */
.hero {
    background: linear-gradient(to right, #457b9d, #1d3557);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero .btn {
    background-color: #e63946;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Services Section */
.services-overview {
    padding: 50px;
    text-align: center;
    background-color: #f4f4f9;
}

.services-overview h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.service-card {
    display: inline-block;
    width: 250px;
    max-height: 200px;
    padding: 15px 20px;
    margin: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    vertical-align: top;
    text-align: center;
}

/* Footer */
footer {
    background-color: #1d3557;
    color: white;
    padding: 20px;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Ensure hamburger menu is visible */
    .hamburger {
        display: flex;
    }

    /* Stack the nav items vertically */
    nav ul {
        flex-direction: column;
    }

   
}