:root{

    --primary-green:#15B012;
    --dark-green:#11940F;

    --primary-gold:#FFC40A;
    --dark-gold:#D9A300;

    --light-green:#E8F9E8;
    --light-gold:#FFF8D9;

    --dark:#111111;
    --gray:#f7f7f7;

}

/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#222;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   PREMIUM NAVBAR
========================= */

.premium-header{

    position:sticky;
    top:0;
    z-index:9999;

    background:#fff;

    height:92px;

    display:flex;
    align-items:center;

    border-bottom:1px solid #ececec;

}

/* CONTAINER */

.nav-container{

    width:90%;
    max-width:1200px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    height:92px;

    padding:0;

}

/* LOGO AREA */

.logo-area{

    display:flex;
    align-items:center;

    height:92px;

}

/* LOGO */

.site-logo{

    display:block;

    height:90px;

    width:auto;

    object-fit:contain;

}

/* =========================
   DESKTOP MENU
========================= */

.desktop-nav ul{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.desktop-nav a{

    text-decoration:none;

    color:#222;

    font-size:14px;

    font-weight:600;

    transition:.3s ease;

    position:relative;

}

.desktop-nav a:hover{
    color:var(--primary-green);
}

/* NAV HOVER LINE */

.desktop-nav a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:linear-gradient(
        to right,
        var(--primary-green),
        var(--primary-gold)
    );

    transition:.3s;

}

.desktop-nav a:hover::after{
    width:100%;
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

.mobile-toggle{

    display:none;

    width:48px;
    height:48px;

    border-radius:10px;

    background:#fff;

    border:1px solid #e5e5e5;

    align-items:center;
    justify-content:center;

    font-size:30px;

    cursor:pointer;

    color:#111;

    transition:.3s ease;

}

.mobile-toggle:hover{

    background:var(--primary-green);

    color:#fff;

}

/* MOBILE MENU */

.mobile-menu{

    position:absolute;

    top:92px;

    left:0;

    width:100%;

    background:#fff;

    display:none;

    flex-direction:column;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    border-top:1px solid #eee;

    z-index:99999;

}

.mobile-menu.show{
    display:flex;
}

.mobile-menu a{

    padding:18px 24px;

    text-decoration:none;

    color:#111;

    font-size:17px;

    font-weight:600;

    border-bottom:1px solid #f1f1f1;

    transition:.3s ease;

}

.mobile-menu a:hover{

    background:var(--primary-green);

    color:#fff;

}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media(max-width:768px){

    .premium-header{

        height:78px;

    }

    .nav-container{

        width:92%;

        height:78px;

    }

    .logo-area{

        height:78px;

    }

    .site-logo{

        height:62px;

    }

    .desktop-nav{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

    .mobile-menu{

        top:78px;

    }

}



/* =========================
   DROPDOWN
========================= */

.dropdown-parent{
    position:relative;
    padding:20px 0;
}

.dropdown-parent:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:240px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:16px;

    padding:14px 0;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

    display:flex;
    flex-direction:column;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.3s ease;

    z-index:99999;

}

.dropdown-menu a{

    padding:14px 20px;

    color:#111;

    text-decoration:none;

    transition:.3s;

}

.dropdown-menu a::after{
    display:none;
}

.dropdown-menu a:hover{

    background:var(--light-green);

    color:var(--primary-green);

}

/* =========================
   HEADER ACTIONS
========================= */

.header-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

/* =========================
   QUOTE BUTTON
========================= */

.quote-btn{

    background:linear-gradient(
        135deg,
        var(--primary-green),
        var(--dark-green)
    );

    color:#fff;

    padding:12px 24px;

    border-radius:40px;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    transition:.3s ease;

    box-shadow:0 8px 20px rgba(21,176,18,.18);

}

.quote-btn:hover{

    background:linear-gradient(
        135deg,
        var(--primary-gold),
        var(--dark-gold)
    );

    color:#111;

    transform:translateY(-2px);

}

/* =========================
   MOBILE TOGGLE
========================= */

.mobile-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
    color:#111;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{

    display:none;
    flex-direction:column;

    background:#fff;

    padding:18px 20px;

    border-top:1px solid #ececec;

}

.mobile-menu.show{
    display:flex;
}

.mobile-menu a{

    text-decoration:none;

    color:#111;

    padding:14px 0;

    border-bottom:1px solid #f1f1f1;

    font-weight:500;

}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

.desktop-nav{
    display:none;
}

.mobile-toggle{
    display:block;
}

.site-logo{
    height:44px;
}

}

@media(max-width:768px){

.nav-container{
    padding:12px 0;
}

.site-logo{
    height:40px;
}

.quote-btn{
    display:none;
}

}

/* =========================
   HERO SECTION
========================= */


.hero-section{

    position:relative;

    width:100%;

    height:500px;

    min-height:500px;

    overflow:hidden;

    background:#000;

}



.slider-wrap{

    position:relative;

    width:100%;
    height:100%;

}

/* =========================
   SLIDES
========================= */

.hero-slide{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    opacity:0;

    visibility:hidden;

    z-index:1;

    transition:opacity .8s ease;

}

.hero-slide.active{

    opacity:1;

    visibility:visible;

    z-index:5;

}

.hero-slide img{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

/* =========================
   OVERLAY
========================= */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.48) 42%,
        rgba(0,0,0,.15) 100%
    );

    z-index:2;

}

/* =========================
   CONTENT
========================= */

.hero-content{

    position:absolute;

    top:50%;
    left:7%;

    transform:translateY(-50%);

    max-width:620px;

    z-index:20;

    color:#fff;

}

.hero-content span{

    display:inline-block;

    margin-bottom:20px;

    color:var(--primary-gold);

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero-content h1{

    font-size:72px;

    line-height:1.05;

    margin-bottom:24px;

    font-weight:800;

    color:#fff;

}

.hero-content p{

    font-size:18px;

    line-height:1.8;

    color:#f1f1f1;

    margin-bottom:34px;

}

/* =========================
   BUTTONS
========================= */

.hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.hero-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    height:56px;

    padding:0 34px;

    border-radius:12px;

    font-size:14px;

    font-weight:700;

    text-decoration:none;

    transition:.3s ease;

    cursor:pointer;

}

/* PRIMARY */

.primary-btn{

    background:var(--primary-green);

    border:2px solid var(--primary-green);

    color:#fff;

}

.primary-btn:hover{

    background:var(--primary-gold);

    border-color:var(--primary-gold);

    color:#111;

    transform:translateY(-2px);

}

/* SECONDARY */

.secondary-btn{

    background:transparent;

    border:2px solid rgba(255,255,255,.75);

    color:#fff;

}

.secondary-btn:hover{

    background:var(--primary-green);

    border-color:var(--primary-green);

    color:#fff;

    transform:translateY(-2px);

}

/* =========================
   NAVIGATION
========================= */

.hero-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;
    height:58px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.50);

    color:#fff;

    font-size:24px;

    cursor:pointer;

    z-index:1000;

    display:flex;

    align-items:center;
    justify-content:center;

    transition:.3s ease;

}

.hero-nav:hover{

    background:var(--primary-gold);

    color:#111;

}

.prev{
    left:24px;
}

.next{
    right:24px;
}

/* =========================
   DOTS
========================= */

.hero-dots{

    position:absolute;

    left:50%;
    bottom:32px;

    transform:translateX(-50%);

    display:flex;

    align-items:center;

    gap:12px;

    z-index:1000;

}

.hero-dot{

    width:14px;
    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    border:2px solid rgba(255,255,255,.8);

    cursor:pointer;

    transition:.3s ease;

}

.hero-dot:hover{

    transform:scale(1.15);

}

.hero-dot.active{

    width:38px;

    border-radius:30px;

    background:var(--primary-gold);

    border-color:var(--primary-gold);

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero-content h1{

        font-size:54px;

    }

}

@media(max-width:768px){

    
    .hero-section{

    height:420px;

    min-height:420px;

    }



    .hero-content{

        left:20px;
        right:20px;

        max-width:90%;

    }

    .hero-content span{

        font-size:12px;

    }

    .hero-content h1{

        font-size:38px;

    }

    .hero-content p{

        font-size:15px;

        line-height:1.7;

    }

    .hero-buttons{

        gap:12px;

    }

    .hero-btn{

        height:48px;

        padding:0 22px;

        font-size:13px;

    }

    .hero-nav{

        width:42px;
        height:42px;

        font-size:16px;

    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }

    .hero-dots{

        bottom:20px;

    }

}

@media(max-width:480px){

    .hero-content h1{

        font-size:30px;

    }

    .hero-btn{

        width:100%;

    }

}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.product-section{

    padding:65px 0;

}

.product-section .container{

    width:96%;

    max-width:1600px;

    margin:auto;

}

.product-section h2{

    font-size:42px;

    margin-bottom:28px;

    color:#111;

    font-weight:700;

    line-height:1.3;

}

/* =========================================================
   PRODUCT SLIDER WRAP
========================================================= */

.product-slider-wrap{

    position:relative;

    width:100%;

    padding:0 20px;

}

/* =========================================================
   PRODUCT SLIDER
========================================================= */

.product-slider{

    display:flex;

    align-items:stretch;

    gap:18px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scroll-snap-type:x proximity;

    padding:10px 0;

    -ms-overflow-style:none;

    scrollbar-width:none;

}

.product-slider::-webkit-scrollbar{
    display:none;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card{

    flex:0 0 calc(33.333% - 12px);

    min-width:calc(33.333% - 12px);

    scroll-snap-align:start;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

    transition:.3s ease;

}

.product-card:hover{

    transform:translateY(-5px);

    box-shadow:0 14px 34px rgba(0,0,0,.14);

}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image{

    width:100%;

    height:320px;

    background:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    padding:10px;

    transition:.4s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.03);

}

/* =========================================================
   PRODUCT CONTENT
========================================================= */

.product-content{

    padding:20px;

}


.product-content h3{

    font-size:22px;

    line-height:1.4;

    margin-bottom:8px;

    color:#111;

    font-weight:700;

}



.product-content p{

    font-size:15px;

    line-height:1.6;

    color:#555;

    margin-bottom:18px;

}

/* =========================================================
   BUTTONS
========================================================= */

.black-btn,
.white-btn{

    display:flex;

    align-items:center;
    justify-content:center;

    width:100%;

    height:50px;

    border-radius:10px;

    font-size:14px;

    font-weight:600;

    text-decoration:none;

    transition:.3s ease;

}

.black-btn{

    background:var(--primary-green);

    color:#fff;

    margin-bottom:12px;

}

.black-btn:hover{

    background:var(--primary-gold);

    color:#111;

}

.white-btn{

    background:#fff;

    border:1px solid #ddd;

    color:#111;

}

.white-btn:hover{

    border-color:var(--primary-green);

    color:var(--primary-green);

}

/* =========================================================
   NAVIGATION
========================================================= */

.product-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:54px;
    height:54px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.92);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    z-index:999;

    display:flex;

    align-items:center;
    justify-content:center;

    transition:.3s ease;

}

.product-nav:hover{

    background:var(--primary-gold);

    color:#111;

}

.prev-product{
    left:-8px;
}

.next-product{
    right:-8px;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .product-section{

        padding:50px 0;

    }

    .product-section h2{

        font-size:34px;

    }

    .product-slider-wrap{

        padding:0 10px;

    }

    .product-card{

        flex:0 0 calc(50% - 10px);

        min-width:calc(50% - 10px);

    }

    .product-image{

        height:260px;

    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .product-section{

        padding:35px 0;

    }

    .product-section .container{

        width:96%;

    }

    .product-section h2{

        font-size:26px;

        margin-bottom:18px;

        line-height:1.3;

    }

    .product-slider-wrap{

        padding:0 6px;

    }

    .product-slider{

        gap:8px;

    }

    .product-card{

        flex:0 0 100%;

        min-width:100%;

        border-radius:14px;

    }

    .product-image{

        height:250px;

    }

    .product-image img{

        width:100%;

        height:100%;

        object-fit:contain;

        padding:4px;

    }

    .product-content{

        padding:14px;

    }

    .product-content h3{

        font-size:18px;

        line-height:1.4;

        margin-bottom:8px;

    }

    .product-content p{

        font-size:14px;

        margin-bottom:14px;

    }

    .black-btn,
    .white-btn{

        height:42px;

        font-size:13px;

    }

    .product-nav{

        width:42px;
        height:42px;

        font-size:15px;

        background:#111;

    }

    .prev-product{
        left:-4px;
    }

    .next-product{
        right:-4px;
    }

}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.container{

    width:92%;
    max-width:1400px;

    margin:auto;

}

/* =========================================================
   TECHNOLOGY SECTION
========================================================= */

.tech-section{

    padding:70px 0;

}

.tech-title{

    font-size:38px;

    margin-bottom:30px;

    color:#111;

    font-weight:700;

}

.tech-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

}

.tech-card{

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

}

.tech-card img{

    width:100%;

    display:block;

}

/* =========================================================
   WHY SECTION
========================================================= */

.why-section{

    padding:70px 0;

}

.why-head{

    margin-bottom:35px;

}

.why-head span{

    color:#777;

    font-size:14px;

}

.why-head h2{

    font-size:40px;

    margin-top:10px;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:28px;

    align-items:start;

}

.why-image img{

    width:100%;

    border-radius:20px;

    display:block;

}

.why-boxes{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

}

.why-card{

    background:#111;

    color:#fff;

    padding:32px 24px;

    border-radius:18px;

    transition:.3s ease;

}

.why-card:hover{

    transform:translateY(-5px);

}

.why-icon{

    width:54px;
    height:54px;

    border-radius:50%;

    background:#15B012;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:20px;

    font-size:22px;

}

.why-card h3{

    font-size:24px;

    margin-bottom:12px;

}

.why-card p{

    line-height:1.7;

    color:#ddd;

}

/* =========================================================
   STATS SECTION
========================================================= */

.stats-section{

    background:#15B012;

    padding:60px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    text-align:center;

}

.stat-box h2{

    color:#fff;

    font-size:52px;

    margin-bottom:10px;

}

.stat-box p{

    color:#fff;

}



/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section{

    padding:70px 0;

    background:#f3f3f3;

    border-top:1px solid #e5e5e5;

    border-bottom:1px solid #e5e5e5;

}

.testimonial-head{

    text-align:center;

    margin-bottom:40px;

}

.testimonial-head span{

    color:#777;

    font-size:14px;

}

.testimonial-head h2{

    font-size:40px;

    margin-top:10px;

    color:#111;

}



/* =========================================================
   TESTIMONIAL WRAP
========================================================= */

.testimonial-slider-wrap{

    position:relative;

    width:100%;

    overflow:hidden;

    padding:0 65px;

}

/* =========================================================
   TESTIMONIAL SLIDER
========================================================= */

.testimonial-slider{

    display:flex;

    align-items:stretch;

    gap:24px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scroll-snap-type:x mandatory;

    padding:10px 0;

    scrollbar-width:none;

    -ms-overflow-style:none;

}

.testimonial-slider::-webkit-scrollbar{
    display:none;
}

/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card{

    flex:0 0 calc(33.333% - 16px);

    min-width:calc(33.333% - 16px);

    background:#fff;

    border-radius:18px;

    padding:32px;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

    scroll-snap-align:start;

    transition:.3s ease;

}

.testimonial-card:hover{

    transform:translateY(-5px);

    box-shadow:0 14px 32px rgba(0,0,0,.12);

}

.testimonial-card p{

    line-height:1.9;

    color:#444;

    margin-bottom:24px;

    font-size:16px;

}

.testimonial-card h4{

    font-size:22px;

    color:#111;

    font-weight:700;

}

/* =========================================================
   NAVIGATION
========================================================= */

.testimonial-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#111;

    color:#fff;

    cursor:pointer;

    z-index:999;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:18px;

    transition:.3s ease;

}

.testimonial-nav:hover{

    background:#FF9933;

    color:#111;

}

.prev-testimonial{
    left:0;
}

.next-testimonial{
    right:0;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .testimonial-card{

        flex:0 0 calc(50% - 12px);

        min-width:calc(50% - 12px);

    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .tech-grid,
    .why-grid{

        grid-template-columns:1fr;

    }

    .why-boxes{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr 1fr;

    }

    .testimonial-slider-wrap{

        padding:0 8px;

    }

    .testimonial-slider{

        gap:12px;

    }

    .testimonial-card{

        flex:0 0 100%;

        min-width:100%;

        padding:22px;

        border-radius:14px;

    }

    .testimonial-card p{

        font-size:15px;

        line-height:1.8;

    }

    .testimonial-card h4{

        font-size:18px;

    }

    .testimonial-nav{

        width:42px;
        height:42px;

        font-size:15px;

    }

    .tech-title,
    .why-head h2,
    .testimonial-head h2{

        font-size:28px;

    }

}



/* =========================
   PREMIUM FOOTER
========================= */

.premium-footer{

    background:#f3f4f6;

    color:#222;

}

.footer-top{
    padding:40px 0 50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:50px;
}

.footer-logo img{

    height:70px;
    width:auto;
    object-fit:contain;
    margin-bottom:18px;

}

.footer-grid h3{
    margin-bottom:18px;
    color:#111;
}

.footer-grid p,
.footer-grid li,
.footer-grid a{

    color:#444;

    line-height:1.5;

}

.footer-grid ul{
    list-style:none;
}

.footer-grid li{
    margin-bottom:6px;
}

.footer-grid a{
    text-decoration:none;
    transition:.3s;
}

.footer-grid a:hover{
    color:var(--primary-green);
}

.footer-bottom{

    border-top:1px solid #ddd;

    background:#ebebeb;

    padding:20px 0;

    text-align:center;

}

/* =========================
   WHATSAPP
========================= */

.whatsapp-btn{
    position:fixed;
    left:14px;
    bottom:14px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--primary-green);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    box-shadow:0 6px 18px rgba(0,0,0,.18);
}

.whatsapp-btn img{
    width:24px;
    height:24px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

.desktop-nav{
    display:none;
}

.mobile-toggle{
    display:block;
}

.mobile-menu.show{
    display:flex;
}

.tech-grid,
.why-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr 1fr;
}

.stats-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.site-logo{
    height:42px;
}

.hero-content h1{
    font-size:36px;
}

.hero-content p{
    font-size:15px;
}

.section-head h2,
.tech-title,
.why-head h2,
.testimonial-head h2{
    font-size:30px;
}

.product-card,
.testimonial-card{
    min-width:280px;
}

.why-boxes{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
}

}

/* ======================================================
   ABOUT PAGE CSS 
   ====================================================== */

/* ADD THIS CLASS IN ABOUT PAGE BODY
<body class="about-page">
*/

/* ======================================================
   ABOUT HERO
====================================================== */

.about-page .about-hero{
    position:relative;
    background:url('/assets/img/about-banner.webp') center center/cover no-repeat;
    min-height:650px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.about-page .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.about-page .about-hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    color:#fff;
    padding:120px 0;
}

.about-page .hero-subtitle{
    display:inline-block;
    color:#22c55e;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.about-page .about-hero-content h1{
    font-size:64px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
}

.about-page .about-hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#e5e7eb;
    margin-bottom:35px;
    max-width:650px;
}

.about-page .hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.about-page .primary-btn{
    background:#16a34a;
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
}

.about-page .primary-btn:hover{
    background:#15803d;
    transform:translateY(-3px);
}

.about-page .secondary-btn{
    border:2px solid #fff;
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
}

.about-page .secondary-btn:hover{
    background:#fff;
    color:#111827;
}

/* ======================================================
   COMMON
====================================================== */

.about-page .section-padding{
    padding:100px 0;
}

.about-page .section-subtitle{
    color:#16a34a;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
    display:inline-block;
}

.about-page .section-title{
    margin-bottom:60px;
}

.about-page .section-title.center{
    text-align:center;
}

.about-page .section-title h2{
    font-size:48px;
    line-height:1.2;
    color:#111827;
    font-weight:700;
}

/* ======================================================
   ABOUT COMPANY
====================================================== */

.about-page .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-page .about-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 15px 50px rgba(0,0,0,0.12);
}

.about-page .about-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
    color:#111827;
}

.about-page .about-content p{
    font-size:17px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:18px;
}

.about-page .about-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.about-page .feature-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:0.3s;
}

.about-page .feature-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-page .feature-item i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.about-page .feature-item span{
    font-weight:600;
    color:#111827;
}

/* ======================================================
   WHY SECTION
====================================================== */

.about-page .why-section{
    background:#f8fafc;
}

.about-page .why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.about-page .why-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.about-page .why-card:hover{
    transform:translateY(-8px);
}

.about-page .why-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.about-page .why-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#111827;
}

.about-page .why-card p{
    color:#6b7280;
    line-height:1.8;
}

/* ======================================================
   MISSION SECTION
====================================================== */

.about-page .mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-page .mission-card{
    background:#111827;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    color:#fff;
    transition:0.3s;
}

.about-page .mission-card:hover{
    transform:translateY(-8px);
}

.about-page .mission-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#16a34a;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.about-page .mission-card h3{
    font-size:30px;
    margin-bottom:18px;
    color:#fff;
}

.about-page .mission-card p{
    color:#d1d5db;
    line-height:1.9;
}

/* ======================================================
   STATS SECTION
====================================================== */

.about-page .stats-section{
    background:#16a34a;
    padding:80px 0;
}

.about-page .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.about-page .stat-box h2{
    font-size:56px;
    color:#fff;
    margin-bottom:10px;
}

.about-page .stat-box p{
    color:#ecfdf5;
    font-size:17px;
}

/* ======================================================
   CTA SECTION
====================================================== */

.about-page .about-cta{
    padding:100px 0;
}

.about-page .cta-box{
    background:linear-gradient(135deg,#111827,#1f2937);
    padding:80px 50px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.about-page .cta-box h2{
    font-size:48px;
    margin-bottom:20px;
    color:#fff;
}

.about-page .cta-box p{
    max-width:700px;
    margin:auto;
    color:#d1d5db;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:991px){

    .about-page .about-grid{
        grid-template-columns:1fr;
    }

    .about-page .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-page .mission-grid{
        grid-template-columns:1fr;
    }

    .about-page .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-page .about-hero-content h1{
        font-size:48px;
    }

    .about-page .section-title h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .about-page .about-hero{
        min-height:520px;
    }

    .about-page .about-hero-content{
        padding:100px 0 80px;
    }

    .about-page .about-hero-content h1{
        font-size:34px;
    }

    .about-page .about-hero-content p{
        font-size:15px;
    }

    .about-page .section-padding{
        padding:70px 0;
    }

    .about-page .about-content h2{
        font-size:32px;
    }

    .about-page .about-feature-grid{
        grid-template-columns:1fr;
    }

    .about-page .why-grid{
        grid-template-columns:1fr;
    }

    .about-page .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .about-page .stat-box h2{
        font-size:38px;
    }

    .about-page .section-title h2{
        font-size:30px;
    }

    .about-page .cta-box{
        padding:50px 25px;
    }

    .about-page .cta-box h2{
        font-size:32px;
    }

    .about-page .hero-buttons{
        flex-direction:column;
    }

    .about-page .primary-btn,
    .about-page .secondary-btn{
        width:100%;
        text-align:center;
    }

}


:root{

    --primary-green:#15B012;
    --dark-green:#11940F;

    --primary-gold:#FFC40A;
    --dark-gold:#D9A300;

    --light-green:#E8F9E8;
    --light-gold:#FFF8D9;

    --dark:#111111;
    --gray:#f7f7f7;

}

/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#222;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   PREMIUM NAVBAR
========================= */

.premium-header{

    position:sticky;
    top:0;
    z-index:9999;

    background:#fff;

    height:92px;

    display:flex;
    align-items:center;

    border-bottom:1px solid #ececec;

}

/* CONTAINER */

.nav-container{

    width:90%;
    max-width:1200px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    height:92px;

    padding:0;

}

/* LOGO AREA */

.logo-area{

    display:flex;
    align-items:center;

    height:92px;

}

/* LOGO */

.site-logo{

    display:block;

    height:90px;

    width:auto;

    object-fit:contain;

}

/* =========================
   DESKTOP MENU
========================= */

.desktop-nav ul{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.desktop-nav a{

    text-decoration:none;

    color:#222;

    font-size:14px;

    font-weight:600;

    transition:.3s ease;

    position:relative;

}

.desktop-nav a:hover{
    color:var(--primary-green);
}

/* NAV HOVER LINE */

.desktop-nav a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:linear-gradient(
        to right,
        var(--primary-green),
        var(--primary-gold)
    );

    transition:.3s;

}

.desktop-nav a:hover::after{
    width:100%;
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

.mobile-toggle{

    display:none;

    width:48px;
    height:48px;

    border-radius:10px;

    background:#fff;

    border:1px solid #e5e5e5;

    align-items:center;
    justify-content:center;

    font-size:30px;

    cursor:pointer;

    color:#111;

    transition:.3s ease;

}

.mobile-toggle:hover{

    background:var(--primary-green);

    color:#fff;

}

/* MOBILE MENU */

.mobile-menu{

    position:absolute;

    top:92px;

    left:0;

    width:100%;

    background:#fff;

    display:none;

    flex-direction:column;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    border-top:1px solid #eee;

    z-index:99999;

}

.mobile-menu.show{
    display:flex;
}

.mobile-menu a{

    padding:18px 24px;

    text-decoration:none;

    color:#111;

    font-size:17px;

    font-weight:600;

    border-bottom:1px solid #f1f1f1;

    transition:.3s ease;

}

.mobile-menu a:hover{

    background:var(--primary-green);

    color:#fff;

}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media(max-width:768px){

    .premium-header{

        height:78px;

    }

    .nav-container{

        width:92%;

        height:78px;

    }

    .logo-area{

        height:78px;

    }

    .site-logo{

        height:62px;

    }

    .desktop-nav{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

    .mobile-menu{

        top:78px;

    }

}



/* =========================
   DROPDOWN
========================= */

.dropdown-parent{
    position:relative;
    padding:20px 0;
}

.dropdown-parent:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:240px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:16px;

    padding:14px 0;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

    display:flex;
    flex-direction:column;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.3s ease;

    z-index:99999;

}

.dropdown-menu a{

    padding:14px 20px;

    color:#111;

    text-decoration:none;

    transition:.3s;

}

.dropdown-menu a::after{
    display:none;
}

.dropdown-menu a:hover{

    background:var(--light-green);

    color:var(--primary-green);

}

/* =========================
   HEADER ACTIONS
========================= */

.header-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

/* =========================
   QUOTE BUTTON
========================= */

.quote-btn{

    background:linear-gradient(
        135deg,
        var(--primary-green),
        var(--dark-green)
    );

    color:#fff;

    padding:12px 24px;

    border-radius:40px;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    transition:.3s ease;

    box-shadow:0 8px 20px rgba(21,176,18,.18);

}

.quote-btn:hover{

    background:linear-gradient(
        135deg,
        var(--primary-gold),
        var(--dark-gold)
    );

    color:#111;

    transform:translateY(-2px);

}

/* =========================
   MOBILE TOGGLE
========================= */

.mobile-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
    color:#111;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{

    display:none;
    flex-direction:column;

    background:#fff;

    padding:18px 20px;

    border-top:1px solid #ececec;

}

.mobile-menu.show{
    display:flex;
}

.mobile-menu a{

    text-decoration:none;

    color:#111;

    padding:14px 0;

    border-bottom:1px solid #f1f1f1;

    font-weight:500;

}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

.desktop-nav{
    display:none;
}

.mobile-toggle{
    display:block;
}

.site-logo{
    height:44px;
}

}

@media(max-width:768px){

.nav-container{
    padding:12px 0;
}

.site-logo{
    height:40px;
}

.quote-btn{
    display:none;
}

}

/* =========================
   HERO SECTION
========================= */


.hero-section{

    position:relative;

    width:100%;

    height:500px;

    min-height:500px;

    overflow:hidden;

    background:#000;

}



.slider-wrap{

    position:relative;

    width:100%;
    height:100%;

}

/* =========================
   SLIDES
========================= */

.hero-slide{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    opacity:0;

    visibility:hidden;

    z-index:1;

    transition:opacity .8s ease;

}

.hero-slide.active{

    opacity:1;

    visibility:visible;

    z-index:5;

}

.hero-slide img{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

/* =========================
   OVERLAY
========================= */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.48) 42%,
        rgba(0,0,0,.15) 100%
    );

    z-index:2;

}

/* =========================
   CONTENT
========================= */

.hero-content{

    position:absolute;

    top:50%;
    left:7%;

    transform:translateY(-50%);

    max-width:620px;

    z-index:20;

    color:#fff;

}

.hero-content span{

    display:inline-block;

    margin-bottom:20px;

    color:var(--primary-gold);

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero-content h1{

    font-size:72px;

    line-height:1.05;

    margin-bottom:24px;

    font-weight:800;

    color:#fff;

}

.hero-content p{

    font-size:18px;

    line-height:1.8;

    color:#f1f1f1;

    margin-bottom:34px;

}

/* =========================
   BUTTONS
========================= */

.hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.hero-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    height:56px;

    padding:0 34px;

    border-radius:12px;

    font-size:14px;

    font-weight:700;

    text-decoration:none;

    transition:.3s ease;

    cursor:pointer;

}

/* PRIMARY */

.primary-btn{

    background:var(--primary-green);

    border:2px solid var(--primary-green);

    color:#fff;

}

.primary-btn:hover{

    background:var(--primary-gold);

    border-color:var(--primary-gold);

    color:#111;

    transform:translateY(-2px);

}

/* SECONDARY */

.secondary-btn{

    background:transparent;

    border:2px solid rgba(255,255,255,.75);

    color:#fff;

}

.secondary-btn:hover{

    background:var(--primary-green);

    border-color:var(--primary-green);

    color:#fff;

    transform:translateY(-2px);

}

/* =========================
   NAVIGATION
========================= */

.hero-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;
    height:58px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.50);

    color:#fff;

    font-size:24px;

    cursor:pointer;

    z-index:1000;

    display:flex;

    align-items:center;
    justify-content:center;

    transition:.3s ease;

}

.hero-nav:hover{

    background:var(--primary-gold);

    color:#111;

}

.prev{
    left:24px;
}

.next{
    right:24px;
}

/* =========================
   DOTS
========================= */

.hero-dots{

    position:absolute;

    left:50%;
    bottom:32px;

    transform:translateX(-50%);

    display:flex;

    align-items:center;

    gap:12px;

    z-index:1000;

}

.hero-dot{

    width:14px;
    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    border:2px solid rgba(255,255,255,.8);

    cursor:pointer;

    transition:.3s ease;

}

.hero-dot:hover{

    transform:scale(1.15);

}

.hero-dot.active{

    width:38px;

    border-radius:30px;

    background:var(--primary-gold);

    border-color:var(--primary-gold);

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero-content h1{

        font-size:54px;

    }

}

@media(max-width:768px){

    
    .hero-section{

    height:420px;

    min-height:420px;

    }



    .hero-content{

        left:20px;
        right:20px;

        max-width:90%;

    }

    .hero-content span{

        font-size:12px;

    }

    .hero-content h1{

        font-size:38px;

    }

    .hero-content p{

        font-size:15px;

        line-height:1.7;

    }

    .hero-buttons{

        gap:12px;

    }

    .hero-btn{

        height:48px;

        padding:0 22px;

        font-size:13px;

    }

    .hero-nav{

        width:42px;
        height:42px;

        font-size:16px;

    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }

    .hero-dots{

        bottom:20px;

    }

}

@media(max-width:480px){

    .hero-content h1{

        font-size:30px;

    }

    .hero-btn{

        width:100%;

    }

}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.product-section{

    padding:65px 0;

}

.product-section .container{

    width:96%;

    max-width:1600px;

    margin:auto;

}

.product-section h2{

    font-size:42px;

    margin-bottom:28px;

    color:#111;

    font-weight:700;

    line-height:1.3;

}

/* =========================================================
   PRODUCT SLIDER WRAP
========================================================= */

.product-slider-wrap{

    position:relative;

    width:100%;

    padding:0 20px;

}

/* =========================================================
   PRODUCT SLIDER
========================================================= */

.product-slider{

    display:flex;

    align-items:stretch;

    gap:18px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scroll-snap-type:x proximity;

    padding:10px 0;

    -ms-overflow-style:none;

    scrollbar-width:none;

}

.product-slider::-webkit-scrollbar{
    display:none;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card{

    flex:0 0 calc(33.333% - 12px);

    min-width:calc(33.333% - 12px);

    scroll-snap-align:start;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

    transition:.3s ease;

}

.product-card:hover{

    transform:translateY(-5px);

    box-shadow:0 14px 34px rgba(0,0,0,.14);

}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image{

    width:100%;

    height:320px;

    background:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    padding:10px;

    transition:.4s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.03);

}

/* =========================================================
   PRODUCT CONTENT
========================================================= */

.product-content{

    padding:20px;

}


.product-content h3{

    font-size:22px;

    line-height:1.4;

    margin-bottom:8px;

    color:#111;

    font-weight:700;

}



.product-content p{

    font-size:15px;

    line-height:1.6;

    color:#555;

    margin-bottom:18px;

}

/* =========================================================
   BUTTONS
========================================================= */

.black-btn,
.white-btn{

    display:flex;

    align-items:center;
    justify-content:center;

    width:100%;

    height:50px;

    border-radius:10px;

    font-size:14px;

    font-weight:600;

    text-decoration:none;

    transition:.3s ease;

}

.black-btn{

    background:var(--primary-green);

    color:#fff;

    margin-bottom:12px;

}

.black-btn:hover{

    background:var(--primary-gold);

    color:#111;

}

.white-btn{

    background:#fff;

    border:1px solid #ddd;

    color:#111;

}

.white-btn:hover{

    border-color:var(--primary-green);

    color:var(--primary-green);

}

/* =========================================================
   NAVIGATION
========================================================= */

.product-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:54px;
    height:54px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.92);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    z-index:999;

    display:flex;

    align-items:center;
    justify-content:center;

    transition:.3s ease;

}

.product-nav:hover{

    background:var(--primary-gold);

    color:#111;

}

.prev-product{
    left:-8px;
}

.next-product{
    right:-8px;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .product-section{

        padding:50px 0;

    }

    .product-section h2{

        font-size:34px;

    }

    .product-slider-wrap{

        padding:0 10px;

    }

    .product-card{

        flex:0 0 calc(50% - 10px);

        min-width:calc(50% - 10px);

    }

    .product-image{

        height:260px;

    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .product-section{

        padding:35px 0;

    }

    .product-section .container{

        width:96%;

    }

    .product-section h2{

        font-size:26px;

        margin-bottom:18px;

        line-height:1.3;

    }

    .product-slider-wrap{

        padding:0 6px;

    }

    .product-slider{

        gap:8px;

    }

    .product-card{

        flex:0 0 100%;

        min-width:100%;

        border-radius:14px;

    }

    .product-image{

        height:250px;

    }

    .product-image img{

        width:100%;

        height:100%;

        object-fit:contain;

        padding:4px;

    }

    .product-content{

        padding:14px;

    }

    .product-content h3{

        font-size:18px;

        line-height:1.4;

        margin-bottom:8px;

    }

    .product-content p{

        font-size:14px;

        margin-bottom:14px;

    }

    .black-btn,
    .white-btn{

        height:42px;

        font-size:13px;

    }

    .product-nav{

        width:42px;
        height:42px;

        font-size:15px;

        background:#111;

    }

    .prev-product{
        left:-4px;
    }

    .next-product{
        right:-4px;
    }

}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.container{

    width:92%;
    max-width:1400px;

    margin:auto;

}

/* =========================================================
   TECHNOLOGY SECTION
========================================================= */

.tech-section{

    padding:70px 0;

}

.tech-title{

    font-size:38px;

    margin-bottom:30px;

    color:#111;

    font-weight:700;

}

.tech-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

}

.tech-card{

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

}

.tech-card img{

    width:100%;

    display:block;

}

/* =========================================================
   WHY SECTION
========================================================= */

.why-section{

    padding:70px 0;

}

.why-head{

    margin-bottom:35px;

}

.why-head span{

    color:#777;

    font-size:14px;

}

.why-head h2{

    font-size:40px;

    margin-top:10px;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:28px;

    align-items:start;

}

.why-image img{

    width:100%;

    border-radius:20px;

    display:block;

}

.why-boxes{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

}

.why-card{

    background:#111;

    color:#fff;

    padding:32px 24px;

    border-radius:18px;

    transition:.3s ease;

}

.why-card:hover{

    transform:translateY(-5px);

}

.why-icon{

    width:54px;
    height:54px;

    border-radius:50%;

    background:#15B012;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:20px;

    font-size:22px;

}

.why-card h3{

    font-size:24px;

    margin-bottom:12px;

}

.why-card p{

    line-height:1.7;

    color:#ddd;

}

/* =========================================================
   STATS SECTION
========================================================= */

.stats-section{

    background:#15B012;

    padding:60px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    text-align:center;

}

.stat-box h2{

    color:#fff;

    font-size:52px;

    margin-bottom:10px;

}

.stat-box p{

    color:#fff;

}



/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section{

    padding:70px 0;

    background:#f3f3f3;

    border-top:1px solid #e5e5e5;

    border-bottom:1px solid #e5e5e5;

}

.testimonial-head{

    text-align:center;

    margin-bottom:40px;

}

.testimonial-head span{

    color:#777;

    font-size:14px;

}

.testimonial-head h2{

    font-size:40px;

    margin-top:10px;

    color:#111;

}



/* =========================================================
   TESTIMONIAL WRAP
========================================================= */

.testimonial-slider-wrap{

    position:relative;

    width:100%;

    overflow:hidden;

    padding:0 65px;

}

/* =========================================================
   TESTIMONIAL SLIDER
========================================================= */

.testimonial-slider{

    display:flex;

    align-items:stretch;

    gap:24px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scroll-snap-type:x mandatory;

    padding:10px 0;

    scrollbar-width:none;

    -ms-overflow-style:none;

}

.testimonial-slider::-webkit-scrollbar{
    display:none;
}

/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card{

    flex:0 0 calc(33.333% - 16px);

    min-width:calc(33.333% - 16px);

    background:#fff;

    border-radius:18px;

    padding:32px;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

    scroll-snap-align:start;

    transition:.3s ease;

}

.testimonial-card:hover{

    transform:translateY(-5px);

    box-shadow:0 14px 32px rgba(0,0,0,.12);

}

.testimonial-card p{

    line-height:1.9;

    color:#444;

    margin-bottom:24px;

    font-size:16px;

}

.testimonial-card h4{

    font-size:22px;

    color:#111;

    font-weight:700;

}

/* =========================================================
   NAVIGATION
========================================================= */

.testimonial-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#111;

    color:#fff;

    cursor:pointer;

    z-index:999;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:18px;

    transition:.3s ease;

}

.testimonial-nav:hover{

    background:#FF9933;

    color:#111;

}

.prev-testimonial{
    left:0;
}

.next-testimonial{
    right:0;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .testimonial-card{

        flex:0 0 calc(50% - 12px);

        min-width:calc(50% - 12px);

    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .tech-grid,
    .why-grid{

        grid-template-columns:1fr;

    }

    .why-boxes{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr 1fr;

    }

    .testimonial-slider-wrap{

        padding:0 8px;

    }

    .testimonial-slider{

        gap:12px;

    }

    .testimonial-card{

        flex:0 0 100%;

        min-width:100%;

        padding:22px;

        border-radius:14px;

    }

    .testimonial-card p{

        font-size:15px;

        line-height:1.8;

    }

    .testimonial-card h4{

        font-size:18px;

    }

    .testimonial-nav{

        width:42px;
        height:42px;

        font-size:15px;

    }

    .tech-title,
    .why-head h2,
    .testimonial-head h2{

        font-size:28px;

    }

}



/* =========================
   PREMIUM FOOTER
========================= */

.premium-footer{

    background:#f3f4f6;

    color:#222;

}

.footer-top{
    padding:40px 0 50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:50px;
}

.footer-logo img{

    height:70px;
    width:auto;
    object-fit:contain;
    margin-bottom:18px;

}

.footer-grid h3{
    margin-bottom:18px;
    color:#111;
}

.footer-grid p,
.footer-grid li,
.footer-grid a{

    color:#444;

    line-height:1.5;

}

.footer-grid ul{
    list-style:none;
}

.footer-grid li{
    margin-bottom:6px;
}

.footer-grid a{
    text-decoration:none;
    transition:.3s;
}

.footer-grid a:hover{
    color:var(--primary-green);
}

.footer-bottom{

    border-top:1px solid #ddd;

    background:#ebebeb;

    padding:20px 0;

    text-align:center;

}

/* =========================
   WHATSAPP
========================= */

.whatsapp-btn{
    position:fixed;
    left:14px;
    bottom:14px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--primary-green);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    box-shadow:0 6px 18px rgba(0,0,0,.18);
}

.whatsapp-btn img{
    width:24px;
    height:24px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

.desktop-nav{
    display:none;
}

.mobile-toggle{
    display:block;
}

.mobile-menu.show{
    display:flex;
}

.tech-grid,
.why-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr 1fr;
}

.stats-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.site-logo{
    height:42px;
}

.hero-content h1{
    font-size:36px;
}

.hero-content p{
    font-size:15px;
}

.section-head h2,
.tech-title,
.why-head h2,
.testimonial-head h2{
    font-size:30px;
}

.product-card,
.testimonial-card{
    min-width:280px;
}

.why-boxes{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
}

}

/* ======================================================
   ABOUT PAGE CSS 
   ====================================================== */

/* ADD THIS CLASS IN ABOUT PAGE BODY
<body class="about-page">
*/

/* ======================================================
   ABOUT HERO
====================================================== */

.about-page .about-hero{
    position:relative;
    background:url('/assets/img/about-banner.webp') center center/cover no-repeat;
    min-height:650px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.about-page .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.about-page .about-hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    color:#fff;
    padding:120px 0;
}

.about-page .hero-subtitle{
    display:inline-block;
    color:#22c55e;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.about-page .about-hero-content h1{
    font-size:64px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
}

.about-page .about-hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#e5e7eb;
    margin-bottom:35px;
    max-width:650px;
}

.about-page .hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.about-page .primary-btn{
    background:#16a34a;
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
}

.about-page .primary-btn:hover{
    background:#15803d;
    transform:translateY(-3px);
}

.about-page .secondary-btn{
    border:2px solid #fff;
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
}

.about-page .secondary-btn:hover{
    background:#fff;
    color:#111827;
}

/* ======================================================
   COMMON
====================================================== */

.about-page .section-padding{
    padding:100px 0;
}

.about-page .section-subtitle{
    color:#16a34a;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
    display:inline-block;
}

.about-page .section-title{
    margin-bottom:60px;
}

.about-page .section-title.center{
    text-align:center;
}

.about-page .section-title h2{
    font-size:48px;
    line-height:1.2;
    color:#111827;
    font-weight:700;
}

/* ======================================================
   ABOUT COMPANY
====================================================== */

.about-page .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-page .about-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 15px 50px rgba(0,0,0,0.12);
}

.about-page .about-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
    color:#111827;
}

.about-page .about-content p{
    font-size:17px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:18px;
}

.about-page .about-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.about-page .feature-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:0.3s;
}

.about-page .feature-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-page .feature-item i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.about-page .feature-item span{
    font-weight:600;
    color:#111827;
}

/* ======================================================
   WHY SECTION
====================================================== */

.about-page .why-section{
    background:#f8fafc;
}

.about-page .why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.about-page .why-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.about-page .why-card:hover{
    transform:translateY(-8px);
}

.about-page .why-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.about-page .why-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#111827;
}

.about-page .why-card p{
    color:#6b7280;
    line-height:1.8;
}

/* ======================================================
   MISSION SECTION
====================================================== */

.about-page .mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-page .mission-card{
    background:#111827;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    color:#fff;
    transition:0.3s;
}

.about-page .mission-card:hover{
    transform:translateY(-8px);
}

.about-page .mission-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#16a34a;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.about-page .mission-card h3{
    font-size:30px;
    margin-bottom:18px;
    color:#fff;
}

.about-page .mission-card p{
    color:#d1d5db;
    line-height:1.9;
}

/* ======================================================
   STATS SECTION
====================================================== */

.about-page .stats-section{
    background:#16a34a;
    padding:80px 0;
}

.about-page .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.about-page .stat-box h2{
    font-size:56px;
    color:#fff;
    margin-bottom:10px;
}

.about-page .stat-box p{
    color:#ecfdf5;
    font-size:17px;
}

/* ======================================================
   CTA SECTION
====================================================== */

.about-page .about-cta{
    padding:100px 0;
}

.about-page .cta-box{
    background:linear-gradient(135deg,#111827,#1f2937);
    padding:80px 50px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.about-page .cta-box h2{
    font-size:48px;
    margin-bottom:20px;
    color:#fff;
}

.about-page .cta-box p{
    max-width:700px;
    margin:auto;
    color:#d1d5db;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:991px){

    .about-page .about-grid{
        grid-template-columns:1fr;
    }

    .about-page .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-page .mission-grid{
        grid-template-columns:1fr;
    }

    .about-page .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-page .about-hero-content h1{
        font-size:48px;
    }

    .about-page .section-title h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .about-page .about-hero{
        min-height:520px;
    }

    .about-page .about-hero-content{
        padding:100px 0 80px;
    }

    .about-page .about-hero-content h1{
        font-size:34px;
    }

    .about-page .about-hero-content p{
        font-size:15px;
    }

    .about-page .section-padding{
        padding:70px 0;
    }

    .about-page .about-content h2{
        font-size:32px;
    }

    .about-page .about-feature-grid{
        grid-template-columns:1fr;
    }

    .about-page .why-grid{
        grid-template-columns:1fr;
    }

    .about-page .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .about-page .stat-box h2{
        font-size:38px;
    }

    .about-page .section-title h2{
        font-size:30px;
    }

    .about-page .cta-box{
        padding:50px 25px;
    }

    .about-page .cta-box h2{
        font-size:32px;
    }

    .about-page .hero-buttons{
        flex-direction:column;
    }

    .about-page .primary-btn,
    .about-page .secondary-btn{
        width:100%;
        text-align:center;
    }

}




/* =========================================================
   PREMIUM PRODUCTS PAGE
========================================================= */

.premium-products-page{

    background:#f5f7fb;

}

/* =========================================================
   HERO
========================================================= */

.premium-products-hero{

    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #0f172a,
    #111827,
    #14532d
    );

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at top right,
    rgba(34,197,94,.18),
    transparent 40%
    );

}

.premium-hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

}

.hero-tag{

    display:inline-block;

    color:#22c55e;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.premium-hero-content h1{

    font-size:78px;

    line-height:1.05;

    color:#fff;

    margin-bottom:24px;

}

.premium-hero-content p{

    font-size:18px;

    line-height:1.9;

    color:#d1d5db;

    max-width:620px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.hero-btn{

    height:56px;

    padding:0 34px;

    border-radius:50px;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-weight:600;

    transition:.35s ease;

}

.primary-btn{

    background:#16a34a;

    color:#fff;

}

.primary-btn:hover{

    background:#ff9933;

    color:#111;

    transform:translateY(-4px);

}

.secondary-btn{

    border:2px solid #fff;

    color:#fff;

}

.secondary-btn:hover{

    background:#fff;

    color:#111;

}

.hero-stats{

    display:flex;

    gap:40px;

}

.hero-stat h3{

    font-size:38px;

    color:#fff;

    margin-bottom:8px;

}

.hero-stat p{

    margin:0;

    color:#9ca3af;

}

.hero-product-image img{

    width:100%;

    max-width:600px;

    filter:drop-shadow(
    0 20px 40px rgba(0,0,0,.35)
    );

}

/* =========================================================
   CATEGORY STRIP
========================================================= */

.category-strip{

    background:#fff;

    padding:24px 0;

    box-shadow:0 8px 24px rgba(0,0,0,.04);

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

}

.category-item{

    height:62px;

    border-radius:16px;

    background:#f3f4f6;

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:600;

    cursor:pointer;

    transition:.3s ease;

}

.category-item:hover,
.category-item.active{

    background:#16a34a;

    color:#fff;

}

/* =========================================================
   PRODUCTS
========================================================= */

.premium-products-section{

    padding:100px 0;

}

.section-title.center{

    text-align:center;

    margin-bottom:60px;

}

.section-subtitle{

    color:#16a34a;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

}

.section-title h2{

    font-size:54px;

    margin:16px 0;

}

.section-title p{

    max-width:720px;

    margin:auto;

    line-height:1.9;

    color:#6b7280;

}

.premium-products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.premium-product-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.premium-product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.14),
    0 0 30px rgba(34,197,94,.18);

}

.premium-product-image{

    background:#fff;

    padding:30px;

}

.premium-product-image img{

    width:100%;

    height:320px;

    object-fit:contain;

}

.premium-product-content{

    padding:30px;

}

.product-badge{

    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:#dcfce7;

    color:#166534;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.premium-product-content h3{

    font-size:32px;

    margin-bottom:14px;

}

.premium-product-content p{

    line-height:1.8;

    color:#6b7280;

    margin-bottom:20px;

}

.premium-product-content ul{

    margin-bottom:28px;

    padding-left:18px;

}

.premium-product-content li{

    margin-bottom:10px;

    color:#374151;

}

.premium-btn{

    height:54px;

    border-radius:14px;

    background:#111827;

    color:#fff;

    text-decoration:none;

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:600;

    transition:.3s ease;

}

.premium-btn:hover{

    background:#16a34a;

}

/* =========================================================
   FEATURES
========================================================= */

.premium-features{

    padding:90px 0;

    background:#fff;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.feature-box{

    background:#f9fafb;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.3s ease;

}

.feature-box:hover{

    transform:translateY(-8px);

    background:#111827;

}

.feature-box:hover h3,
.feature-box:hover p{

    color:#fff;

}

.feature-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    margin:auto auto 24px;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:34px;

}

.feature-box h3{

    margin-bottom:16px;

    font-size:24px;

}

.feature-box p{

    color:#6b7280;

    line-height:1.8;

}

/* =========================================================
   CTA
========================================================= */

.dealer-cta{

    padding:100px 0;

}

.dealer-cta-box{

    background:
    linear-gradient(
    135deg,
    #111827,
    #14532d
    );

    border-radius:34px;

    padding:80px;

    text-align:center;

    color:#fff;

}

.dealer-cta-box h2{

    font-size:54px;

    margin-bottom:20px;

}

.dealer-cta-box p{

    max-width:760px;

    margin:auto auto 34px;

    color:#d1d5db;

    line-height:1.9;

}

.dealer-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    height:58px;

    padding:0 38px;

    border-radius:50px;

    background:#16a34a;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;

}

.dealer-btn:hover{

    background:#ff9933;

    color:#111;

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:992px){

    .premium-hero-grid,
    .premium-products-grid,
    .feature-grid{

        grid-template-columns:1fr 1fr;

    }

    .category-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .premium-hero-content h1{

        font-size:58px;

    }

}

@media(max-width:768px){

    .premium-hero-grid,
    .premium-products-grid,
    .feature-grid,
    .category-grid{

        grid-template-columns:1fr;

    }

    .premium-products-hero{

        min-height:auto;

        padding:120px 0 80px;

    }

    .premium-hero-content h1{

        font-size:42px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-stats{

        gap:24px;

        flex-wrap:wrap;

    }

    .section-title h2{

        font-size:36px;

    }

    .dealer-cta-box{

        padding:50px 28px;

    }

    .dealer-cta-box h2{

        font-size:36px;

    }

}



