
      /* ==========================================
       1. GLOBAL SETTINGS & VARIABLES
       ========================================== */
      :root {
        --primary-blue: #0056b3; /* Dark Blue */
        --light-blue: #007bff; /* Bright Blue */
        --dark-bg: #004494; /* Deep Blue for Category */
        --text-color: #333;
        --white: #ffffff;
        /* Premium Blue Theme Colors */
        --main-blue: #0066cc;
        --dark-blue: #004a99;
        --light-bg: #f8f9fa;
        --text-dark: #333;
        --text-muted: #777;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }

      html {
        scroll-behavior: smooth;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      /* ==========================================
       2. TOP BAR & MAIN HEADER
       ========================================== */
      .top-bar {
        background: #f8f9fa;
        padding: 8px 0;
        font-size: 13px;
        border-bottom: 1px solid #eee;
        color: #666;
      }

      .header-main {
        padding: 20px 0;
      }

      .logo {
        font-size: 30px;
        font-weight: 800;
        color: var(--primary-blue);
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
      }

      .logo i {
        color: var(--light-blue);
      }

      .search-container {
        flex: 0 0 50%;
        display: flex;
        border: 2px solid var(--primary-blue);
        border-radius: 30px;
        overflow: hidden;
      }

      .search-container input {
        flex: 1;
        border: none;
        padding: 10px 20px;
        outline: none;
      }

      .search-container select {
        border: none;
        border-left: 1px solid #ddd;
        padding: 0 15px;
        outline: none;
        background: white;
        cursor: pointer;
      }

      .search-btn {
        background: var(--primary-blue);
        color: white;
        border: none;
        padding: 10px 25px;
        cursor: pointer;
        transition: 0.3s;
      }

      .search-btn:hover {
        background: var(--light-blue);
      }

      .header-icons {
        display: flex;
        gap: 20px;
        font-size: 20px;
        color: #444;
      }

      .cart-box {
        font-size: 16px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      /* ==========================================
       3. NAVIGATION BAR & DROPDOWNS
       ========================================== */
      .navbar {
        background: var(--primary-blue);
        color: white;
        position: relative;
      }

      .navbar .container {
        justify-content: flex-start;
        gap: 30px;
        padding: 0;
      }

      .cat-menu {
        background: var(--dark-bg);
        padding: 15px 30px;
        font-weight: bold;
        cursor: pointer;
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .cat-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 250px;
        background: var(--white);
        list-style: none;
        padding: 10px 0;
        margin: 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
        border: 1px solid #eee;
      }

      .cat-dropdown li a {
        display: block;
        padding: 12px 20px;
        color: var(--text-color);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: 0.3s;
      }

      .cat-dropdown li a:hover {
        background: #f0f7ff;
        color: var(--light-blue);
        padding-left: 25px;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 25px;
      }

      .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
      }

      .nav-links a:hover {
        text-decoration: underline;
      }

      .contact-btn {
        background: #ff4d4d;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: bold;
        margin-left: auto;
        color: white;
      }

      /* Brand Dropdown */
      .brand-parent {
        position: relative;
      }

      .brand-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 170px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        list-style: none;
        padding: 10px 0;
        z-index: 999;
      }

      .brand-parent:hover .brand-list {
        display: block;
      }

      .brand-list li a {
        color: #333 !important;
        padding: 10px 20px !important;
        display: block;
        font-weight: 500;
      }

      .brand-list li a:hover {
        background: #f4f4f4;
        color: var(--primary-blue) !important;
        text-decoration: none !important;
      }

      /* ==========================================
       4. HERO SECTION & SLIDER
       ========================================== */
      .hero-container-main {
        padding: 30px 0;
        background-color: #fff;
      }

      .hero-flex-wrapper {
        max-width: 1250px;
        margin: 0 auto;
        display: flex;
        gap: 20px;
        height: 500px;
      }

      .main-slider-blue {
        flex: 2;
        background: var(--light-bg);
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      }

      .slide-content {
        display: none;
        align-items: center;
        padding: 0 60px;
        height: 100%;
        animation: fadeEffect 0.6s ease;
      }

      .slide-content.active {
        display: flex;
      }

      @keyframes fadeEffect {
        from {
          opacity: 0;
          transform: translateX(20px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .text-side {
        flex: 1;
        /* Button aur Arrows ke beech space banane ke liye padding-bottom dein */
        padding-bottom: 80px;
      }

      .text-side h3 {
        color: var(--main-blue);
        font-size: 16px;
        letter-spacing: 2px;
        font-weight: 600;
        margin-bottom: 10px;
      }

      .text-side h1 {
        font-size: 40px;
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 20px;
        font-weight: 800;
      }

      .text-side p {
        color: var(--text-muted);
        margin-bottom: 30px;
      }

      .btn-blue-shop {
        background: var(--main-blue);
        color: white;
        border: none;
        padding: 14px 35px;
        border-radius: 50px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
      }

      .btn-blue-shop:hover {
        background: var(--dark-blue);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
      }

      .img-side {
        flex: 1;
        text-align: center;
      }

      .img-side img {
        max-width: 100%;
        max-height: 350px;
        object-fit: contain;
      }

      .slider-nav-btns {
        position: absolute;
        /* Isse thoda aur niche karne ke liye 20px ya 15px karein */
        bottom: 20px;
        /* Button ke niche alignment ke liye left adjust karein */
        left: 60px;
        display: flex;
        gap: 15px;
        z-index: 10; /* Taaki arrows hamesha upar dikhein */
      }

      .nav-arrow {
        background: white;
        color: var(--main-blue);
        border: 1px solid #ddd;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
      }

      .nav-arrow:hover {
        background: var(--main-blue);
        color: white;
        border-color: var(--main-blue);
      }

      /* Side Promo Banner */
      .side-promo-banner {
        flex: 1;
        background:
          linear-gradient(45deg, rgba(0, 0, 0, 0.4), transparent),
          url("https://hp.widen.net/content/glga4hqg5l/webp/glga4hqg5l.png?w=573&h=430&dpi=72&color=ffffff00");
        background-size: cover;
        background-position: center;
        border-radius: 12px;
        position: relative;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        color: white;
      }

      .promo-tags {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .tag-save {
        background: #ffcc00;
        color: #000;
        padding: 4px 12px;
        border-radius: 4px;
        font-weight: bold;
        font-size: 12px;
      }

      .tag-special {
        font-weight: bold;
        color: #fff;
        text-transform: uppercase;
        font-size: 14px;
      }

      .category-name {
        color: #ffcc00;
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
      }

      .promo-info h2 {
        font-size: 26px;
        margin-bottom: 10px;
        line-height: 1.1;
      }

      .promo-price {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 20px;
      }

      .old-price {
        font-size: 16px;
        text-decoration: line-through;
        opacity: 0.7;
        margin-right: 8px;
      }

      .btn-add-cart {
        background: white;
        color: var(--main-blue);
        border: none;
        padding: 12px 20px;
        border-radius: 50px;
        font-weight: bold;
        cursor: pointer;
        width: fit-content;
      }

      .btn-add-cart:hover {
        background: var(--main-blue);
        color: white;
      }

      /* ==========================================
       5. FEATURES BAR & DUAL BANNERS
       ========================================== */
      .features-section {
        background: #fff;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
        padding: 25px 0;
      }

      .features-container {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
      }

      .feature-box {
        display: flex;
        align-items: center;
        padding: 0 15px;
        border-right: 1px solid #eee;
      }

      .feature-box:last-child {
        border-right: none;
      }

      .f-icon {
        font-size: 28px;
        color: #0066cc;
        margin-right: 12px;
      }

      .f-text h4 {
        font-size: 13px;
        font-weight: 600;
        color: #444;
        margin-bottom: 3px;
      }

      .f-text p {
        font-size: 11px;
        color: #999;
        line-height: 1.2;
      }

      .dual-banners {
        background: #f5f7f9;
        padding: 50px 0;
      }

      .banners-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 20px;
      }

      .banner-card {
        flex: 1;
        background: #fff;
        border-radius: 10px;
        padding: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        border: 1px solid #eee;
      }

      .b-info p {
        color: #888;
        font-size: 14px;
        margin-bottom: 8px;
      }

      .b-info h2 {
        font-size: 26px;
        color: #333;
        margin-bottom: 10px;
      }

      .offer-text {
        font-size: 35px;
        font-weight: 800;
        color: #333;
      }

      .offer-text .highlight {
        color: #0066cc;
        font-size: 45px;
      }

      .b-img img {
        max-width: 180px;
        height: auto;
        object-fit: contain;
      }

      /* ==========================================
       6. HP PRINTERS GRID
       ========================================== */

      #exact-clique-design {
        background: #eef1f4 !important;
        padding: 20px 0 !important;
        display: flex !important;
        justify-content: center !important;
        font-family: "Poppins", sans-serif !important;
      }

      .main-canvas {
        width: 95% !important;
        max-width: 1500px !important;
        height: 450px !important; /* Fixed height for better alignment */
        background: #fff !important;
        border-radius: 40px !important;
        padding: 0 80px !important; /* Side padding only */
        display: flex !important;
        align-items: center !important; /* Isse left ka text vertical center ho jayega */
        justify-content: space-between !important; /* Left aur Right mein barabar jagah */
        position: relative !important;
        overflow: hidden !important;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05) !important;
      }

      /* Left side alignment fix */
      .left-panel {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* Content ko center mein rakhega */
        z-index: 2 !important;
      }

      .brand-logo {
        color: #0084ff;
        font-weight: 800;
        font-size: 28px;
        margin-bottom: 10px;
      }
      .main-heading {
        font-size: 65px !important;
        font-weight: 900;
        line-height: 1;
        color: #1a1a1a;
        margin-bottom: 15px;
      }
      .sub-text {
        font-size: 16px;
        color: #555;
        margin-bottom: 25px;
        max-width: 450px;
      }

      /* Info Box spacing fix */
      .info-card-box {
        background: #4a4a4a !important;
        width: 300px !important;
        padding: 20px 25px !important;
        border-radius: 25px !important;
        position: relative !important;
        color: #fff !important;
      }

      /* Right side image alignment fix */
      .right-panel {
        flex: 1 !important;
        height: 100% !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important; /* Image ko vertical center karega */
        justify-content: flex-end !important;
      }

      .product-display-box {
        width: 550px !important;
        height: 400px !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
      }

      .product-slider-track {
        display: flex !important;
        align-items: center !important;
        transition: 1s cubic-bezier(0.7, 0, 0.3, 1) !important;
      }

      .product-slide {
        min-width: 550px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
      }

      .product-slide img {
        max-height: 350px !important; /* Height ke andar fit rahega */
        width: auto !important;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)) !important;
      }

      /* Bottom Nav alignment */
      .bottom-nav {
        position: absolute !important;
        bottom: 30px !important;
        right: 80px !important;
      }

      /* ==========================================
   HP PRINTERS GRID RESPONSIVE
   ========================================== */

      /* Tablet View (Screens under 1024px) */
      @media (max-width: 1024px) {
        .printer-grid {
          grid-template-columns: repeat(2, 1fr); /* 2 Columns dikhenge */
          gap: 20px;
        }
      }

      /* Mobile View (Screens under 768px) */
      @media (max-width: 768px) {
        .hp-printer-section {
          padding: 40px 0; /* Padding kam ki taaki mobile pe zyada scroll na karna pade */
        }

        .hp-header h2 {
          font-size: 28px; /* Heading thodi choti */
        }

        .printer-grid {
          grid-template-columns: repeat(
            1,
            1fr
          ); /* Mobile par 1 Column (Full Width) */
          gap: 15px;
          padding: 0 10px;
        }

        .printer-card {
          padding: 30px 15px;
          border-radius: 20px; /* Thoda kam round */
        }

        .printer-img-wrapper {
          height: 140px; /* Image area thoda chota */
        }

        .printer-card h3 {
          font-size: 18px; /* Title size adjust kiya */
        }
      }

      /* ==========================================
       7. ELECTRO PRODUCT TABS & GRID
       ========================================== */
      .electro-products-wrapper {
        padding: 60px 0;
        background-color: #f9fbff;
        font-family: "Poppins", sans-serif;
      }

      .electro-container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .electro-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 20px;
      }

      .electro-title {
        font-size: 32px;
        font-weight: 700;
        color: #2c3e50;
      }

      .electro-filters {
        display: flex;
        gap: 8px;
        background: #fff;
        padding: 5px;
        border-radius: 50px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      .filter-btn {
        border: none;
        background: transparent;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 600;
        color: #7f8c8d;
        cursor: pointer;
        transition: 0.3s;
      }

      .filter-btn.active,
      .filter-btn:hover {
        background: #f7941d;
        color: #fff;
      }

      .electro-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
      }

      .electro-card {
        display: none;
        flex-direction: column;
        height: 100%;
        background: #fff;
        border: 1px solid #e1e8f0;
        border-radius: 12px;
        padding: 20px;
        transition: 0.4s ease;
        cursor: pointer;
        position: relative;
        text-align: center;
      }

      .electro-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
        border-color: #0066cc;
      }

      .card-thumb {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
      }

      .card-thumb img {
        max-width: 100%;
        max-height: 180px;
        transition: 0.5s ease;
      }

      .badge {
        position: absolute;
        top: 0;
        right: 0;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        color: #fff;
        z-index: 2;
      }

      .badge.new {
        background: #f7941d;
      }
      .badge.sale {
        background: #e74c3c;
      }

      .category {
        font-size: 13px;
        color: #f7941d;
        font-weight: 600;
        margin-bottom: 8px;
        text-transform: uppercase;
      }

      .product-name {
        font-size: 17px;
        color: #333;
        font-weight: 600;
        height: 48px;
        overflow: hidden;
        margin-bottom: 12px;
        line-height: 1.4;
      }

      .price-section {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
      }

      .new-price {
        color: #f7941d;
        font-size: 20px;
        font-weight: 800;
      }

      /* Load More & Scroll Top */
      .load-more-container {
        text-align: center;
        margin: 50px 0 20px;
        width: 100%;
      }

      .btn-load-more {
        background-color: #fff;
        color: #0066cc;
        border: 2px solid #0066cc;
        padding: 12px 35px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }

      .btn-load-more:hover {
        background-color: #0066cc;
        color: #fff;
        transform: translateY(-2px);
      }

      .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #f7941d;
        color: #fff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 99;
      }
      /* ==========================================
   ELECTRO PRODUCT TABS & GRID RESPONSIVE
   ========================================== */

      /* Ye code aapke CSS ke sabse niche hona chahiye */
      @media (max-width: 768px) {
        /* 1. Header & Navigation Fix */
        .navbar .container {
          display: flex;
          flex-direction: row; /* Category aur Phone ek line mein */
          justify-content: space-between;
          padding: 5px 10px;
        }

        .cat-menu {
          padding: 8px 10px;
          font-size: 11px; /* Font chota kiya taaki screen se bahar na jaye */
          width: auto;
        }

        .contact-btn {
          padding: 8px 10px;
          font-size: 11px;
          margin-left: 0;
        }

        /* 2. Slider Section Fix (Jo screenshot me kharab tha) */
        .hero-container-main {
          padding: 10px 0;
        }

        .hero-flex-wrapper {
          flex-direction: column; /* Slider aur Promo banner upar-niche */
          height: auto; /* Fixed height khatam */
          gap: 15px;
        }

        .main-slider-blue {
          height: auto; /* Screen ke according auto adjust hoga */
          min-height: 480px;
          flex: none;
          width: 100%;
        }

        .slide-content {
          flex-direction: column; /* Image hamesha upar, Text niche */
          padding: 20px 15px;
          text-align: center;
          justify-content: center;
        }

        .img-side {
          width: 100%;
          margin-bottom: 20px;
        }

        .img-side img {
          max-height: 180px; /* Image screen ke hisab se choti */
          width: auto;
        }

        .text-side {
          width: 100%;
        }

        .text-side h1 {
          font-size: 24px; /* Heading size mobile ke liye */
          line-height: 1.2;
        }

        .text-side h3 {
          font-size: 12px;
        }

        .btn-blue-shop {
          width: 100%; /* Mobile par button bada aur click karne me aasan */
          margin-bottom: 10px;
        }

        /* Slider Buttons Fix */
        .slider-nav-btns {
          position: relative; /* Absolute se hatakar flow me laya */
          bottom: 0;
          left: 0;
          justify-content: center;
          margin-top: 15px;
          padding-bottom: 15px;
        }

        /* 3. Product Cards (Double Column) */
        .electro-grid,
        .printer-grid {
          grid-template-columns: repeat(
            2,
            1fr
          ) !important; /* Ek line me 2 card */
          gap: 10px !important;
          padding: 0 10px;
        }

        .electro-card,
        .printer-card {
          padding: 10px;
          height: auto;
        }

        .card-thumb {
          height: 140px;
        }

        .product-name {
          font-size: 13px;
          height: 34px; /* 2 lines max */
          margin-bottom: 5px;
        }

        /* 4. Side Promo Banner */
        .side-promo-banner {
          height: 250px;
          width: 100%;
          flex: none;
        }
      }

      /* Bahut chote phones (iPhone SE etc) ke liye */
      @media (max-width: 400px) {
        .text-side h1 {
          font-size: 20px;
        }
        .electro-grid {
          grid-template-columns: 1fr !important;
        } /* Single column if too small */
      }

      /* ==========================================
       8. MATCH SECTION & BESTSELLERS
       ========================================== */
      /* Bestseller Section Improvements */
      .category-tiles {
        padding: 60px 0;
        background: #fff;
      }
      .tiles-header {
        text-align: center;
        margin-bottom: 40px;
      }
      .tiles-header h2 {
        font-size: 28px;
        font-weight: 800;
        color: #0a0d14;
      }

      .tiles-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr; /* Pehla box bada, baki do chhote */
        gap: 20px;
        height: 400px;
      }

      .tile-item {
        border-radius: 15px;
        padding: 30px;
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        color: white;
        transition: 0.4s;
        cursor: pointer;
      }

      /* Yahan aap gradients ya placeholder colors bhi use kar sakte hain */
      .laser {
        background:
          linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
          url("https://images.unsplash.com/photo-1612815154858-60aa4c59eaa6?auto=format&fit=crop&w=800");
      }
      .inkjet {
        background: #1e293b;
      }
      .supplies {
        background: var(--primary-blue);
      }

      .tile-item:hover {
        transform: scale(1.02);
      }

      .tile-content span {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .tile-content h3 {
        font-size: 24px;
        margin: 10px 0;
      }
      .tile-content a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        border-bottom: 2px solid transparent;
      }
      .tile-content a:hover {
        border-bottom: 2px solid #fff;
      }

      @media (max-width: 768px) {
        .tiles-grid {
          grid-template-columns: 1fr;
          height: auto;
        }
        .tile-item {
          height: 200px;
        }
      }

      /* ==========================================
       9. MEGA FOOTER
       ========================================== */
      :root {
        --primary-blue: #0062ff;
        --dark-bg: #0a0d14;
        --light-text: #94a3b8;
      }

      .mega-footer {
        background: var(--dark-bg);
        color: #fff;
        font-family: "Inter", sans-serif;
        border-top: 4px solid var(--primary-blue);
      }

      .f-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Brands Bar */
      .footer-top-brands {
        background: rgba(255, 255, 255, 0.03);
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
      }

      .footer-top-brands span {
        font-weight: 700;
        margin-right: 20px;
        color: #64748b;
        text-transform: uppercase;
        font-size: 12px;
      }

      /* Brands Bar - Fixed for Original Colors */
      .footer-top-brands img {
        height: 35px;
        margin: 0 30px;
        /* Filter aur opacity ko reset kar diya gaya hai */
        filter: none;
        opacity: 1;
        transition: 0.3s;
      }

      /* Hover par koi extra filter ki zarurat nahi agar original hi dikhana hai */
      .footer-top-brands img:hover {
        transform: scale(1.1); /* Optional: halka sa zoom effect */
      }

      /* Middle Section */
      .footer-middle {
        padding: 80px 0;
      }

      .grid-4-col {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
      }

      .f-logo {
        font-size: 30px;
        font-weight: 900;
        margin-bottom: 20px;
      }

      .f-logo span {
        color: var(--primary-blue);
        font-weight: 300;
      }

      .f-about {
        color: var(--light-text);
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 30px;
      }

      .footer-column h4 {
        font-size: 18px;
        margin-bottom: 25px;
        color: #f8fafc;
      }

      /* Links */
      .f-links {
        list-style: none;
        padding: 0;
      }
      .f-links li {
        margin-bottom: 12px;
      }
      .f-links li a {
        color: var(--light-text);
        text-decoration: none;
        font-size: 14px;
        transition: 0.3s ease;
      }
      .f-links li a:hover {
        color: var(--primary-blue);
        transform: translateX(5px);
        display: inline-block;
      }

      /* Contact Items */
      .f-contact-info .c-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
      }

      .f-contact-info .c-item i {
        color: var(--primary-blue);
        font-size: 18px;
        margin-top: 4px;
      }

      .f-contact-info .c-item span {
        display: block;
        font-size: 12px;
        color: #64748b;
      }

      .f-contact-info .c-item p {
        font-size: 14px;
        font-weight: 600;
      }

      /* Newsletter */
      .input-group {
        display: flex;
        background: #1e293b;
        padding: 5px;
        border-radius: 8px;
      }

      .input-group input {
        background: transparent;
        border: none;
        padding: 10px;
        color: white;
        width: 100%;
        outline: none;
      }

      .input-group button {
        background: var(--primary-blue);
        border: none;
        color: white;
        padding: 10px 15px;
        border-radius: 6px;
        cursor: pointer;
      }

      /* Bottom Bar */
      .footer-bottom {
        background: #000;
        padding: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
      }

      .flex-between {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .f-payments {
        font-size: 24px;
        display: flex;
        gap: 15px;
        color: var(--light-text);
      }

      .f-payments i:hover {
        color: #fff;
      }

      /* --- Footer Responsiveness --- */

      @media (max-width: 992px) {
        .mega-footer .grid-4-col {
          grid-template-columns: 1fr 1fr; /* Tablet par 2 columns dikhenge */
          gap: 30px;
        }
      }

      @media (max-width: 768px) {
        .footer-top-brands img {
          height: 20px; /* Mobile par brand logos chhote ho jayenge */
          margin: 10px 15px;
        }

        .footer-middle {
          padding: 50px 0;
        }

        .mega-footer .grid-4-col {
          grid-template-columns: 1fr; /* Mobile par saare columns ek ke niche ek */
          text-align: center; /* Text center ho jayega mobile par */
        }

        .footer-column h4::after {
          left: 50%; /* Heading ki underline center karne ke liye */
          transform: translateX(-50%);
        }

        .f-contact-info .c-item {
          flex-direction: column; /* Phone icons aur text align karne ke liye */
          align-items: center;
          gap: 5px;
        }

        .input-group {
          max-width: 300px;
          margin: 0 auto; /* Newsletter box center */
        }

        .footer-bottom .flex-between {
          flex-direction: column; /* Copyright aur Payments upar niche */
          gap: 15px;
          text-align: center;
        }
      }

      /* ==========================================
       10. STICKY NAV & RESPONSIVE QUERIES
       ========================================== */
      .navbar.sticky-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        animation: slideDown 0.4s ease;
      }

      @keyframes slideDown {
        from {
          transform: translateY(-100%);
        }
        to {
          transform: translateY(0);
        }
      }

      /* Media Queries */
      @media (max-width: 992px) {
        .hero-flex-wrapper {
          flex-direction: column;
          height: auto;
        }
        .printer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .grid-4-col {
          grid-template-columns: 1fr 1fr;
        }
      }

      @media (max-width: 768px) {
        .search-container,
        .nav-links {
          display: none;
        }
        .features-container {
          grid-template-columns: 1fr;
        }
        .banners-container {
          flex-direction: column;
        }
        .electro-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .grid-4-col {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .flex-between {
          flex-direction: column;
          gap: 15px;
        }
      }
    



