@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Poppins:wght@400;500;700&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    color: #444444;
}

a{
    color: #228B22;
    text-decoration: none;
}

a:hover{
    color: #32CD32;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins', sans-serif;
}


#header{
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header .header-scrolled{
    top: 0;
}

#header .logo{
    margin: 0;
    padding: 0;
    line-height: 1px;
}

#header .logo img{
    max-height: 60px;
}


.navbar{
    padding: 0;
}

.navbar ul{
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li{
    position: relative;
}

.navbar ul li{
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a, .navbar a:focus{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #228B22;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid #fff;
    padding: 5px 2px;
}

.navbar a i, .navbar a:focus i{
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover a{
    color: #32CD32;
    border-color: #32CD32;
}

.pickup-btn{
    margin-left: 25px;
    background: #228B22;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.pickup-btn:hover{
    background: #32CD32;
    color: #fff;
}

.mobile-nav-toggle{
    color: #228B22;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.fa-times{
    color: #fff;
}

.navbar-mobile{
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #228B22;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul{
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li{
    padding: 0;
}

.navbar-mobile a{
    padding: 10px 20px;
    font-size: 15px;
    color: #228B22;
    border: none;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover a{
    color: #32CD32;
}

.navbar-mobile .getstarted{
    margin: 15px;
}


section{
    padding: 50px 0;
    overflow: hidden;
}
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  

.section-bg{
    background-color: #cbf7cb;
}

.section-title{
    text-align: center;
    padding-bottom: 50px;
}

.section-title h2{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #228B22;
}

.section-title h2:before{
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 20px);
}

.section-title h2::after{
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #32CD32;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p{
    margin-bottom: 0;
}


#home{
    margin-top: 40px;
    width: 100%;
    height: 100vh;
}

.carousel-caption {
    opacity: 0; /* Start as invisible */
    transform: translateY(20px); /* Start slightly lower */
    transition: opacity 0.8s ease, transform 0.8s ease; /* Animation properties */
}

.carousel-item.active .carousel-caption {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to original position */
}


#home span{
    color: #fff;
}

#home .carousel-item{
    height: 90vh;
    min-height: 365px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#home .carousel-item:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.7;
}

#home .carousel-caption{
    display: block;
    align-items: center;
    justify-content: center;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
}

#home .carousel-caption h1{
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #32CD32;
}

#home .carousel-caption h2{
    color: #32CD32;
    font-size: 24px;
}

#home .btn-get-started{
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    margin-top: 20px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #228B22;
}

#home .btn-get-started:hover{
    background: #32CD32;
}


.featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(74, 144, 68, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.featured-services .icon-box span{
    color: #32CD32;
    font-size: 20px;
}

.featured-services .icon-box:hover span{
    color: #228B22;
}

.featured-services .icon-box::before {
    content: '';
    position: absolute;
    background: #d9f1f2;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .icon-box:hover::before {
    background: #32CD32;
    top: 0;
    border-radius: 0px;
}

.featured-services .icon {
    margin-bottom: 15px;
}

.featured-services .icon i {
    font-size: 48px;
    line-height: 1;
    color: #32CD32;
    transition: all 0.3s ease-in-out;
}

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.featured-services .title a {
    color: #111;
}

.featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
    color: #fff;
}

.featured-services .icon-box:hover .icon i {
    color: #fff;
}



.about .icon-boxes h4 {
    font-size: 18px;
    color: #4b7dab;
    margin-bottom: 15px;
}

.about .icon-boxes {
    margin-left: 20px;
}

.about .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: #228B22;
    margin-bottom: 15px;
}

.about .icon-box {
    margin-top: 30px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #32CD32;
    border-radius: 50px;
    transition: 0.5s;
}

.about .icon-box .icon i {
    color: #32CD32;
    font-size: 32px;
}

.about .icon-box:hover .icon {
    background: #32CD32;
    border-color: #32CD32;
}

.about .icon-box:hover .icon i {
    color: #fff;
}

.about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.about .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.about .icon-box .title a:hover {
    color: #32CD32;
}

.about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

.about .img-box{
    width: 48%;
   
}

.about .video-box {
    background: url("images/about.jpg") center no-repeat;
    background-size: cover;
    height: 300px;
    min-height: 450px;
    border-radius: 10px;  
}

.about-btn{
    margin-left: 25px;
    background: #228B22;
    border-radius: 50px;
    padding: 8px 25px;
    transition: 0.3s;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.about-btn a{
    color: #fff;
}

.about-btn:hover{
    background: #32CD32;
    color: #fff;
}


.services .icon-box {
    text-align: center;
    border: 1px solid #d5edd5;
    border-radius: 6px;
    padding: 20px 20px;
    transition: all ease-in-out 0.3s;
}

.services .icon-box span{
    color: #32CD32;
    font-size: 20px;
    text-transform: uppercase;
}

.services .icon-box:hover span{
    color: #228B22;
}


.services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #32CD32;
    border-radius: 5px;
    transition: all .3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services .icon-box .icon i {
    color: #fff;
    font-size: 28px;
}

.services .icon-box .icon::before {
    position: absolute;
    content: '';
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #baf7c4;
    border-radius: 5px;
    transition: all .3s ease-out 0s;
    transform: translateZ(-1px);
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #228B22;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    background: #32CD32;
    border-color: #32CD32;
}

.services .icon-box:hover .icon {
    background: #fff;
}

.services .icon-box:hover .icon i {
    color: #32CD32;
}

.services .icon-box:hover .icon::before {
    background: #32CD32;
}

.services .icon-box:hover h4 a, .services .icon-box:hover p {
    color: #fff;
}


.pickup .php-email-form {
    width: 100%;
}

.pickup .php-email-form .form-group {
    padding-bottom: 8px;
}


.php-email-form .form-control, 
.php-email-form .form-select {
    outline: none !important;
    box-shadow: none; 
    border-radius: 10px;
}

.pickup .php-email-form input,  .php-email-form textarea,  .php-email-form select {
    border-radius: 10px;
    box-shadow: none;
    font-size: 14px;
    padding: 10px !important;
}

.pickup .php-email-form input:focus,  .php-email-form textarea:focus, .php-email-form select:focus {
    border-color: #228B22;
}

.pickup .php-email-form input, .appointment .php-email-form select {
    height: 44px;
}

.pickup .php-email-form textarea {
    padding: 10px 12px;
}

.pickup .php-email-form button[type="submit"] {
    margin-top: 10px;
    background: #228B22;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.pickup .php-email-form button[type="submit"]:hover {
    background: #32CD32;
}



.plan {
    background: #fff;
}

.plan .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
    padding: 20px 0 20px 10px;
    border-radius: 10px;
}


.plan .member:hover {
    transform: scale(1.1);
    transition: ease-in-out 0.3s;
    background: #32CD32;
    color: #fff;
}


.plan .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #228B22;
}

.plan .member:hover h4 {
    color: #fff;
}

.plan .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.plan .member span::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b3ddb2;
    bottom: 0;
    left: 0;
}

.plan .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}


.test{
    background: #cbf7cb;
}

.test .box {
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(74, 144, 68, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.test .stars {
    color: #32CD32;
}

.test .name {
    font-weight: 700;
    font-size: 18px;
}


.test p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}






.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #32CD32;
    float: left;
    width: 44px;
    height: 44px;
    background: #d9f8d1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #228B22;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #228B22;
}

.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}

.contact .video-box {
    background: url("images/cursor-contact-us_110488-1105.jpg") center center no-repeat;
    background-size: cover;
    min-height: 200px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: #32CD32;
    color: #fff;
}



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

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


#footer {
    background: #eeeeee;
    padding: 0 0 30px 0;
    color: #555555;
    font-size: 14px;
}

#footer .footer-top {
    background: #f6f6f6;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #228B22;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #32CD32;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .foot{
    margin-top: 43px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #228B22;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #555555;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #32CD32;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    height: 95px;
    background: #fff;
    position: relative;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter .text {
    border: none;
    width: 81%;
    height: 91px;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #228B22;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #32CD32;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
}


.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #228B22;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #32CD32;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}








@media (max-width: 1124px){
    #contact .video-box {
        display: none;
    }

    #home .carousel-caption{
        top: 500px;
    }

    #home .carousel-item img{
        height: 90vh;
        object-fit: cover !important;
    }

    .about .img-box{
        width: 50%;
    }

    .about .icon-boxes {
        margin-left: 0;
    }

    .about .video-box{
        width: 100%;
    }

    .about-btn{
        margin: 0 15px 0 0;
        padding: 8px 15px;
    }

    #footer .footer-top .footer-links{
        width: 50%;
    }
}

@media (max-width: 991px){
    .navbar ul {
        display: none;
    }

    .navbar-mobile ul, .mobile-nav-toggle{
        display: block;
    }

    #home .carousel-item img{
        width: 100%;
        height: 90vh;
        object-fit: cover;
        object-position: center;
        overflow: hidden;
    }

    #home .carousel-caption{
        top: 250px;
    }

    #home .carousel-caption h1{
        font-size: 38px;
    }
    #home .carousel-caption h2{
        font-size: 28px;
    }

    .about .img-box{
        width: 100%;
    }

}

@media (max-width: 768px){
    .pickup-btn{
        margin: 0 20px 0 0;
        padding: 6px 18px;
    }

    .about .video-box{
        min-height: 200px;
    }

    .about-btn{
        margin: 0 15px 0 0;
        padding: 8px 15px;
    }


    #home .carousel-caption h1{
        font-size: 30px;
    }
    #home .carousel-caption h2{
        font-size: 20px;
        padding: 10px 0 0 ;
    }
}

@media (max-width: 600px){
    #home{
        height: 100vh;
    }
    .plan .member img {
        height: 100px;
    }
}