@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: linear-gradient(90deg,
            #3C6D0A 0%,
            #609B25 50%,
            #3C6D0A 100%);
    --secondary-color: #FFF555;
    --dark-bg: linear-gradient(90deg,
            #000000 0%,
            #2B2B2B 42%,
            #000000 100%);
    --overlay-bg: linear-gradient(180deg,
            #0A0C1600 0%,
            #131413 100%);
    --green-gradient: linear-gradient(180deg,
            rgba(10, 12, 22, 0) 0%,
            #609B25 100%);

    --green: #609B25;
}

body {
    font-family: "Inter Tight", sans-serif;
    background: #000;
    background: var(--dark-bg);
}

/* HERO SECTION */
.hero {
    min-height: 80vh;
    color: #fff;
    padding-top: 100px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* NAVBAR */
.navbar {
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid #A8A8A8;
}

.navbar-nav .nav-link {
    color: #ddd;
    font-size: 16px;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.navbar-nav .nav-link.active {
    color: #fff;
    border-bottom: 1px solid var(--secondary-color);
}

.brand-green {
    background: linear-gradient(90deg,
            #3C6D0A 20%,
            #609B25 50%,
            #3C6D0A 74%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* PHONE BUTTON */
.phone-btn {
    background: var(--primary-color);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* HERO CONTENT */
.hero-row {
    min-height: calc(100vh - 100px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);

}

.hero-content p {
    font-size: 15px;
    color: #ccc;
    margin: 20px 0;
    max-width: 420px;
}

/* CTA BUTTON */
.btn-start {
    background: #fff;
    color: #000;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-start i {
    background: var(--secondary-color);
    color: #000;
    padding: 8px;
    border-radius: 50%;
    font-size: 12px;
}

/* FEATURES SECTION */
.features-section {
    background: #000;
    position: relative;
}

.features-section .container {
    border-bottom: 1px solid #A8A8A8;
}

.features-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #A8A8A8;
}

.feature-box {
    padding: 40px 20px;
    color: #fff;
}

.feature-border {
    border-left: 1px solid #A8A8A8;
    border-right: 1px solid #A8A8A8;
}

.feature-box img {
    height: 55px;
    width: auto;
    margin-bottom: 25px;
}

.feature-box p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}

.about-us {
    color: #fff;
}

span.main-heading {
    font-size: 20px;
    margin-left: 10px;
    color: #fff;
}

.heading-wrap {
    border-bottom: 1px solid #ababab;
    width: 50%;
    padding-bottom: 12px;
    font-size: 20px;
    text-transform: capitalize;
}

.about-us h2,
.why-choose-us h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 16px;
    line-height: 1.6;
    color: #727272;
}

.green {
    color: #609B25;
}

.vedio-sec {
    padding: 50px 0;

}

.vedio-sec video {
    width: 100%;
    border-radius: 50px;
}

.why-choose-us {
    color: #fff;
}

.why-choose-us .heading-wrap {
    width: 18%;
}

.content-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.content-card img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.5s ease;
    border-radius: 30px;
}

.content-card:hover img {
    transform: scale(1.04);
}

.content-card:after {
    content: "";
    position: absolute;
    background: var(--overlay-bg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.overlay-text {
    position: absolute;
    bottom: 10px;
    display: flex;
    text-align: left;
    justify-content: center;
    font-size: 18px;
    align-items: center;
    z-index: 10;
}

.overlay-text p {
    width: 65%;

}

.stat-card {
    background: #6FA437;
    color: #fff;
    height: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    text-align: start;
    padding: 40px;
}

.stat-card h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.video-wrap {
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-2 .overlay-text {
    position: absolute;
    display: flex;
    text-align: left;
    justify-content: space-around;
    font-size: 18px;
    align-items: start;
    z-index: 10;
    top: 0;
    flex-direction: column;
    height: 100%;
    padding: 0px 20px;
    color: #fff;
}

.card-2 .overlay-text p {
    width: 100%;
}

.card-2 .overlay-text img {
    border-radius: 0;
}

.card-2 .overlay-text h3 {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 600;
}

.progress-card {
    text-align: left;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 30px;
    padding: 0 20px;
    align-items: start;
}

.circle-progress {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(#6FA437 0deg, #6FA437 0deg, #E6F4D8 0deg, #E6F4D8 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-progress::before {
    content: "";
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
}

.percent-text {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    color: #000;
}

.progress-label {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.service .heading-wrap {
    width: 18%;
    color: #fff;
}

.service h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.service p {
    font-size: 16px;
    line-height: 1.6;
    color: #727272;
    margin-bottom: 20px;
}

.service-card {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    transition: transform 0.6s ease;
}

/* OVERLAY */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay-bg);
    z-index: 2;
    transition: background 0.5s ease;
    pointer-events: none;
    /* IMPORTANT */
}

.service-card:hover img {
    transform: scale(1.05);
}


.service-card .overlay-text {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    padding: 0 30px;
    z-index: 5;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.service-card .overlay-text p {
    width: 75%;
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
}


.service-card .btn-start {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.4s ease;
}


.service-card:hover .btn-start {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.service-card:hover::after {
    background: var(--green-gradient);
}

.service-card:hover .green {
    color: #fff;
}

.main-feature .heading-wrap {
    width: 18%;

}

.main-feature h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 15px;

}

.main-feature p {
    font-size: 16px;
    line-height: 1.6;
    color: #727272;
    margin-bottom: 20px;
}

.feature-card {
    transition: all 0.5s ease;
}

.feature-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    margin-bottom: 20px;
    border-radius: 44px;
    overflow: hidden;

}

.feature-card:hover img {
    transform: scale(1.02);

}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
}

.feature-card h3 span {
    text-transform: capitalize;
}

.video-wrap {
    width: 100%;
    height: 100%;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}


.testimonial-section {
    background: linear-gradient(180deg, #609B25 0%, #000000 100%);
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    min-height: 340px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card hr {
    border: 2px solid var(--green);
    width: 50px;
    border-radius: 20px;
    opacity: 1;
}

.testimonial-card.active {
    background: #A9F65B;
}

.tes-avatar {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.quote {
    font-size: 48px;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 500;
}

.testimonial-card h6 {
    font-weight: 600;
}

.nav-wrap button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.nav-wrap button:hover {
    background: var(--secondary-color);
    color: #000;
}

.owl-dots {
    display: flex !important;
    margin-top: 25px;
    justify-content: center;
    gap: 10px;
}

button.owl-dot {
    display: block;
    background: #fff !important;
    height: 10px;
    width: 11px;
    border-radius: 50%;
}

.owl-dot.active {
    background: #7fbf3f !important;
}

.news-blog-section {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    padding: 80px 0
}

.news-blog-section .heading-wrap {
    width: 14%;
}

.news-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 35px
}

.featured-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.featured-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: opacity .55s ease, transform .55s cubic-bezier(.22, .61, .36, 1)
}

.featured-content {
    position: relative;
    margin-top: 20px;
    z-index: 2;
    transition: opacity .55s ease, transform .55s cubic-bezier(.22, .61, .36, 1);
    text-align: left;
}

.featured-content .date {
    font-size: 18px;
    color: #727272;
    display: inline;
    margin-bottom: 10px;
    position: relative;
}

.featured-content .date:after {
    content: "";
    display: block;
    background: #727272;
    width: 120px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 10px;
}

.featured-content p {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 10px;
}

.featured-card.featured-hide img {
    opacity: 1;
    transform: translateY(24px)
}

.featured-card.featured-hide .featured-content {
    opacity: 1;
    transform: translateY(24px)
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.news-item {
    background: #fff;
    color: #000;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
    transition: background-color .35s ease, color .35s ease;
    text-align: left;
}

.news-item img {
    width: 120px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform .35s ease;
}

.news-item .date {
    font-size: 18px;
    color: #727272;
    display: inline;
    position: relative;
    margin-right: 10px;
}

.news-item .date:after {
    content: "";
    display: block;
    background: #727272;
    width: 120px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 10px;
}

.news-item p {
    font-size: 20px;
    margin: 4px 0 0;
    line-height: 1.4;
}

.news-item:hover .date:after {
    background: #fff;
}

.news-item:hover,
.news-item.active {
    background: var(--green);
    color: #fff
}

.news-item:hover .date,
.news-item.active .date {
    color: #eaffd4
}

.news-item:hover img,
.news-item.active img {
    transform: scale(1.06)
}

.contact-section {
    background:
        url("../assets/img/Clip-path-group.png") center center / cover no-repeat,
        var(--dark-bg);
    position: relative;
    overflow: hidden
}


.contact-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff
}

.contact-desc {
    color: #727272;
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-img {
    max-width: 420px
}

.form-label {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-control {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 18px 16px;
    font-size: 16px;
}

.form-control:focus {
    box-shadow: none;
    outline: none
}

textarea.form-control {
    resize: none
}

.send-btn {
    background: var(--green);
    color: #fff;
    border-radius: 30px;
    padding: 10px 26px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none
}

.send-btn:hover {
    background: #fff;
    color: #000;
}

/* about page section  */

section.breadcrum-sec {
    position: relative;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 70px;
    color: #fff;
    z-index: 0;
}


.breadcrum-heading {
    font-size: 70px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
}

section.breadcrum-sec p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.breadcrum-text {
    background: #fff;
    padding: 15px;
    border-radius: 50px;
    color: #000;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.breadcrum-text a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.taking-charge {
    padding: 80px 0px 60px;
}

.img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 1s ease;
}


.img-wrap:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.ev-text h2 {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;
}

.ev-text .heading-wrap {
    width: 34%;
    font-size: 20px;
}

.ev-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #727272;
    margin-bottom: 20px;
}

.core-values-section .heading-wrap {
    width: 14%;
}


.core-values-section h2 {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.value-card {
    border-radius: 28px;
    padding: 40px 30px;
    height: 100%;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(103, 103, 103, 0.35);
}


.value-card:hover img {
    transform: scale(1.2);
}

.value-card.bg-success {
    background-color: var(--green) !important;
}

.value-card .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
}



.why-choose-section {
    background: #000;
    color: #727272;
    font-size: 18px;
}

.why-choose-section h2 {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.why-choose-section .heading-wrap {
    width: 16%;
}

.why-img-wrap {
    overflow: hidden;
    border-radius: 53px;
}

.why-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 53px;
}


.why-img-wrap img {
    transition: transform 0.6s ease;
}

.why-img-wrap:hover img {
    transform: scale(1.05);
}






/* footer  */


.site-footer {
    background: linear-gradient(180deg,
            #609B25 0%,
            #243b12 0%,
            #000000 40%,
            #000000 100%);
    color: #fff;
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden
}

.footer-label {
    font-size: 24px;
    opacity: 1;
    display: block;
    margin-bottom: 12px;
}

.footer-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px
}

.newsletter-box {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    max-width: 320px;
    background: #262627;
    padding-right: 10px;
}

.newsletter-box input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px;
    flex: 1
}

.newsletter-box input:focus {
    outline: none
}

.newsletter-box button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.footer-links li {
    margin-bottom: 8px
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 1
}

.site-footer p {
    font-size: 16px;
    opacity: 1;
    margin-bottom: 8px;
}

.footer-cta {
    position: relative;
    text-align: center;
}

.footer-cta span {
    font-size: 15rem;
    font-weight: 700;
    color: #171717;
    letter-spacing: 0px;
}

.cta-btn {
    width: 110px;
    height: 110px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 20px;
    font-size: 16px;
}

.footer-policy {
    display: flex;
    gap: 20px
}

.footer-policy a {
    color: #fff;
    text-decoration: none
}

.footer-policy a:hover {
    opacity: 1
}

/* RESPONSIVE STYLES */

@media(max-width:991px) {
    .phone-btn {
        padding: 14px;
        border-radius: 8px;
    }

    .feature-border {
        border: none;
    }

    .feature-box {
        margin-bottom: 30px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-img {
        max-width: 320px;
        margin: auto
    }

    .footer-cta span {
        font-size: 64px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px
    }

    .featured-card {
        min-height: 360px
    }
}



@media (max-width:768px) {
    .news-title {
        font-size: 26px
    }

    .featured-content {
        max-width: 95%
    }

    .news-item img {
        width: 80px;
        height: 60px
    }
}