body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.top-bar {
    background: #ccc;
    padding: 10px 0;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-info {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    gap: 50px;
    font-size: 14px;
}

.contact-info img {
    width: auto;
    height: 20px;
}

.info {
    display: flex;
    align-items: center;
}

.contact-info i {
    color: blue;
    margin-right: 5px;
}

.navbar {
    background: white;
    padding: 15px 0;
    border-bottom: 2px solid #ddd;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 100px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.nav-links a.active {
    text-decoration: underline;
}
.containerx {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    /* Use a background image instead of a solid color */
    background-image: url('img/construction-site-3432379_1920.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 5vh;
    position: relative; /* Needed for the pseudo-element overlay */
    color: #fff;
    text-align: center;
    padding: 80px 0; /* Increased for better visibility */
}

/* Dark tint overlay using a pseudo-element */
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the alpha (0.5) for the tint intensity */
    z-index: 0; /* Place the overlay behind the text */
}

.header h1 {
    font-size: 3.5em;
    margin: 0;
    position: relative; /* Bring the text to the front */
    z-index: 1;/* Add the underline styles here */
    text-decoration: underline;
    text-decoration-color: #007bff; /* Use a blue color */
    text-decoration-thickness: 8px; /* Adjust the thickness */
    text-underline-offset: 5px;
}

.containerx {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 600px;
}

h3 {
    font-weight: bold;
}

p {
    font-size: 14px;
    color: #666;
}

input, textarea {
    width: 580px;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    height: 100px;
    resize: none;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #2563eb;
}
.addres{
    gap: 10px;
}
.contact-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: white;
    margin-top: 40px;
    margin-left: 580px;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.contact-item div {
    font-size: 14px;
    color: #333;
}

.contact-item b {
    font-size: 16px;
}

.contact-item p {
    margin: 0;
}


.footer-section {
    position: relative;
    height: 45vh;
    color: white;
    padding: 60px 20px;
    background: url('img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg') center/cover no-repeat;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9));
}

.footer-content {
    padding: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0;
    gap: 200px;
}

.footer-logo {
    width: 300px; /* Adjust logo width as needed */
    margin-bottom: 10px;
}

.company-name {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #cccccc;
}

.description {
    margin-left: -50px;
    max-width: 600px;
    margin-bottom: 25px;
    font-size: 24px;
}

#blue-up{
    color: #0381ff;
    font-weight: 600;
}

.contact-cta {
    font-size: 1.2em;
    font-weight: bold;
}

.footer-col{
    margin-left: -20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 5px;
}
.footer-links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color transition */
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu img {
    width: 40px;
    height: 40px;
}
.mobile-menu{
    display: none;
}
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    .company-name {
        font-size: 2em;
    }
}

@media (max-width: 1024px) {
    .contact-info {
        gap: 50px;
        font-size: 10px;
    }

    .nav-links a {
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
    }

    .logo img {
        height: 60px;
    }

    .header {
        height: 20px;
    }

    .header h1 {
        margin-top: -35px;
    }
    .footer-section {
        position: relative;
        height: 35vh;
        color: white;
        padding: 60px 20px;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }
    
    .footer-content {
        margin-top: -30px;
        padding: 50px;
        align-items: center;
        gap:80px;
    }
    
    .footer-logo {
        width: 200px; /* Adjust logo width as needed */
        margin-bottom: 10px;
    }
    
    .description {
        margin-left: -50px;
        max-width: 600px;
        font-size: 20px;
    }

    .contact-container {
        margin-top: 40px;
        margin-left: 300px;
        padding: 20px;
        border-radius: 10px;
        width: 400px;
    }
}
@media (max-width: 768px) {
    .contact-info {
        gap: 50px;
        font-size: 8px;
    }

    .contact-info img {
        width: auto;
        height: 15px;
    }

    .nav-links a {
        text-decoration: none;
        font-weight: bold;
        font-size: 11px;
    }

    .nav-links {
        gap: 70px;
    }
    .logo img {
        height: 40px;
    }

    .footer-section {
        position: relative;
        height: 20vh;
        color: white;
        padding: 60px 20px;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }
    
    .footer-content {
        margin-top: -30px;
        padding: 0px;
        align-items: center;
        gap:80px;
    }
    
    .footer-logo {
        width: 100px; /* Adjust logo width as needed */
        margin-bottom: 10px;
    }
    
    .description {
        margin-left: -0px;
        max-width: 300px;
        font-size: 15px;
    }

    .contact-container {
        margin-top: 40px;
        margin-left: 170px;
        padding: 20px;
        border-radius: 10px;
        width: 400px;
    }
}
@media (max-width: 500px) {
    .top-bar {
        display: none;
    }
    .nav-links {
        display: none;
    }
    /* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 78vh;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease-in-out;
    padding-top: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu .menu-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.mobile-menu ul li { 
    width: 100%;
    text-align: center;
}

.mobile-menu ul li a {
    display: block;
    padding: 15px;
    font-size: 18px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}
.mobile-menu ul li a:hover {
    background: #007bff;
    color: white;
}

.mobile-menu.active {
    left: 0;
    z-index: 10000;
}


    .burger-menu {
        display: block;
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
    }

    .containerx {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 400px;
    }

    input, textarea {
        width: 375px;
        padding: 12px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
    }
    .contact-container {
        margin-top: 40px;
        margin-left: 35px;
        padding: 20px;
        border-radius: 10px;
        width: 400px;
    }
    .footer-content {
        margin-top: -30px;
        padding: 0px;
        align-items: center;
        gap: 0px;
        flex-direction: column;
    }

    .footer-section {
        position: relative;
        height: 60vh;
        color: white;
        padding: 60px 20px;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 10px;
    }

    .description {
        margin-left: -0px;
        max-width: 300px;
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .containerx {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 380px;
    }
    input, textarea {
        width: 360px;
        padding: 12px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
    }
    .contact-container {
        margin-top: 40px;
        margin-left: 10px;
        border-radius: 10px;
        width: 380px;
    }
    .footer-section {
        position: relative;
        height: 50vh;
        color: white;
        padding: 60px 20px;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }
}