*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
    
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
    z-index:1000;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:70px;
    margin-right:10px;
}

.logo h2{
    color:#2e7d32;
}

/* NAVIGATION */
nav{
    display:flex;
    align-items:center;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

nav a:hover{
    color:#2e7d32;
}

/* ICONS */
.icons i{
    margin-left:15px;
    font-size:18px;
    cursor:pointer;
    color:#2e7d32;
}



/* HAMBURGER */
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    nav{
        position:absolute;
        top:70px;
        right:-100%;
        background:white;
        flex-direction:column;
        width:200px;
        height:100vh;
        padding-top:20px;
        transition:0.3s;
    }

    nav.active{
        right:0;
    }

    .menu-toggle{
        display:block;
    }
}




/* Dropdown */
.dropdown {
    position: relative;
    display: inline;
}

.dropbtn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.dropdown-content {
    display:none;
    position: absolute;
  
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);

   
}

.dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background: #2e7d32;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* FULL SCREEN BACKDROP */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* POPUP BOX */
.modal-box {
    width: 360px;
    background: white;

    padding: 25px;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    text-align:center;

    position:absolute;
    animation: pop 0.25s ease;
}

/* ANIMATION */
@keyframes pop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    right: 12px;
    top: 8px;

    font-size: 26px;
    cursor: pointer;
    color: #333;
}

/* TITLE */
.modal-box h2 {
    margin-bottom: 15px;
    color: #222;
}

/* INPUT + SELECT */
.modal-box input,
.modal-box select {
    width: 100%;
    padding: 10px;

    margin: 8px 0;

    border: 1px solid #ddd;
    border-radius: 6px;

    outline: none;
    transition: 0.3s;
}

.modal-box input:focus,
.modal-box select:focus {
    border-color: green;
}

/* LOGIN BUTTON */
.modal-box button {
    width: 100%;
    padding: 10px;

    margin-top: 10px;

    background: green;
    color: white;

    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-size: 16px;

    transition: 0.3s;
}

.modal-box button:hover {
    background: darkgreen;
}

/* REGISTER TEXT */
.modal-box p {
    margin-top: 10px;
    color: green;
    cursor: pointer;
    font-size: 14px;
}

.modal-box p:hover {
    text-decoration: underline;
}

/* REGISTER BOX */
#registerBox {
    margin-top: 15px;
}


/* =========================
   CART PANEL (DO NOT CHANGE)
========================= */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;

    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);

    transition: 0.3s ease;
    z-index: 9999;

    display: flex;
    flex-direction: column;

    overflow: hidden; /* REQUIRED FIX */
}

.cart-panel.active {
    right: 0;
}

/* =========================
   HEADER (SAFE TO EDIT COLOR)
========================= */
.cart-header {
    background: green; /* CHANGEABLE */
    color: white;

    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close button */
.close-cart {
    font-size: 24px;
    cursor: pointer;
}

/* =========================
   CART BODY (DO NOT CHANGE)
   - FIXED SCROLL ISSUE HERE
========================= */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

/* =========================
   TABLE STRUCTURE (DO NOT CHANGE)
========================= */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* Product image */
td img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

/* =========================
   TOTAL PRICE (SAFE STYLE)
========================= */
#totalPrice {
    text-align: center;
    margin: 10px 0;
    color: green; /* CHANGEABLE */
    font-weight: bold;
}

/* =========================
   EMPTY CART TEXT
========================= */
.empty {
    text-align: center;
    margin-top: 50px;
    color: gray;
}

/* =========================
   REMOVE BUTTON (FIXED)
========================= */
td button {
    background: red; /* CHANGEABLE */
    color: white;

    border: none;
    padding: 5px 8px;
    border-radius: 5px;

    cursor: pointer;
}

td button:hover {
    background: darkred;
}

/* =========================
   CART ICON
========================= */
.cart-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 22px;
    color: #2e7d32; /* CHANGEABLE */
}

/* =========================
   CART COUNT BADGE
========================= */
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;

    background: red; /* CHANGEABLE */
    color: white;

    width: 18px;
    height: 18px;

    font-size: 12px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: bold;
}



/* FIX SCROLL AREA */
.cart-body {
    flex: 1;
    overflow-y: auto;   /* 🔥 important */
    padding: 10px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* IMAGE */
td img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

/* REMOVE BUTTON */
td button {
    background: red;
    color: white;
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
}

.checkout-btn {
    width: 90%;
    margin: 15px auto;
    padding: 12px;

    background: #2e7d32;
    color: white;

    border: none;
    border-radius: 8px;

    font-size: 16px;
    cursor: pointer;

    display: block;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: #1b5e20;
    transform: scale(1.03);
}

.hero-slider {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
  
}

/* SLIDES */
.slides img {
    width: 100%;
    height: auto;

    position: absolute;
    top: 0;
    left: 0;

    opacity: 0;
    transition: 0.5s ease;

    object-fit:contain ;   /* 👈 IMPORTANT FIX */
    object-position: center; /* keeps center focus */
}

.slides img.active {
    opacity: 1;
}



/* DOTS */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;

    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    
    margin: 0 4px;
    display: inline-block;

    border-radius: 50%;
    background: #bbb;

    cursor: pointer;
}

.dot.active {
    background: green;
}


.news{
    display: inline-flex;
    background-color: darkblue;
    width: 100%;
    align-items: center;
    white-space: nowrap;
}
.news label{
    font-size: 35px;
    background-color: red;
    font: bold;
    color: white;
    margin-left: 10px;
    
}
marquee {
    background: Dar;
    color: white;

    padding: 10px 0;

    font-size: 14px;
    font-weight: bold;

    width: 80%;
}
.sec{
    background-color: azure;

}
.sec p {
    font-size: 16px;
    align-items: center;
    margin-left: 200px;
    margin-right: 200px;
    margin-bottom: 10px;
    
}
.sec h3{
    margin-top: 6px;
        font-size: 16px;
    align-items: center;
    margin-left: 200px;
    margin-right: 200px;
    margin-bottom:10px;
}
 

/* Section */
.category-section {
    padding: 50px 20px;
    text-align: center;
    background-color: whitesmoke;

}

.category-section h2 {
    margin-bottom: 30px;
    color: green;
}
.section-title span {
    color: orange;
}
/* Container */
.category-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Card */
.category-card {
    width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Image */
.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s ease;
}

/* Text */
.category-card h3 {
    padding: 15px;
}

/* Hover Effect */
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Image hover (light dim effect) */
.category-card:hover img {
    filter: brightness(70%);
}

/* Text hover color */
.category-card:hover h3 {
    color: #2e7d32;
}

/* Active Click Effect */
.category-card:active {
    transform: scale(0.97);
}

/* Responsive (only 3 in one row) */
@media (min-width: 992px) {
    .category-card {
        width: 30%;
    }
}

/* Stylish Heading */
.section-title {
    font-size: 32px;
    color: orange;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

/* Creative underline */
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, orange, green);
    border-radius: 10px;
    transition: 0.4s ease;
}

/* Hover effect (underline expands) */
.section-title:hover::after {
    width: 120px;
}



/* Achievement Section */
.achievement-section {
    padding: 60px 20px;
    background: lavender;
    text-align: center;
}
.section-title span{
    color: green;
}

/* Container - force inline 6 */
.achievement-container {
    display: flex;
    flex-wrap: nowrap; /* keep in one line */
    justify-content: space-between;
    gap: 15px;
    overflow-x: auto; /* scroll on small screens */
}

/* Box */
.achievement-box {
    min-width: 200px;   /* small width to fit 6 inline */
    max-width: 400px;
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    background: #f9f9f9;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   
}

/* Bigger Image */
.achievement-box img {
    width: 180px;   /* increased size */
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

/* Title */
.achievement-box h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2e7d32;
}

/* Description */
.achievement-box p {
    font-size: 13px;
    color: #555;
}

/* Hover Effect */
.achievement-box:hover {
    transform: translateY(-8px);
    background: #2e7d32;
}

/* Hover text */
.achievement-box:hover h3,
.achievement-box:hover p {
    color: #fff;
}

/* Hover image */
.achievement-box:hover img {
    transform: scale(1.15);
}

/* Optional: smooth scrollbar */
.achievement-container::-webkit-scrollbar {
    height: 6px;
}

.achievement-container::-webkit-scrollbar-thumb {
    background: #2e7d32;
    border-radius: 10px;
}


/* ================= SECTION ================= */
.product-section {
    padding: 60px 20px;
    background: #f5f5f5;
    display:none;
}

/* ================= TITLE ================= */
/* CHANGEABLE: color, size */
/* Stylish Heading */
.section{
    font-size: 32px;
    color: Green;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    margin-left: 39%;
}
.section span{
    color:orange;
}

/* Creative underline */
.section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(70deg, orange, green);
    border-radius: 10px;
    transition: 0.4s ease;
}

/* Hover effect (underline expands) */
.section:hover::after {
    width: 120px;
}

/* ================= WRAPPER ================= */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* ================= PRODUCT ROW ================= */
.product-container {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    scroll-behavior: smooth;

    padding: 20px;
}

/* hide scrollbar */
.product-container::-webkit-scrollbar {
    display: none;
}

/* ================= CARD ================= */
.product-card {
    min-width: 220px;
    background: #fff;
    border-radius: 15px;
    padding: 15px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* hover effect */
.product-card:hover {
    transform: translateY(-8px);
}

/* ================= IMAGE ================= */
.img-box {
    position: relative;
}

.img-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* wishlist */
.wishlist {
    position: absolute;
    top: 10px;
    right: 10px;

    background: white;
    padding: 5px 8px;
    border-radius: 50%;
    cursor: pointer;
}

.wishlist:hover {
    background: red;
    color: white;
}

/* ================= BUTTON ================= */
/* CHANGEABLE: color */
.product-card button {
    width: 100%;
    padding: 10px;

    background: #2e7d32; /* CHANGEABLE */
    color: white;

    border: none;
    border-radius: 8px;

    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    cursor: pointer;
}

/* show button on hover */
.product-card:hover button {
    opacity: 1;
    transform: translateY(0);
}

/* ================= ARROWS ================= */
/* CHANGEABLE: color, size */
.arrow {
    background: #2e7d32; /* CHANGEABLE */
    color: white;

    border: none;
    font-size: 25px;

    padding: 10px 15px;
    border-radius: 50%;

    cursor: pointer;
    z-index: 10;
}

.arrow:hover {
    background: #1b5e20;
}
.product-container {
    scroll-behavior: smooth;
}


.contact-section{
    padding:50px 10%;
    text-align:center;
    font-family: Arial, sans-serif;
    background:#f4f6f9;
}

/* Title */
.contact-section .title{
    font-size:32px;
    margin-bottom:30px;
    color:#2c3e50;
}

/* INFO BOXES */
.contact-section .contact-info{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.contact-section .info-box{
    flex:1;
    min-width:250px;
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.contact-section .info-box i{
    font-size:40px;
    margin-bottom:10px;
}

.contact-section .whatsapp i{ color:#25D366; }
.contact-section .email i{ color:#e74c3c; }
.contact-section .address i{ color:#2980b9; }

.contact-section .info-box:hover{
    transform:translateY(-5px);
}

/* FORM ONLY INSIDE CONTACT SECTION */
.contact-section .form-container{
    display:flex;
    justify-content:center;
}

.contact-section form{
    background:white;
    padding:30px;
    width:400px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.contact-section input,
.contact-section textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:8px;
    outline:none;
}

.contact-section textarea{
    height:120px;
    resize:none;
}

.contact-section button{
    width:100%;
    padding:12px;
    background:#27ae60;
    color:white;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

.contact-section button:hover{
    background:#219150;
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-section .contact-info{
        flex-direction:column;
    }

    .contact-section form{
        width:100%;
    }
}

.big-footer{
    background:#0f172a;
    color:white;
    font-family:Arial, sans-serif;
}

/* 🔥 Subscribe Bar (Horizontal) */
.subscribe-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 10%;
    background:linear-gradient(90deg,#00c853,orange);
    flex-wrap:wrap;
    gap:20px;
}

.subscribe-text h2{
    margin:0;
    font-size:26px;
}

.subscribe-text p{
    margin:5px 0 0;
}

/* Subscribe form */
.subscribe-form{
    display:flex;
    gap:10px;
}

.subscribe-form input{
    padding:12px;
    width:250px;
    border:none;
    border-radius:5px;
    outline:none;
}

.subscribe-form button{
    padding:12px 20px;
    border:none;
    background:#000;
    color:white;
    cursor:pointer;
    border-radius:5px;
}

/* 🔥 Main Footer */
.footer-main{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:50px 10%;
    gap:30px;
}

.footer-col{
    flex:1;
    min-width:220px;
}

.footer-col h3{
    margin-bottom:15px;
    color:#00e676;
}

.footer-col a{
    display:block;
    color:white;
    text-decoration:none;
    margin:6px 0;
}

.footer-col a:hover{
    color:#00e676;
}

/* Social Icons */
.social-icons{
    margin-top:10px;
}

.social-icons a{
    font-size:22px;
    margin-right:10px;
    color:white;
    transition:0.3s;
}

.social-icons a:hover{
    color:#00e676;
    transform:scale(1.2);
}

/* Bottom */
.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid #333;
    font-size:14px;
}

/* Responsive */
@media(max-width:768px){
    .subscribe-bar{
        flex-direction:column;
        text-align:center;
    }

    .subscribe-form{
        width:100%;
        justify-content:center;
    }

    .subscribe-form input{
        width:70%;
    }

    .footer-main{
        flex-direction:column;
        text-align:center;
    }
}


.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 10%;
    border-top:1px solid #333;
    background:#0f172a;
    color:white;
    flex-wrap:wrap;
}

/* Left side */
.footer-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-logo{
    width:60px;
    height:100px;
   
    object-fit:contain;
}

/* Right side */
.footer-right p{
    margin:0;
    color:#00e676;
    font-weight:bold;
}

/* Responsive */
@media(max-width:768px){
    .footer-bottom{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .footer-left{
        justify-content:center;
    }
}



body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

/* About Section */
.about-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #0f3d2e, #145a32);
    color: white;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Image */
.about-image img {
    width: 320px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: white;
    padding: 20px;
}

/* Content */
.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffd700;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Boxes */
.owner-box, .address-box {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-left: 4px solid #ffd700;
    margin: 15px 0;
    border-radius: 8px;
}

.owner-box h3, .address-box h3 {
    margin: 0;
    color: #ffd700;
}

/* Button */
.about-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.about-btn:hover {
    background: white;
    color: #145a32;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 250px;
    }
}
/* Overlay */
.popup {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.7);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

/* Box */
.popup-box {
    width: 380px;
    padding: 30px;

    background: linear-gradient(135deg, #ffffff, #e8f5e9);
    border-radius: 20px;

    text-align: center;

    box-shadow: 0 20px 50px rgba(0,0,0,0.3);

    animation: zoomIn 0.4s ease;
}

/* Title */
.popup-box h2 {
    color: #145a32;
    margin-bottom: 10px;
}

/* Text */
.popup-box p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

/* Button */
#acceptBtn {
    padding: 12px 25px;
    border: none;
    background: #145a32;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

#acceptBtn:hover {
    background: gold;
    color: black;
    transform: scale(1.05);
}

/* Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}