/* ========================== VARIABLES ========================== */
:root {
    --font-base: "Poppins", sans-serif;
    --color-dark: #000000;
    --color-body: #ffffff;
    --color-brand: #1c842f;
    --color-brand-light: #2cc548;
    --color-brand-gradient-rgb: 1, 37, 78, 1;
    --color-brand-rgb: 207, 77, 28;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease;
}

/* blue */
/* #01254e */
/* rgba(1, 37, 78) */
/* hsl(212, 97, 15) */

/* green */
/* #1c842f */
/* rgba(28, 132, 47) */
/* hsl(131, 65, 31) */

/* ========================== RESET & BASE ========================== */
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--color-body);
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--color-brand);
}

a:hover {
    color: var(--color-brand-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--color-dark);
}

.text-brand {
    color: var(--color-brand);
}

.text-brand-light {
    color: var(--color-brand-light);
}

.bg-brand {
    background-color: var(--color-brand);
    color: white;
}

/* ========================== UTILITIES ========================== */
.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.section-title h6 {
    color: var(--color-brand);
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* ========================== BUTTONS ========================== */
.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: white;
}

.btn-brand:hover {
    background-color: var(--color-brand-light);
    border-color: var(--color-brand-light);
    color: white;
}

.btn-outline-brand {
    background-color: transparent;
    color: var(--color-brand);
    border: 2px solid var(--color-brand);
    transition: var(--transition);
}

.btn-outline-brand:hover {
    background-color: var(--color-brand);
    color: white;
}

.border-brand {
    border-color: var(--color-brand) !important;
}

/* ========================== CARD ========================== */
.card-move-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-move-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ========================== NAVBAR ========================== */
.navbar {
    box-shadow: var(--box-shadow);
    background-color: #ffffff;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #000;
    margin-left: 15px;
    position: relative;
    transition: var(--transition);
}

/* Hover + active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-brand-light);
}

/* ==========================
   SIMPLE DARK FOOTER
========================== */

.ev-simple-footer {

    position: relative;

    overflow: hidden;

    padding: 70px 0 22px;

    background:
        linear-gradient(
            180deg,
            #08110c 0%,
            #050a07 100%
        );

    color: #fff;

}


/* ==========================
   TOP GREEN GLOW
========================== */

.ev-simple-footer::before {

    content: "";

    position: absolute;

    top: -180px;

    left: 50%;

    width: 420px;

    height: 420px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(
        32,
        189,
        103,
        0.07
    );

    filter: blur(80px);

    pointer-events: none;

}


/* ==========================
   BOTTOM GREEN LINE
========================== */

.ev-simple-footer::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 180px;

    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #20bd67,
            transparent
        );

}


/* ==========================
   CONTENT
========================== */

.ev-simple-footer .footer-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: auto;

}


/* ==========================
   LOGO
========================== */

.ev-simple-footer .footer-logo {

    width: 75%;

    max-width: 75%;

    height: auto;

    margin-bottom: 20px;

}


/* ==========================
   LOGO LINK
========================== */

.ev-footer-logo-link {

    display: inline-block;

    transition:
        transform 0.3s ease;

}


.ev-footer-logo-link:hover {

    transform:
        translateY(-3px);

}


/* ==========================
   TAGLINE
========================== */

.ev-footer-tagline {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 28px;

}


.ev-footer-tagline span {

    width: 35px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                32,
                189,
                103,
                0.7
            )
        );

}


.ev-footer-tagline span:last-child {

    background:
        linear-gradient(
            90deg,
            rgba(
                32,
                189,
                103,
                0.7
            ),
            transparent
        );

}


.ev-footer-tagline p {

    margin: 0;

    color: #718078;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* ==========================
   ADDRESS
========================== */

.ev-simple-footer .footer-address {

    max-width: 650px;

    margin: auto;

}


.ev-simple-footer .footer-address p {

    margin-bottom: 12px;

    color: #8d9992;

    font-size: 13px;

    line-height: 1.8;

}


.ev-simple-footer .footer-address a {

    color: #8d9992;

    text-decoration: none;

    transition:
        color 0.3s ease;

}


.ev-simple-footer .footer-address a:hover {

    color: #45f58f;

}


/* ==========================
   ICON
========================== */

.ev-simple-footer .footer-icon {

    margin-right: 7px;

    color: #20bd67;

    font-size: 15px;

    vertical-align: -1px;

}


/* ==========================
   SOCIAL ICONS
========================== */

.ev-simple-footer .social-icons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    flex-wrap: wrap;

}


.ev-simple-footer .social-icons a {

    position: relative;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.10
    );

    border-radius: 50%;

    background: rgba(
        255,
        255,
        255,
        0.035
    );

    color: #9aa59f;

    font-size: 18px;

    text-decoration: none;

    transition:
        all 0.3s ease;

}


.ev-simple-footer .social-icons a:hover {

    border-color: #20bd67;

    background: #20bd67;

    color: #fff;

    transform:
        translateY(-4px);

    box-shadow:
        0 8px 20px rgba(
            32,
            189,
            103,
            0.20
        );

}


/* ==========================
   HR
========================== */

.ev-simple-footer hr {

    position: relative;

    z-index: 2;

    margin-top: 35px !important;

    margin-bottom: 20px;

    border: 0;

    border-top: 1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    opacity: 1;

}


/* ==========================
   FOOTER BOTTOM
========================== */

.ev-simple-footer .footer-bottom {

    position: relative;

    z-index: 2;

    text-align: center;
    
    padding-top: 16px;

}


.ev-simple-footer .footer-bottom p {

    margin: 0;

    color: #66736b;

    font-size: 11px;

    line-height: 1.7;

}


.ev-simple-footer .footer-bottom .text-light {

    color: #aeb9b2 !important;

}


.ev-simple-footer .footer-bottom a {

    color: #20bd67;

    text-decoration: none;

    transition:
        color 0.3s ease;

}


.ev-simple-footer .footer-bottom a:hover {

    color: #45f58f;

}


/* ==========================
   DIVIDER
========================== */

.ev-footer-divider {

    color: #36423b;

    font-size: 11px;

}


/* ==========================
   GITHUB
========================== */

.ev-footer-github {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-left: 5px;

    color: #7c8981 !important;

    font-size: 14px;

}


.ev-footer-github:hover {

    color: #45f58f !important;

}


/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
    .ev-simple-footer {
        padding: 60px 0 20px;
    }
    .ev-simple-footer .footer-logo {
        width: 200px;
    }
    .ev-simple-footer .footer-address p {
        font-size: 13px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {

    .ev-simple-footer {

        padding: 55px 15px 20px;

    }


    .ev-simple-footer .footer-logo {

        width: 75%;

    }


    .ev-footer-tagline {

        gap: 8px;

        margin-bottom: 25px;

    }


    .ev-footer-tagline span {

        width: 25px;

    }


    .ev-footer-tagline p {

        font-size: 9px;

        letter-spacing: 1.4px;

    }


    .ev-simple-footer .footer-address p {

        font-size: 12px;

        line-height: 1.75;

    }


    .ev-simple-footer .social-icons {

        margin-top: 24px;

        gap: 8px;

    }


    .ev-simple-footer .social-icons a {

        width: 40px;

        height: 40px;

        font-size: 17px;

    }


    .ev-simple-footer hr {

        margin-top: 30px !important;

    }


    .ev-simple-footer .footer-bottom p {

        font-size: 10px;

    }

}


/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {

    .ev-simple-footer {

        padding: 50px 15px 18px;

    }


    .ev-simple-footer .footer-logo {

        width: 75%;

    }


    .ev-footer-tagline p {

        font-size: 8px;

    }


    .ev-simple-footer .footer-address p {

        font-size: 11px;

    }


    .ev-simple-footer .social-icons a {

        width: 38px;

        height: 38px;

        font-size: 16px;

    }


    .ev-simple-footer .footer-bottom p {

        font-size: 9px;

    }

}


/* =========================================================
   HOME CONTACT CTA
========================================================= */

.home-contact-cta {
    padding: 80px 0;
    background: #f7faf8;
}


/* MAIN BOX */

.home-contact-box {
    position: relative;
    overflow: hidden;

    padding: 55px 60px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            var(--color-brand) 0%,
            var(--color-brand) 100%
        );

    color: #fff;

    box-shadow:
        0 20px 50px rgba(0, 80, 40, 0.15);
}


/* DECORATIVE CIRCLE */

.home-contact-box::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    right: -180px;
    top: -250px;
}


/* SECOND CIRCLE */

.home-contact-box::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

    left: -180px;
    bottom: -220px;
}


/* KEEP CONTENT ABOVE DECORATION */

.home-contact-box .row {
    position: relative;
    z-index: 2;
}



/* =========================================================
   LABEL
========================================================= */

.home-contact-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    margin-bottom: 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #fff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.home-contact-label i {
    font-size: 13px;
}



/* =========================================================
   HEADING
========================================================= */

.home-contact-box h2 {

    max-width: 700px;

    margin: 0 0 18px;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.15;

    font-weight: 800;

    color: #fff;
}


.home-contact-box h2 span {

    color: #d7ffe4;

}



/* =========================================================
   DESCRIPTION
========================================================= */

.home-contact-box > .row p {

    max-width: 700px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;

    line-height: 1.8;
}



/* =========================================================
   QUICK POINTS
========================================================= */

.home-contact-points {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;
}


.home-contact-points div {

    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 12px;

    font-weight: 600;
}


.home-contact-points i {

    color: #c8ffda;

    font-size: 14px;
}



/* =========================================================
   RIGHT ACTION CARD
========================================================= */

.home-contact-action {

    position: relative;

    padding: 30px;

    text-align: center;

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(12px);
}


.home-contact-icon {

    width: 55px;
    height: 55px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.12);

    color: #fff;

    font-size: 21px;
}


.home-contact-action h4 {

    margin-bottom: 7px;

    color: #fff;

    font-size: 19px;

    font-weight: 750;
}


.home-contact-action p {

    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
}



/* =========================================================
   CONTACT BUTTON
========================================================= */

.home-contact-btn {

    width: 100%;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 20px;

    border-radius: 8px;

    background: #fff;

    color: var(--color-brand);

    text-decoration: none;

    font-size: 13px;

    font-weight: 750;

    transition: all 0.3s ease;
}


.home-contact-btn i {

    transition: transform 0.3s ease;
}


.home-contact-btn:hover {

    color: var(--color-brand);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}


.home-contact-btn:hover i {

    transform: translate(3px, -3px);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .home-contact-cta {

        padding: 70px 0;

    }


    .home-contact-box {

        padding: 45px;

    }


    .home-contact-action {

        max-width: 420px;

        margin: 10px auto 0;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-contact-cta {

        padding: 55px 0;

    }


    .home-contact-box {

        padding: 35px 25px;

        border-radius: 17px;

    }


    .home-contact-box h2 {

        font-size: 34px;

    }


    .home-contact-box > .row p {

        font-size: 14px;

    }


    .home-contact-points {

        flex-direction: column;

        gap: 10px;

    }


    .home-contact-action {

        padding: 25px 20px;

    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-contact-cta {

        padding: 45px 0;

    }


    .home-contact-box {

        padding: 30px 20px;

    }


    .home-contact-box h2 {

        font-size: 29px;

    }


    .home-contact-label {

        font-size: 9px;

    }


    .home-contact-points div {

        font-size: 11px;

    }

}


/* =========================================================
   QUICK ENQUIRY SECTION
========================================================= */

.quick-enquiry-section {
    padding: 45px 0;
    background: #ffffff;
}


/* MAIN BOX */

.quick-enquiry-box {
    position: relative;

    padding: 28px 35px;

    border-radius: 14px;

    background: #f5faf7;

    border: 1px solid rgba(0, 128, 64, 0.12);

    overflow: hidden;

    transition: all 0.3s ease;
}


.quick-enquiry-box:hover {
    border-color: rgba(0, 128, 64, 0.25);

    box-shadow:
        0 12px 35px rgba(0, 80, 40, 0.08);
}



/* =========================================================
   ICON
========================================================= */

.quick-enquiry-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--color-brand),
            var(--color-brand)
        );

    color: #ffffff;

    font-size: 23px;

    box-shadow:
        0 8px 20px rgba(0, 128, 64, 0.18);
}



/* =========================================================
   CONTENT
========================================================= */

.quick-enquiry-label {

    display: block;

    margin-bottom: 5px;

    color: var(--color-brand);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.quick-enquiry-box h3 {

    margin: 0 0 7px;

    color: #171717;

    font-size: 22px;

    font-weight: 750;

    line-height: 1.3;
}


.quick-enquiry-box h3 span {

    color: var(--color-brand);
}


.quick-enquiry-box p {

    max-width: 650px;

    margin: 0;

    color: #777;

    font-size: 12px;

    line-height: 1.6;
}



/* =========================================================
   BUTTON
========================================================= */

.quick-enquiry-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    white-space: nowrap;

    padding: 13px 20px;

    border-radius: 7px;

    background: var(--color-brand);

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.quick-enquiry-btn i {

    transition: transform 0.3s ease;
}


.quick-enquiry-btn:hover {

    background: var(--color-brand-light);

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 128, 64, 0.15);
}


.quick-enquiry-btn:hover i {

    transform: translateX(4px);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .quick-enquiry-section {
        padding: 40px 0;
    }

    .quick-enquiry-box {
        padding: 28px;
    }

    .quick-enquiry-box h3 {
        font-size: 20px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .quick-enquiry-section {
        padding: 35px 0;
    }

    .quick-enquiry-box {
        padding: 25px 20px;
    }

    .quick-enquiry-icon {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }

    .quick-enquiry-box h3 {
        font-size: 19px;
    }

    .quick-enquiry-box p {
        font-size: 12px;
    }

    .quick-enquiry-btn {
        width: 100%;
    }

}


/* =========================================================
   INFO FOOTER
========================================================= */

.info-footer {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.info-footer strong {
    color: #ffffff;
}


/* =========================================================
   FORM AREA
========================================================= */

.enquiry-form-wrapper {
    padding: 55px 50px;
    background: #ffffff;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}


/* =========================================================
   FORM INPUTS
========================================================= */

.form-floating > .form-control,
.form-floating > .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    min-height: 58px;
    color: #111827;
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.form-floating > label {
    color: #9ca3af;
    font-size: 14px;
}


/* Message */

.enquiry-message {
    min-height: 150px !important;
    resize: vertical;
}


/* =========================================================
    CHECKBOX
========================================================= */

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-check-input {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    border: 1px solid #646464;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
}

.form-check-label {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.enquiry-submit-btn {
    width: 100%;
    min-height: 58px;
    border: none;
    border-radius: 12px;
    background: var(--color-brand);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.enquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.enquiry-submit-btn:hover i {
    transform: translateX(5px);
}

.enquiry-submit-btn:active {
    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .enquiry-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .enquiry-info {
        padding: 45px 35px;
    }

    .enquiry-form-wrapper {
        padding: 45px 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .enquiry-section {
        padding: 65px 0;
    }

    .section-heading {
        padding: 0 10px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 14px;
    }

    .enquiry-card {
        border-radius: 18px;
    }

    .enquiry-info {
        padding: 40px 25px;
    }

    .enquiry-info h3 {
        font-size: 30px;
    }

    .info-description {
        margin-bottom: 30px;
    }

    .enquiry-form-wrapper {
        padding: 40px 25px;
    }

    .form-header h3 {
        font-size: 24px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .enquiry-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 27px;
    }

    .enquiry-info {
        padding: 35px 20px;
    }

    .enquiry-info h3 {
        font-size: 27px;
    }

    .enquiry-form-wrapper {
        padding: 35px 20px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

}

/* =========================================================
   BLOG SECTION
========================================================= */

.blogs-section {
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.blogs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}


.blogs-heading {
    max-width: 720px;
}


.blogs-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-brand-light);
    margin-bottom: 12px;
}


.blogs-title {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
}


.blogs-title span {
    color: var(--color-brand-light);
}


.blogs-description {
    max-width: 650px;
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   ARROW BUTTONS
========================================================= */

.blog-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


.blog-arrow {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 1px solid #e5e7eb;

    background: #ffffff;

    color: #111827;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.blog-arrow:hover {
    background: var(--color-brand-light);
    border-color: var(--color-brand-light);
    color: #ffffff;
    transform: translateY(-2px);
}


.blog-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}


/* =========================================================
   SLIDER
========================================================= */

.blogs-slider-wrapper {
    width: 100%;
    overflow: hidden;
}


.blogs-slider {
    display: flex;
    gap: 24px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 5px 2px 20px;

    scroll-snap-type: x mandatory;
}


.blogs-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   BLOG CARD
   DESKTOP = 4 CARDS
========================================================= */

.blog-card {
    flex: 0 0 calc((100% - 72px) / 4);

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e9edf2;

    border-radius: 18px;

    overflow: hidden;

    scroll-snap-align: start;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.blog-card:hover {
    transform: translateY(-7px);

    border-color: transparent;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   IMAGE
========================================================= */

.blog-image {
    height: 200px;

    position: relative;

    overflow: hidden;

    background: #eef2f5;
}


.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.blog-card:hover .blog-image img {
    transform: scale(1.06);
}


/* =========================================================
   CATEGORY
========================================================= */

.blog-category {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 6px 11px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.95);

    color: var(--color-brand-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.8px;
}


/* =========================================================
   CONTENT
========================================================= */

.blog-content {
    padding: 22px 20px 24px;
}


.blog-meta {
    display: flex;

    align-items: center;

    margin-bottom: 12px;

    color: #9ca3af;

    font-size: 11px;
}


.blog-meta i {
    margin-right: 5px;
}


/* =========================================================
   TITLE
========================================================= */

.blog-content h3 {
    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;

    color: #111827;

    margin: 0 0 12px;

    min-height: 50px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.blog-content p {
    font-size: 13px;

    line-height: 1.7;

    color: #6b7280;

    margin: 0 0 18px;

    min-height: 66px;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   READ MORE
========================================================= */

.blog-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--color-brand-light);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.blog-read-more i {
    transition: transform 0.3s ease;
}


.blog-read-more:hover {
    color: var(--color-brand-light);
}


.blog-read-more:hover i {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
   3 CARDS
========================================================= */

@media (max-width: 991.98px) {

    .blogs-section {
        padding: 80px 0;
    }


    .blogs-title {
        font-size: 36px;
    }


    .blog-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }


    .blog-image {
        height: 180px;
    }

}


/* =========================================================
   MOBILE
   1 CARD
========================================================= */

@media (max-width: 767.98px) {

    .blogs-section {
        padding: 65px 0;
    }


    .blogs-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-bottom: 30px;
    }


    .blogs-title {
        font-size: 30px;
    }


    .blogs-description {
        font-size: 14px;
    }


    .blog-controls {
        align-self: flex-end;
    }


    .blog-arrow {
        width: 44px;
        height: 44px;
    }


    /* ONE CARD VISIBLE */

    .blog-card {
        flex: 0 0 100%;
    }


    .blog-image {
        height: 220px;
    }


    .blog-content {
        padding: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .blogs-section {
        padding: 55px 0;
    }


    .blogs-title {
        font-size: 27px;
    }


    .blog-card {
        flex: 0 0 100%;
    }


    .blog-image {
        height: 200px;
    }

}


/* =========================================
   EV HERO SECTION
========================================= */

.ev-hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 50%, rgba(31, 255, 145, 0.12), transparent 30%),
        radial-gradient(circle at 20% 20%, rgba(31, 255, 145, 0.06), transparent 25%),
        #07100d;
    color: #ffffff;
}


/* Height */

.min-vh-75 {
    min-height: 78vh;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 5;
    padding: 60px 0;
}


/* Small Tag */

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;

    border: 1px solid rgba(61, 255, 154, 0.35);
    border-radius: 50px;

    background: rgba(61, 255, 154, 0.08);

    color: #55ff9d;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;

    margin-bottom: 22px;
}


/* Heading */

.hero-content h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 700;

    margin-bottom: 25px;

    letter-spacing: -2px;
}

.hero-content h1 span {
    display: block;
    color: #45f58f;
}


/* Paragraph */

.hero-content p {
    max-width: 570px;

    color: #aab8b2;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 32px;
}

/* =========================================
   FUTURISTIC GRID
========================================= */

.ev-hero-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            transparent 95%
        );

    pointer-events: none;

}

.ev-hero-section::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(32, 189, 103, 0.08);

    filter: blur(100px);

    right: -180px;

    top: -180px;

    pointer-events: none;

}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 25px;

    background: #45f58f;
    color: #06100b;

    border-radius: 8px;

    font-weight: 600;

    border: 1px solid #45f58f;

    transition: 0.3s ease;
}

.hero-btn-primary:hover {
    background: transparent;
    color: #45f58f;

    transform: translateY(-3px);
}


.hero-btn-outline {
    padding: 14px 25px;

    border: 1px solid rgba(255,255,255,0.25);

    color: #ffffff;

    border-radius: 8px;

    font-weight: 500;

    transition: 0.3s ease;
}

.hero-btn-outline:hover {
    border-color: #45f58f;
    color: #45f58f;

    transform: translateY(-3px);
}


/* =========================================
   PRODUCT AREA
========================================= */

.hero-product-area {
    position: relative;

    height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Glow */

.battery-glow {
    position: absolute;

    width: 390px;
    height: 390px;

    background: #35f28a;

    filter: blur(120px);

    opacity: 0.12;

    border-radius: 50%;
}


/* Product Image */

.hero-product-img {
    position: relative;

    z-index: 2;

    max-width: 90%;
    max-height: 460px;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 35px rgba(0,0,0,0.55))
        drop-shadow(0 0 35px rgba(69,245,143,0.12));

    animation: batteryFloat 4s ease-in-out infinite;
}


/* =========================================
   FLOATING BADGES
========================================= */

.floating-badge {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 16px;

    background: rgba(10, 24, 18, 0.88);

    border: 1px solid rgba(69,245,143,0.25);

    border-radius: 8px;

    backdrop-filter: blur(10px);

    color: #dce8e2;

    font-size: 13px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.floating-badge i {
    color: #45f58f;
    font-size: 17px;
}


.badge-one {
    top: 24%;
    left: 4%;

    animation: badgeFloat 3s ease-in-out infinite;
}


.badge-two {
    bottom: 24%;
    right: 2%;

    animation: badgeFloat 3s ease-in-out infinite 1s;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes batteryFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}


@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================
   CAROUSEL
========================================= */

.carousel-item {
    transition: transform 0.8s ease-in-out;
}


.carousel-indicators {
    bottom: 20px;
}


.carousel-indicators button {
    width: 28px;
    height: 4px;

    border-radius: 10px;

    margin: 0 5px;

    background-color: rgba(255,255,255,0.35);
}


.carousel-indicators .active {
    background-color: #45f58f;
}


/* =========================================
   CAROUSEL CONTROLS
========================================= */

.hero-control {
    width: 45px;
    height: 45px;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.25);

    backdrop-filter: blur(8px);

    color: #ffffff;

    transition: 0.3s ease;
}


.hero-control:hover {
    background: #45f58f;
    color: #07100d;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .min-vh-75 {
        min-height: auto;
    }

    .hero-content {
        padding: 90px 0 30px;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-product-area {
        height: 430px;
    }

    .hero-product-img {
        max-height: 350px;
    }

    .badge-one {
        left: 10%;
    }

    .badge-two {
        right: 8%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .hero-content {
        padding: 70px 15px 10px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 8px 13px;
    }

    .hero-content h1 {
        font-size: 39px;
        line-height: 1.08;

        letter-spacing: -1px;

        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        max-width: 260px;

        justify-content: center;
    }

    .hero-product-area {
        height: 330px;
    }

    .hero-product-img {
        max-width: 85%;
        max-height: 280px;
    }

    .battery-glow {
        width: 250px;
        height: 250px;
    }

    .floating-badge {
        font-size: 10px;
        padding: 8px 10px;
    }

    .floating-badge i {
        font-size: 13px;
    }

    .badge-one {
        top: 18%;
        left: 3%;
    }

    .badge-two {
        bottom: 18%;
        right: 3%;
    }

    .hero-control {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .carousel-indicators {
        bottom: 8px;
    }

}

/* ============================================================================================= */

/* =========================================
   ABOUT US SECTION
========================================= */

.ev-about-section {

    position: relative;

    overflow: hidden;

    padding: 100px 0;

    background: #ffffff;
}


/* =========================================
   PRODUCT VISUAL
========================================= */

.product-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   PRODUCT GLOW
========================================= */

.product-glow {

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background: rgba(69, 245, 143, 0.18);

    filter: blur(90px);

    z-index: 0;
}


/* =========================================
   MAIN PNG
========================================= */

.ev-spares-image {

    position: relative;

    z-index: 3;

    width: 85%;

    max-width: 540px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 35px rgba(0, 0, 0, 0.15)
        )
        drop-shadow(
            0 0 30px rgba(69, 245, 143, 0.12)
        );

    animation: productFloat 4s ease-in-out infinite;
}


/* Product Floating Animation */

@keyframes productFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}


/* =========================================
   DECORATIVE RINGS
========================================= */

.about-ring {

    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(69, 245, 143, 0.25);

    animation: rotateRing 20s linear infinite;
}


.ring-one {

    width: 390px;
    height: 390px;

}


.ring-two {

    width: 480px;
    height: 480px;

    border-color: rgba(69, 245, 143, 0.12);

    animation-duration: 28s;

    animation-direction: reverse;
}


@keyframes rotateRing {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}


/* =========================================
   PRODUCT TAGS
========================================= */

.product-tag {

    position: absolute;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid #e8eee9;

    border-radius: 50px;

    color: #344139;

    font-size: 11px;

    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(20, 50, 30, 0.10);

    backdrop-filter: blur(10px);

    animation: tagFloat 4s ease-in-out infinite;
}


.product-tag i {

    color: #20bd67;

    font-size: 10px;
}


.tag-cells {

    top: 17%;

    left: 5%;
}


.tag-bms {

    top: 31%;

    right: 2%;

    animation-delay: 0.7s;
}


.tag-spares {

    bottom: 18%;

    right: 6%;

    animation-delay: 1.2s;
}


@keyframes tagFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

}


/* =========================================
   FLOATING CARDS
========================================= */

.about-float-card {

    position: absolute;

    z-index: 7;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 180px;

    padding: 13px 16px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #edf1ee;

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(20, 40, 30, 0.12);

    backdrop-filter: blur(10px);
}


.about-float-card strong {

    display: block;

    color: #17231d;

    font-size: 13px;

    line-height: 1.3;
}


.about-float-card small {

    display: block;

    color: #7d8882;

    font-size: 10px;

    margin-top: 3px;
}


.float-icon {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: rgba(69, 245, 143, 0.12);

    color: #20bd67;

    font-size: 18px;
}


.card-top {

    top: 5%;

    right: 0;

    animation:
        cardFloat 4s ease-in-out infinite;
}


.card-bottom {

    bottom: 6%;

    left: 0;

    animation:
        cardFloat 4s ease-in-out infinite 1s;
}


@keyframes cardFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-9px);

    }

}


/* =========================================
   DECORATIVE DOTS
========================================= */

.about-dots {

    position: absolute;

    width: 60px;
    height: 60px;

    background-image:
        radial-gradient(
            #45f58f 1.5px,
            transparent 1.5px
        );

    background-size: 10px 10px;

    opacity: 0.35;

    z-index: 1;
}


.dots-one {

    top: 45px;

    left: 7%;
}


.dots-two {

    bottom: 40px;

    right: 8%;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {

    padding-left: 30px;
}


.about-subtitle {

    position: relative;

    display: inline-block;

    padding-left: 35px;

    margin-bottom: 15px;

    color: #20bd67;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


.about-subtitle::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 25px;

    height: 2px;

    background: #45f58f;

    transform: translateY(-50%);
}


/* =========================================
   HEADING
========================================= */

.about-content h2 {

    margin-bottom: 22px;

    color: #102019;

    font-size: clamp(36px, 4vw, 54px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.about-content h2 span {

    display: block;

    color: #20bd67;
}


/* =========================================
   DESCRIPTION
========================================= */

.about-description {

    max-width: 590px;

    margin-bottom: 14px;

    color: #68756f;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.about-highlights {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin: 28px 0;
}


.about-highlight {

    padding: 16px 13px;

    border: 1px solid #edf1ee;

    border-radius: 11px;

    transition: all 0.3s ease;
}


.about-highlight:hover {

    transform: translateY(-4px);

    border-color:
        rgba(69, 245, 143, 0.5);

    box-shadow:
        0 12px 30px rgba(30, 80, 50, 0.08);
}


.highlight-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 9px;

    border-radius: 8px;

    background:
        rgba(69, 245, 143, 0.12);

    color: #20bd67;

    font-size: 16px;
}


.about-highlight h6 {

    margin-bottom: 4px;

    color: #18251e;

    font-size: 12px;

    font-weight: 700;
}


.about-highlight p {

    margin: 0;

    color: #89938e;

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================
   EXPLORE MORE BUTTON
========================================= */

.about-explore-btn {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 7px 8px 7px 21px;

    color: #ffffff;

    background: #0b1712;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.explore-icon {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    background: #45f58f;

    color: #07100d;

    transition: all 0.3s ease;
}


.about-explore-btn:hover {

    color: #ffffff;

    background: #14251c;

    transform: translateY(-3px);
}


.about-explore-btn:hover
.explore-icon {

    transform: rotate(45deg);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .ev-about-section {

        padding: 80px 0;

    }


    .product-visual {

        min-height: 450px;

    }


    .ev-spares-image {

        width: 72%;

    }


    .about-content {

        padding-left: 0;

        text-align: center;

    }


    .about-subtitle {

        padding-left: 0;

    }


    .about-subtitle::before {

        display: none;

    }


    .about-description {

        margin-left: auto;

        margin-right: auto;

    }


    .about-highlights {

        text-align: left;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .ev-about-section {

        padding: 60px 0;

    }


    .product-visual {

        min-height: 350px;

    }


    .ev-spares-image {

        width: 82%;

    }


    .product-glow {

        width: 250px;
        height: 250px;

    }


    .about-ring.ring-one {

        width: 300px;
        height: 300px;

    }


    .about-ring.ring-two {

        width: 370px;
        height: 370px;

    }


    .product-tag {

        padding: 6px 10px;

        font-size: 9px;

    }


    .tag-cells {

        top: 15%;

        left: 0;

    }


    .tag-bms {

        top: 29%;

        right: 0;

    }


    .tag-spares {

        bottom: 16%;

        right: 0;

    }


    .about-float-card {

        min-width: 150px;

        padding: 9px 11px;

    }


    .float-icon {

        width: 34px;
        height: 34px;

        font-size: 15px;

    }


    .about-float-card strong {

        font-size: 11px;

    }


    .about-float-card small {

        font-size: 8px;

    }


    .card-top {

        top: 1%;

        right: -5px;

    }


    .card-bottom {

        bottom: 2%;

        left: -5px;

    }


    .about-content {

        padding: 0 10px;

    }


    .about-content h2 {

        font-size: 34px;

        letter-spacing: -1px;

    }


    .about-description {

        font-size: 14px;

        line-height: 1.7;

    }


    .about-highlights {

        grid-template-columns: 1fr;

        gap: 10px;

    }


    .about-highlight {

        display: flex;

        align-items: center;

        gap: 12px;

    }


    .highlight-icon {

        flex-shrink: 0;

        margin-bottom: 0;

    }


    .about-explore-btn {

        margin-top: 5px;

    }

}

/* ==================================================== */

/* =========================================================
   PRODUCTS SECTION
========================================================= */

.ev-products-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f7faf8;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}


.products-heading {
    max-width: 720px;
}


/* =========================================================
   SUBTITLE
========================================================= */

.products-subtitle {
    position: relative;
    display: inline-block;

    padding-left: 35px;
    margin-bottom: 15px;

    color: #20bd67;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.products-subtitle::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 25px;
    height: 2px;

    background: #45f58f;

    transform: translateY(-50%);
}


/* =========================================================
   HEADING
========================================================= */

.products-heading h2 {
    margin: 0 0 18px;

    color: #102019;

    font-size: clamp(36px, 4vw, 52px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.products-heading h2 span {
    color: #20bd67;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.products-heading p {
    max-width: 650px;

    margin: 0;

    color: #718078;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   NAVIGATION
========================================================= */

.products-controls {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.product-nav-btn {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #dfe8e2;

    border-radius: 9px;

    background: #ffffff;

    color: #16251d;

    font-size: 17px;

    cursor: pointer;

    transition:
        all 0.3s ease;
}


.product-nav-btn:hover,
.product-nav-btn.active {
    border-color: #20bd67;

    background: #20bd67;

    color: #ffffff;
}


.product-nav-btn:disabled {
    opacity: 0.35;

    cursor: not-allowed;

    background: #ffffff;

    color: #89958e;

    border-color: #dfe8e2;
}


.product-nav-btn:disabled:hover {
    background: #ffffff;

    color: #89958e;

    border-color: #dfe8e2;
}


/* =========================================================
   CAROUSEL
========================================================= */

.products-carousel {
    width: 100%;

    overflow: hidden;

    position: relative;
}


.products-track {
    display: flex;

    gap: 24px;

    width: 100%;

    transition:
        transform 0.55s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

    will-change: transform;
}


/* =========================================================
   PRODUCT SLIDE
   DESKTOP = 3 PRODUCTS
========================================================= */

.product-slide {
    flex: 0 0 calc(
        (100% - 48px) / 3
    );

    min-width: 0;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8eee9;

    border-radius: 18px;

    box-shadow:
        0 15px 40px
        rgba(
            20,
            50,
            30,
            0.05
        );

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.product-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(
            69,
            245,
            143,
            0.5
        );

    box-shadow:
        0 25px 55px
        rgba(
            20,
            70,
            40,
            0.12
        );
}


/* =========================================================
   IMAGE AREA
========================================================= */

.product-image-area {
    position: relative;

    height: 285px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(
                69,
                245,
                143,
                0.11
            ),
            transparent 62%
        );
}


.product-image-area::after {
    content: "";

    position: absolute;

    left: 30px;
    right: 30px;

    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                69,
                245,
                143,
                0.35
            ),
            transparent
        );
}


/* =========================================================
   PRODUCT NUMBER
========================================================= */

.product-number {
    position: absolute;

    top: 18px;
    left: 20px;

    z-index: 3;

    color: #d3ddd7;

    font-size: 38px;

    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   IMAGE GLOW
========================================================= */

.product-image-glow {
    position: absolute;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background:
        rgba(
            69,
            245,
            143,
            0.16
        );

    filter: blur(55px);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
    position: relative;

    z-index: 2;

    width: 70%;

    max-width: 220px;

    max-height: 230px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 25px
            rgba(
                0,
                0,
                0,
                0.14
            )
        );

    transition:
        transform 0.5s ease;
}


.product-card:hover
.product-image {
    transform:
        scale(1.07)
        translateY(-5px);
}


/* =========================================================
   PRODUCT TYPE
========================================================= */

.product-type {
    position: absolute;

    z-index: 4;

    top: 18px;
    right: 18px;

    padding: 7px 11px;

    border-radius: 50px;

    background: #0b1712;

    color: #45f58f;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.product-card-content {
    padding: 28px 25px 25px;
}


/* =========================================================
   SMALL TITLE
========================================================= */

.product-small-title {
    display: block;

    margin-bottom: 9px;

    color: #20bd67;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.4px;
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.product-card-content h3 {
    margin: 0 0 12px;

    color: #14211a;

    font-size: 25px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


.product-card-content h3 span {
    color: #20bd67;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.product-card-content p {
    min-height: 76px;

    margin: 0 0 18px;

    color: #78847e;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.product-features {
    display: flex;

    flex-direction: column;

    gap: 8px;

    padding-top: 16px;

    margin-bottom: 20px;

    border-top:
        1px solid #edf1ee;
}


.product-features div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #5f6d65;

    font-size: 11px;

    font-weight: 500;
}


.product-features i {
    color: #20bd67;

    font-size: 14px;
}


/* =========================================================
   PRODUCT LINK
========================================================= */

.product-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #14211a;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: 0.3s ease;
}


.product-link span {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #e8fcef;

    color: #20bd67;

    transition: 0.3s ease;
}


.product-link:hover {
    color: #20bd67;
}


.product-link:hover span {
    background: #45f58f;

    color: #07100d;

    transform: rotate(45deg);
}


/* =========================================================
   TABLET
   2 PRODUCTS
========================================================= */

@media (max-width: 991px) {

    .ev-products-section {
        padding: 80px 0;
    }


    .products-header {
        margin-bottom: 40px;
    }


    .product-slide {
        flex: 0 0 calc(
            (100% - 24px) / 2
        );
    }


    .product-image-area {
        height: 260px;
    }


    .product-image {
        max-height: 205px;
    }

}


/* =========================================================
   MOBILE
   1 PRODUCT
========================================================= */

@media (max-width: 767px) {

    .ev-products-section {
        padding: 65px 0;
    }


    .products-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

        margin-bottom: 35px;
    }


    .products-heading {
        width: 100%;
    }


    .products-heading h2 {
        font-size: 34px;
    }


    .products-heading p {
        font-size: 14px;
    }


    .products-controls {
        align-self: flex-end;
    }


    .product-slide {
        flex: 0 0 100%;
    }


    .product-image-area {
        height: 270px;
    }


    .product-card-content {
        padding: 25px 22px 23px;
    }


    .product-card-content h3 {
        font-size: 23px;
    }


    .product-card-content p {
        min-height: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .product-nav-btn {
        width: 42px;

        height: 42px;
    }


    .product-image-area {
        height: 245px;
    }


    .product-image {
        width: 65%;

        max-height: 190px;
    }


    .product-number {
        font-size: 30px;
    }


    .product-type {
        font-size: 8px;

        padding: 6px 9px;
    }

}

/* ======================================================================================== */

/* =========================================================
   EV TESTIMONIAL SECTION
========================================================= */

.evtest-section {

    position: relative;

    overflow: hidden;

    padding: 100px 0;

    background: #f7faf8;

}


/* =========================================================
   HEADER
========================================================= */

.evtest-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;

}


.evtest-heading {

    max-width: 700px;

}


/* =========================================================
   LABEL
========================================================= */

.evtest-label {

    position: relative;

    display: inline-block;

    padding-left: 35px;

    margin-bottom: 15px;

    color: #20bd67;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.evtest-label::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 25px;

    height: 2px;

    background: #45f58f;

    transform: translateY(-50%);

}


/* =========================================================
   HEADING
========================================================= */

.evtest-heading h2 {

    margin: 0 0 16px;

    color: #102019;

    font-size: clamp(35px, 4vw, 50px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1.5px;

}


.evtest-heading h2 span {

    color: #20bd67;

}


.evtest-heading p {

    max-width: 600px;

    margin: 0;

    color: #718078;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   CONTROLS
========================================================= */

.evtest-controls {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}


.evtest-nav {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 1px solid #dfe8e2;

    border-radius: 9px;

    background: #ffffff;

    color: #16251d;

    font-size: 16px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

}


.evtest-nav:hover {

    border-color: #20bd67;

    background: #20bd67;

    color: #ffffff;

    transform: translateY(-2px);

}


/* =========================================================
   CAROUSEL
========================================================= */

.evtest-carousel {

    width: 100%;

    overflow: hidden;

    position: relative;

}


/* =========================================================
   TRACK

   IMPORTANT:
   NO transform transition here.
   Continuous JS animation handles movement.
========================================================= */

.evtest-track {

    display: flex;

    gap: 24px;

    width: max-content;

    transform:
        translate3d(0, 0, 0);

    will-change: transform;

}


/* =========================================================
   SLIDE - DESKTOP
   3 CARDS
========================================================= */

.evtest-slide {

    flex: 0 0 calc(
        (min(100vw - 48px, 1320px) - 48px) / 3
    );

    min-width: 0;

}


/* =========================================================
   CARD
========================================================= */

.evtest-card {

    position: relative;

    width: 100%;

    min-height: 290px;

    height: 100%;

    padding: 28px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5ece7;

    border-radius: 16px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

}


/* Decorative Circle */

.evtest-card::before {

    content: "";

    position: absolute;

    width: 45px;

    height: 45px;

    right: 25px;

    bottom: 25px;

    border: 1px solid rgba(
        69,
        245,
        143,
        0.08
    );

    border-radius: 50%;

    pointer-events: none;

}


.evtest-card::after {

    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    right: -45px;

    bottom: -45px;

    border: 1px solid rgba(
        32,
        189,
        103,
        0.08
    );

    border-radius: 50%;

    pointer-events: none;

}


/* Hover */

.evtest-card:hover {

    transform: translateY(-7px);

    border-color: rgba(
        69,
        245,
        143,
        0.5
    );

    box-shadow:
        0 20px 45px rgba(
            20,
            60,
            35,
            0.09
        );

}


/* =========================================================
   CARD TOP
========================================================= */

.evtest-card-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;

}


/* =========================================================
   QUOTE
========================================================= */

.evtest-quote {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #e8fcef;

    color: #20bd67;

    font-size: 20px;

}


.evtest-quote i {

    line-height: 1;

}


/* =========================================================
   STARS
========================================================= */

.evtest-stars {

    display: flex;

    align-items: center;

    gap: 3px;

}


.evtest-stars i {

    color: #20bd67;

    font-size: 11px;

}


/* =========================================================
   TEXT
========================================================= */

.evtest-text {

    position: relative;

    z-index: 2;

    min-height: 100px;

    margin: 0 0 25px;

    color: #5f6d65;

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   USER
========================================================= */

.evtest-user {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 18px;

    border-top: 1px solid #edf1ee;

}


/* =========================================================
   AVATAR
========================================================= */

.evtest-avatar {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #0b1712;

    color: #45f58f;

    font-size: 11px;

    font-weight: 700;

}


/* =========================================================
   NAME
========================================================= */

.evtest-user h4 {

    margin: 0 0 3px;

    color: #17231d;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.3;

}


/* =========================================================
   ROLE
========================================================= */

.evtest-user span {

    display: block;

    color: #87938c;

    font-size: 10px;

    line-height: 1.4;

}



/* =========================================================
   TABLET
   2 CARDS
========================================================= */

@media (max-width: 991px) {

    .evtest-section {

        padding: 80px 0;

    }


    .evtest-header {

        margin-bottom: 35px;

    }


    .evtest-slide {

        flex: 0 0 calc(
            (min(100vw - 48px, 960px) - 24px) / 2
        );

    }


    .evtest-card {

        min-height: 285px;

    }


    .evtest-heading h2 {

        font-size: 40px;

    }

}


/* =========================================================
   MOBILE
   1 CARD
========================================================= */

@media (max-width: 767px) {

    .evtest-section {

        padding: 70px 0;

    }


    .evtest-header {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        margin-bottom: 30px;

    }


    .evtest-heading {

        width: 100%;

    }


    .evtest-heading h2 {

        font-size: 34px;

        letter-spacing: -1px;

    }


    .evtest-heading p {

        font-size: 13px;

    }


    .evtest-controls {

        align-self: flex-end;

    }


    .evtest-nav {

        width: 43px;

        height: 43px;

        font-size: 15px;

    }


    .evtest-slide {

        flex: 0 0 calc(
            100vw - 48px
        );

    }


    .evtest-card {

        min-height: 280px;

        padding: 25px;

        border-radius: 14px;

    }


    .evtest-text {

        min-height: auto;

        font-size: 13px;

        line-height: 1.75;

    }


}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .evtest-section {

        padding: 60px 0;

    }


    .evtest-heading h2 {

        font-size: 30px;

    }


    .evtest-label {

        font-size: 10px;

        padding-left: 30px;

    }


    .evtest-label::before {

        width: 20px;

    }


    .evtest-card {

        padding: 22px;

    }


    .evtest-card-top {

        margin-bottom: 18px;

    }


    .evtest-quote {

        width: 40px;

        height: 40px;

        font-size: 18px;

    }


    .evtest-stars i {

        font-size: 10px;

    }


    .evtest-user {

        padding-top: 15px;

    }


    .evtest-avatar {

        width: 40px;

        height: 40px;

    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .evtest-heading h2 {

        font-size: 28px;

    }


    .evtest-card {

        padding: 20px;

    }


    .evtest-nav {

        width: 40px;

        height: 40px;

    }

}

/* ============================================================================================== */

/* =========================================
   EV COUNTER RIBBON
========================================= */

.ev-counter-ribbon {
    position: relative;
    padding: 28px 0;

    background: #14251c;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    overflow: hidden;
}

/* subtle green ribbon glow */
.ev-counter-ribbon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;

    background: #54d68a;
    opacity: 0.5;

    box-shadow: 0 0 25px 5px rgba(84, 214, 138, 0.12);
}


/* =========================================
   RIBBON ITEM
========================================= */

.ribbon-item {
    position: relative;
    min-height: 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 5px 15px;
}


/* Vertical divider */
.ribbon-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 1px;
    height: 40px;

    background: rgba(255, 255, 255, 0.08);
}

.col-md-3:last-child .ribbon-item::after {
    display: none;
}


/* Number */
.ribbon-number {
    display: block;

    color: #ffffff;
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
}

.ribbon-number::first-letter {
    color: #54d68a;
}


/* Label */
.ribbon-label {
    display: block;
    margin-top: 7px;

    color: #7f8b85;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 1.3px;
}


/* =========================================
   HOVER
========================================= */

.ribbon-item:hover .ribbon-number {
    color: #54d68a;
}

.ribbon-item:hover .ribbon-label {
    color: #aeb8b3;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .ev-counter-ribbon {
        padding: 20px 0;
    }

    .ribbon-item {
        min-height: 55px;
        padding: 5px 8px;
    }

    .ribbon-number {
        font-size: 20px;
    }

    .ribbon-label {
        font-size: 8px;
        letter-spacing: 0.8px;
    }

    /* 2x2 mobile layout */
    .col-6:nth-child(1) .ribbon-item::after,
    .col-6:nth-child(2) .ribbon-item::after {
        display: block;
    }

    .col-6:nth-child(2) .ribbon-item::after,
    .col-6:nth-child(4) .ribbon-item::after {
        display: none;
    }

    .col-6:nth-child(1) .ribbon-item,
    .col-6:nth-child(2) .ribbon-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 14px;
    }

    .col-6:nth-child(3) .ribbon-item,
    .col-6:nth-child(4) .ribbon-item {
        padding-top: 14px;
    }
}