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;
}

.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;
}

h2 {
    color: #2467EC;
    text-align: left;
    font-size: 30px;
}

 /* Grid Layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    padding: 50px;
}

.gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}


        /* Responsive Layout */
        @media (max-width: 1024px) {
            .gallery {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
            }
        }

        @media (max-width: 768px) {
            .gallery {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
            }
        }

        @media (max-width: 480px) {
            .gallery {
                grid-template-columns: repeat(1, 1fr); /* 1 column for small screens */
            }
        }

        .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;
            }

        }
        @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;
            }
                    

        }
        @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;
            }

            .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) {
            .footer-section {
                position: relative;
                height: 35vh;
                color: white;
                padding: 60px 20px;
                background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
            }

        }