* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --background: #29abc2;
    --color: #fff;
    --h_btn: #30302e;
    --cont_back: #1a1a1a;
    --cont_btn: #29abe2;
    --menu: #1378c4;
    --placeholder: #cccccc;
    --h1: #1a1a1a;
    --p: #f2f2f2;
    --border: #1378c4;
}

#Navbar {
    padding: 10px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#Navbar img {
    width: 10%;
}

#Navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

#Navbar li {
    padding: 10px;
    list-style: none;
}

#Navbar ul li a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 20px;
    padding: 10px;
    color: var(--h1);
    transition: all .3s;
    position: relative;
    font-weight: 400;
}

#Navbar a::after {
    content: "";
    height: 3px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    background: #1766a9;
    position: absolute;
    transition: 0.5s ;
}

#Navbar a:hover::after {
    width: 50px;
}

/* mobile nav section */

.menu {
    padding: 20px;
    position: relative;
    cursor: pointer;
    display: none;
    margin-left: 8em;
}

.menu span {
    background: var(--border);
    height: 3px;
    width: 50%;
    border-radius: 5px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -10%);
    cursor: pointer;
}

.menu  .line-1 {
    transform: translate(-50%, -10px);
    transition: transform 0.5s, width ;
}

.menu  .line-3 {
    transform: translate(-50%, 10px);
    transition: transform 0.5s, width ;
}

.open-menu  .line-1 {
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: transform 0.5s, width ;
}
.open-menu  .line-3 {
    transform: translate(-50%, -50%) rotate(45deg);
}

.open-menu  .line-2 {
    width: 0;
}

/* closed mobile nav section */

#Hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 80px;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(90deg, rgba(3, 3, 3, 0.922), rgba(0, 0, 0, 0.051)), url(image/Hero_01.webp);
    line-height: 1.6;
}

#Hero_about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 80px;
    min-height: 30vh;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient( rgba(3, 3, 3, 0.811), rgba(3, 3, 3, 0.773)), url(image/Hero_02.webp);
    line-height: 1.6;
}

#Hero h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    width: 50%;
    color: var(--color);
    line-height: 1.2;
}

#Hero_about h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    width: 50%;
    color: var(--color);
    line-height: 1.2;
}

#Hero p {
    width: 70%;
    color: var(--p);
    font-size: 20px;
    margin-bottom: 1em;
    font-weight: 400;
}

.btn {
    display: flex;
    justify-content: start;
    gap: 1em;
}

#Hero a {
    text-decoration: none;
    font-size: 20px;
    padding: 12px 20px;
    background: #29abe2;
    border: 2px solid #29abe2;
    color: var(--p);
    border-radius: 10px;
}

#Hero a:hover {
    border: 2px solid var(--border);
    background: var(--border);
    transition: 0.5s;
}

#Hero .btn_1 {
    background: none;
    border: 2px solid var(--border);
}

#Hero .btn_1:hover {
    border: 2px solid var(--border);
    background: var(--border);
    transition: 0.5s;
}

#About {
    padding: 20px 80px;
}

#About h2 {
    font-size: 32px;
    color: #29abe2;
    padding-left: 10px;
    border-left: 3px solid #29abe2;
    margin-bottom: .6em;
}

#About img {
    width: 40%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

#Plumbing {
    padding: 20px 80px;
}

#Plumbing h2 {
    font-size: 32px;
    color: #29abe2;
    padding-left: 10px;
    border-left: 3px solid #29abe2;
    margin-bottom: .6em;
}

#Plumbing img {
    width: 100%;
}

.about_info p {
    font-size: 20px;
    color: #30302e;
    margin-bottom: 1em;
}

#About span {
    font-size: 20px;
    color: #f2f2f2;
    background: #30302e;
    padding: 10px;
}

.about_plumbing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.about_plumbing img {
    width: 40%;
    min-height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.owner img {
    width: 90%;
    margin-bottom: 1em;
}

.about_plumbing h3 {
    font-size: 20px;
    color: #f2f2f2;
    background: #30302e;
    padding: 10px;
    margin-bottom: .6em;
}

.about_plumbing p {
    font-size: 18px;
    color: #30302e;
    margin-bottom: 1em;
}

.plumbing_goal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    min-height: 20vh;
}

.plumbing_goal  h4 {
    color: #1378c4;
    font-size: 20px;
}

.plumbing_goal  p {
    color: #4e4e4e;
    font-size: 18px;
}

.vision {
    background: #1377c422;
    padding: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.675);
}

.objectives {
    background: #29aae231;
    padding: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.675);
}

.mission {
    background: #1377c422;
    padding: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.675);
}

#Services {
    padding: 20px 80px;
    background: #1e1e1e;
}

#Services  h2 {
    font-size: 32px;
    color: #29abe2;
    padding-left: 10px;
    border-left: 3px solid #29abe2;
    margin-bottom: .6em;
}

.group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.services-card {
    text-align: center;
    border-radius: 10px;
    padding: 0;
    background: #f2f2f2;
    width: 30%;
}

.services-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: #29abe2;
    font-size: 30px;
}

.service-content p {
    text-align: start;
    margin-bottom: 1em;
    font-size: 18px;
    color: #30302e;
}

.service-content a {
    background: #1a1a1a;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 18px;
    color: #f2f2f2;
    border: 2px solid #1a1a1a;
}

.service-content a:hover {
    border: 2px solid #1766a9;
    background: none;
    color: #1a1a1a;
    transition: 0.5s;
}

#services {
    padding: 20px 80px;
}

#services  h2 {
    font-size: 32px;
    color: #29abe2;
    padding-left: 10px;
    border-left: 3px solid #29abe2;
    margin-bottom: .6em;
}

.plumbing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.plumbing img {
    width: 30%;
}

.plumbing h3 {
    color: #1378c4;
    font-size: 20px;
    margin-bottom: 1em;
}

.plumbing p {
    color: #30302e;
    font-size: 18px;
    margin-bottom: 1em;
}

#Banner {
    padding: 20px 80px;
    background-image: linear-gradient( rgba(0, 0, 0, 0.675), rgba(0, 0, 0, 0.675)), url(image/sipha-03.webp) ;
    background-position: center;
    background-size: cover;
    line-height: 1.3;
}

#Banner h3 {
    color: #29abc2;
    font-size: 32px;
}

#Banner p {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 1em;
}

#Banner a {
    background: #29abc2;
    color: #1e1e1e;
    font-size: 18px;
    padding: 10px;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.5s;
    font-weight: 500;
}

#Banner a:hover {
    transition: 0.5s;
    background: #29abe2;
    color: #f2f2f2;
}

#Why_us {
    padding: 20px 80px;
}

#Why_us h2 {
    font-size: 32px;
    color: #29abe2;
    padding-left: 10px;
    border-left: 3px solid #29abe2;
    margin-bottom: .6em;
}

.why_us {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.why_us img {
    width: 50%;
}

.us_info h3 {
    color: #1e1e1e;
    width: 80%;
    font-size: 32px;
    margin-bottom: .5em;
}

.us_info p {
    color: #30302e;
    font-size: 18px;
}

#Reviews {
    padding: 20px 80px;
}

#Reviews h2 {
    font-size: 32px;
    color: #29abe2;
    padding-left: 10px;
    border-left: 3px solid #29abe2;
    margin-bottom: .6em;
}

.review_group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.review {
    background: #29aae25b;
    padding: 20px;
}

.neo {
    background: rgba(0, 0, 0, 0.382);
}

.review_group .neo h3 {
    color: #1378c4;
}

.review h3 {
    margin-bottom: .4em;
    font-size: 22px;
    color: rgba(0, 0, 0, 0.738);
    text-align: center;
}

.review p {
    margin-bottom: .4em;
    font-size: 17px;
    color: #1e1e1e;
}

.review i {
    color: #ffcd00;
    font-size: 1.5rem;
}

#Contact {
    padding: 20px 80px;
}

#Contact h2 {
    font-size: 32px;
    color: #29abe2;
    padding-left: 10px;
    border-left: 3px solid #29abe2;
    margin-bottom: .2em;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

form {
    padding: 15px 10px;
    text-align: center;
}

form h3 {
    color: #1e1e1e;
    font-size: 28px;
    padding: 10px;
}

form button {
    background: #1e1e1e;
    color: #f2f2f2;
    font-size: 18px;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.5s;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

form button:hover {
    transition: 0.5s;
    background: #1378c4;
    color: #f2f2f2;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: .5em;
    background: none;
    border: 2px solid #cccccc;
    color: #1e1e1e;
    line-height: 1;
}

input::placeholder, textarea::placeholder {
    color: #1e1e1e;
}

iframe {
    border: none;
    width: 100%;
    height: 420px;
}

#footer {
    padding: 20px 80px;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container {
    margin: auto;
    gap: 1em;
}

.footer img {
    width: 20%;
}

#footer strong a {
    text-decoration: none;
    border-radius: 20px;
    color: #cccccc;
    padding: 10px;
}

#footer strong {
    color: #cccccc;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    grid-template-columns: repeat(4, 1fr);
}

.footer-text h5 {
    font-size: 18px;
    color: #1766a9;
    border-left: 2px solid #1378c4;
    padding-left: 10px;
    margin-bottom: 1em;
}

.footer-text ul li {
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    gap: 1em;
}

.footer-text ul li a {
    text-decoration: none;
    color: #cccccc;
    font-size: 16px;
}

.footer-text ul li a:hover  {
    transition: 0.5s;
    text-decoration: underline #1378c4;
}

.contact-list li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-social a svg {
    background: #29abc2;
    padding: 10px;
}

.footer-text a svg:hover  {
    transition: 0.5s;
    background: #1378c4;
}

.footer p {
    color: #4e4e4e;
    font-size: 16px;
    margin-bottom: .5em;
}

footer {
    padding: 20px 40px;
    text-align: center;
    font-size: 17px;
    color: #1e1e1e;
}

footer a {
    color: #1378c4;
}