* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-weight: 600;

}

/* --- Global Resets --- */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #FFAC1C;
    --secondary-color: #C23571;
    --text-dark: #333;
}

nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: white;
}

/* --- Maxnav --- */
.maxnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 5px 5%;
    color: white;
}
.box1, .contact, .email { display: flex; align-items: center; gap: 10px; }
.box1 h2, .box2 h2 { font-size: 14px; margin: 0; }
.divider { width: 1px; height: 20px; background: white; margin: 0 15px; }

.save-btn {
    background: #4CAF50;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}
.save-btn a { color: white; text-decoration: underline; font-weight: bold; }

/* --- Minnav --- */
.minnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    background: white;
}

.logo img { width: 180px; }

.wq {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.wq li {
    position: relative;
    padding: 15px 0;
}

.wq li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

/* --- MEGA MENU & CITIES FIXED (Desktop) --- */
.mega-dropdown { position: static !important; }
.minnav .list .wq li:last-child { position: relative !important; }

.mega-menu, .simple-menu {
    position: absolute;
    margin-top: -10px; 
    top: 100%; 
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 9999;
}

.mega-menu {
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
}

.simple-menu {
    left: 0;
    width: 250px !important;
    padding: 20px !important;
}

/* Hover Bridge */
.mega-menu::before, .simple-menu::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.wq li:hover > .mega-menu,
.wq li:hover > .simple-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0px;
}

/* Mega Menu Internal Layout (Desktop) */
.mega-container { display: flex; justify-content: space-between; gap: 30px; }
.mega-col { flex: 1; }
.col-title { font-size: 17px; margin-bottom: 15px; color: #000; position: relative; padding-bottom: 8px; font-weight: bold; }
.col-title::after { content: ""; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary-color); }
.mega-links { list-style: none; padding: 0; }
.mega-links li { margin-bottom: 8px; padding: 0; }
.mega-links li a { font-weight: 400; color: #666 !important; font-size: 14px; display: block; }
.mega-links li a:hover { color: var(--primary-color) !important; transform: translateX(5px); }

/* Order Button (Desktop Only) */
.order-btn {
    background: #FFAC1C;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
}
.order-btn a { color: white; text-decoration: none; font-weight: bold; }

/* --- RESPONSIVE SETTINGS (MOBILE & TABLET) --- */
.menu-toggle { display: none; font-size: 25px; cursor: pointer; }

@media (max-width: 1024px) {
    /* 1. Navbar CTA (Order Now) Hata diya */
    .minnav .button {
        display: none !important;
    }

    /* 2. Menu Toggle Show */
    .menu-toggle { display: block; order: 2; }
    .minnav .logo { order: 1; }

    /* 3. List Styles */
    .minnav .list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .minnav .list.active { height: auto; padding: 20px 0; }
    .minnav .list .wq { 
        flex-direction: column; 
        padding-left: 20px; 
        gap: 0; 
    }
    .wq li { padding: 10px 0; }

    /* 4. Dropdown "Aik Dosray Kay Nichay" (Stacked) */
    .mega-menu, .simple-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none; /* JS ya Hover se khulega */
        box-shadow: none;
        padding: 15px !important;
        width: 100% !important;
        transform: none !important;
        margin-top: 0 !important;
    }
    
    /* Mobile Hover/Click support */
    .wq li:hover > .mega-menu, 
    .wq li:hover > .simple-menu { 
        display: block; 
    }

    /* Columns ko aik line mein hone ke bajaye vertical kar diya */
    .mega-container { 
        flex-direction: column; 
        gap: 20px; 
    }

    .mega-col {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .maxnav { display: none; }
}




/* Footer Styling */
.main-footer {
    background: #2A2A2A;
    color: white;
    padding: 50px 20px 20px;
    position: relative;
    /* Essential for overall structure */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* Tablet aur mobile pe line break karne ke liye */
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-section {
    width: 20%;
    min-width: 200px;
    /* Sections ko ek had tak chota hone dega phir niche bhej dega */
    margin-bottom: 20px;
}

.footer-section .icons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-section .icons .fa-brands {
    font-size: 20px;
}

.footer-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: white;
}

/* --- Security Section (Modified for Responsiveness) --- */
.security {
    /* Absolute position sirf baray screens (desktop) ke liye media query mein rakhi hai */
    margin-bottom: 20px;
}

.security p {
    margin-bottom: 10px;
}

.security .img {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.security .img img {
    width: 50px;
}

.security2 {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.security2 img {
    width: 80px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #333;
    width: 100%;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* WhatsApp Icon */
.section11 {
    z-index: 999;
    position: fixed;
    left: 20px;
    bottom: 20px;
}

.section11 img {
    width: 55px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Desktop only behavior for Security (Jaise aapne set kiya tha) */
@media (min-width: 1025px) {
    .security {
        position: absolute;
        top: 180px;
        left: 73%;
    }
}

/* Tablet & Mobile Screens */
@media (max-width: 1024px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }

    .footer-section {
        width: 45%;
        /* Aik line mein do boxes */
        min-width: 250px;
    }

    .footer-section p {
        text-align: start;
    }

    .footer-section h2 {
        text-align: start;
    }

    .footer-section ul li {
        text-align: start;
    }

    .footer-section .icons {
        justify-content: center;
        margin-left: 0;
    }

    .security {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .security .img,
    .security2 {
        justify-content: center;
    }
}

/* Small Mobile Screens */
@media (max-width: 600px) {
    .footer-section {
        width: 100%;
        /* Aik line mein sirf aik box */
    }

    .section11 img {
        width: 45px;
        /* Mobile pe WhatsApp icon thora chota */
    }
}





.section1 img{
    margin: 50px auto;
}

.section2{
    width: 65%;
    margin: 20px auto;
}
.section2 p{
    font-weight: 600;
    margin-top: 10px;
}
.section2 h2{
    margin-top: 20px;
    font-weight: bold;
    font-size: 30px;
}
.section2 span h2{
    font-size: 20px;
}
.section2 li::marker{
    color: var(--primary-color);
    font-size: 20px;
}
.section2 li{
    margin-top: 20px;
}
.section2 li span{
    font-weight: bolder;
    font-size: 20px;
}