/* ================= HOME 2 ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background: #fff;
}

.home2-wrapper {
    overflow-x: hidden;
    background: #fff;
}

.home2-container {
    max-width: 1370px !important;
}

/* ================= ANIMATIONS ================= */

@keyframes home2FadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes home2FadeLeft {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes home2FadeRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes home2Float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes home2HeaderDrop {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


/* HOME2 INNER HERO */

.home2-hero-inner {
   min-height: 650px;
   
   background-image: url("/images/home2-hero.png");
    background-position: center;
    background-size: cover; 
    position: relative;
     padding: 185px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.home2-hero-inner .hero-text-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.home2-hero-inner h1 {
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    
}




/* HOME2 BLOG CARD */

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(130,200,61,0.15);
    transition: all 0.4s ease;
}

/* hover green theme */
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(130,200,61,0.25);
}

/* image hover */
.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-img img {
    transition: 0.5s;
}

/* title color */
.blog-content h3 {
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* paragraph */
.blog-content p {
    color: #535353;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}


/* HOME2 BUTTON */

.blog-card .btn-read {
    background: #84BF3F;
     font-family: 'Poppins', sans-serif;
     font-size: 14px;
     font-weight: 400;
    border-radius: 100px;
    padding: 10px 25px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.blog-card .btn-read:hover {
    background: #84BF3F;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(130,200,61,0.35);
}




.blogs-section {
    padding: 100px 0;
    background: #fff;
}

/* heading */
.blogs-section .section-title {
    color: #2C2C2C;
        font-family: 'Poppins', sans-serif;
        font-size: 55px;
        font-weight: 600;
        line-height: 1.18;
        margin-bottom: 28px;
}

/* tag */
.blogs-section .section-tag {
    background: #84BF3F;
     font-family: 'Poppins', sans-serif;
     font-size: 14px;
     font-weight: 400;  
    color: #fff;
}

/* ================= HEADER ================= */

.home2-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    animation: home2HeaderDrop 0.7s ease;
}

/* NORMAL STATE */
.home2nav {
    padding: 8px 0;
    background: #fff !important;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.home2-header-container {
    max-width: 1370px;
    display: flex;
    align-items: center;
}

/* LOGO NORMAL */
.home2-logo {
    width: 150px;
    transition: all 0.35s ease;
      height: auto;
    display: block;
    transition: all 0.35s ease;
}

.home2-logo:hover {

    transform: scale(1.04);
}

/* ================= STICKY STATE ================= */

.home2-header.scrolled .home2nav {
    padding: 6px 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* LOGO SMALL */
.home2-header.scrolled .home2-logo {
    width: 160px;
    padding-bottom: 5px;
}

.home2nav {
    height: 112px;
    padding: 0;
    transition: all 0.35s ease;
}

.home2-header.scrolled .home2nav {
    height: 60px;
}

/* ================= MENU ================= */

.home2-menu {
    gap: 16px;
    align-items: center;
}

.home2-link {
    color: #000 !important;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    padding: 9px 15px !important;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.home2-link.active,
.home2-link:hover {
    background: #84BF3F;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(130, 200, 61, 0.35);
}

/* ================= BUTTON ================= */

.home2-contact-btn {
    background: #29A5DB;
    padding: 10px 26px;
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.home2-contact-wrap:hover{
  transform: translateY(-3px) !important;
    transition: all 0.3s ease;
}

.home2-contact-btn:hover {
   background: #84BF3F;
    box-shadow: 0 12px 24px rgba(84, 216, 44, 0.    35);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .home2nav {
        padding: 10px 0;
    }

    .home2-header.scrolled .home2nav {
        padding: 8px 0;
    }

    .home2-logo {
        width: 120px;
    }

    .home2-header.scrolled .home2-logo {
        width: 95px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .home2-menu {
        flex-direction: column;
        gap: 10px;
    }

    .home2-link {
        text-align: center;
        width: 100%;
    }

    .home2-contact-wrap {
        display: none;
    }
}



/* ================= HERO ================= */

.home2-hero {
    min-height: 720px;
    margin-top: 80px;
     background-image: url("/images/home2-hero.png");
    background-position: center;
    background-size: cover; 
    background-repeat: no-repeat;   
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}



.home2-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: home2FadeUp 1s ease both;
}

.home2-hero-content h1 {
    font-size: 140px;
    font-weight: 700;
      font-family: 'Poppins', sans-serif;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 12px;
}

.home2-hero-content p {
    font-size: 24px;
     font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
}


/* ================= ABOUT INNER FIX ================= */

.home2-about-inner {
    padding: 150px 0 150px !important;
}

.home2-about-row {
    row-gap: 40px;
}

.home2-about-img-col {
    animation: home2FadeLeft 0.9s ease both;
}

.home2-about-inner .home2-about-main {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 16px;
    filter: grayscale(100%);
    transition: all 0.45s ease;
}

.home2-about-inner .home2-about-main:hover {
    transform: translateY(-8px) scale(1.02);
    filter: grayscale(70%);
    box-shadow: 0 22px 45px rgba(130, 200, 61, 0.22);
}

.home2-about-content-col {
    animation: home2FadeRight 0.9s ease both;
    padding-left: 55px !important;
}

.home2-about-content-col .home2-small-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
}

.home2-about-content-col h2 {
    font-size: 55px;
    line-height: 1.18;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 28px;
}

.home2-about-content-col p {
    font-size: 17px;
    color: #6f6f6f;
    line-height: 1.8;
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .home2-about-content-col {
        padding-left: 12px !important;
        margin-top: 30px;
        text-align: center;
    }

    .home2-about-inner .home2-about-main {
        height: 300px;
    }
}



/* ================= ABOUT ================= */

.home2-about {
    padding: 95px 0 40px;
    background: #fff;
    position: relative;
}

.home2-about::before {
    content: "";
    position: absolute;
    left: -160px;
    top: 120px;
    width: 450px;
    height: 450px;
    background: rgba(44, 167, 216, 0.096);
    border-radius: 50%;
    filter: blur(20px);
}

.home2-small-title {
    display: block;
    color: #000000;
        font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 22px;
    font-weight: 400;
}

.home2-about-left {
    animation: home2FadeLeft 0.9s ease both;
}

.home2-about-left h2 {
    font-size: 55px;
    line-height: 1.18;
    font-weight: 500;
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 28px;
}

.home2-about-right {
    border-left: 1px solid #ddd;
    padding-left: 70px !important;
    animation: home2FadeRight 0.9s ease both;
}

.home2-about-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #535353;
        font-family: 'Poppins', sans-serif;
    margin-bottom: 18px;
}

.home2-btn {
    display: inline-block;
    background: #84BF3F;
    color: #fff !important;
    text-decoration: none;
    padding: 13px 34px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.home2-btn:hover {
    background: #72b832;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(130, 200, 61, 0.35);
}

.home2-about-image-wrap {
    position: relative;
    margin-top: 70px;
    animation: home2FadeUp 1s ease both;
}

.home2-about-main {
    width: 100%;
    
    display: block;
    
    transition: all 0.45s ease;
}

.home2-about-main:hover {
    filter: grayscale(70%);
    transform: scale(1.01);
}

.home2-about-small {
    position: absolute;
    right: 70px;
    bottom: -320px;
    width: 430px;
    
   
    overflow: hidden;
    animation: home2Float 4s ease-in-out infinite;
}

.home2-about-small img {
    width: 100%;
    display: block;
}

/* ================= WHY ================= */

.home2-why {
    padding: 35px 0 100px;
    background: #fff;
}

.why-title{
     font-size: 55px;
    
     line-height: 1.18;
    font-weight: 500;
        font-family: 'Poppins', sans-serif;
    color: #2C2C2C;
    margin-bottom: 28px;
    animation: home2FadeLeft 0.9s ease both;
}

.home2-why h2 {
    font-size: 55px;
    
     line-height: 1.18;
    font-weight: 500;
        font-family: 'Poppins', sans-serif;
    color: #2C2C2C;
    margin-bottom: 28px;
    animation: home2FadeLeft 0.9s ease both;
}

.home2-why p {
    font-size: 18px;
    color: #535353;
     font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    animation: home2FadeLeft 1s ease both;
}


.why-text{
    font-size: 18px;
    color: #535353;
     font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    animation: home2FadeLeft 1s ease both;
}


/* ================= SERVICES ================= */

.home2-services {
    padding: 60px 0 150px;
    background: linear-gradient(135deg, #fff 0%, #fff 60%, rgba(130,200,61,0.35) 100%);
}

.home2-services h2 {
    font-size: 55px;
    color: #2C2C2C;
     font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 35px;
}

.home2-services .row {
    align-items: stretch;
}

.home2-services .col-lg-4,
.home2-services .col-md-6 {
    display: flex;
}

.home2-service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    box-shadow: 0 16px 45px rgba(130, 200, 61, 0.12);
    transition: all 0.45s ease;
    display: flex;
    flex-direction: column;
}

.home2-service-img {
    overflow: hidden;
}

.home2-service-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.home2-service-content {
    padding: 28px 32px 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home2-service-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2C2C2C;
     font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
}

.home2-service-content p {
    font-size: 18px;
    color: #535353;
     font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 25px;
}

.home2-service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 24px 60px rgba(130, 200, 61, 0.25);
}

.home2-service-card:hover .home2-service-img img {
    transform: scale(1.08);
}




/* ================= HOME2 CONTACT THEME ================= */

/* section */
.hp1-contact {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #ffffff 70%,
        rgba(130,200,61,0.15) 100%
    );
}

/* heading */
.hp1-contact h2 {
    color: #2C2C2C;
    font-weight: 600;
        font-family: 'Poppins', sans-serif;
        font-size: 55px;

}

/* paragraph */
.hp1-contact p {
    color: #535353;
    font-family: 'Poppins', sans-serif;
        font-size: 18px;
}

/* inputs - change blue to soft green/blue mix */
.contact-form input,
.contact-form textarea {
    background: #f4fbf4; /* light green feel */
    border: 1px solid rgba(130,200,61,0.2);
     font-family: 'Poppins', sans-serif;
}

/* hover */
.contact-form input:hover,
.contact-form textarea:hover {
    box-shadow: 0 10px 22px rgba(130,200,61,0.15);
}

/* focus */
.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(130,200,61,0.25);
}

/* checkbox */
.consent-label input {
    accent-color: #84BF3F; /* green */
}

/* label text */
.consent-label {
    color: #6f6f6f;
}

/* ================= BUTTON FIX ================= */

.form-bottom .btn-read {
    background: #84BF3F;   /* green button */
    border-radius: 100px;
    padding: 12px 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* hover button */
.form-bottom .btn-read:hover {
    background: #84BF3F;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(130,200,61,0.35);
}

/* ================= ANIMATION IMPROVE ================= */

.hp1-contact {
    animation: fadeUp 0.9s ease both;
}

.contact-form input,
.contact-form textarea {
    animation: fadeUp 1s ease both;
}

.form-bottom {
    animation: fadeUp 1.1s ease both;
}





/* ================= FOOTER ================= */

.home2-footer {
    background: #020014;
    color: #fff;
   padding-top: 70px !important;
    padding-bottom: 60px !important;
     font-family: 'Poppins', sans-serif;
}

.home2-footer-container {
    max-width: 1300px;
}

.home2-footer-main {
    align-items: flex-start;
}

.home2-footer-logo {
    width: 140px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.home2-footer-text {
    color: #d8d8e6;
    font-size: 14px;
    text-align: start;
    line-height: 1.7;
     font-family: 'Poppins', sans-serif;
    max-width: 300px;
}

.home2-footer h5 {
    color: #84BF3F;
     font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 22px;
}

.home2-footer ul {
    list-style: none;
    padding: 0;
    
    margin: 0;
}

.home2-footer ul li {
    margin-bottom: 12px;
}

.home2-footer ul li:hover {
   transform: translateX(5px) !important;
   transition: all 0.25s ease;
}

.home2-footer ul li a {
    color: #d8d8e6;
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 13px;
        font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}

.home2-footer ul li a:hover {
    color: #84BF3F;
    
}

.home2-footer p a{
    color: #d8d8e6;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.8;
     font-family: 'Poppins', sans-serif;
}

.home2-footer p a:hover {
    color: #84BF3F;
}

.home2-footer p {
    color: #d8d8e6;
    font-size: 15px;
    line-height: 1.8;
     font-family: 'Poppins', sans-serif;
}

.home2-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.home2-social-icons a {
    width: 37px;
    height: 37px;
    background: #fff;
    color: #020014;
     font-family: 'Poppins', sans-serif;
     font-size: 18px;
     font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home2-social-icons a:hover {
    background: #84BF3F;
    color: #fff;
    transform: translateY(-3px);
}

.btnfooter2 {
    display: inline-block;
    background: #84BF3F;
    color: #fff !important;
    text-decoration: none;
    padding: 13px 34px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.btnfooter2:hover {
    background: #72b832;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(130, 200, 61, 0.35);
}




/* ================= HOME2 BACK TO TOP ================= */

.back-to-top-2 {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    background: #82c83d;
    cursor: pointer;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all 0.3s ease;
}

.back-to-top-2.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-2:hover {
    background: #6fb52f;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(130,200,61,0.35);
}





/* ================= RESPONSIVE ================= */

@media (max-width: 1399px) {
    .home2-header-container,
    .home2-container,
    .home2-footer-container {
        max-width: 1140px !important;
    }

    .home2-menu {
        gap: 12px;
    }

    .home2-link {
        font-size: 14px;
        padding: 8px 14px !important;
    }
}

@media (max-width: 1199px) {
    .home2nav {
        height: auto;
        min-height: 80px;
        padding: 12px 0;
    }

    .home2-contact-wrap {
        margin-left: auto;
        margin-right: 15px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 18px;
        margin-top: 15px;
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    }

    .home2-menu {
        align-items: stretch;
        gap: 8px;
    }

    .home2-link {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .home2-contact-wrap {
        display: none;
    }

    .home2-hero {
        min-height: 540px;
    }

    .home2-hero-content h1 {
        font-size: 62px;
    }

    .home2-hero-content p {
        font-size: 17px;
    }

    .home2-about-right {
        border-left: none;
        padding-left: 12px !important;
        margin-top: 35px;
    }

    .home2-about-small {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 25px;
    }

    .home2-why {
        padding-top: 80px;
    }

    .home2-footer-main {
        row-gap: 35px;
    }
}

@media (max-width: 767px) {
    .home2-logo {
        width: 125px;
    }

    .home2-hero-content h1 {
        font-size: 44px;
    }

    .home2-about-left h2,
    .home2-why h2,
    .home2-services h2 {
        font-size: 34px;
    }

    .home2-about {
        padding-top: 70px;
    }

    .home2-services {
        padding-bottom: 80px;
    }
}