/* =========================
   GLOBAL CSS
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}
html,body{
    width:100%;
    overflow-x:hidden;
    font-family:Arial, Helvetica, sans-serif;
}

/*--------------------Home -------------------*/
/* =========================
   HERO SECTION
========================= */
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:80px 8%;
    min-height:650px;
    overflow:hidden;
}
.hero-left{
    flex:1;
}
.hero-tag{
    display:inline-block;
    background:#e8ffe8;
    color:#2e7d32;
    padding:10px 20px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}
.hero-left h1{
    font-size:65px;
    line-height:1.2;
    color:#222;
    margin-bottom:20px;
    font-weight:700;
}
.hero-left h1 span{
    color:#4CAF50;
}
.hero-left p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    max-width:600px;
    margin-bottom:30px;
}
.hero-buttons{
    display:flex;
    gap:15px;
}
.btn-shop{
    background:#4CAF50;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}
.btn-shop:hover{
    background:#2e7d32;
}
.btn-about{
    border:2px solid #4CAF50;
    color:#4CAF50;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}
.btn-about:hover{
    background:#4CAF50;
    color:#fff;
}
.hero-right{
    flex:1;
    text-align:center;
}
.hero-right img{
    width:100%;
    max-width:550px;
    height:auto;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:.4s;
}
.navbar ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}
.contact-btn {
    background: #35b58d;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
.contact-btn:hover {
    background: #2aa17b;
    color: #fff !important;
    transform: translateY(-2px);
}
.hero-right img:hover{
    transform:scale(1.03);
}
/* =========================
   FOOTER
========================= */
.footer{
    background:#111827;
    color:#ffffff;
    padding:60px 0 20px;
    margin-top:60px;
}
.footer .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}
.footer-logo img{
    width:250px;
    background:#fff;
    padding:10px;
    border-radius:8px;
}

.footer-contact{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.footer-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    max-width:250px;
}

.footer-item i{
    color:#16a34a;
    font-size:20px;
    margin-top:3px;
}

.footer-item span{
    font-size:15px;
    line-height:1.7;
}

.footer hr{
    border:none;
    border-top:1px solid rgba(255,255,255,0.15);
    margin:30px 0;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    margin:0;
    font-size:14px;
    color:#d1d5db;
}

.footer-bottom strong{
    color:#22c55e;
}
.social-sidebar{
    position: fixed;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    z-index: 9999;
}

.social-sidebar a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 180px;
    height: 55px;
    color: #fff;
    text-decoration: none;
    margin: 2px 0;
    padding-left: 18px;
    transition: all 0.4s ease;
}

.social-sidebar a i{
    width: 35px;
    font-size: 22px;
}

.social-sidebar a:hover{
    transform: translateX(-120px);
}

/* Colors */
.facebook{
    background: #3b5998;
}

.twitter{
    background: #1da1f2;
}

.instagram{
    background: #e4405f;
}

.youtube{
    background: #ff0000;
}
.menu-toggle{
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: #28a745;
    cursor: pointer;
    z-index: 99999;
}

.menu-dropdown{
    position: absolute;
     display:none;
    top: 50px;
    right: 0;
    width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: none;
    z-index: 99999;
}

.menu-dropdown a{
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.menu-dropdown a:hover{
    background: #28a745;
    color: #fff;
}

.menu-toggle:hover .menu-dropdown,
.menu-dropdown:hover{
    display: block;
}
/* Responsive */

@media(max-width:768px){

    .footer-top{
        flex-direction:column;
        text-align:center;
    }

    .footer-contact{
        flex-direction:column;
        align-items:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-item{
        justify-content:center;
    }
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:992px){

    .hero{
        padding:60px 5%;
    }

    .hero-left h1{
        font-size:48px;
    }

    .hero-right img{
        max-width:450px;
    }
}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:768px){

    .hero{
        flex-direction:column-reverse;
        text-align:center;
        padding:50px 20px;
        min-height:auto;
    }

    .hero-left h1{
        font-size:36px;
    }

    .hero-left p{
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-right img{
        max-width:320px;
        margin-bottom:20px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

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

    .hero-tag{
        font-size:13px;
    }

    .btn-shop,
    .btn-about{
        width:100%;
        text-align:center;
    }
}

/* ABOUT */

.about{
    padding:80px 8%;
    background:#f9f9f9;
}

.about-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:42px;
    margin-bottom:20px;
}

.about-text span{
    color:#4CAF50;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:15px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
}

/* PRODUCTS */

.products{
    padding:80px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#333;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h3{
    margin:15px 0;
}

.product-card p{
    color:#4CAF50;
    font-size:22px;
    font-weight:bold;
    margin-bottom:20px;
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        height:400px;
    }

    .hero-content{
        margin-left:20px;
        margin-right:20px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .about-container{
        flex-direction:column;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

}
/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-us{
    padding:80px 8%;
    background:#f8fff8;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    color:#2e7d32;
    margin-bottom:50px;
    font-weight:700;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-box{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    border-top:4px solid #4CAF50;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(76,175,80,0.25);
}

.feature-box i{
    font-size:50px;
    color:#4CAF50;
    margin-bottom:20px;
}

.feature-box h3{
    font-size:24px;
    color:#333;
    margin-bottom:15px;
}

.feature-box p{
    color:#666;
    font-size:16px;
    line-height:1.7;
}
/* ==========================
   SHOP BY CATEGORY SECTION
========================== */

.categories{
    padding:80px 8%;
    background:#f8fff8;
}

.categories h2{
    text-align:center;
    font-size:42px;
    color:#2e7d32;
    margin-bottom:50px;
    font-weight:700;
    position:relative;
}

.categories h2::after{
    content:'';
    width:80px;
    height:4px;
    background:#4CAF50;
    display:block;
    margin:15px auto 0;
    border-radius:10px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.category-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
    cursor:pointer;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(76,175,80,0.25);
}

.category-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.4s;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-card h3{
    text-align:center;
    padding:18px;
    font-size:22px;
    font-weight:600;
    color:#333;
    background:#fff;
}

/* ==========================
   TABLET VIEW
========================== */

@media (max-width: 992px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .categories h2{
        font-size:34px;
    }

}

/* ==========================
   MOBILE VIEW
========================== */

@media (max-width: 768px){
    .categories{
        padding:60px 20px;
    }
    .category-grid{
        grid-template-columns:1fr;
    }
    .categories h2{
        font-size:28px;
        margin-bottom:35px;
    }
    .category-card img{
        height:220px;
    }
    .category-card h3{
        font-size:20px;
    }
}
/* =========================
   TABLET VIEW
========================= */
@media(max-width:992px){
    .features{
        grid-template-columns:repeat(2,1fr);
    }
    .why-us h2{
        font-size:34px;
    }
}
/* =========================
   MOBILE VIEW
========================= */
@media(max-width:768px){
    .features{
        grid-template-columns:1fr;
    }
    .why-us{
        padding:60px 20px;
    }
    .why-us h2{
        font-size:28px;
        margin-bottom:35px;
    }
    .feature-box{
        padding:30px 20px;
    }
    .feature-box i{
        font-size:40px;
    }

    .feature-box h3{
        font-size:20px;
    }

}


/* =========================
   TABLET VIEW
========================= */
@media(max-width:992px){
    .top-header{
        padding:15px 25px;
    }
    .navbar{
        padding:20px 30px;
    }
    .navbar ul{
        gap:20px;
    }
    .navbar ul li a{
        font-size:16px;
    }
    .logo img{
        width:200px;
    }
    .search-box{
        width:300px;
    }
}

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

    .top-header{
        flex-direction:column;
        text-align:center;
        padding:15px;
    }

    .left-menu{
        justify-content:center;
        gap:15px;
    }

    .search-box{
        width:100%;
        order:3;
    }

    .right-menu{
        justify-content:center;
    }

    .navbar{
        flex-direction:column;
        padding:20px;
        gap:20px;
    }

    .logo{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .logo img{
        width:180px;
    }

    .navbar ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .navbar ul li a{
        font-size:16px;
    }
}

/* =========================
   SMALL MOBILE VIEW
========================= */
/* Mobile Responsive */
@media (max-width: 768px){

    .hero{
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-left,
    .hero-right{
        width: 100%;
    }

    .hero h1{
        font-size: 32px;
    }

    .hero p{
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-shop,
    .btn-about{
        width: 180px;
        text-align: center;
    }

    .hero-right img{
        max-width: 320px;
        margin-bottom: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px){

    .hero{
        padding: 30px 15px;
    }

    .hero-tag{
        font-size: 12px;
        padding: 8px 15px;
    }

    .hero h1{
        font-size: 26px;
    }

    .hero p{
        font-size: 14px;
    }

    .btn-shop,
    .btn-about{
        width: 100%;
        padding: 12px;
    }

    .hero-right img{
        max-width: 280px;
    }
}
.download-menu{
    position: relative;
    list-style: none;
}

.download-menu > a{
    display: flex;
    align-items: center;
    gap: 8px;
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.download-menu > a:hover{
    background:#084db5;
}

/* Dropdown */
.download-menu .dropdown-menu{
    position:absolute;
    top:110%;
    left:0;
    min-width:230px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
    z-index:999;
}

.download-menu:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.download-menu .dropdown-menu li{
    list-style:none;
}

.download-menu .dropdown-menu li a{
    display:block;
    padding:12px 18px;
    color:#333;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.download-menu .dropdown-menu li a:hover{
    background:#f5f5f5;
    color:#0d6efd;
}

.download-menu .dropdown-menu i{
    color:red;
    margin-right:8px;
}

/* Mobile */
@media(max-width:991px){

    .download-menu{
        display:none;
    }

}
