
html {
    scroll-behavior: smooth; /* Isse slide karke niche jayega, jhatke se nahi */
}

/* Offset fix: Taaki header ke niche na dabe section */
#site-footer {
    scroll-margin-top: 100px; 
}
/* --- GLOBAL RESET & FONTS --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background: #f8f9fa; }

/* --- 1. TOP BAR --- */
.top-bar { background: #111; color: #bbb; display: flex; justify-content: space-between; padding: 10px 5%; font-size: 13px; }
.top-bar a { color: #bbb; text-decoration: none; margin-left: 15px; transition: 0.3s; }
.top-bar a:hover { color: #fa9112; }

/* --- 2. MAIN HEADER --- */
.main-header { background: #fd8f08; padding: 20px 5%; display: flex; align-items: center; justify-content: space-between; position: relative; }
/* --- BRAND LOGO ANIMATION --- */
.logo h1 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    
    /* Chrome, Safari, Edge ke liye updated gradient */
    background: linear-gradient(90deg, #111 0%, #666 50%, #111 100%);
    background-size: 200% auto;
    
    /* Yeh text ke andar color bharta hai */
    background-clip: text;
    -webkit-background-clip: text;
    
    /* Text ka asli color transparent hona chahiye taaki peeche ka gradient dikhe */
    color: transparent;
    -webkit-text-fill-color: transparent;
    
    animation: shimmer 3s linear infinite;
    cursor: pointer;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Active Glow on Hover */
.logo:hover h1 {
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    transform: scale(1.02);
    transition: 0.3s ease;
}

/* Tagline Animation */
.logo .tagline {
    font-size: 11px;
    letter-spacing: 3px;
    color: #333;
    font-weight: 700;
    display: block;
    text-align: center;
    opacity: 0.8;
    position: relative;
}

/* Tagline ke niche ek choti line jo expand hoti hai */
.logo::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #111;
    margin: 2px auto 0;
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.search-container { position: relative; width: 40%; }
.search-bar { display: flex; width: 100%; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.search-bar input { width: 100%; padding: 12px 15px; border: none; outline: none; border-radius: 4px 0 0 4px; }

.contact-info { display: flex; align-items: center; color: #111; }
.contact-info i { font-size: 30px; margin-right: 10px; }
.contact-info div { display: flex; flex-direction: column; }
.contact-info strong { font-size: 16px; letter-spacing: 0.5px; }

/* --- 3. NAVBAR --- */
/* --- 3. NAVBAR (Dark Blue Version) --- */
.navbar {
    background: #1d2231; /* 🔥 Dark Navy Blue */
    padding: 0 5%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: sticky; /* Taaki scroll karne par menu upar chipka rahe */
    top: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Menu items center mein rahenge */
    padding: 0;
    margin: 0;
}

.navbar li a {
    display: block;
    padding: 20px 25px;
    text-decoration: none;
    color: #ffffff; /* ⚪ White Text */
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

/* Hover Effect */
.navbar li a:hover {
    color: #fd8f08; /* 🟡 Quickrati Gold on Hover */
    background: rgba(255, 255, 255, 0.05); /* Halka sa highlight */
}

/* Jo page khula hai uska link yellow rahega */
.navbar li a.active-link {
    color: #fd8f08;
    border-bottom: 3px solid #fd8f08;
}

/* --- MOBILE RESPONSIVE NAVBAR --- */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column; /* Mobile pe ek ke niche ek */
        text-align: center;
    }
    .navbar li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* --- BUTTON STYLES --- */
button, .search-bar button, .cat-btn, .sub-btn, .footer-form button, .btn-outline {
    background-color: #111; 
    color: white;
    border: 1px solid #111;
    padding: 10px 25px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease-in-out;
    border-radius: 4px; 
}
button::before, .search-bar button::before, .cat-btn::before, .sub-btn::before, .footer-form button::before, .btn-outline::before {
    content: ""; position: absolute; top: 100%; left: 0; width: 100%; height: 100%;
    background-color: #fd8f08; transition: top 0.4s ease-in-out; z-index: -1;
}
button:hover::before, .cat-btn:hover::before, .sub-btn:hover::before, .btn-outline:hover::before { top: 0; }
button:hover, .cat-btn:hover, .sub-btn:hover, .btn-outline:hover { color: #111; border-color: #fd8f08; }

/* --- 4. HERO SLIDER --- */
.hero-slider { position: relative; width: 100%; margin-bottom: 20px; background: #eee; }
.slider-container { max-width: 100%; position: relative; margin: auto; overflow: hidden; }

/* Images */
.slide { display: none; }
.slide img { width: 100%; height: 600px; object-fit: cover; } /* Updated Height */

/* Fading Animation */
.fade { animation-name: fade; animation-duration: 1.5s; }
@keyframes fade { from {opacity: 0.4} to {opacity: 1} }

/* Buttons (Arrows) */
.prev, .next {
    cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -22px;
    color: white; font-weight: bold; font-size: 30px; transition: 0.6s ease; border-radius: 0 3px 3px 0;
    user-select: none; background-color: rgba(0,0,0,0.3); z-index: 100;
}
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: #fd8f08; color: black; }

/* Dots */
.dots-container { text-align: center; position: absolute; bottom: 20px; width: 100%; z-index: 99; }
.dot {
    cursor: pointer; height: 15px; width: 15px; margin: 0 5px; background-color: #fff;
    border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.active, .dot:hover { background-color: #fd8f08; }

/* --- 5. CATEGORY SECTION --- */
.category-buttons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 15px; }
.cat-btn { border-radius: 30px; background: white; color: #111; border: 1px solid #ddd; }
.cat-btn.active { background: #fd8f08; color: #111; border-color: #fd8f08; }

.sub-category-buttons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; min-height: 20px; margin-top: 10px;}
.sub-btn { font-size: 12px; padding: 8px 20px; border-radius: 20px; background: #e9ecef; color: #555; border: 1px solid #ddd; }
.sub-btn.active { background: #333; color: #fd8f08; border-color: #333; }

/* --- 6. INFO TRUST BADGES --- */
.info-section {
    background-color: #1d2231; padding: 40px 0; margin-top: -5px; color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); position: relative; z-index: 2;
}
.info-container {
    max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around;
    align-items: center; flex-wrap: wrap; gap: 20px;
}
.info-item { display: flex; align-items: center; gap: 15px; padding: 10px 20px; transition: transform 0.3s ease; }
.info-item:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.05); border-radius: 8px; }
.info-item i { font-size: 32px; color: #fd8f08; }
.info-text h3 { font-size: 16px; font-weight: 700; letter-spacing: 1px; margin-bottom: 3px; color: #fff; }
.info-text p { font-size: 13px; color: #ccc; margin: 0; }

/* --- 7. PRODUCT GRID --- */
.grid-container { 
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; 
    padding: 20px 5%; max-width: 1600px; margin: auto; 
}
.card { 
    background: white; border: none; transition: 0.3s; border-radius: 0; 
    overflow: hidden; position: relative; display: flex; flex-direction: column;
}
.card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.1); transform: translateY(-5px); }
.card-img-wrapper { position: relative; width: 100%; height: 280px; background: #f9f9f9; overflow: hidden; }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover img { transform: scale(1.08); }
.wishlist-icon {
    position: absolute; top: 10px; right: 10px; background: white; width: 35px; height: 35px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); cursor: pointer; color: #888; transition: 0.3s; z-index: 2;
}
.wishlist-icon:hover { color: red; }
.card-info { padding: 15px; text-align: left; flex-grow: 1; display: flex; flex-direction: column; }
.category-tag { font-size: 11px; color: #999; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 0.5px; }
.card-info h3 { font-size: 15px; margin: 5px 0; color: #333; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rating { color: #fd8f08; font-size: 12px; margin-bottom: 8px; }
.price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price { color: #333; font-weight: 700; font-size: 16px; margin: 0; }
.btn-order { 
    background: transparent; color: #333; border: 1px solid #333; padding: 8px 15px; 
    font-size: 12px; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: 0.3s; border-radius: 0; 
}
.btn-order:hover { background: #333; color: white; }
.divider-small { width: 50px; height: 3px; background: #fd8f08; margin: 10px auto 30px; }
.btn-outline { background: white; border: 2px solid #333; color: #333; padding: 12px 30px; }

/* --- 8. OFFER BANNER --- */
.offer-banner {
    display: flex; align-items: center; justify-content: space-between;
    background: #111; color: white; margin: 50px auto; max-width: 1400px;
    border-radius: 0; overflow: hidden; padding: 0;
}
.offer-content { padding: 60px; width: 50%; }
.offer-tag {
    background: #CC0C39; color: white; padding: 5px 15px; font-size: 12px; font-weight: bold;
    border-radius: 20px; letter-spacing: 1px; display: inline-block; margin-bottom: 15px;
}
.offer-content h2 { font-size: 42px; font-weight: 800; margin-bottom: 15px; line-height: 1.2; text-transform: uppercase; }
.offer-content p { color: #bbb; font-size: 16px; margin-bottom: 30px; line-height: 1.6; }
.timer { display: flex; gap: 15px; margin-bottom: 35px; }
.time-box {
    background: #222; width: 70px; height: 70px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; border: 1px solid #333; font-size: 24px; font-weight: bold; color: #fff;
}
.time-box span { font-size: 10px; color: #888; text-transform: uppercase; font-weight: normal; }
.btn-offer {
    background: #fd8f08; color: #111; border: none; padding: 15px 40px; font-size: 14px;
    font-weight: 800; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.btn-offer:hover { background: white; color: #111; transform: translateX(5px); }
.offer-image { width: 50%; height: 450px; position: relative; overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease-in-out, transform 0.5s ease; }
.offer-banner:hover .offer-image img { transform: scale(1.05); }

/* --- 9. BENTO GRID --- */
.bento-section { padding: 60px 5%; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 32px; font-weight: 800; color: #111; letter-spacing: 2px; }
.section-header p { color: #666; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 250px); gap: 15px; }
.bento-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bento-item:hover img { transform: scale(1.1); }
.bento-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white; transform: translateY(10px); transition: 0.3s;
}
.bento-item:hover .bento-overlay { transform: translateY(0); }
.bento-overlay h3 { font-size: 18px; font-weight: 600; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bento-overlay span { font-size: 12px; color: #fd8f08; text-transform: uppercase; }
.item-large { grid-column: 1 / 2; grid-row: 1 / 3; }
.item-wide { grid-column: 2 / 5; grid-row: 1 / 2; }
.item-square:nth-child(3) { grid-column: 2 / 4; grid-row: 2 / 3; } 
.item-square:nth-child(4) { grid-column: 4 / 5; grid-row: 2 / 3; }

/* --- 10. MARQUEE --- */
.marquee-strip { background: #111; color: #fd8f08; padding: 15px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; margin-top: 40px; }
.marquee-content { display: inline-block; animation: marquee 20s linear infinite; }
.marquee-content span { margin: 0 30px; font-weight: 700; font-size: 14px; letter-spacing: 2px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- 11. PARALLAX --- */
.parallax-section {
    background-image: url('https://images.unsplash.com/photo-1605218427368-2c2196e382a1?q=80&w=1600&auto=format&fit=crop');
    background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover;
    position: relative; height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}
.parallax-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center;
}
.parallax-content { max-width: 800px; padding: 20px; z-index: 2; }
.story-tag { color: #fd8f08; letter-spacing: 3px; font-size: 14px; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 15px; }
.parallax-content h2 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: #fff; }
.parallax-content p { font-size: 18px; line-height: 1.6; color: #ddd; margin-bottom: 40px; }
.stats-row { display: flex; justify-content: center; gap: 50px; margin-bottom: 40px; border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); padding: 20px 0; }
.stat-box h3 { font-size: 32px; color: #fd8f08; margin: 0; }
.stat-box span { font-size: 12px; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }
.btn-story { background: transparent; border: 2px solid #fff; color: #fff; padding: 12px 35px; font-size: 14px; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: 0.3s; }
.btn-story:hover { background: #fff; color: #111; }

/* --- 12. FAQ --- */
.faq-section { padding: 80px 5%; background: #f8f9fa; }
.faq-wrapper { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.faq-info .tag { color: #fd8f08; font-weight: 700; letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; display: block; }
.faq-info h2 { font-size: 48px; font-weight: 800; color: #111; line-height: 1.1; margin-bottom: 20px; }
.faq-info p { color: #666; font-size: 18px; line-height: 1.6; margin-bottom: 40px; }
.support-box {
    background: #fff; padding: 20px; border-radius: 12px; display: flex; align-items: center; gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; cursor: pointer; transition: 0.3s; width: fit-content;
}
.support-box:hover { transform: translateY(-5px); border-color: #25D366; }
.support-box i { font-size: 30px; color: #25D366; }
.support-box span { display: block; font-size: 13px; color: #888; }
.support-box strong { font-size: 15px; color: #111; }
.faq-list-side { display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: #fff; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); overflow: hidden; transition: 0.3s; border: 1px solid transparent; }
.faq-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.faq-item input[type="checkbox"] { display: none; }
.faq-label { display: flex; justify-content: space-between; align-items: center; padding: 25px 30px; cursor: pointer; font-size: 18px; font-weight: 600; color: #222; transition: 0.3s; }
.faq-label i { width: 35px; height: 35px; background: #f1f1f1; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #555; transition: 0.3s; }
.faq-content { max-height: 0; overflow: hidden; transition: all 0.4s ease; padding: 0 30px; color: #555; font-size: 16px; line-height: 1.8; opacity: 0; }
.faq-item input:checked ~ .faq-content { max-height: 300px; padding-bottom: 30px; opacity: 1; }
.faq-item input:checked ~ .faq-label { color: #d4af37; }
.faq-item input:checked ~ .faq-label i { background: #d4af37; color: #fff; transform: rotate(45deg); }
.faq-item:has(input:checked) { border-color: #d4af37; }

/* --- 13. FOOTER --- */
.site-footer { background-color: #0f0f0f; color: #bbb; padding: 70px 0 0; font-size: 14px; margin-top: 0; }
.footer-content { max-width: 1300px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { color: #fff; font-size: 28px; margin-bottom: 20px; letter-spacing: 1px; }
.brand-col p { line-height: 1.6; margin-bottom: 25px; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; background: #222; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; font-size: 18px; text-decoration: none; }
.social-links a:hover { background: #fd8f08; color: #000; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 25px; letter-spacing: 1px; position: relative; text-transform: uppercase; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background: #fd8f08; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #bbb; transition: 0.3s; display: inline-block; text-decoration: none; }
.footer-col ul li a:hover { color: #fd8f08; transform: translateX(5px); }
.input-group { display: flex; background: #222; border-radius: 4px; padding: 5px; border: 1px solid #333; }
.input-group input { background: transparent; border: none; color: #fff; padding: 10px; width: 100%; outline: none; }
.input-group button { background: #fd8f08; border: none; color: #000; padding: 0 20px; cursor: pointer; border-radius: 4px; }
.footer-bottom { background: #050505; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #222; }
.payment-icons { display: flex; gap: 15px; font-size: 24px; color: #555; }

/* --- RESPONSIVE --- */
@media (max-width: 1400px) { .grid-container { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1100px) { .grid-container { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
    .offer-banner { flex-direction: column-reverse; margin: 20px; }
    .offer-content { width: 100%; padding: 40px 20px; text-align: center; }
    .offer-image { width: 100%; height: 250px; }
    .offer-content h2 { font-size: 28px; }
    .timer { justify-content: center; }
    .bento-grid { display: flex; flex-direction: column; gap: 15px; }
    .bento-item { height: 250px; width: 100%; }
    .faq-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .faq-info h2 { font-size: 32px; }
    .faq-label { padding: 20px; font-size: 16px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
@media (max-width: 768px) {
    .slide img { height: 350px; } /* Mobile Banner Height */
    .prev, .next { font-size: 20px; padding: 10px; }
    .main-header { flex-direction: column; gap: 15px; text-align: center; }
    .search-bar { width: 100%; }
    .navbar ul { flex-wrap: wrap; justify-content: center; }
    .info-container { flex-direction: column; align-items: flex-start; padding: 0 20px; }
    .info-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 15px 0; }
    .info-item:last-child { border-bottom: none; }
    .grid-container { grid-template-columns: repeat(2, 1fr); gap: 10px; } 
    .card-img-wrapper { height: 180px; }
    .parallax-section { background-attachment: scroll; height: auto; padding: 60px 0; }
    .parallax-content h2 { font-size: 32px; }
    .stats-row { flex-direction: column; gap: 20px; border: none; }
}
@media (max-width: 480px) { .grid-container { grid-template-columns: repeat(1, 1fr); } }

/* --- SEARCH SUGGESTIONS --- */
.suggestions-list { position: absolute; top: 100%; left: 0; width: 100%; background: white; border: 1px solid #eee; z-index: 100; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.suggestion-item { padding: 12px; border-bottom: 1px solid #f9f9f9; cursor: pointer; color: #555; font-size: 14px; transition: 0.2s; }
.suggestion-item:hover { background: #fffdf5; color: #111; padding-left: 18px; }

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    /* 1. Header ko neat banayein */
    .main-header {
        flex-direction: column !important;
        padding: 15px 10px !important;
        gap: 15px !important;
    }

    /* 2. Logo ka size thoda chota karein taaki ek line me aaye */
    .logo h1 {
        font-size: 26px !important;
        letter-spacing: 0px !important;
    }

    /* 3. Search Bar ko fix karein (Jo abhi overlap ho raha hai) */
    .search-container {
        width: 90% !important;
    }

    .search-bar {
        display: flex !important;
        width: 100% !important;
    }

    .search-bar input {
        flex: 1; /* Pura space lega */
        padding: 10px !important;
        font-size: 14px;
    }

    .search-bar button {
        padding: 10px 15px !important;
        white-space: nowrap; /* Text break nahi hoga */
    }

    /* 4. Contact Info (Call Us) ko center karein */
    .contact-info {
        justify-content: center;
        margin-top: 5px;
    }
    
    .contact-info i {
        font-size: 20px !important;
    }
    
    .contact-info strong {
        font-size: 14px !important;
    }

    /* 5. Navbar (Dark Blue Menu) */
    .navbar ul {
        flex-direction: column;
        padding: 0;
    }
    
    .navbar li a {
        padding: 12px !important;
        font-size: 12px !important;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}
/* --- 10. MOBILE RESPONSIVE (ULTIMATE FIX) --- */
@media (max-width: 768px) {
    /* 1. Header & Overlap Fix */
    .main-header { 
        flex-direction: column !important; 
        gap: 15px !important; 
        text-align: center !important; 
        padding: 20px 10px !important; 
    }
    .search-container { width: 95% !important; }
    .logo h1 { font-size: 26px !important; }
    
    /* 2. Navbar Stack */
    .navbar ul { flex-direction: column !important; }
    .navbar li a { 
        padding: 12px !important; 
        border-bottom: 1px solid rgba(255,255,255,0.05) !important; 
        text-align: center !important; 
    }

    /* 3. Slider Height Adjust */
    .slide img { height: 300px !important; }

    /* 4. Grid Container (2 Columns on mobile) */
    .grid-container { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px !important; 
        padding: 20px 10px !important; 
    }
    .card img { height: 160px !important; }

    /* 5. Bento Grid Fix (Cards moving vertical) */
    .bento-grid { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 15px !important; 
    }
    .bento-item { height: 250px !important; width: 100% !important; }

    /* 6. Parallax Section Overlap FIX (The Main Problem) */
    .parallax-section { 
        height: auto !important; 
        min-height: 450px !important;
        padding: 60px 15px !important; 
        background-attachment: scroll !important; /* Mobile pe parallax disable taaki overlap na ho */
    }
    .parallax-overlay { position: relative !important; background: rgba(0, 0, 0, 0.7) !important; }
    .parallax-content h2 { font-size: 24px !important; line-height: 1.3 !important; }
    .stats-row { 
        flex-direction: column !important; 
        gap: 20px !important; 
        border: none !important; 
        margin: 20px 0 !important;
    }
    .stat-box h3 { font-size: 28px !important; }

    /* 7. FAQ Section Fix */
    .faq-wrapper { 
        grid-template-columns: 1fr !important; 
        gap: 30px !important; 
    }
    .faq-info h2 { font-size: 28px !important; margin-bottom: 15px !important; }
    .faq-label { padding: 15px 20px !important; font-size: 16px !important; }

    /* 8. Footer Fix */
    .footer-content { 
        grid-template-columns: 1fr !important; 
        gap: 30px !important; 
        text-align: center !important;
    }
    .footer-col h4::after { left: 50% !important; transform: translateX(-50%) !important; }
    .social-links { justify-content: center !important; }
    .footer-bottom { flex-direction: column !important; gap: 15px !important; }
}

/* 9. Extra Small Screens (Phones) */
@media (max-width: 480px) {
    .grid-container { grid-template-columns: 1fr !important; }
    .logo h1 { font-size: 22px !important; }
}