body {
    background: url('backgroundA.png') no-repeat center center;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f4f9fc;
    color: #333;
}
.hero {
    color: #3B0A28;
    text-align: center;
    padding: 5rem 1rem;
}
.cert {
   
}
.centered-content {
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Adjust based on your header/footer height */
    text-align: center;
    padding: 2rem;
}
header {
    background: #0077b6;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav a {
    color: white;
    margin: 0 0.75rem;
    text-decoration: none;
    font-weight: 500;
}

    nav a:hover,
    nav a.active {
        text-decoration: underline;
    }
.HomePage {
    display: inline-block;
    align-items: center;
}
.hero-section {
    background: url('greenmountainswith.png') no-repeat center center;
    background-size: cover;
    min-height: 30vh;
    position: relative;
    padding: 4rem 1rem;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 75%;
        height: 75%;
        /*background: rgba(0, 0, 0, 0.5);*/ /* dark overlay for contrast */
        z-index: 1;
    }

.overlay-content {
    position: relative;
    z-index: 2;
}

.cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #00b4d8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
ProATbl {
    width: 110%;
    table-layout: fixed;
    border-collapse: collapse;
}

.ProATbl td {
    vertical-align: top;
    padding: 1rem;
    word-wrap: break-word;
}

    .ProATbl td:nth-child(1),
    .ProATbl td:nth-child(2),
    .ProATbl td:nth-child(3) {
        width: 44.33%;
        padding:4px
    }

.ProTbl {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

    .ProTbl td {
        vertical-align: top;
        padding: 1rem;
        word-wrap: break-word;
    }

        .ProTbl td:nth-child(1),
        .ProTbl td:nth-child(2),
        .ProTbl td:nth-child(3) {
            width: 33.33%;
        }
.cta:hover {
    background: #0096c7;
}

section {
    padding: 2rem 1rem;
}

.services-overview,
.projects,
.testimonials {
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.gallery-preview img {
    width: 45%;
    margin: 0.5rem;
    border-radius: 8px;
}

footer {
    background: #023e8a;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}
.info-text a {
    color: #0077b6;
    text-decoration: none;
    font-weight: bold;
}

    .info-text a:hover {
        text-decoration: underline;
    }
.testimonials {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: auto;
}

.testimonial {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 4px solid #4CAF50;
    background-color: #fff;
}

    .testimonial h3 {
        margin: 0 0 0.5rem;
        font-size: 1.2rem;
        color: #333;
    }

    .testimonial p {
        margin: 0;
        font-style: italic;
        color: #555;
    }
.image-row {
    display: flex;
    justify-content: flex-start; /* Aligns items to the left */
    align-items: center;
    gap: 15rem; /* Controls spacing between images */
    padding-block: 25px;
    padding-left: 2rem; /* Keeps the row offset from the left edge */
}

.image-row img {
    max-width: 100%;
    height: auto;
    display: block;
}