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;
}

/* Portfolio Section */
.portfolio {
    padding: 50px 20px;
    background-color: white;
}

.portfolio h2 {
    font-size: 2em;
    font-weight: 700;
    color: #0073ff;
    margin-bottom: 30px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: 0.3s ease;
}

/* Overlay Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.plus-sign {
    font-size: 2.5em;
    color: white;
    background: #0073ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Hover Effects */
.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    filter: grayscale(100%);
}

/* Project Title */
.portfolio-item p {
    font-size: 1em;
    font-weight: 600;
    margin-top: 10px;
    color: #000;
}

/* Projects Section */
.projects {
    padding: 50px 20px;
    background-color: white;
}

.projects h2 {
    font-size: 2em;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

/* Table Container */
.table-container {
    max-width: 90%;
    margin: auto;
    overflow-x: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #0073ff;
    color: white;
    font-weight: 600;
}

td {
    font-size: 0.95em;
}

/* Alternating Row Colors */
tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Status Column */
td[class^="completed-"] {
    font-weight: bold;
    text-align: center;
}

/* Status Colors */
.completed-2017 { background-color: #c7e7ff; color: #004080; }
.completed-2019 { background-color: #b3d9ff; color: #003366; }
.completed-2020 { background-color: #99c2ff; color: #00264d; }
.completed-2022 { background-color: #80aaff; color: #001a33; }
.completed-2023 { background-color: #668cff; color: #00114d; }
.completed-2024 { background-color: #4d79ff; color: white; }

/* Responsive Design */
@media (max-width: 768px) {
    th, td {
        padding: 8px;
        font-size: 0.85em;
    }
}

.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: 20px;
        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: 50vh;
        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) {
    .top-bar {
        display: none;
    }
    .nav-links {
        display: none;
    }
    .footer-section {
        position: relative;
        height: 40vh;
        color: white;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }
}