/* General Styles */

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    color: white;
    padding: 15px 0;
    text-align: center;
    position: fixed; 
    top: 1.5%; 
    right: 7%;
    background: linear-gradient(to bottom, #1a1a1a, #333333);
    border-radius: 8px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
}

.nav-links {
    list-style-type: none;
     margin: 0; 
     padding: 0; 
     display: flex; 
     gap: 20px;
}

.nav-links li {
    display: inline;
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
}

/* hover effects */

ul li a {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding-bottom: 5px;
}

ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    background: white;
    transition: width 0.3s;
    left: 0;
    bottom: 0;
}

ul li a:hover::after {
    width: 100%;
}
/* end of effects */


.banner {
    max-height: 100%; 
    max-width: 100%;
}



.banner-content h2 {
    font-size: 36px;
    margin: 0;
}

.banner-content p {
    font-size: 18px;
    margin: 10px 0;
}

.btn {
    background-color: #f8b400;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

/* About Section Styles */
#about {
    background: linear-gradient(to bottom, #f0f4f8, #ffffff);
    padding: 20px 20px 60px;
    text-align: center;
}

#about h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

#about .content {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

#about .content p {
    margin-bottom: 15px;
}

/* Mission and Services Section */
#mission-services {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    font-size: 14px;
    color: whitesmoke;
}

#mission-services .section {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px; /* Optional: rounded corners */
    margin: 0 10px; /* Spacing between the two sections */
    background: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.7) 
    ), url('ms-bg.png');
    
}

#mission-services .section h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
}

#mission-services .section p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1vw;
    line-height: 1.6;
}


.service-box {
    margin: 20px 0;
}

#contact {
    position: relative;
}

.contact-info {
    position: absolute;
    font-size: 2vw;
}

#address {
    top: 31%;
    left: 33%;
}

#email {
    top: 53%;
    left: 33%;
}

#phone {
    top: 65%;
    left: 33%;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #f8b400;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #e09c00;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* Hide the navigation menu by default on mobile */
#nav-menu {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    /* Show the hamburger menu on small screens */
    .hamburger {
        display: flex;
    }
    
    /* Hide the menu initially */
    #nav-menu {
        display: none;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 52px;
        right: -30px;
        width: 130px;
        border-radius: 8px;
        padding: 10px;
    }

    /* Show the menu when it's active */
    #nav-menu.active {
        display: flex;
    }

    /* Adjust link styles */
    ul li a {
        font-size: 14px;
        padding: 10px;
        color: white;
    }

    .nav-links li {
        margin-left: 0;
    }

    #mission-services .section p {
        font-family: 'Open Sans', sans-serif;
        font-size: 2vw;
        line-height: 1.6;
    }
}
