*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}
body{
    max-width: 100%;
    overflow-x: hidden;
}
.hero-row{
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),url(images/banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: #3b3c3d;
}
nav img{
    width: 100px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.nav-links ul li::after{
    content: "";
    width: 0%;
    height: 2px;
    background: #B6121F;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 20px 0 40px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin: 0 10px;
}
.hero-btn i{
    padding-right: 5px;
    font-size: 20px;
}
.hero-btn:hover{
    border: 1px solid #B6121F;
    background: #B6121F;
    transition: 1s;
}
nav .fa{
    display: none;
}
.fa-bars, .fa-times {
    display: none;
    cursor: pointer;
}
.menu-logo{
    display: none;
}
.row{
    padding: 6%;
}

/* About Section*/

.about-row h2{
    padding-bottom: 10px;
    font-size: 1.5rem;
}
.about-row p{
    color: #3b3c3d;
}
.about-row{
    text-align: center;
}
.about-container{
    width: 100%;
    display: flex;
}
.about-text{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}
.about-image{
    border-radius: 10px;
    width: 50%;
    min-height: 40vh;
    background-image: url(images/SDAC-12.jpeg);
    background-position: left;
    background-size: cover;
    position: relative;
}

.mission-container{
    width: 100%;
    display: flex;
    margin-top: 100px;
}
.mission-text{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}
.mission-image{
    border-radius: 10px;
    width: 50%;
    min-height: 40vh;
    background-image: url(images/SDAC-3.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
}
/* Services Section*/

.services-row h2{
    padding-bottom: 10px;
    font-size: 1.5rem;
}
.services-row p{
    color: #3b3c3d;
}
.services-row{
    text-align: center;
    background-color: #f7f7f7;
}
.col-container{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.services-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 100px 12px;
    box-sizing: border-box;
}
h3{
    align-items: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 10px 0;
    color: black;
}
.col-1{
    background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),url(images/SDAC-10.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.col-1 p,.col-1 h3{
    color: #fff;
}
.col-2{
    background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),url(images/SDAC-21.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.col-2 p,.col-2 h3{
    color: #fff;
}
.col-3{
    background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),url(images/SDAC-17.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.col-3 p,.col-3 h3{
    color: #fff;
}
.link{
    text-decoration: none;
    color: #2C7E97;
}

.services-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

/* Yelp Review */
.yelp-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),url(images/pipe-h-2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.yelp-review h3{
    margin-bottom: 30px;
    font-size: 24px;
    color: #fff;
}

.yelp-review-header {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #fff;
    padding: 24px;
    gap: 20px;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.yelp-review-header button {
    background-color: #D71616;
    padding: 10px 16px;
    border: none;
    display: flex;
    align-items: center;
}

.yelp-review-header button a {
    text-decoration: none;
    color: #fff;
}

.yelp-review-header button i {
    padding-right: 10px;
    font-size: 24px;
}
.yelp-review-header button .fa {
    position: relative;
    bottom: -3px;
}

/* Footer  Section*/

.footer-logo{
    width: 60px;
    margin: 0 13px;
}
.footer{
    background-color: #3b3c3d;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2% 6%;
}
.footer-links ul{
    margin-left: -50px;
}
.footer-links ul li{
    flex: 1;
    text-align: right;
    padding-bottom: 20px;
}
.footer-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.footer-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.footer-links ul li::after{
    content: "";
    width: 0%;
    height: 2px;
    background: #B6121F;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.footer-links ul li:hover::after{
    width: 100%;
}

.icons-container{
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.icons-container{
    color: #fff;
}

.icons .fa{
    color: #B6121F;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
    font-size: 20px;
}


@media (min-width: 800px) and (max-width: 1080px) {
    .icons-container{
        width: 70%;
    }
}
@media (max-width: 400px) {
    .hero-row{
        min-height: 70vh;
    }
}
@media (max-width: 800px) {
    .text-box h1{
        font-size: 20px;
    }
    .text-box p{
        font-size: 14px;
    }
    .hero-btn{
        margin: 10px 10px;
    }
    .nav-links ul li{
        display: block;
        border-bottom: 1px solid #fff;
        padding: 20px;
    }
    .nav-links ul{
        margin: 80px 20px 0 20px;
    }
    .nav-links {
        position: fixed;
        background-color: #3b3c3d;
        right: -100vw; /* Hide menu initially */
        width: 100vw; /* Cover entire screen width */
        height: 100vh;
        top: 0;
        z-index: 9999; /* Ensure it's on top */
        transition: right 0.5s ease-in-out;
        text-align: left;
        overflow-y: auto;
    }

    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .fa-bars {
        display: block;
    }
    .fa-times {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
    }
    .menu-logo-container{
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menu-logo{
        display: block;
    }
    .show-menu {
        right: 0;
    }
    .nav-links ul li::after{
        height: 0px;
    }
    /* About Section */
    .about-container{
       flex-direction: column;
    }
    .mission-container{
        flex-direction: column-reverse;
        margin-top: 50px;
     }
    .about-text,.mission-text{
        width: 100%;
        padding: 0;
        margin: auto 0;
    }
    .about-text p,.mission-text p{
        font-size: 16px;
    }
    .about-row h2 {
        font-size: 1.25rem;
    }
    .about-image,.mission-image{
        width: 100%;
        margin-top: 30px;
    }


    /* Services */

    .row{
        flex-direction: column;
    }
    .services-row h2{
        font-size: 1.25rem;
    }
    .services-row p{
        font-size: 16px;
    }
    .col-container{
        flex-direction: column;
    }

    /* Yelp Review */

    .yelp-items-container div {
        width: 350px;
      }
    /* Footer Section */
    .footer-links ul{
        margin-left: 0;
    }
    .icons-container{
        flex-direction: column;
        padding: 20px 0;
    }
    .footer-links ul li a{
        font-size: 14px;
    }
    .icons-container p{
        font-size: 14px;
        padding-top: 10px;
    }
}