/* ==========================================
   PREMIUM HOME PAGE CSS
========================================== */

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    font-family:'Open Sans',sans-serif;
    background:#fff;
    color:#222;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1250px;
    margin:auto;
}

/* IMAGE */
img{
    width:100%;
    display:block;
}

/* SECTION */
section{
    padding:100px 0;
    position:relative;
}

/* TYPOGRAPHY */
h1,h2,h3,h4{
    font-family:'Poppins',sans-serif;
}

p{
    font-size:16px;
    line-height:1.8;
}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(to right,#4CAF50,#2E7D32);

    color:#fff;

    padding:16px 36px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.3s ease;

    box-shadow:0 10px 30px rgba(76,175,80,0.25);
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(76,175,80,0.30);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    border:2px solid #fff;

    color:#fff;

    padding:16px 36px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.3s ease;
}

.btn-secondary:hover{
    background:#fff;
    color:#2E7D32;
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;

    color:#4CAF50;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:15px;
}

.section-title h2{
    font-size:46px;
    line-height:1.3;
    margin-bottom:15px;
}

.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* ==========================================
   HERO SLIDER
========================================== */

.hero-slider{
    position:relative;
    overflow:hidden;
    width:100%;
    padding:0;
}

/* WRAPPER */
.slider-wrapper{
    display:flex;
    transition:transform 0.7s ease-in-out;
}

/* SLIDE */
.slide{
    min-width:100%;
    height:100vh;

    position:relative;

    display:flex;
    align-items:center;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* BACKGROUND IMAGES */

.slide-1{
    background-image:url('../images/hero_1.png');
}

.slide-2{
    background-image:url('../images/Hero_2.png');
}

.slide-3{
    background-image:url('../images/banners/hero-slide-3.png');
}

/* OVERLAY */

.overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.45);
}

/* CONTENT */

.hero-container{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:650px;
    color:#fff;
}

.hero-tag{
    display:inline-block;

    background:rgba(255,255,255,0.15);

    padding:12px 22px;

    border-radius:50px;

    backdrop-filter:blur(10px);

    margin-bottom:25px;

    font-size:14px;
    font-weight:600;

    letter-spacing:1px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.2;

    margin-bottom:25px;

    font-weight:700;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;

    margin-bottom:35px;

    color:#f1f1f1;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* NAVIGATION */

.slider-nav{
    position:absolute;

    bottom:40px;
    left:50%;

    transform:translateX(-50%);

    display:flex;
    gap:12px;

    z-index:10;
}

.dot{
    width:14px;
    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,0.5);

    cursor:pointer;

    transition:0.3s ease;
}

.dot.active{
    background:#fff;
    transform:scale(1.2);
}

/* ==========================================
   FEATURES SECTION
========================================== */

.features-section{
    background:#fff;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    transition:0.3s ease;

    box-shadow:0 10px 35px rgba(0,0,0,0.08);

    border:1px solid rgba(76,175,80,0.08);
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(76,175,80,0.15);
}

.feature-icon{
    width:95px;
    height:95px;

    margin:auto auto 30px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(to right,#6ec566,#2E7D32);

    box-shadow:0 15px 35px rgba(76,175,80,0.18);
}

.feature-icon i{
    font-size:38px;
    color:#fff;
}

.feature-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
}

/* ==========================================
   ABOUT SECTION
========================================== */

.home-about-section{
    background:#f9fff8;
}

.about-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:70px;
    align-items:center;
}

.about-image img{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.about-content span{
    color:#4CAF50;
    font-weight:700;
    letter-spacing:2px;
}

.about-content h2{
    font-size:48px;
    line-height:1.3;
    margin:20px 0;
}

.about-content p{
    color:#555;
    margin-bottom:20px;
}

/* ==========================================
   PRODUCTS SECTION
========================================== */

.products-section{
    background:linear-gradient(to bottom,#ffffff,#f6fff4);
    overflow:hidden;
}

.products-bg-shape{
    position:absolute;
    top:-120px;
    right:-120px;

    width:350px;
    height:350px;

    background:rgba(76,175,80,0.08);

    border-radius:50%;

    filter:blur(20px);
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;
}

.product-card{
    position:relative;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    transition:0.4s ease;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    border:1px solid rgba(76,175,80,0.08);

    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 22px 50px rgba(76,175,80,0.18);
}

.product-badge{
    position:absolute;
    top:18px;
    left:18px;

    background:linear-gradient(to right,#4CAF50,#2E7D32);

    color:#fff;

    padding:8px 16px;

    border-radius:50px;

    font-size:12px;
    font-weight:700;

    z-index:5;
}

.product-image{
    height:280px;

    padding:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(to bottom,#ffffff,#f7fff7);

    position:relative;
}

.product-image::after{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(76,175,80,0.08);

    border-radius:50%;

    filter:blur(30px);
}

.product-image img{
    position:relative;
    z-index:2;

    object-fit:contain;
    max-height:100%;

    transition:0.4s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.06);
}

.product-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h3{
    font-size:23px;
    margin-bottom:15px;
    color:#2E7D32;
    line-height:1.4;
}

.product-content p{
    color:#666;
    margin-bottom:22px;
}

.product-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.product-features span{
    background:#f1faf0;
    color:#2E7D32;

    padding:8px 14px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;
}

.product-btn{
    margin-top:auto;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:linear-gradient(to right,#4CAF50,#2E7D32);

    color:#fff;

    text-decoration:none;

    padding:14px 20px;

    border-radius:50px;

    font-weight:700;

    transition:0.3s ease;
}

.product-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(76,175,80,0.20);
}

/* ==========================================
   BENEFITS SECTION
========================================== */

.benefits-section{
    background:linear-gradient(to right,#4CAF50,#2E7D32);
}

.light-title span,
.light-title h2{
    color:#fff;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.benefit-box{
    background:rgba(255,255,255,0.12);

    padding:40px 30px;

    border-radius:25px;

    backdrop-filter:blur(10px);

    color:#fff;

    transition:0.3s ease;
}

.benefit-box:hover{
    transform:translateY(-10px);
}

.benefit-box h3{
    font-size:26px;
    margin-bottom:15px;
}

/* ==========================================
   BUSINESS SECTION
========================================== */

.business-section{
    background:#ffffff;
}

.business-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.business-content span{
    color:#4CAF50;
    font-weight:700;
    letter-spacing:2px;
}

.business-content h2{
    font-size:48px;
    line-height:1.3;
    margin:20px 0;
}

.business-content p{
    color:#666;
    margin-bottom:25px;
}

.business-content ul{
    list-style:none;
    margin-bottom:35px;
}

.business-content ul li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-weight:600;
    color:#333;
}

.business-content ul li::before{
    content:"✓";

    position:absolute;
    left:0;
    top:0;

    width:22px;
    height:22px;

    border-radius:50%;

    background:#4CAF50;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
}

.business-image img{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonial-section{
    background:#f9fff8;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 10px 35px rgba(0,0,0,0.08);

    transition:0.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    color:#555;
    margin-bottom:25px;
    font-style:italic;
}

.testimonial-card h4{
    color:#4CAF50;
}

/* ==========================================
   CTA SECTION
========================================== */

.contact-cta-section{
    background:linear-gradient(to right,#1b5e20,#4CAF50);

    text-align:center;

    color:#fff;
}

.cta-container h2{
    font-size:52px;
    margin-bottom:20px;
}

.cta-container p{
    margin-bottom:35px;
}

.btn-white{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    color:#2E7D32;

    padding:16px 40px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s ease;
}

.btn-white:hover{
    transform:translateY(-5px);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:992px){

    section{
        padding:80px 0;
    }

    .hero-content h1{
        font-size:48px;
    }

    .features-grid,
    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .about-container,
    .business-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content,
    .business-content{
        text-align:center;
    }

    .business-content ul li{
        text-align:left;
    }

}

@media(max-width:768px){

    .slide{
        height:90vh;
    }

    .hero-content{
        text-align:center;
        margin:auto;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .features-grid,
    .products-grid,
    .benefits-grid,
    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .section-title h2,
    .about-content h2,
    .business-content h2,
    .cta-container h2{
        font-size:32px;
    }

    .product-image{
        height:240px;
        padding:25px;
    }

    .product-content{
        padding:24px;
    }

    .business-image img,
    .about-image img{
        border-radius:22px;
    }

}

@media(max-width:576px){

    section{
        padding:70px 0;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-tag{
        font-size:12px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:28px;
    }

    .product-card{
        border-radius:22px;
    }

    .feature-card,
    .benefit-box,
    .testimonial-card{
        padding:30px 22px;
    }

    .product-content h3{
        font-size:20px;
    }

    .cta-container h2{
        font-size:28px;
    }

}