/*==================================================
HERO SLIDER
==================================================*/

.hero-slider{

position:relative;

overflow:hidden;

margin:0;

padding:0;

}

.hero-slide{

position:relative;

height:85vh;

min-height:650px;

background-size:cover;

background-position:center center;

background-repeat:no-repeat;

display:flex;

align-items:center;

}

.hero-slide .overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:linear-gradient(
90deg,
rgba(0,0,0,.75) 0%,
rgba(0,0,0,.45) 45%,
rgba(0,0,0,.15) 100%
);

z-index:1;

}

.hero-slide .container{

position:relative;

z-index:2;

}

.hero-content{

max-width:620px;

color:#fff;

animation:heroFade .9s ease;

}

@keyframes heroFade{

0%{

opacity:0;

transform:translateY(35px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.hero-content span{

display:inline-block;

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,.15);

padding:10px 22px;

border-radius:40px;

font-size:14px;

font-weight:700;

letter-spacing:1px;

margin-bottom:22px;

text-transform:uppercase;

color:#fff;

}

.hero-content h1{

font-size:68px;

font-weight:800;

line-height:1.1;

margin-bottom:22px;

color:#fff;

text-shadow:0 5px 15px rgba(0,0,0,.25);

}

.hero-content p{

font-size:20px;

line-height:34px;

margin-bottom:35px;

color:rgba(255,255,255,.95);

max-width:550px;

}
/*==================================================
HERO BUTTONS
==================================================*/

.hero-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

background:#198754;

color:#fff;

font-size:16px;

font-weight:700;

text-decoration:none;

border-radius:50px;

box-shadow:0 15px 35px rgba(25,135,84,.35);

transition:.35s ease;

}

.hero-btn:hover{

background:#146c43;

color:#fff;

transform:translateY(-5px);

box-shadow:0 20px 45px rgba(25,135,84,.45);

}



/*==================================================
CAROUSEL ARROWS
==================================================*/

.hero-slider .carousel-control-prev,

.hero-slider .carousel-control-next{

width:60px;

height:60px;

top:50%;

transform:translateY(-50%);

background:rgba(255,255,255,.12);

backdrop-filter:blur(12px);

border-radius:50%;

opacity:1;

transition:.35s;

}

.hero-slider .carousel-control-prev{

left:30px;

}

.hero-slider .carousel-control-next{

right:30px;

}

.hero-slider .carousel-control-prev:hover,

.hero-slider .carousel-control-next:hover{

background:#198754;

}

.hero-slider .carousel-control-prev-icon,

.hero-slider .carousel-control-next-icon{

width:22px;

height:22px;

}



/*==================================================
INDICATORS
==================================================*/

.hero-slider .carousel-indicators{

bottom:35px;

}

.hero-slider .carousel-indicators button{

width:35px;

height:6px;

border-radius:20px;

margin:0 6px;

background:#fff;

opacity:.5;

border:none;

transition:.35s;

}

.hero-slider .carousel-indicators .active{

width:55px;

background:#198754;

opacity:1;

}



/*==================================================
SLIDE ANIMATION
==================================================*/

.carousel-item.active .hero-content span{

animation:slideUp .5s ease;

}

.carousel-item.active .hero-content h1{

animation:slideUp .8s ease;

}

.carousel-item.active .hero-content p{

animation:slideUp 1.1s ease;

}

.carousel-item.active .hero-btn{

animation:slideUp 1.4s ease;

}

@keyframes slideUp{

0%{

opacity:0;

transform:translateY(30px);

}

100%{

opacity:1;

transform:translateY(0);

}

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.hero-slide{

height:75vh;

min-height:550px;

text-align:center;

}

.hero-content{

margin:auto;

}

.hero-content h1{

font-size:48px;

}

.hero-content p{

font-size:18px;

line-height:30px;

}

.hero-slider .carousel-control-prev,

.hero-slider .carousel-control-next{

display:none;

}

}



@media(max-width:576px){

.hero-slide{

height:65vh;

min-height:480px;

}

.hero-content span{

font-size:12px;

padding:8px 18px;

}

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:15px;

line-height:26px;

margin-bottom:25px;

}

.hero-btn{

width:100%;

padding:14px 20px;

}

.hero-slider .carousel-indicators{

bottom:15px;

}

}
/*==================================================
QUICK MENU
==================================================*/

.quick-menu{

padding:45px 0;

background:#ffffff;

}

.quick-menu-wrapper{

background:#fff;

border-radius:20px;

padding:25px;

box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.quick-card{

display:block;

text-align:center;

text-decoration:none;

padding:20px 12px;

border-radius:18px;

transition:.35s ease;

height:100%;

background:#fff;

border:1px solid #f2f2f2;

}

.quick-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(25,135,84,.15);

border-color:#198754;

}

.quick-icon{

width:85px;

height:85px;

margin:0 auto 18px;

background:linear-gradient(135deg,#ecfff4,#d8f5e4);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

transition:.35s;

}

.quick-card:hover .quick-icon{

background:#198754;

transform:rotate(8deg) scale(1.08);

}

.quick-icon i{

font-size:34px;

color:#198754;

transition:.35s;

}

.quick-card:hover .quick-icon i{

color:#fff;

}

.quick-card h6{

font-size:15px;

font-weight:700;

color:#222;

margin:0;

line-height:22px;

transition:.35s;

}

.quick-card:hover h6{

color:#198754;

}



/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.quick-icon{

width:75px;

height:75px;

}

.quick-icon i{

font-size:28px;

}

}



@media(max-width:767px){

.quick-menu{

padding:30px 0;

}

.quick-menu-wrapper{

padding:15px;

}

.quick-card{

padding:15px 8px;

}

.quick-icon{

width:65px;

height:65px;

margin-bottom:12px;

}

.quick-icon i{

font-size:24px;

}

.quick-card h6{

font-size:13px;

line-height:18px;

}

}
/*==========================================
BATTERY BRANDS
===========================================*/

.battery-section{

padding:90px 0;

background:#f8f9fb;

}

.brand-card{

display:flex;

align-items:center;

justify-content:center;

height:140px;

background:#fff;

border-radius:20px;

padding:20px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #eee;

}

.brand-card:hover{

transform:translateY(-8px);

border-color:#198754;

box-shadow:0 18px 45px rgba(25,135,84,.15);

}

.brand-card img{

max-width:100%;

max-height:70px;

transition:.35s;

object-fit:contain;

}

.brand-card:hover img{

transform:scale(1.08);

}
/*==========================================
TRACTOR BRANDS
===========================================*/

.tractor-brand-section{

padding:90px 0;

background:#f8f9fb;

}

.tractor-brand-card{

display:block;

background:#fff;

padding:25px;

border-radius:18px;

text-align:center;

text-decoration:none;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.06);

height:100%;

}

.tractor-brand-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(25,135,84,.18);

}

.tractor-brand-logo{

height:80px;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:20px;

}

.tractor-brand-logo img{

max-width:100%;

max-height:70px;

object-fit:contain;

transition:.35s;

}

.tractor-brand-card:hover img{

transform:scale(1.08);

}

.tractor-brand-card h6{

font-size:16px;

font-weight:700;

color:#222;

margin-bottom:8px;

}

.tractor-brand-card span{

font-size:13px;

color:#198754;

font-weight:600;

}
/*==============================
FEATURED PRODUCTS
==============================*/

.featured-products{
    padding:90px 0;
    background:#f8fafc;
}

.featured-products .section-title{
    margin-bottom:60px;
}

.featured-products .section-title span{
    display:inline-block;
    color:#198754;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    background:#e9f8ef;
    padding:8px 22px;
    border-radius:30px;
    margin-bottom:18px;
}

.featured-products .section-title h2{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.featured-products .section-title p{
    color:#666;
    font-size:18px;
    max-width:650px;
    margin:auto;
}

.product-card{

    position:relative;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
    border:1px solid #eef1f4;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(0,0,0,.15);

}

.product-image{

    height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    padding:20px;

}

.product-image img{

    max-width:100%;
    max-height:220px;
    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.discount-badge{

    position:absolute;
    top:18px;
    left:18px;
    background:#e53935;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    z-index:2;

}

.product-content{

    padding:22px;

}

.product-content h5{

    font-size:21px;
    font-weight:700;
    line-height:1.45;
    min-height:62px;
    color:#222;
    margin-bottom:18px;

}

.price-box{

    margin-bottom:22px;

}

.old-price{

    display:block;
    color:#999;
    text-decoration:line-through;
    font-size:18px;

}

.sale-price{

    display:block;
    color:#198754;
    font-size:40px;
    font-weight:800;
    margin-top:4px;

}

.view-btn{

    display:block;
    width:100%;
    text-align:center;
    background:#198754;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;

}

.view-btn:hover{

    background:#111;
    color:#fff;

}

.all-products-btn{

    display:inline-block;
    margin-top:20px;
    background:#198754;
    color:#fff;
    text-decoration:none;
    padding:15px 42px;
    border-radius:40px;
    font-weight:700;
    transition:.3s;

}

.all-products-btn:hover{

    background:#111;
    color:#fff;

}

@media(max-width:768px){

.featured-products{

padding:70px 0;

}

.featured-products .section-title h2{

font-size:34px;

}

.product-image{

height:180px;

}

.product-image img{

max-height:150px;

}

.product-content{

padding:15px;

}

.product-content h5{

font-size:16px;
min-height:45px;

}

.sale-price{

font-size:28px;

}

.old-price{

font-size:15px;

}

.view-btn{

padding:12px;

}

}
/*==========================================
WHY US
===========================================*/

.why-us{

padding:90px 0;

background:#ffffff;

}

.why-card{

background:#fff;

padding:40px 25px;

text-align:center;

border-radius:20px;

border:1px solid #edf1f5;

transition:.35s;

height:100%;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 45px rgba(25,135,84,.18);

}

.why-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:#198754;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

}

.why-card h5{

font-size:22px;

font-weight:700;

margin-bottom:15px;

color:#222;

}

.why-card p{

font-size:15px;

line-height:28px;

color:#666;

margin:0;

}

@media(max-width:768px){

.why-us{

padding:70px 0;

}

.why-card{

padding:30px 20px;

}

.why-icon{

width:75px;

height:75px;

font-size:28px;

}

}
/*==========================================
TESTIMONIALS
===========================================*/

.testimonial-section{

padding:90px 0;

background:#f8fafc;

}

.testimonial-card{

background:#fff;

padding:35px;

border-radius:20px;

height:100%;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #edf1f5;

}

.testimonial-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(25,135,84,.15);

}

.stars{

font-size:22px;

color:#ffc107;

margin-bottom:20px;

letter-spacing:2px;

}

.testimonial-card p{

font-size:16px;

line-height:30px;

color:#555;

min-height:110px;

}

.customer{

display:flex;

align-items:center;

margin-top:25px;

}

.customer-avatar{

width:60px;

height:60px;

border-radius:50%;

background:#198754;

color:#fff;

font-size:22px;

font-weight:700;

display:flex;

align-items:center;

justify-content:center;

margin-right:15px;

}

.customer h6{

margin:0;

font-size:18px;

font-weight:700;

}

.customer span{

font-size:14px;

color:#777;

}

@media(max-width:768px){

.testimonial-section{

padding:70px 0;

}

.testimonial-card{

padding:25px;

}

.testimonial-card p{

min-height:auto;

}

}
/*==========================================
CALL TO ACTION
===========================================*/

.cta-section{

padding:90px 0;

background:#ffffff;

}

.cta-wrapper{

background:linear-gradient(135deg,#0c3f01,#0c3f01);

border-radius:25px;

padding:70px 60px;

color:#fff;

position:relative;

overflow:hidden;

box-shadow:0 20px 45px rgba(25,135,84,.25);

}

.cta-wrapper::before{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:300px;

height:300px;

background:rgba(255,255,255,.08);

border-radius:50%;

}

.cta-wrapper::after{

content:"";

position:absolute;

bottom:-100px;

left:-80px;

width:220px;

height:220px;

background:rgba(255,255,255,.05);

border-radius:50%;

}

.cta-badge{

display:inline-block;

padding:8px 20px;

background:rgba(255,255,255,.15);

border-radius:30px;

font-size:14px;

font-weight:700;

margin-bottom:20px;

}

.cta-wrapper h2{

font-size:48px;

font-weight:800;

margin-bottom:20px;

}

.cta-wrapper p{

font-size:18px;

line-height:32px;

max-width:700px;

opacity:.95;

margin-bottom:35px;

}

.cta-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.cta-call{

background:#fff;

color:#198754;

padding:16px 38px;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.cta-call:hover{

background:#111;

color:#fff;

}

.cta-whatsapp{

background:transparent;

border:2px solid #fff;

color:#fff;

padding:16px 38px;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.cta-whatsapp:hover{

background:#fff;

color:#198754;

}

.cta-icon{

width:180px;

height:180px;

margin:auto;

border-radius:50%;

background:rgba(255,255,255,.12);

display:flex;

align-items:center;

justify-content:center;

font-size:75px;

color:#fff;

}

@media(max-width:768px){

.cta-section{

padding:70px 0;

}

.cta-wrapper{

padding:40px 25px;

text-align:center;

}

.cta-wrapper h2{

font-size:32px;

}

.cta-wrapper p{

font-size:16px;

line-height:28px;

}

.cta-buttons{

justify-content:center;

}

.cta-icon{

margin-top:40px;

width:130px;

height:130px;

font-size:55px;

}

}
