body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f1dcdc;
    color: #333;
}

header { 
    background-color: #140857;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

nav ul li a:hover {
    text-decoration: underline;
}


section {
    padding: 20px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    max-width: 800px;
}

section h2 {
    color: #140857;
}

footer {
    background-color: #140857;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f3f3f3;
}

.logo {
    width: 150px; /* Adjust logo size for responsiveness */
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #040b31;
}

header h2 {
    margin: 0;
    font-size: 1.2em;
    font-weight: normal;
    text-align: center;
    background-color: #023e8a;
    color: #fff;
    padding: 10px 0;
}

nav {
    background-color: #023e8a;
    text-align: right;
    padding: 10px 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ec1c24;
}

/* Scrolling Effect */
html {
    scroll-behavior: smooth;
}

.responsive-banner {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

#profile {
    padding: 20px;
    background-color: #f9f9f9; /* Optional: add a background color */
}

#profile {
    padding: 20px;
    background-color: #f9f9f9; /* Optional: add a background color */
}

#profile h2 {
    margin-top: 0;
    font-size: 2em;
}

#profile p {
    font-size: 1.2em;
    line-height: 1.6;
}

.contact-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.contact-container h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.contact-container p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    height: 40px;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.contact-button {
    width: 100%;
    padding: 10px;
    background-color: #ec1c24; /* Dark green color */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

.contact-button:hover {
    background-color: #140857; /* Darker green on hover */
}

.clients-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0;
}

.client-img {
    width: 30%; /* Adjusts image width to fit three in a row */
    margin-bottom: 10px;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .client-img {
        width: 48%; /* Adjusts image width for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .client-img {
        width: 100%; /* Full width on very small screens */
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none; /* Hide the menu initially */
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex; /* Show the menu when active */
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-link {
        padding: 10px 15px;
        width: 100%;
        text-align: left;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }
}

/* Optional: Add a hamburger menu icon */
.menu-toggle {
    display: none; /* Hide by default */
    font-size: 1.5em;
    cursor: pointer;
}

.mv-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
    margin: 20px 0;
}

.mv-item {
    width: 45%;
    text-align: center;
}

.mv-item h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.mv-item p {
    font-size: 1.2em;
    color: #666;
}

@media screen and (max-width: 768px) {
    .mv-container {
        flex-direction: column;
    }

    .mv-item {
        width: 100%;
        margin-bottom: 20px;
    }
}
