/* Basic Reset */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #4eaadd;
    font-family: Poppins, Arial, sans-serif;
}


/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 6px;
    background-color: #333;
}

header img.logo {
    height: 50px; /* Adjust logo size */
}

/* Navigation */
.navbar {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 20px;
    color: #fff;
}
.nav-links li:hover {
    text-decoration: underline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    width: 30px;
}

.burger .line {
    height: 3px;
    background-color: white;
    width: 100%;
}

/* Media Queries for Mobile */
@media screen and (max-width: 1095px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
        margin-top: 20px;
        z-index: 2;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }
}

@media screen and (max-width: 910px) {
    section h2{
        font-size: 40px !important;
    }
}
@media screen and (max-width: 425px) {
    section h2{
        font-size: 30px !important;
    }
   
}


/* Section */
section {
    padding: 20px;
    min-height: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

section h2 {
    font-family: "Abril Fatface", serif;
    font-size: 50px;
    text-align: center;
}

/* Workers Image */
.workers-img {
    z-index: -1;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: auto;
}


/* Button */
button {
    background-color: #ffce1a;
    padding: 5px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    color: #000;
}


.contact_button button {
    font-size: 30px;
    font-weight: 700;
}

.contact_button button:hover {
    background-color: #f1be00;
}

/* Pattern Container */
.pattern-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/pattern.webp');
    background-repeat: repeat;
    z-index: -1;
    opacity: 10%;
}

/* Optional Pattern Background */
.pattern-container {
    z-index: -2;
    background-image: url('pattern.webp');
    background-repeat: repeat;
    height: 100vh;
}


.classes {
    font-size: 20px;
}

footer {
    background-color: #333;
    padding: 20px 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  footer p {
    margin: 0;
    font-size: 10px;
    padding: 0 10px;
  }
  
  footer .footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }