:root {
    --green: #055E30;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
}

h2 {
    font-size: 40px;
    font-weight: 700;
}

h1 {
    font-size: 65px;
    font-weight: 700;
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

.home-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-page.scrolled {
    padding: 10px 0;
}

.home-page.scrolled .address,
.home-page.scrolled .button-section {
    display: none !important;
}

.address {
    background-color: #F2F2F2;
    padding: 10px;
    transition: all 0.3s ease;
    padding-left: 20px;
}

.address p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
}

.tel {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.tel:hover {
    color: var(--green);
}

.btn {
    color: #ffff;
    background-color: var(--green);
    padding-block: 8px;
    padding-inline: 17px;
    box-shadow: 2px 2px #000000;
    border-radius: 0;
    border: none;
    text-decoration: none;

}

.btn:hover {
    background-color: #000000;
    color: #ffff;
    transition: all 400ms linear;
}

.btn-1:hover {
    background-color: #000000;
    color: #ffff;
    transition: all 400ms linear;
}

.btn-2:hover {
    background-color: var(--green);
    color: #ffff;
    transition: all 400ms linear;
}

.nav {
    margin-block: 15px;
    transition: all 0.3s ease;
}

.navbar {
    list-style: none;
    display: flex;
    gap: 80px;
    margin: 0;
    padding: 0;
}

.nav-item {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}

.nav-item:hover {
    color: var(--green);
    transition: all 400ms linear;
}

.actived, .active {
    color: var(--green);
    /*color: #ffffff;*/

}
.req-section{
	.active{
	color:#ffff !important;
	}
}
.actives {
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 160px;
    right: 0;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    z-index: 999;
    width: 100vw;
    margin: 0 auto;
}

@media (max-width:768px) {
    .mobile-menu {
        top: 78px;
    }
}

.mobile-menu.show {
    display: block;
}

.mobile-menu .navbar {
    flex-direction: column;
}

.mobile-navbar {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;

    width: auto;
}

.mobile-menu .nav-item {
    padding: 10px 0;
}

.program {
    background-color: #FBFBFB;
    position: relative;
    padding-block: 80px;
}

.program-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    background-color: #FBFBFB;
    padding: 20px 0;
    top: 70px;
    z-index: 100;
    transition: all 0.3s ease;
}

@media (min-width:998px) {
    .program-head {
        position: sticky;
    }
}

@media (min-width:1400px) {
    .logo-container {
        position: relative;

        img {
            position: absolute;
            bottom: 5px;
            max-width: 350px;
        }
    }

    .home-page.scrolled .logo-container {
        img {
            bottom: -24px;
        }
    }
}

@media (max-width:1400px) {
    .logo-container {
        img {
            position: relative;
            top: 15px;
            margin-bottom: 15px;
        }
    }
}

@media only screen and (max-width:990px) {
    .program-head {
        top: 100px;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .navbar {
        display: none;
    }

    .tel {
        display: none !important;
    }

    /* .address {
        display: none !important;
    } */

    .home-page {
        padding-block: 10px !important;
    }

    .home-page .container .row {
        align-items: center;
    }

    .container {
        max-width: 100%;
        padding-inline: 30px;
    }

    .logo-container {
        justify-content: center !important;
    }

    .nav {
        justify-content: center;
    }

    .card-class .row {
        padding-left: 0;
    }

    .service-card {
        max-width: 100% !important;
    }
}

@media (max-width:1400px) and (min-width:998px) {
    .address {
        display: flex !important;
        flex-wrap: wrap;
        background-color: #F2F2F2;
        padding: 10px;
    }
}

@media only screen and (max-width:1400px) {

    .home-page {
        padding-bottom: 30px;
    }

    .home-page .row {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        width: auto !important;
        justify-content: flex-start !important;
    }

    .nav {
        justify-content: flex-end !important;
    }

    .navbar {
        gap: 40px;
    }
}

.program-head.sticky-active {
    top: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.program-head h2 {
    max-width: 440px;
}

.program-head p {
    max-width: 482px;
    font-size: 20px;
}

.step-container {
    margin-top: 80px;
	
	h4{
		text-align:center;
	}
}

.step-container span {
    color: var(--green);
}

.service-card {
    background-color: white;
    border: 1px solid #ddd;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 30px;
    width: 100%;
    max-width: 322px;
    text-decoration: none;
}

.service-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 10px;
}

.service-title .line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--green);
}

.service-title span {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #000000 !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card p {
    font-size: 16px;
    color: #696969;
    flex-grow: 1;
    text-align:center;
    padding-inline: 20px;
}

.card-class {
    gap: 30px;
    margin-left: 0;
	justify-content:center;
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .home-page .container .row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .logo-container {
        flex: 0 0 auto !important;
        width: auto !important;
        justify-content: flex-start !important;
        padding: 0 !important;
    }

    .logo-container img {
        max-width: 200px !important;
        height: auto !important;
        max-height: 50px !important;
    }

    aside.col-lg-9.col-md-10 {
        flex: 0 0 auto !important;
        width: auto !important;
        padding: 0 !important;
        order: 2;
    }

    .mobile-menu-toggle {
        padding: 5px !important;
        margin: 0 !important;
    }

    .nav {
        margin: 0 !important;
        justify-content: flex-end !important;
    }

    .address {
        display: none !important;
    }

    .nav .navbar {
        display: none !important;
    }

    .tel {
        font-size: 16px;
    }

    .btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .program-head {
        flex-direction: column;
        gap: 20px;
        top: 70px;

        p {
            width: 100% !important;
        }
    }

    .banner-caption h1 {
        font-size: 45px !important;
        width: 100%;
    }

    .service-card {
        max-width: 100%;
    }

    h2 {
        font-size: 28px;
    }

    .program-head h2 {
        max-width: 100%;
    }

    .program-head p {
        max-width: 100%;
        font-size: 18px;
    }

    .service-title span {
        font-size: 16px;
    }

    .step-container {
        h4 {
            margin-bottom: 30px;
        }
    }

    .home-page.scrolled .mobile-menu {
        top: 78px !important;
    }
}

@media (max-width: 990px) {

    .home-page .container .row {
        margin: 0 !important;
        align-items: center !important;
    }

    .logo-container {
        padding-left: 0 !important;
        justify-content: flex-start !important;
    }

    .logo-container img {
        max-width: 250px !important;
        height: auto !important;
        max-height: 50px !important;
        margin-top: -10px;
    }

    aside.col-lg-9.col-md-10 {
        padding-right: 0 !important;
    }

    .nav {
        justify-content: flex-end !important;
    }

    .why-content {
        text-align: left !important;
        margin-bottom: 20px;
    }

    .home-page.scrolled .mobile-menu {
        top: 114px;
    }
}

@media (max-width: 576px) {
    .button-section {
        flex-direction: column;
        align-items: stretch !important;
    }

    .button-section .btn {
        margin: 2px 0;
    }

    .banner-caption h1 {
        font-size: 35px !important;
    }
}

.banner {
    background-image: url(assets/home_page_pic.jpg.jpeg);
    height: 707px;
    background-repeat: no-repeat;
    object-fit: cover;
    max-width: 100vw;
    background-size: cover;
    background-position: center center;
    display: flex;
}

.banner-caption {
    font-weight: 700;
    color: #ffff;
    justify-content: center;
    align-items: start;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.banner-caption h1 {
    font-size: 65px !important;
    width: 550px;
}

.btn-1 {
    padding-block: 15px;
    padding-inline: 30px;
    background-color: var(--green);
    color: #ffff;
    box-shadow: 2px 2px #000000;
    border-radius: 0;
    font-size: 24px;
    font-weight: 500;
    border: 1px solid #ffff;
    text-decoration: none;

}

.why-pro {
    padding: 80px 0px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(assets/garden\ \(2\).jpg);
    background-position: center center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.why-img {
    z-index: 4;
}

.why-img img {
    width: 100%;
}

.why-content {
    text-align: right;
    color: #ffff;
    z-index: 4;
    font-size: 20px;
    font-weight: 400;
}

.title-with-border {
    position: relative;
    display: inline-block;
}

.title-with-border:before {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 12px;
    width: 12px;
    background-color: #fff;
    right: 0;
    left: 0;
    margin: 0px auto;
    background-image: unset;
    transform: unset;
}

.title-with-border:after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: #ffff;
    margin: 15px 0px 0px;
    margin-top: 25px;
}

.title-with-border.dark:before {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 12px;
    width: 12px;
    background-color: var(--green);
    right: 0;
    left: 0;
    margin: 0px auto;
    border-radius: 0;
}

.title-with-border.dark:after {
    background-color: var(--green);
}


.program-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.program-head h2 {
    max-width: 440px;
}

.program-head p {
    max-width: 482px;
    font-size: 20px;
}

.step-container {
    margin-top: 80px;
}

.step-container span {
    color: var(--green);
}

.est-det {
    background-color: #ffff;
}

.est-det p {
    color: #2B2B2B;
    font-size: 20px;
    margin-right: 10px;
}

.est-det p a {
    color: var(--green);
    text-decoration: none;
}
.est-det p a:hover{
    font-weight: bold;
}

.estimate-box {
    background-color: var(--green);
    padding: 50px 0;
}

.form-box {
    border-top: 5px solid #ffff;
    border-bottom: 5px solid #ffff;
    padding: 50px;
}

.form-box h2 {
    color: #ffff;
    margin-bottom: 20px;
}

.form-item {
    margin-bottom: 14px;
}
.form-item p {
   width:100%;
}


.form-control {
    padding: 20px !important;
    border-radius: 0;
    font-size: 20px;
}

.btn-2 {
    color: #ffff;
    background-color: #000000;
    padding: 8px 17px;
    border-radius: 0;
    border: 1px solid #ffff;
    font-size: 18px;
    text-decoration: none;
}

footer {
    background-color: #000000;
    padding: 80px 0 0;
}

footer a {
    font-size: 26px;
    max-width: 316px;
    color: #AEAEAE;
    text-decoration: none;
    font-weight: 700;
}

footer a:hover {
    color: var(--green);
    transition: all 400ms linear;
}

.copyright {
    text-align: center;
    padding: 30px 0;
    position: relative;
    border-top: 4px solid #515151;
    margin-top: 50px;
    color: #868686;
    font-size: 14px;
}

.copyright:before {
    content: "";
    position: absolute;
    top: -8px;
    height: 12px;
    width: 12px;
    background-color: #515151;
    right: 0;
    left: 0;
    margin: 0px auto;
}

@media (max-width: 768px) {
    .program-head {
        flex-direction: column;
        gap: 20px;
    }

    .banner-caption h1 {
        font-size: 45px !important;
        width: 100%;
    }

    .service-card {
        max-width: 100%;
    }

    .foot-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .card-class {
        justify-content: center !important;
    }
}

@media (max-width: 991px) {
    .card-class {
        justify-content: center !important;
    }
}

@media (max-width: 767px) {
    .card-class {
        justify-content: center !important;
        gap: 0;
    }

    .service-card {
        margin: 0 auto;
    }

    .step-container {
        .card-class .row {
            padding-left: 0;
        }
    }
}

@media (max-width: 767px) and (min-width: 577px) {
    .address {
        display: none !important;
    }

    .logo-container {
        flex: 1;
        justify-content: flex-start;
    }

    .button-section {
        order: 2;
        flex: 1;
        justify-content: center;
        display: flex !important;
    }

    .mobile-menu-toggle {
        order: 3;
        flex: 1;
        justify-content: flex-end;
        display: flex !important;
    }

    .home-page .container .row {
        flex-wrap: nowrap;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .button-section {
        display: none !important;
    }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  background-color:#515151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 9999;

  img {
    width: 20px;
    height: 20px;
    filter: invert(1); // white arrow on black
  }
	svg{
		fill:#dddd;
	}

  &.visible {
    opacity: 1;
    visibility: visible;
  }

  &:hover {
    background-color: var(--green);
  }
}
@media (max-width: 767px) {
  .scroll-to-top {
    display: none !important;
  }
}