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;
}

.content {
    display: flex;
    gap: 100px;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.right-column {
    flex: 1 1 50%;
    max-width: 50%;
}

.right-column img {
    width: 400px;
    height: auto;
    object-fit: cover;
}

.content h2 {
    font-size: 64px;
    margin-bottom: 15px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        max-width: 100%;
    }
}

.leadership-section {
    text-align: center;
    margin-bottom: 20px;

    /* Background image settings */
    background-image: url('img/vivid-blurred-colorful-wallpaper-background.jpg'); /* Replace with your image path */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    color: rgb(0, 0, 0); /* Adjust text color for visibility on the background */
    padding: 50px 0; /* Add padding for better spacing */
  }

  h2 {
    font-size: 32px; /* Adjust as needed */
    margin-bottom: 20px;
  }

  .leadership-profiles {
    display: flex;
    justify-content: space-around; /* Distribute items evenly */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  }

  .leadership-profiles > div {
    margin-top: 50px;
    width: 30vw;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(
      240,
      240,
      240,
      0.85
    ); /* Light gray background with transparency */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-bottom: 20px;
  }

.mission-vision img{
    width: auto;
    height: 20px;
}

.mission-vision h3 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .mission-vision p {
    font-size: 28px;
  }

  .mission-vision ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mission-vision li {
    margin-bottom: 5px;
    font-size: 25px;
  }

  @media (max-width: 768px) {
    .leadership-profiles > div {
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
  }

  .mission-vision {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 20px;
  }

  .mission-vision h2 {
    font-size: 3em;
    margin-bottom: -40px;
  }

  .mission-vision p {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .mission-vision ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mission-vision li {
    font-size: 1.5em;
    margin-bottom: 8px;
    display: flex;
    align-items: center; /* Vertically centers the text with the checkmark */
  }

  .philosophy {
    background: url('img/pexels-ivan-samkov-4458205.jpg') no-repeat center center/cover;
    position: relative;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    margin-bottom: 70px;
}

/* Semi-transparent overlay box */
.overlay-box {
    background: rgba(255, 255, 255, 0.85); /* White box with 85% transparency */
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 1000px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Typography */
.overlay-box h2 {
    font-size: 2em;
    color: #333;
    font-weight: 800;
    margin-bottom: 10px;
}

.overlay-box p {
    font-size: 1.5em;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .overlay-box {
        max-width: 90%;
        padding: 15px 20px;
    }
}

.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) {
    .content {
        gap: 100px;
        padding: 0px;
        align-items: center;
        justify-content: space-between;
    }

    .right-column img {
        width: 250px;
        height: auto;
        object-fit: cover;
    }

    .content p {
        font-size: 13px;
        line-height: 1.6;
        color: #333;
        max-width: 500px;
    }

    .content h2 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .containerx {
        width: 90vw;
        margin: 0 auto;
    }

    .right-column {
        max-width: 30%;
    }

    .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;
    }

    .mission-vision h2 {
        font-size: 2.5em;
        margin-top: -10px;
    }

    .mission-vision p {
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .mission-vision li {
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .mission-vision {
        padding: 0px;
        margin: 20px;
    }

    .overlay-box h2 {
        font-size: 1.8em;
    }
    .overlay-box p {
    font-size: 1.3em;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

.overlay-box {
    width: 80vw;
}

.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;
    }

    .right-column img {
        width: 250px;
        height: auto;
        margin-top:-70px;
        margin-left: -30px;
    }

    h2 {
        font-size: 32px;
        margin-bottom: -25px;
    }

    .leadership-profiles {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: -40px;
    }

    .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: 35px;
        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: 10px;
    }

    .footer-col {
        margin-left: 0px;
        font-size: 11px;
    }

    .footer-section {
        position: relative;
        height: 20vh;
        color: white;
        padding: 60px 20px;
        background: url(img/james-sullivan-ESZRBtkQ_f8-unsplash.jpg) center / cover no-repeat;
    }
}

@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;
    }

    .right-column img {
        margin-top: -70px;
        margin-left: -70px;
    }
    
    .leadership-profiles {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: -30px;
    }

    .mission-vision li {
        font-size: 0.9em;
        margin-bottom: 5px;
    }

    .footer-content {
        margin-top: -30px;
        padding: 0px;
        align-items: center;
        gap: 0px;
        flex-direction: column;
    }

    .footer-section {
        position: relative;
        height: 40vh;
        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;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    
}