/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #2C3E50; /* Deep Blue-Grey */
    --secondary: #D35400; /* Burnt Orange */
    --accent: #E67E22;
    --light: #F8F9FA;
    --dark: #1a252f;
    --text-gray: #636e72;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --whatsapp: #25D366;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f4f6f8;
    color: var(--dark);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* --- ANIMATIONS CLASSES (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.logo i { color: var(--secondary); }
.logo span { color: var(--secondary); }

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links li {
    position: relative;
}

/* FIXED NAV HOVER */
.nav-links li a {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--secondary);
}

/* Underline effect for main links only */
.nav-links > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }

/* --- DROPDOWN MENU STYLE --- */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-radius: 8px;
    padding: 10px 0;
    border-top: 3px solid var(--secondary);
    animation: fadeIn 0.3s ease;
}

.dropdown-menu li { width: 100%; }

.dropdown-menu li a {
    padding: 10px 20px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid #f5f5f5;
    transition: 0.2s;
}

.dropdown-menu li a::after { display: none; } /* No underline for dropdown items */

.dropdown-menu li a:hover {
    background-color: #fff5ec;
    color: var(--secondary);
    padding-left: 25px;
}

.dropdown-menu li:last-child a { border-bottom: none; }

.hamburger { display: none; font-size: 24px; color: var(--primary); }

/* --- MOBILE CLOSE BUTTON & RESPONSIVE --- */
.close-btn {
    display: none;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 30px;
    color: var(--primary);
    cursor: pointer;
    z-index: 1002;
    transition: 0.3s;
}

.close-btn:hover { color: var(--secondary); transform: rotate(90deg); }

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0; /* Full height now */
        left: -100%; 
        width: 100%; 
        height: 100vh;
        background: white; 
        flex-direction: column; 
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px; 
        transition: 0.4s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow-y: auto;
        z-index: 1001;
    }
    .nav-links.active { left: 0; }
    .hamburger { display: block; }
    .close-btn { display: block; }

    /* Mobile Dropdown adjustment */
    .dropdown-menu {
        position: static;
        display: none; /* Hidden by default */
        box-shadow: none;
        background: #f8f9fa;
        width: 90%;
        text-align: center;
        border-top: none;
        margin-top: 10px;
        border-radius: 10px;
    }
    
    /* Class to show dropdown via JS */
    .dropdown-menu.show-mobile {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .dropdown-menu li a { justify-content: center; }
}

/* Desktop Hover only */
@media (min-width: 901px) {
    .nav-links li:hover .dropdown-menu {
        display: block;
    }
}

/* --- PAGE SECTIONS --- */
.page-section { display: none; padding-bottom: 60px; min-height: 80vh; animation: fadeIn 0.5s ease; }
.page-section.active-section { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- ADVANCED HERO SECTION --- */
.hero {
    position: relative;
    height: 90vh; /* Full screen height */
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.5); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 18px;
    border-radius: 50px;
    background: var(--secondary);
    color: white;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.4);
}

.btn-lg:hover {
    background: #e67e22;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.6);
}

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin: 60px 0 40px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; position: relative; display: inline-block; }
.section-header h2::after {
    content: ''; width: 60px; height: 4px; background: var(--secondary);
    position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); border-radius: 2px;
}

/* --- CATEGORIES --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.cat-card {
    background: white;
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cat-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    background: linear-gradient(145deg, #ffffff, #fff5ec);
}

.cat-icon {
    font-size: 35px;
    color: var(--secondary);
    margin-bottom: 15px;
    background: rgba(230, 126, 34, 0.1);
    width: 70px; height: 70px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.cat-title { font-weight: 700; font-size: 16px; color: var(--primary); }

/* --- CLIENTS SECTION --- */
.clients-section {
    background: white;
    padding: 50px 0;
    margin-bottom: 80px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.client-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: default;
}

.client-logo-text:hover { color: var(--primary); transform: scale(1.05); }

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--secondary);
}

.service-card:hover { transform: translateY(-10px); }

.service-icon {
    width: 80px; height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--secondary);
    margin-bottom: 25px;
}

.service-title { font-size: 22px; font-weight: 700; margin-bottom: 15px; color: var(--primary); }
.service-desc { color: var(--text-gray); margin-bottom: 20px; line-height: 1.6; }
.service-badge { 
    display: inline-block; background: #e8f5e9; color: #2e7d32; 
    padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; 
}

/* --- PRODUCTS GRID --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    padding-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

.product-img-container {
    height: 250px;
    background: #fff;
    padding: 20px;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid #eee;
}

.product-img-container img { max-height: 100%; transition: 0.5s; object-fit: contain; }
.product-card:hover img { transform: scale(1.1); }

.product-details { padding: 25px; }
.product-cat { font-size: 11px; font-weight: 700; color: var(--text-gray); letter-spacing: 1px; text-transform: uppercase; }
.product-title { font-size: 18px; color: var(--primary); margin: 5px 0; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-price { font-size: 20px; font-weight: 700; color: var(--secondary); display: block; margin-top: 10px; }

.btn-view {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-view:hover { background: var(--primary); color: white; }

/* --- ABOUT US --- */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.about-img { flex: 1; min-width: 300px; }
.about-img img { border-radius: 15px; width: 100%; }
.about-text { flex: 1; min-width: 300px; }
.about-text h3 { color: var(--secondary); margin-bottom: 10px; }
.about-text p { color: var(--text-gray); line-height: 1.8; margin-bottom: 20px; }

/* --- CONTACT SECTION --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.info-item { margin-bottom: 30px; display: flex; align-items: flex-start; gap: 20px; }
.info-item i { font-size: 24px; color: var(--secondary); margin-top: 5px; }
.info-item h4 { font-size: 18px; margin-bottom: 5px; }
.info-item p { color: rgba(255,255,255,0.7); line-height: 1.6; font-size: 14px; }

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; color: var(--dark); }
.form-group input, .form-group textarea {
    width: 100%; padding: 15px; border: 1px solid #e0e0e0;
    border-radius: 10px; outline: none; transition: 0.3s; background: #f9f9f9;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--secondary); background: white; }

.btn-submit {
    width: 100%; padding: 15px; background: var(--secondary); color: white;
    border: none; border-radius: 10px; font-weight: 700; font-size: 16px; transition: 0.3s;
}
.btn-submit:hover { background: #d35400; transform: translateY(-2px); }

/* --- PRODUCT DETAIL VIEW --- */
.detail-view-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
.detail-image { flex: 1; min-width: 350px; background: #f4f6f8; padding: 60px; display: flex; align-items: center; justify-content: center; }
.detail-content { flex: 1; min-width: 350px; padding: 50px; }
.detail-title { font-size: 2.8rem; line-height: 1.2; margin-bottom: 10px; color: var(--primary); }
.detail-price { font-size: 2.2rem; color: var(--secondary); font-weight: 700; margin-bottom: 25px; display: block; }

.feature-box { background: #f9f9f9; padding: 20px; border-radius: 10px; margin: 20px 0; border-left: 4px solid var(--secondary); }

.whatsapp-btn {
    background: var(--whatsapp); color: white; width: 100%; padding: 15px;
    border: none; border-radius: 50px; font-weight: 700; font-size: 18px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 20px; transition: 0.3s;
}
.whatsapp-btn:hover { background: #1ebe57; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); transform: translateY(-3px); }

/* --- FOOTER --- */
footer { background: var(--dark); color: #ecf0f1; padding: 70px 0 20px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: white; margin-bottom: 25px; font-size: 18px; position: relative; display: inline-block; }
.footer-col h4::after { content: ''; width: 30px; height: 3px; background: var(--secondary); position: absolute; bottom: -8px; left: 0; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; opacity: 0.8; }
.footer-col ul li a:hover { color: var(--secondary); opacity: 1; padding-left: 5px; transition: 0.3s; }
.socials a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 10px; transition: 0.3s; }
.socials a:hover { background: var(--secondary); transform: translateY(-3px); }

/* === BEST SELLER & FEATURES CSS === */

/* Spacing for the new section */
.best-seller-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

/* Button Alignment */
.center-btn-container {
    text-align: center;
    margin-top: 40px;
}

/* --- WHY CHOOSE US STRIP DESIGN --- */
.features-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    margin-top: 60px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 15px;
    flex: 1; /* Equal width */
    min-width: 200px;
    border-right: 1px solid #eee;
}

.feature-item.no-border {
    border-right: none;
}

.feature-icon {
    font-size: 35px;
    color: var(--secondary);
    margin-bottom: 15px;
    display: inline-block;
}

.feature-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 700;
}

.feature-item p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* Mobile Responsiveness for Features */
@media (max-width: 768px) {
    .features-strip {
        flex-direction: column;
        gap: 30px;
    }
    .feature-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }
    .feature-item:last-child {
        border-bottom: none;
    }
}

/* ========================================================
   ✨ ULTRA-PREMIUM CINEMATIC ANIMATIONS (The "Wow" Look)
   ======================================================== */

/* --- 1. HERO SECTION (Cinematic Entrance) --- */
/* Text ko pehle gayab rakhenge */
.hero h1, .hero p, .hero .btn-lg {
    opacity: 0;
    transform: translateY(40px);
}

/* 1. Heading: Dheere se upar aayegi aur fail jayegi */
.hero h1 {
    animation: cinematicText 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

/* 2. Para: Thoda late aayega */
.hero p {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

/* 3. Button: Bounce karke aayega */
.hero .btn-lg {
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 1s;
}

@keyframes cinematicText {
    0% { opacity: 0; transform: translateY(40px) scale(0.9); letter-spacing: 0px; }
    100% { opacity: 1; transform: translateY(0) scale(1); letter-spacing: 1px; }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    100% { opacity: 1; transform: scale(1); }
}


/* --- 2. PRODUCT CARDS (Glass Hover Effect) --- */
.product-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15); /* Gehri shadow */
    border-color: var(--secondary); /* Border color change */
}

.product-img-container {
    overflow: hidden;
    position: relative;
}

.product-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Image Zoom with Slight Rotate */
.product-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* View Button "Fill" Effect */
.btn-view {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s;
}

.btn-view::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    background: var(--primary);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-view:hover::before {
    width: 100%; /* Rang poora bhar jayega */
}
.btn-view:hover {
    color: white !important;
    border-color: var(--primary);
}


/* --- 3. SERVICES SECTION (Unique Icon Pop) --- */
.service-card {
    transition: 0.4s;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary); /* Niche orange line aayegi */
    background: #fffbf7; /* Halka sa orange background */
}

.service-icon {
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy transition */
}

/* Hover karne par Icon "Pop" karega */
.service-card:hover .service-icon {
    transform: scale(1.3) rotate(10deg);
    background: var(--secondary);
    color: white;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.4);
}


/* --- 4. ABOUT US (Image 3D Reveal) --- */
.about-img img {
    transition: transform 0.5s, filter 0.5s;
    border-radius: 20px;
}

.about-img:hover img {
    transform: scale(1.03) rotate(-1deg);
    filter: brightness(1.1); /* Photo thodi chamkegi */
    box-shadow: 20px 20px 0px var(--secondary); /* Unique Solid Shadow */
}


/* --- 5. CONTACT SECTION (Interactive Form) --- */
.contact-info {
    transition: 0.3s;
}
.contact-info:hover {
    transform: translateX(10px); /* Thoda right khiskega */
    background: #2c2c54; /* Thoda dark color */
}

/* Form Inputs Animation */
.form-group input, .form-group textarea {
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.form-group input:focus, .form-group textarea:focus {
    transform: scale(1.02); /* Focus karne par bada hoga */
    border-left: 5px solid var(--secondary); /* Left mein orange line */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Send Button Gradient Sweep */
.btn-submit {
    background-image: linear-gradient(45deg, var(--secondary) 0%, #f39c12 51%, var(--secondary) 100%);
    background-size: 200% auto;
    transition: 0.5s;
}

.btn-submit:hover {
    background-position: right center; /* Gradient chalega */
    transform: translateY(-3px);
}


/* --- 6. LOGO ANIMATION (Brand Feel) --- */
.logo i {
    transition: 0.5s;
}
.logo:hover i {
    transform: rotateY(360deg); /* Kursi poori ghum jayegi */
    color: var(--primary);
}
.logo:hover span {
    color: var(--secondary);
    letter-spacing: 2px; /* Letters khul jayenge */
    transition: 0.3s;
}

/* --- 7. WHY CHOOSE US (Icons Pulse) --- */
.feature-item:hover .feature-icon {
    animation: pulseIcon 1s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* --- 8. GLOBAL REVEAL (Scroll par aana) --- */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =========================================
   🏢 INFINITE BRAND SCROLL (MARQUEE)
   ========================================= */

.clients-section {
    background: white;
    padding: 40px 0;
    overflow: hidden; /* Bahar nikla content chhup jaye */
    position: relative;
    margin-bottom: 80px;
}

/* Side Fade Effect (Left & Right se dhundhla dikhega) */
.clients-section::before, .clients-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.clients-section::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.clients-section::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Slider Track */
.logos-slider {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logos-track {
    display: flex;
    gap: 80px; /* Logos ke beech gap */
    animation: scrollLogos 30s linear infinite; /* 30 second mein poora ghumega */
    width: max-content;
}

/* Individual Brand Style */
.brand-item {
    font-size: 28px;
    font-weight: 800;
    color: #cbd5e0; /* Grey color (Inactive) */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    cursor: default;
    white-space: nowrap;
}

.brand-item i {
    font-size: 24px;
    color: #cbd5e0;
    transition: 0.3s;
}

/* Hover Effect (Color aayega) */
.brand-item:hover {
    color: var(--primary); /* Dark Blue */
    transform: scale(1.1); /* Thoda bada hoga */
    text-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-item:hover i {
    color: var(--secondary); /* Icon Orange ho jayega */
}

/* Animation Keyframes */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Aadhe raaste tak chalega fir repeat */
}

/* Mobile par thoda tez chalega */
@media (max-width: 768px) {
    .logos-track {
        gap: 40px;
        animation-duration: 20s;
    }
    .brand-item {
        font-size: 20px;
    }
}

/* Hover karne par ruk jaye (Optional) */
.logos-track:hover {
    animation-play-state: paused;
}

/* =========================================
   ⏳ PREMIUM PRELOADER STYLES
   ========================================= */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999; /* Sabse upar rahega */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

/* Jab load ho jaye to gayab karne ke liye class */
#preloader.hide-loader {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

/* Jumping Chair Icon */
.loader-icon {
    font-size: 50px;
    color: var(--secondary); /* Orange */
    margin-bottom: 20px;
    animation: bounceChair 1s infinite alternate;
}

@keyframes bounceChair {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Brand Name Text */
.loader-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary); /* Blue-Grey */
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.loader-text span {
    color: var(--secondary);
}

/* Loading Progress Bar */
.loading-bar {
    width: 200px;
    height: 4px;
    background: #eee;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    width: 0%;
    height: 100%;
    background: var(--secondary);
    border-radius: 10px;
    animation: fillBar 2.5s ease-in-out forwards; /* 2.5 second animation */
}

@keyframes fillBar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* --- PRODUCT RATING STARS --- */
.product-rating {
    color: #FFD700; /* Gold Color */
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-rating span {
    color: #999; /* Grey Text for (5.0) */
    font-size: 12px;
    font-weight: 500;
    margin-left: 5px;
}

/* --- WISHLIST HEART BUTTON --- */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    color: #ccc; /* Default Grey */
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

/* Jab Like kiya ho tab Red color */
.wishlist-btn.active {
    color: red;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}