/* ===========================
   GLOBAL CSS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===========================
   HEADER
=========================== */

header{
    width:100%;
    height:120px;
    flex-direction:column;
    transition:height .35s ease;
    background:#fff;
    display:flex;
    overflow:hidden;
    align-items:center;
    padding:0 40px;
    position:sticky;
    top:0;
    z-index:999;
    border:none;
    outline:none;
    box-sizing:border-box;
}
.header-top{

    width:100%;

    height:120px;

    display:flex;
    justify-content:space-between;

    align-items:center;
    flex-shrink:0;

}

.header-left{
    display:flex;
    align-items:center;
    gap:5px;
    margin-left:100px;
}

.header-right{
    display:flex;
    align-items:center;
    justify-content:space-evenly;
    flex:1;
    margin-left:180px;    /* 180px ki jagah 60px */
}

.logo1 img{
    width:130px;
    height:130px;
    object-fit:contain;
    display:block;
}

.logo2 img{
    width:240px;
    height:auto;
    display:block;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;          /* Pehle 45px tha */
    margin:0;
    padding:0;
}

nav ul li a{
    display:inline-block;
    text-decoration:none;
    color:#8B0000;
    font-size:16px;
    font-weight:700;
    transition:all .35s ease;
    transform-style:preserve-3d;
}

nav ul li a:hover{
    color:#2E7D32;

    transform:translateY(-6px) scale(1.15);

    text-shadow:
        0 3px 8px rgba(0,0,0,.25);

    filter:drop-shadow(0 10px 20px rgba(46,125,50,.35));
}

nav ul li a.active{
    padding-bottom:5px;
}

.order-btn{
    margin-left:10px;
    background:#8B0000;
    color:#fff;
    padding:12px 18px;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    white-space:nowrap;

    transition:all .35s ease;
    transform-style:preserve-3d;
}

.order-btn:hover{
    background:#2E7D32;

    transform:translateY(-6px) scale(1.10);

    box-shadow:
        0 10px 20px rgba(0,0,0,.25),
        0 18px 35px rgba(46,125,50,.35);
}
/* ===========================
   MAIN BACKGROUND
=========================== */

.main-content{
    width:100%;
    min-height:100vh;
    background-image:url("../images/back ground.png");
    background-repeat:repeat;
    background-size:cover;
    background-position:center;
}
/* ===================================
   FOOTER
=================================== */

.footer{
    width:100%;
    background:#ffffff;
    padding:15px 60px;
    box-sizing:border-box;
}

.footer-container{
    display:grid;
    grid-template-columns:2.5fr 1fr 1.2fr 1.3fr;
    column-gap:20px;
    align-items:flex-start;
    padding:0 40px;
}
/* ==========================
   Footer Divider
========================== */

.company{
    border-right:2px solid #e5e5e5;
    padding-right:30px;
}

.quick-links{
    border-right:2px solid #e5e5e5;
    padding-left:10px;
    padding-right:30px;
}

.contact-us{
    padding-left:35px;
    padding-right:20px;
    margin-left:-30px;
    scroll-margin-top:130px;
}

.whatsapp{
    border-left:2px solid #e5e5e5;
    padding-left:30px;
    margin-left:35px;
}

.footer-box{
    padding-right:10px;
    min-width:0;
}

.footer-box h3{
    color:#8B0000;
    margin-bottom:20px;
    font-size:22px;
}

.footer-box p{
    color:#555;
    line-height:28px;
}

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    display:inline-block;
    text-decoration:none;
    color:#555;
    font-weight:500;
    transition:all .35s ease;
    cursor:pointer;
    transform-origin:center;
}

.footer-box ul li a:hover{
    color:#2E7D32;

    transform:translateY(-6px) scale(1.15);

    text-shadow:
        0 4px 10px rgba(0,0,0,.25);

    filter:drop-shadow(0 10px 18px rgba(46,125,50,.35));
}

.company-content{
    display:flex;
    align-items:flex-start;
    gap:20px;
}
.footer-logo{
    width:200px;
    height:auto;
    flex-shrink:0;
}
.company-details{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}
.company-details p{
    margin:0;
    color:#555;
    font-size:17px;
    line-height:30px;
}
.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}
.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#8B0000;
    color:#fff;
    text-decoration:none;
    border-radius:50%;
    font-size:18px;

    cursor:pointer;
    transition:all .35s ease;
}
.social-icons a:hover{
    background:linear-gradient(145deg,#2E7D32,#25D366);

    transform:translateY(-8px) scale(1.18);

    box-shadow:
        0 10px 20px rgba(0,0,0,.25),
        0 18px 35px rgba(37,211,102,.40);

    color:#fff;
}
.phone-icon{
    color:#25D366;      /* Green */
}

.email-icon{
    color:#E53935;      /* Red */
}

.globe-icon{
    color:#1E88E5;      /* Blue */
}

.location-icon{
    color:#FB8C00;      /* Orange */
}
.contact-item{
    display:flex;
    align-items:center;
    margin-bottom:14px;
}

.contact-item i{
    width:28px;          /* Icon ke liye fixed space */
    font-size:18px;
    margin-right:10px;   /* Icon aur text ke beech gap */
    text-align:center;
    flex-shrink:0;
}

.contact-item:hover{
    transform:translateY(-6px);
}

.contact-item:hover i{
    transform:scale(1.20);

    filter:drop-shadow(0 8px 16px rgba(0,0,0,.25));
}

.contact-item:hover span{
    color:#2E7D32;

    transform:scale(1.05);

    text-shadow:0 3px 8px rgba(46,125,50,.25);
}

.company-info p{
    margin:0;
    line-height:30px;
    color:#555;
    font-size:18px;
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;                     /* Icon aur text ke beech gap */

    width:100%;
    max-width:180px;

    background:#25D366;
    color:#fff;
    padding:12px 18px;
    text-decoration:none;
    border-radius:8px;
    margin-top:15px;

    transition:all .35s ease;
    cursor:pointer;
}
.whatsapp-btn:hover{
    transform:translateY(-6px) scale(1.08);

    box-shadow:
        0 10px 20px rgba(0,0,0,.25),
        0 18px 35px rgba(37,211,102,.40);

    background:linear-gradient(145deg,#2E7D32,#25D366);
}
.whatsapp-number{
    margin-top:15px;
    text-align:center;
    color:#8B0000 !important;
    font-size:26px;
    font-weight:600;
    width:100%;
    max-width:180px;

    display:inline-block;
    transition:all .35s ease;
    cursor:pointer;
}
.whatsapp-number:hover{
    color:#25D366 !important;

    transform:translateY(-6px) scale(1.10);

    text-shadow:
        0 4px 10px rgba(37,211,102,.35);

    filter:drop-shadow(0 8px 16px rgba(37,211,102,.35));
}
/* ===========================
   COPYRIGHT
=========================== */

.copyright{
    width:100%;
    background:#8B0000;
    color:#fff;
    text-align:center;
    padding:18px 0;
}

.copyright p{
    color:#fff;
    font-size:15px;
    font-weight:500;
    margin:0;
}

/* ===========================
   HERO SECTION
=========================== */

.hero{
    width:100%;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
/* ===========================
   PRODUCTS SECTION
=========================== */

.products{
    width:100%;
    padding:70px 60px;
    text-align:center;
    scroll-margin-top:130px;
}

.section-title h2{
    font-size:60px;
    color:#8B0000;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    font-size:22px;
    color:#555;
    margin-bottom:35px;
}

.product-filter{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:50px;
}

.product-filter button{
    padding:14px 40px;
    border:2px solid #2E7D32;
    border-radius:40px;
    background:#fff;
    color:#2E7D32;
    font-size:18px;
    font-weight:600;
    cursor:pointer;

    transition:all .35s ease;
    transform-style:preserve-3d;
}

.product-filter button.active{
    background:linear-gradient(145deg,#2E7D32,#1B5E20);
    color:#fff;
    border-color:#2E7D32;

    box-shadow:
        0 8px 18px rgba(46,125,50,.30);
}

.product-filter button:hover{
    background:linear-gradient(145deg,#2E7D32,#1B5E20);
    color:#fff;
    border-color:#2E7D32;

    transform:translateY(-6px) scale(1.10);

    box-shadow:
        0 10px 20px rgba(0,0,0,.25),
        0 18px 35px rgba(46,125,50,.35);
}
/* ===========================
   PRODUCT GRID
=========================== */

.product-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card{
    width:calc((100% - 100px) / 6);
    min-width:190px;

    background:#fff;
    border:1px solid #e7d9b5;
    border-radius:14px;
    padding:12px;
    text-align:center;

    transition:all .35s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

    cursor:pointer;
}

.product-card:hover{
    transform:perspective(1000px) rotateX(3deg) scale(1.04) translateY(-10px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.18),
        0 25px 45px rgba(139,0,0,.20);

    border-color:#D4AF37;
}

.product-card img{
    width:100%;
    border-radius:10px;
    transition:transform .35s ease;
}
.product-card:hover img{
    transform:scale(1.05);
}

.product-card h3{
    margin:12px 0 8px;
    color:#8B0000;
    font-size:22px;
}

.product-card p{
    color:#555;
    line-height:28px;
    margin-bottom:20px;
}

.product-btn{
    display:inline-block;
    background:#1B5E20;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:8px;
    font-weight:600;
}

.product-btn:hover{
    background:#2E7D32;
}
/* ==================================
   WHY CHOOSE SSG FOODS
================================== */

.why-choose{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    width:100%;
    margin-top:60px;
    padding:40px 20px;
    border-bottom:3px solid #e9e6dc!important;
}

.feature-box{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:10px 20px;
    border-right:none;
}

.last-box{
    border-right:none;
}

.feature-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;
    width:100%;
}

.feature-icon{
    width:75px;
    height:75px;
    min-width:75px;

    background:#8B0000;
    color:#FFD54F;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:60px;

    margin:0 auto;

    cursor:pointer;
    transition:all .35s ease;
}
.feature-icon:hover{
    transform:scale(1.15) translateY(-6px);
    box-shadow:
        0 10px 20px rgba(0,0,0,.25),
        0 18px 35px rgba(139,0,0,.35);

    background:linear-gradient(
        145deg,
        #b30000,
        #8B0000
    );
}
.feature-icon i{
    transition:transform .35s ease;
}

.feature-icon:hover i{
    transform:scale(1.1);
}

.feature-text{
    width:100%;
    margin-top:18px;

    display:flex;
    flex-direction:column;
    align-items:center;
}
.feature-text h3{

    color:#8B0000;

    font-size:16px;

    font-weight:700;

    text-align:center;

    margin:0 0 12px;

    white-space:nowrap;

}

.feature-text p{

    font-size:15px;

    text-align:center;

    white-space:nowrap;

    width:100%;

    margin:0;

}
    @media(max-width:767px){

    .why-choose{
        display:block;
        padding:20px;
    }

    .feature-box{
        border-right:none;
        border-bottom:1px solid #e6dcc5;
        padding:18px 0;
    }

    .feature-content{
        flex-direction:row;
        align-items:center;
        text-align:left;
        gap:18px;
    }

    .feature-text{
        margin-top:0;
    }

    .feature-text p{
        white-space:normal;
        font-size:15px;
        line-height:24px;
    }

    .feature-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:28px;
    }

    .last-box{
        border-bottom:none;
    }
}
/*==========================
        ABOUT US
===========================*/

.about-us{
    width:100%;
    padding:40px 60px 20px;
    scroll-margin-top:130px;
}

.about-container{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:70px;

    margin-top:40px;

}

/*==========================
      LEFT SIDE (55%)
===========================*/

.about-content{

    width:55%;

    flex:0 0 55%;

}

.about-title{

    width:100%;

    text-align:center;

    margin-bottom:20px;

}

.about-title h2{

    font-size:60px;

    color:#8B0000;

    margin-bottom:10px;

    font-weight:700;

}

.about-title p{

    font-size:24px;

    color:#666;

    font-weight:500;

}

.about-content h3{

    text-align:left;

    font-size:34px;

    color:#8B0000;

    margin-bottom:18px;

}

.about-description{

    margin-bottom:25px;

    line-height:32px;

    text-align:justify;

}

.about-box{

    margin-bottom:25px;

}

.about-box h4{

    text-align:left;

    color:#8B0000;

    font-size:28px;

    margin-bottom:10px;

}

.about-box p{

    text-align:justify;

    line-height:30px;

}

/*==========================
      FEATURES
===========================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:45px;

}

.about-feature-item{

    display:flex;

    align-items:center;

    justify-content:flex-start;

    gap:20px;

    padding:18px 22px;

    background:#fff;

    border:2px solid #ebe9ce;

    border-radius:18px;

    box-shadow:0 8px 18px rgba(0,0,0,.08);

    min-height:120px;

}

.feature-icon{

    width:80px;

    height:80px;

    min-width:80px;

    border-radius:50%;

    background:#8B0000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#FFD54F;

}

.about-feature-icon i{

    font-size:28px;

    color:#FFD54F;

}

.about-feature-text{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    font-size:18px;

    font-weight:600;

    color:#8B0000;

    line-height:1.4;
    margin-top:15px;

}

/*==========================
      RIGHT SIDE (45%)
===========================*/

.about-image{

    width:45%;

    flex:0 0 45%;

    display:flex;

    justify-content:center;

    align-items:flex-start;

}

.about-image img{

    width:100%;

    max-width:520px;

    height:auto;

    display:block;

    border-radius:20px;

    box-shadow:0 18px 40px rgba(0,0,0,.20);

}

html{
    scroll-behavior:smooth;
}


/*==============================
      ORDER ONLINE
===============================*/

.mega-order-menu{

    position:absolute;

    top:120px;

    left:0;

    width:100%;

    height:180px;

    background:#fff;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.main-header{

    height:120px;

    transition:.3s;

    overflow:visible;

}

.mega-order-menu h3{

    text-align:center;

    color:#8B0000;

    margin-top:10px;

    margin-bottom:20px;

    font-size:28px;

}
.order-grid{

    display:flex;

    justify-content:center;

    gap:30px;

}
.order-card{

    width:90px;

    height:90px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:2px solid #ececec;

    border-radius:18px;

    transition:.35s;

}
.order-card img{

    width:60px;

}

/*====================================
        BULK ORDER FORM
====================================*/

.bulk-order-section{

    position: fixed;
    top: 140px;
    right: 40px;
    width: 480px;
    max-height: 80vh;

    overflow-y: auto;
    overflow-x: hidden;   /* ADD THIS */

    background: #fff;
    display: none;
    z-index: 99999;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);

}

.bulk-container{

    width:100%;
    padding:30px;
    margin:0;
    box-sizing:border-box;

    box-shadow:none;
    border-radius:18px;

}

.bulk-container h2{

    text-align:center;

    color:#8B0000;

    font-size:36px;

    margin-bottom:12px;

}

.bulk-container p{

    text-align:center;

    color:#666;

    margin-bottom:35px;

}

.form-row{

    display:flex;

    gap:20px;

    margin-bottom:20px;

}

.form-group{

    flex:1;

    display:flex;

    flex-direction:column;

}

.form-group label{

    font-weight:600;

    margin-bottom:8px;

    color:#444;

}

.form-group input,
.form-group textarea{

    width:100%;

    box-sizing:border-box;

    padding:14px;

    border:1px solid #ccc;

    border-radius:10px;

    font-size:15px;

    outline:none;

}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#2E7D32;

}

.checkbox-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:12px;

    margin-top:10px;

}

.checkbox-grid label{

    font-weight:500;

}

.submit-btn{

    margin-top:25px;

    width:100%;

    padding:16px;

    border:none;

    border-radius:10px;

    background:#8B0000;

    color:#fff;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.submit-btn:hover{

    background:#2E7D32;

}

@media(max-width:768px){

    .form-row{

        flex-direction:column;

    }

    .checkbox-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*=========================
      CLOSE BUTTON
=========================*/

.close-popup{

    position:absolute;

    top:18px;

    right:18px;

    width:38px;

    height:38px;

    border:none;

    border-radius:50%;

    background:#8B0000;

    color:#fff;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

.close-popup:hover{

    background:#2E7D32;

    transform:rotate(90deg);

}

.bulk-subtitle{

    text-align:center;

    color:#666;

    font-size:15px;

    line-height:26px;

    margin-bottom:30px;

}

/*=========================
    SUCCESS POPUP
=========================*/

.success-popup{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.success-content{

    width:420px;

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.success-content i{

    font-size:70px;

    color:#2E7D32;

    margin-bottom:18px;

}

.success-content h2{

    color:#8B0000;

    margin-bottom:15px;

}

.success-content p{

    color:#555;

    line-height:28px;

}

.success-content button{

    margin-top:25px;

    background:#8B0000;

    color:#fff;

    border:none;

    padding:12px 30px;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;

}

.success-content button:hover{

    background:#2E7D32;

}

/* ====================================
      WHATSAPP BUTTON
==================================== */

.whatsapp-continue-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:100%;

    margin:20px 0;

    padding:14px;

    background:#25D366;

    color:#ffffff;

    text-decoration:none;

    border-radius:8px;

    font-size:17px;

    font-weight:600;

    transition:.3s;

    box-sizing:border-box;

}

.whatsapp-continue-btn:hover{

    background:#128C7E;

}

.whatsapp-continue-btn i{

    font-size:22px;

}