/*==========================================
RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}


/*==========================================
COMMON CONTAINER
==========================================*/

.container{

    width:90%;
    max-width:1320px;
    margin:auto;
}


/*==========================================
TOP BAR
==========================================*/

.top-bar{

    background:#0b4d2b;
    color:#fff;
    height:42px;

    display:flex;
    align-items:center;
}


.top-bar-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
}


.top-left,
.top-right{

    display:flex;
    align-items:center;
    gap:30px;
}


.top-item{

    display:flex;
    align-items:center;
    gap:8px;

    font-size:10px;
    font-weight:500;
}


.top-item i{

    color:#f4b43a;
    font-size:14px;
}

/*==========================================
NAVBAR
==========================================*/

.navbar{

    width:100%;
    background:#ffffff;

    position:sticky;
    top:0;
    z-index:999;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.navbar-container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:90px;
}

/* Logo */

.logo img{

    height:65px;
    width:auto;
}

/* Navigation */

.nav-menu{

    display:flex;
    align-items:center;
    gap:40px;
}

.nav-menu li{

    list-style:none;
}

.nav-menu a{

    color:#222;
    font-size:14px;
    font-weight:600;

    transition:.3s;
}

.nav-menu a:hover{

    color:#ef7d17;
}

.nav-menu a.active{

    color:#ef7d17;
}

/* Right Side */

.nav-right{

    display:flex;
    align-items:center;
    gap:15px;
}

/* Quote Button */

.quote-btn{

    background:#0b4d2b;
    color:#fff;

    padding:14px 24px;

    border-radius:8px;

    font-size:13px;
    font-weight:600;

    transition:.3s;
}

.quote-btn:hover{

    background:#ef7d17;
}

/* WhatsApp Button */

.whatsapp-btn{

    width:48px;
    height:48px;

    border-radius:50%;

    background:#0b4d2b;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;

    transition:.3s;
}

.whatsapp-btn:hover{

    background:#25D366;
}

/*==========================================
HERO SECTION
==========================================*/

.hero{

    position:relative;

    width:100%;

    overflow:hidden;
}

.hero-banner{

    width:100%;

    display:block;
}

/* Button Overlay */

.hero-overlay{

    position:absolute;

    left:7%;

    bottom:12%;

    display:flex;

    align-items:center;
}

.hero-buttons{

    display:flex;

    gap:18px;
}

/* Common Button */

.btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:16px 28px;

    border-radius:8px;

    font-size:15px;

    font-weight:600;

    transition:.3s;
}

/* WhatsApp */

.whatsapp-btn{

    background:#0b4d2b;

    color:#fff;
}

.whatsapp-btn:hover{

    background:#25D366;
}

/* Catalogue */

.download-btn{

    background:#ffffff;

    color:#222;

    border:2px solid #ddd;
}

.download-btn:hover{

    border-color:#ef7d17;

    color:#ef7d17;
}

/* ==========================================
   HERO BUTTONS
========================================== */

.hero-overlay{
    position:absolute;
    left:40px;
    bottom:30px;
}
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:20px;
}

/* Common Button */

.hero-buttons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:245px;
    height:45px;

    padding:0 28px;

    border-radius:10px;

    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;

    transition:all .s ease;
}

/* WhatsApp */

.whatsapp-btn{
    background:#0B5E37;
    color:#fff;
    box-shadow:0 10px 25px rgba(11,94,55,.25);
}

.whatsapp-btn i{
    font-size:15px;
}

.whatsapp-btn:hover{
    background:#25D366;
    transform:translateY(-3px);
}

/* Download Button */

.download-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:230px;
    height:58px;

    padding:0 28px;

    background:#F29B38;
    color:#ffffff;

    border:none;
    border-radius:50px;

    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;

    box-shadow:0 10px 25px rgba(242,155,56,.30);

    transition:all .3s ease;
}

.download-btn i{
    color:#ffffff;
    font-size:18px;
}

/* Hover */

.download-btn:hover{
    background:#E68318;
    color:#ffffff;              /* Keep text white */
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(230,131,24,.35);
}

.download-btn:hover i{
    color:#ffffff;              /* Keep icon white */
}

/*==========================================
FEATURES BANNER
==========================================*/

.features-banner{
    width:100%;
}

.features-banner img{
    width:100%;
    display:block;
}

/*=========================================
ABOUT SECTION
=========================================*/

.about-section{

    padding:90px 0;

    background:#fff;
}

.about-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;
}

/* Left */

.about-image{

    flex:1;
}

.about-image img{

    width:100%;

    max-width:520px;

    display:block;

    margin:auto;
}

/* Right */

.about-content{

    flex:1;
}

.about-tag{

    display:inline-block;

    color:#d98b1d;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;
}

.about-content h2{

    font-size:54px;

    line-height:1.15;

    color:#123a24;

    font-weight:700;

    margin-bottom:25px;
}

.about-content h2 span{

    color:#ef7d17;
}

.about-content p{

    font-size:17px;

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

    max-width:620px;
}

/*==================================
PRODUCTS
==================================*/

.products-section{

    padding:90px 0;

    background:#fff;

    text-align:center;
}

.section-tag{

    display:inline-block;

    color:#d98b1d;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:10px;
}

.section-title{

    font-size:46px;

    color:#143B24;

    margin-bottom:55px;

    font-weight:700;
}

/* Grid */

.products-grid{

    display:grid;

    grid-template-columns:repeat(9,1fr);

    gap:22px;

    align-items:start;
}

/* Product */

.product-item{

    text-align:center;

    transition:all .35s ease;
}

.product-item img{

    width:160px;
    height:160px;

    object-fit:cover;

    border-radius:50%;

    background:#fff;

    padding:6px;

    border:5px solid #ffffff;

    outline:3px solid #d8b15c;

    box-shadow:
        0 8px 20px rgba(0,0,0,.08),
        0 0 0 8px #faf7ef;

    transition:all .35s ease;
}

.product-item:hover img{

    transform:translateY(-10px) scale(1.05);

    outline-color:#ef7d17;

    box-shadow:
        0 18px 35px rgba(0,0,0,.15),
        0 0 20px rgba(239,125,23,.30),
        0 0 0 8px #fff7e8;
}

.product-item h4{

    margin-top:18px;

    font-size:17px;

    font-weight:600;

    color:#333;

    transition:.3s;
}

.product-item:hover h4{

    color:#0B5E37;
}

/* Button */

.products-btn{

    margin-top:50px;
}

.view-products{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#0B5E37;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.view-products:hover{

    background:#ef7d17;
}

/*==========================================
PACKAGING STRIP
==========================================*/

.packaging-strip{

    background:#0B4D2B;

    padding:60px 0;

    position:relative;

    overflow:hidden;
}

/* Container */

.packaging-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:50px;
}

/* Left Side */

.packaging-left{

    width:28%;
}

.packaging-tag{

    display:inline-block;

    color:#F4B43A;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;
}

.packaging-left h2{

    color:#fff;

    font-size:48px;

    line-height:1.2;

    margin-bottom:20px;

    font-weight:700;
}

.packaging-left p{

    color:#dfe8e3;

    font-size:16px;

    line-height:1.8;

    max-width:320px;
}

/* Right Side */

.packaging-right{

    width:72%;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;
}

/* Individual Package */

.package{

    width:150px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;
}

/* Fixed Image Area */

.package-image{

    width:140px;

    height:185px;

    display:flex;

    align-items:flex-end;

    justify-content:center;

    margin-bottom:70px;
}

/* Images */

.package-image img{

    max-width:156px;

    max-height:1024px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.35s ease;
}

.package:hover img{

    transform:translateY(-8px);
}

/* Title */

.package h4{

    color:#fff;

    font-size:15px;

    font-weight:600;

    min-height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:18px;
}

/* Weight Chip */

.weight-chip{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:80px;

    height:34px;

    padding:0 16px;

    border-radius:25px;

    border:1px solid #C79D42;

    background:rgba(255,255,255,.06);

    color:#fff;

    font-size:13px;

    white-space:nowrap;
}

/* Custom Chip */

.chip-large{

    min-width:170px;

    font-size:12px;
}

/* Decorative Bowl */

.packaging-bowl{

    position:absolute;

    left:0;

    bottom:-15px;

    width:180px;
}

/*==========================================
SIMPLE PROCESS
==========================================*/

.process-section{

    padding:-80px 0;

    background:#fff;

    text-align:center;
}

.process-section .section-tag{

    display:inline-block;

    padding:-80px 0;

    color:#d88b1f;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;
}

.process-section .section-title{

    font-size:46px;

    color:#143B24;

    margin-bottom:55px;

    font-weight:700;
}

.process-row{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    flex-wrap:wrap;
}

/* Step */

.process-item{

    width:160px;

    text-align:center;
}

.process-icon{

    width:105px;

    height:105px;

    margin:0 auto 18px;

    border:2px solid #E7E7E7;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    transition:.3s;
}

.process-icon img{

    width:42px;

    height:42px;
}

.process-item:hover .process-icon{

    border-color:#ef7d17;

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(239,125,23,.18);
}

.step-number{

    display:block;

    color:#ef7d17;

    font-weight:700;

    font-size:20px;

    margin-bottom:10px;
}

.process-item h4{

    font-size:16px;

    color:#333;

    line-height:1.5;

    font-weight:600;
}

/* Arrow */

.process-arrow{

    font-size:32px;

    color:#d88b1f;

    font-weight:300;

    margin-top:-35px;
}

/*==========================================
TESTIMONIALS
==========================================*/

.testimonials{

    padding:20px 0;

    background:#faf8f4;

    text-align:center;
}

.section-description{

    max-width:700px;

    margin:15px auto 50px;

    color:#666;

    line-height:1.8;
}

.testimonial-wrapper{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:10px;
}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:left;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.stars{

    color:#F4B43A;

    font-size:20px;

    margin-bottom:20px;
}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;
}

.client{

    display:flex;

    align-items:center;

    gap:15px;
}

.client img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;
}

.client h4{

    color:#143B24;

    margin-bottom:4px;
}

.client span{

    color:#888;

    font-size:14px;
}

/*==========================================
FOOTER
==========================================*/

.footer{

    background:#0B4D2B;

    color:#ffffff;

    padding:70px 0 0;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;
}

.footer-logo{

    width:180px;

    margin-bottom:20px;
}

.footer-column p{

    color:#d8e8dd;

    line-height:1.8;
}

.footer-column h3{

    color:#ffffff;

    margin-bottom:20px;

    font-size:22px;
}

.footer-column ul{

    list-style:none;

    padding:0;
}

.footer-column ul li{

    margin-bottom:12px;

    color:#d8e8dd;
}

.footer-column ul li a{

    color:#d8e8dd;

    transition:.3s;
}

.footer-column ul li a:hover{

    color:#F4B43A;
}

.footer-column i{

    margin-right:10px;

    color:#F4B43A;
}

.social-icons{

    display:flex;

    gap:12px;

    margin-top:25px;
}

.social-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    transition:.3s;
}

.social-icons a:hover{

    background:#F4B43A;

    color:#143B24;
}

.footer-bottom{

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    padding:20px 0;

    color:#d8e8dd;

    font-size:14px;
}

.instagram-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    padding:8px 16px;

    border-radius:8px;

    transition:all .3s ease;

    text-decoration:none;

    border:1px solid #e5e5e5;

    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.instagram-button img{

    height:32px;

    width:auto;

    display:block;
}

.instagram-button:hover{

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

@media (max-width:991px){

}

@media (max-width:768px){

}

@media (max-width:480px){

}

/*====================================================
TABLET
====================================================*/

@media (max-width:991px){

.container{
    width:95%;
}

.top-bar{
    display:none;
}

.navbar-container{
    height:80px;
}

.nav-menu{
    gap:18px;
}

.logo img{
    height:55px;
}

.hero-overlay{
    left:30px;
    bottom:20px;
}

.hero-buttons a{
    min-width:190px;
    height:50px;
    font-size:14px;
}

.about-wrapper{
    flex-direction:column;
    text-align:center;
}

.about-content p{
    max-width:100%;
}

.products-grid{
    grid-template-columns:repeat(3,1fr);
    justify-items:center;
}

.packaging-wrapper{
    flex-direction:column;
}

.packaging-left,
.packaging-right{
    width:100%;
}

.packaging-right{
    flex-wrap:wrap;
    justify-content:center;
}

.process-row{
    gap:30px;
}

.testimonial-wrapper{
    grid-template-columns:repeat(2,1fr);
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/*====================================================
MOBILE
====================================================*/

@media (max-width:768px){

.container{
    width:94%;
}

.nav-menu{
    display:none;
}

.quote-btn{
    display:none;
}

.navbar-container{
    height:75px;
}

.logo img{
    height:48px;
}

.hero-overlay{
    left:15px;
    bottom:15px;
}

.hero-buttons{
    flex-direction:column;
    gap:10px;
}

.hero-buttons a{
    width:220px;
    min-width:auto;
    height:46px;
    font-size:13px;
}

.about-section,
.products-section,
.packaging-strip,
.process-section,
.testimonials,
.footer{
    padding:50px 0;
}

.about-content h2,
.section-title,
.packaging-left h2{
    font-size:34px;
}

.products-grid{
    grid-template-columns:repeat(2,1fr);
}

.product-item img{
    width:120px;
    height:120px;
}

.packaging-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.package{
    width:100%;
}

.package-image{
    height:140px;
    margin-bottom:15px;
}

.process-row{
    flex-direction:column;
}

.process-arrow{
    transform:rotate(90deg);
    margin:0;
}

.testimonial-wrapper{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.social-icons{
    justify-content:center;
}

}

/*====================================================
SMALL MOBILE
====================================================*/

@media (max-width:480px){

.hero-buttons a{
    width:100%;
}

.hero-overlay{
    width:90%;
}

.products-grid{
    grid-template-columns:1fr;
}

.product-item img{
    width:150px;
    height:150px;
}

.packaging-right{
    grid-template-columns:1fr;
}

.package-image img{
    max-width:110px;
}

.about-content h2,
.section-title,
.packaging-left h2{
    font-size:28px;
}

.about-content p,
.packaging-left p,
.testimonial-card p{
    font-size:15px;
}

.footer-logo{
    width:150px;
}

}
