@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth !important;
    scroll-padding-top: 60px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
    background-color: #FFFDED;
    color: var(--black-color);
}

/* PRELOADER CSS */

.preloader {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 99999;
    background-color: white;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.preloader .spinner {
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2s infinite linear;
    animation: sk-rotate 2s infinite linear;
}

.preloader .dot1,
.preloader .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--primary-color);
    border-radius: 100%;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.preloader .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.header_fixed .secondary_btn:hover {
    background-color: var(--light-color) !important;
    /* color: var(--secondary-color); */
    color:#fff
}

.header{
    min-height: 120px;
 }

/* Header-css */

.header_fixed {
    position: fixed !important;
    top: 0px;
    left: 0;
    right: 0;
    transition: 0.3s;
    animation: slideDown 0.3s ease forwards;
    z-index: 999;
    box-shadow: 0 0px 25px rgb(48 51 57 / 30%);
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    background-color: #FFFDED;
}

.header_fixed .header_main{
    box-shadow: none;
}

.header_start {
    /* position: absolute;
    left: 0;
    right: 0;
    z-index: 99; */
}

.header-logo img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}

.mobile-address {
    display: none;
}

.mobile-address .header-top_contact {
    gap: 10px;
}

.divide-line {
    height: 1px;
    width: 100%;
    border-top: 1px solid #dadada;
    display: none;

}

.mobile-address .header_top_contact_icon a {
    color: #000;
}

.mobile-address .header_top_contact_icon a svg,
.mobile-address .social-media svg {
    fill: var(--primary-color);
    flex-shrink: 0;
}

.frame-box1 {
    width: 100%;
    border-radius: 20px;
    height: 400px;
}

@media (max-width:991px) {

    .mobile-address,
    .divide-line {
        display: block;
    }
}

.space-md {
    margin-bottom: 40px;
}

.space-md:nth-last-child(1),
.space-md:nth-last-child(2) {
    margin-bottom: 0px;
}

/* Header-top-start-css */

.header-top_start {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.header_top_contact_icon .icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header_top_contact_icon .icon > svg{
    flex-shrink: 0;
}

.header_top_contact_icon h6{
    text-align: center;
}

.header_top_contact_icon h6 {
    color: var(--black-color);
}

.header-top_contact {
    display: flex;
    gap: 3rem;
}

.header_top_contact_icon a {
    color: white;
    text-decoration: none;
}

.header-top_start h5 {
    color: white;
    font-size: var(--section-subheading);
    font-weight: bold;
    text-align: center;
}

.top-annouce-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.social-media li {
    display: flex;
    align-items: center;
    line-height: 00;
}

.social-media li svg {
    fill: white;
}

.header_nav .navbar-nav .nav-link {
    padding: 0;
    color: var(--black-color);
    font-weight: bold;
    font-family: var(--font-playfair);
    font-size: 18px;
}

.header_nav .navbar-nav .nav-link.active,
.header_nav .navbar-nav .nav-link:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* header-css */

.header_main {
    border-radius: 15px;
    padding: 15px 0px;
}

.navbar-collpase-start{
    padding-top: 30px;
}


.navbar-nav {
    align-items: center;
    gap: 70px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Banner-bottom-card-css-start */
.banner-bottom-card{
    padding-top: var(--section-smallspace);
}
.banner-card {
    background-color: var(--secondary-color);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(56, 82, 18, 0.24);
}

.banner-card-content{
    max-width:80%;
}


/* Home-about-us-css-start */
.section-heading .custom-border{
    position: relative;
}
.section-heading .custom-border::after {
    position: absolute;
    content: '';
    background-color: var(--secondary-color);
    height: 4px;
    width: 100%;
    right: 0px;
    bottom: 0;
}

.experience_col svg {
    background-color: #8dbd48;
    padding: 10px;
    border: 1px solid rgb(56 82 18 / 20%);
    border-radius: 5px;
    color: var(--primary-color);
    height: 50px;
    width: 100px;
}

.experience_col p{
    font-size: 20px;
}



/* Services-css-start */
.service-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
    text-align: start;
    color: whitesmoke;
    border-radius: 40px;
    height: 370px;
    background-size: cover;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

.lawn-care{
    background-image: url(../../images/services/lawn-care.png);
}
.hardscaping{
    background-image: url(../../images/services/hardscaping.png);
}
.garden-design{
    background-image: url(../../images/services/garden-design.png);
}
.irrigation{
    background-image: url(../../images/services/irigation.png);
}
.sustainable{
    background-image: url(../../images/services/sustainability.png);
}


.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(var(--d) * 1.5) var(--e);
    pointer-events: none;
}

.service-card:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
}

.service-card h2{
    font-family: var(--font-playfair);
    font-size: 32px
}

.service-card  p{
    color:white;
}


    .service-card:after {
        transform: translateY(0);
    }

    .content {
        transform: translateY(calc(100% - 6.5rem));
        transition: 0.5s ease-in-out;
        z-index: 9;
    }

    .content>*:not(.title) {
        opacity: 0;
        transform: translateY(1rem);
        transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    }

    .service-card:hover,
    .service-card:focus-within {
        align-items: center;
    }

    .service-card:hover:before,
    .service-card:focus-within:before {
        transform: translateY(-4%);
    }

    .service-card:hover:after,
    .service-card:focus-within:after {
        transform: translateY(-50%);
    }

    .service-card:hover .content,
    .service-card:focus-within .content {
        transform: translateY(0);
    }

    .service-card:hover .content>*:not(.title),
    .service-card:focus-within .content>*:not(.title) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--d) / 8);
    }

    .service-card:focus-within:before,
    .service-card:focus-within:after,
    .service-card:focus-within .content,
    .service-card:focus-within .content>*:not(.title) {
        transition-duration: 0s;
    }


/* Video-modal-css */

#video-popup-container {
    display:none;
    position: fixed;
    z-index: 996;
    width: 60%;
    left: 50%;
    margin-left: -30%;
    top: 20%;
    background-color: #fff;
  }
  
  #video-popup-close {
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 998;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    text-align: center;
    font-size: 12px;
    background-color: #000;
    line-height: 25px;
    color: #fff;
  }
  
  #video-popup-iframe-container {
    position: absolute;
    z-index: 997;
    width: 100%;
    padding-bottom: 56.25%;
    border: 2px solid #000;
    border-radius: 2px;
    background-color: #000;
  }
  
  #video-popup-iframe {
    z-index: 999;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
  }
  
  #video-popup-overlay {
    display: none;
    position: fixed;
    z-index: 995;
    top: 0;
    background-color: #000;
    opacity: 0.8;
    width: 100%;
    height: 100%;
  }
  
  #video-popup-close:hover {
    color: #DE0023;
  }



  /* About-us-page-css */
  .timer-col{
    display: flex;
    flex-direction: column;
    gap:10px;
    justify-content: center;
    align-items: center;
  }
  .timer-col h6{
    font-size: var(--section-subtitle);
  }
  .timer-col h2{
font-size: var(--section-hero-title);
  }


/* service-page-css */
.service--card {
    padding: 20px ;
    background: #EAFCD1;
    border:2px solid rgba(9, 9, 9, 0.1);
    border-radius: 20px;
    transition: all .5s ease-in-out;
    margin-bottom: 30px;
}
.service--card:last-child
{
    margin-bottom: 0;
}
.service--card h5
{
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 22px;
}
.service--card p{
    font-weight: 400;
}
.service--card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Gallery-css */
.img-60 {
    height: calc(.60 * var(--gallery-height));
}
.img-40 {
    height: calc(.40 * var(--gallery-height));
}
.img-30 {
    height: calc(.30 * var(--gallery-height));
}
.img-70 {
    height: calc(.70 * var(--gallery-height));
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* footer-css-start */
.footer{
    background-color: var(--primary-color);
}
.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 0;
}

.footer-navigation .nav-link{
    color:white;
    font-family: var(--font-playfair);
    font-size: 18px;
}

.footer-navigation .nav-link:hover{
    color:var(--secondary-color);
}
.slick-slide img {
    display: block;
    border-radius: 20px;
}


/* WhatsApp floating button css*/

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    z-index: 100;
}

.float img {
    width: 60px; /* Adjust size */
    height: 60px;
    transition: transform 0.3s ease-in-out;
}

.float img:hover {
    transform: scale(1.1);
}