body{
    margin:0;
    font-family:Poppins;
    background:#a9c58f;
}

/* ================= NAVBAR ================= */

/* NAVBAR BACKGROUND */
.nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2e7d32;
}

/* GLASS NAV */
.nav-container {
    width: 90%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);

    border-radius: 40px;
    padding: 0 25px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* LOGO FIX */
.logo {
    height: 55px;              /* ðŸ”¥ FIXED (important) */
    width: auto;
    object-fit: contain;
    margin-left: 120px;
    background: white;
    padding: 5px 10px;
    border-radius: 8px;
}

.nav nav {
    margin-left: auto;
    margin-right: 40px;
}

/* MENU */
.nav nav a {
    margin: 0 14px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* ACTIVE */
.nav nav a.active {
    color: #d4ffce;
}

/* HOVER LINE */
.nav nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav nav a:hover::after {
    width: 100%;
}

.nav nav a:hover {
    color: #e8ffe3;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    padding:60px;
    display:flex;
    justify-content:center;
}

.hero-box{
    width:85%;
    background:linear-gradient(135deg,#dfffdc,#a6d57a);
    border-radius:25px;
    padding:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LEFT */
.left{
    width:50%;
}

.tag{
    color:#2E7D32;
    font-weight:500;
}

.left h1{
    font-size:48px;
    line-height:1.2;
}

.left span{
    color:#4CAF50;
}

.desc{
    margin:20px 0;
    color:#333;
}

.btns{
    display:flex;
    gap:10px;
}

.order{
    background:#4CAF50;
    color:white;
    padding:10px 20px;
    border-radius:10px;
    border:none;
}

.price{
    background:#6b8e23;
    color:white;
    padding:10px 20px;
    border-radius:10px;
    border:none;
}

/* RIGHT */
.right{
    width:50%;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* BOWL */
.bowl{
    width:360px;
    border-radius:50%;
    z-index:2;
}

.ring{
    position:absolute;
    width:420px;
    height:420px;
}

.circle{
    position:absolute;
    width:420px;
    height:420px;
    border:3px solid #2e7d32;
    border-radius:50%;
    z-index:1;

    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

/* DOTS */


/* TOP DOT */
.circle::before{
    top:-6px;
    left:50%;
    transform:translateX(-50%);
}

/* RIGHT DOT */
.circle::after{
    right:-6px;
    top:50%;
    transform:translateY(-50%);
}



.dot{
    position:absolute;
    width:12px;
    height:12px;
    background:#2e7d32;
    border-radius:50%;
    z-index:3;

    top:50%;
    left:50%;
}

/* TOP */
.dot-top{
    transform:translate(-50%, -210px);
}

/* RIGHT */
.dot-right{
    transform:translate(210px, -50%);
}

/* BOTTOM */
.dot-bottom{
    transform:translate(-50%, 210px);
}

/* LEFT */
.dot-left{
    transform:translate(-210px, -50%);
}

/* ================= LEAVES (PERFECT MATCH) ================= */

/* TOP RIGHT */
.leaf1{
    position:absolute;
    top:-90px;      /* ðŸ”¥ adjusted */
    right:-200px;    /* ðŸ”¥ adjusted */
    width:260px;
    transform: rotate(160deg);
    z-index:3;
}

/* BOTTOM RIGHT */
.leaf2{
    position:absolute;
    bottom:-40px;
    right:-50px;
    width:220px;
    transform: rotate(-70deg);
    z-index:3;
}

/* ================= BLUR ================= */

.blur1{
    position:absolute;
    top:120px;
    left:80px;
    width:120px;
    opacity:0.4;
}

.blur2{
    position:absolute;
    bottom:60px;
    right:100px;
    width:150px;
    opacity:0.4;
}

/* ================= BENEFITS ================= */

.benefits {
    padding: 60px 5%;
    text-align: center;
}

.benefits h2 {
    font-size: 40px;
    color: #1b5e20;
    margin-bottom: 50px;
}

/* 4 CARDS PERFECT */
.benefit-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #eaf4e4;
    padding: 30px 20px;
    border-radius: 25px;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE SIZE FIX */
.benefit-card img {
    width: 150px;   /* ðŸ”¥ bigger */
    height: auto;
    margin-bottom: 20px;
}

/* TEXT */
.benefit-card h3 {
    color: #2e7d32;
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 15px;
    color: #555;
}

/* ================= FOOTER ================= */

.footer{
    text-align:center;
    padding:20px;
    background:#2e7d32;
    color:white;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .benefit-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefit-container {
        grid-template-columns: 1fr;
    }
}

/* ================= MOBILE RESPONSIVE FIX ================= */

@media (max-width: 768px){

    /* ===== NAVBAR ===== */
    .nav{
        height:auto;
        justify-content:space-between;
        padding:10px 15px;
    }

    .logo{
        margin-left:0 !important;
        height:45px;
    }

    .nav nav{
        display:none;
    }

    /* ===== HERO ===== */
    .hero{
        padding:15px;
    }

    .hero-box{
        flex-direction:column !important;
        padding:25px 15px;
    }

    .left{
        width:100%;
        text-align:center;
        z-index:2;
    }

    .left h1{
        font-size:30px;
    }

    .desc{
        font-size:14px;
    }

    .btns{
        justify-content:center;
    }

    /* ===== RIGHT (CRITICAL FIX) ===== */
    .right{
        width:100%;
        position:relative;
        margin-top:30px;
    }

    /* ===== REMOVE OVERLAP ===== */
    .circle,
    .ring,
    .dot{
        position:relative !important;
        top:auto !important;
        left:auto !important;
        transform:none !important;
    }

    /* ===== SIMPLIFY MOBILE DESIGN ===== */
    .circle{
        width:260px;
        height:260px;
        margin:auto;
    }

    .bowl{
        width:220px;
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
    }

    /* ===== HIDE DOTS IN MOBILE (BEST UI) ===== */
    .dot{
        display:none;
    }

    /* ===== LEAVES FIX ===== */
    .leaf1,
    .leaf2{
        display:none;   /* 🔥 BEST FIX for mobile */
    }

    /* ===== BLUR REMOVE ===== */
    .blur1,
    .blur2{
        display:none;
    }
}

/* ===== HAMBURGER ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* ===== OVERLAY ===== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    z-index: 9999;   /* 🔥 below menu */
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
#mobileMenu.show {
    right: 0;
}

/* ===== MOBILE MENU PANEL ===== */
#mobileMenu {
    position: fixed;
    top: 0;
    right: -100%;

    width: 75%;
    max-width: 320px;
    height: 100%;

    /* 🔥 GLASS EFFECT */
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    display: flex;
    flex-direction: column;

    padding: 25px 20px;

    transition: 0.4s ease;
    z-index: 10000;

    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;

    /* 🔥 subtle border */
    border-left: 1px solid rgba(255,255,255,0.2);
}

/* HEADER */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    color: white;
    font-size: 18px;
    margin-bottom: 20px;

    z-index: 10001;   /* 🔥 important */
    position: relative;
}

.close-btn {
    font-size: 24px;
    color: #ffffff !important;   /* 🔥 visible */
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

#mobileMenu a:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

/* LINKS */
#mobileMenu a {
    color: #ffffff !important;   /* 🔥 force visible */
    font-size: 17px;
    margin: 12px 0;
    text-decoration: none;
    z-index: 10001;             /* 🔥 above blur */
    position: relative;
}

/* ANIMATION */
#mobileMenu.show a {
    opacity: 1;
    transform: translateX(0);
    transition: 0.4s;
}

/* ===== MOBILE ===== */
@media (max-width: 768px){

    .menu-toggle {
        display: block;
    }

    .desktop-menu {
        display: none;
    }

    .logo {
        margin-left: 0;
    }
}

.story {
    padding: 80px 0;
}

.story-box {
    width: 90%;
    margin: auto;
    background: #e8f5e9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.story-img {
    width: 420px;
    z-index: 2;
}

/* MOBILE FIX */
@media(max-width: 768px) {
    .story-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .story-img {
        width: 100%;
        margin-top: 20px;
    }
}