
/* ====== Header + Navigation ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

/* Scroll Progress Bar */
    #scroll-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 10px;
      width: 0%;
      border-radius: 0 0 12px 12px;
      z-index: 9999;
      background: linear-gradient(270deg, #ff3c78, #ff9a3c, #f9ff3c, #3cff7f, #3c7fff, #9a3cff, #ff3c78);
      background-size: 1400% 1400%;
      box-shadow: 0 0 12px rgba(255, 60, 120, 0.7),
                  0 0 20px rgba(255, 154, 60, 0.5),
                  0 0 30px rgba(249, 255, 60, 0.3);
      animation: gradientShift 12s ease infinite;
      transition: width 0.3s ease-out;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Header/Navbar */
    header {
      background: linear-gradient(90deg, #1e3c72, #2a5298);
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 999;
      transition: 0.3s ease;
    }

    header.shrink {
      padding: 0.3rem 0;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 60px;
      width: 60px;
      border-radius: 50%;
      border: 2px solid white;
    }

    .logo span {
      font-size: 1.5rem;
      font-weight: 600;
      color: #fff;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      padding: 5px;
      transition: all 0.3s ease;
    }

    .nav-links li a::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #00ffff;
      transition: width 0.3s;
    }

    .nav-links li a:hover::after {
      width: 100%;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 130%;
      left: 0;
      background-color: #1e3c72;
      display: none;
      flex-direction: column;
      min-width: 180px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      z-index: 99;
    }

    .dropdown-menu a {
      padding: 10px 15px;
      color: #fff;
      text-decoration: none;
      transition: background 0.3s;
    }

    .dropdown-menu a:hover {
      background-color: #2a5298;
    }

    .dropdown:hover .dropdown-menu {
      display: flex;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      color: white;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        background: #2a5298;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links li {
        padding: 0.8rem;
        text-align: center;
      }

      .dropdown-menu {
        position: static;
        box-shadow: none;
      }
    }
/* ====== Hero Section ====== */
/* Main section */
    .infographic {
      position: relative;
      text-align: center;
      padding: 4rem 1rem 5rem;
      background: #fff;

      /* बैकग्राउंड इमेज लगाएं */
      background-image: url('IMG/ban.jpg');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;

      overflow: hidden;
      min-height: 500px;
      z-index: 0;
    }

    /* Optional overlay for better text visibility */
    .infographic::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(255, 255, 255, 0.582);
      z-index: 0;
      height: 2000vh;
    }

    /* Content on top */
    .infographic > * {
      position: relative;
      z-index: 1;
    }

    /* Heading */
    .infographic h2 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: #222;
      font-weight: 600;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.3;
    }

    .highlight {
      color: #2f48d3;
      font-weight: 700;
    }

    /* The red circle container */
    .circle {
      width: 30vh;
      height: 30vh;
      background: radial-gradient(circle, #4f35e5 0%, #c62828 100%);
      border-radius: 50%;
      margin: 2rem auto;
      position: relative;
      box-shadow: 0 10px 25px rgba(7, 114, 253, 0.918);
      z-index: 1;
    }

    /* The store box in center */
    .store {
      background: white;
      border-radius: 12px;
      padding: 1.2rem;
      width: 40%;
      height: 30%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      z-index: 2;
      user-select: none;
    }

    .store::before {
      content: "ALL PRINT";
      display: block;
      font-weight: 700;
      height: 20px;
      font-size: 1rem;
      background: #111;
      color: #fffdfd;
      padding: 0.3rem 0;
      margin-bottom: 0.7rem;
      border-radius: 4px;
    }

    .store h3 {
      margin: 0.3rem 0;
      font-size: 1rem;
      color: #d32f2f;
    }

    .store .actions {
      display: flex;
      justify-content: space-around;
      margin-top: 0.8rem;
    }

    .store .actions span {
      font-size: 0.85rem;
      background: #43a047;
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      transition: background 0.3s;
      cursor: pointer;
      user-select: none;
    }

    .store .actions span:hover {
      background: #2e7d32;
    }

    /* Rotating device icons on circle */
    .device-icons {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      animation: rotate 20s linear infinite;
      z-index: 1;
    }

    .device-icons i {
      font-size: 1.6rem;
      position: absolute;
      background: #fff;
      padding: 0.6rem;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      transition: transform 0.3s;
      user-select: none;
    }

    .device-icons i:hover {
      transform: scale(1.2);
    }

    /* Positions of icons around circle */
    .i1 { top: 5%; left: 50%; transform: translateX(-50%); }
    .i2 { top: 20%; right: 15%; }
    .i3 { top: 50%; right: 0; transform: translateY(-50%); }
    .i4 { bottom: 20%; right: 15%; }
    .i5 { bottom: 5%; left: 50%; transform: translateX(-50%); }
    .i6 { bottom: 20%; left: 15%; }
    .i7 { top: 50%; left: 0; transform: translateY(-50%); }
    .i8 { top: 20%; left: 15%; }

    /* Rotate animation */
    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Responsive */
    @media (max-width: 600px) {
      .circle {
        width: 280px;
        height: 280px;
      }

      .store {
        width: 160px;
        padding: 0.8rem;
      }

      .store::before {
        font-size: 0.8rem;
      }

      .store h3 {
        font-size: 0.85rem;
      }

      .device-icons i {
        font-size: 1.2rem;
      }
    }
/* ====== importent  ====== */

/* ====== Services Section ====== */
#services {
      background-color: #ffffff;
      padding: 2rem 0.8rem 4rem;
      max-width: 1700px;
      margin: auto;
      text-align: center;
      user-select: text;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  #services h2 {
      font-size: 2.6rem;
      margin-bottom: 2rem;
      color: #007BFF;
  }

  #services > div {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    
}

#services > div > div {
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 260px;
    scroll-snap-align: start;
    height:outo;
    background-color: #007BFF;
    border-radius: 10px;
    
}

  #services > div > div:hover,
  #services > div > div:focus-within {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0,123,255,0.3);
    
  }

  #services > div::-webkit-scrollbar {
    height: 8px;
}
#services > div::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
#services > div::-webkit-scrollbar-track {
    background: #f7f9fc;
}
 

  #services > div > div div {
      font-size: 2.2rem;
      padding: 8px;
      margin-bottom: 0.3rem;
  }

  #services > div > div h3 {
      margin-bottom: 0.6rem;
      color: #ffffff;
      font-weight: 700;
  }

  /* Button under services */
  #services button.info-btn {
      margin-top: 1rem;
      margin-bottom: 0.5rem;
      padding: 0.5rem 1rem;
      border: none;
      background-color:#43a047;
      color: white;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-size: 1rem;

    }

  #services button.info-btn:hover,
  #services button.info-btn:focus {
      background-color: #000000;
      outline: none;
  }

  
  /* Popup styles */
  #popup {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 1rem;
  }

  #popup-content {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      max-width: 400px;
      width: 100%;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      position: relative;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  #popup-content h3 {
      margin-bottom: 1rem;
      color: #007BFF;
      font-size: 1.8rem;
  }

  #popup-details-list {
      text-align: left;
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
      font-size: 1rem;
      color: #333;
  }

  #popup-content button {
      margin: 0.3rem 0.5rem;
      padding: 0.6rem 1.5rem;
      border: none;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-size: 1rem;
  }

  #whatsapp-btn {
      background-color: #25d366;
      color: white;
  }

  #whatsapp-btn:hover {
      background-color: #128c45;
  }

  #popup-close {
      background-color: #dc3545;
      color: white;
  }

  #popup-close:hover {
      background-color: #a71d2a;
  }

/* ====== Available Products Section ====== */
#products {
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    h2 {
      font-size: 2.6rem;
      margin-bottom: 2rem;
      color: #007BFF;
    }

    #search-box {
      max-width: 400px;
      margin: 0 auto 2rem;
    }

    #search-input {
      width: 100%;
      padding: 0.7rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }

    #product-categories {
      margin-bottom: 2rem;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .category-btn {
      padding: 0.5rem 1rem;
      border: 2px solid #25D366;
      background: white;
      color: #25D366;
      border-radius: 20px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .category-btn.active,
    .category-btn:hover {
      background: #25D366;
      color: white;
    }

    #products-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }

    .product-card {
      width: 250px;
      background: white;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      padding: 0.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card img {
      width: 100%;
      border-radius: 12px;
    }

    .product-card h3 {
      margin-top: 0.7rem;
    }

    .product-card a {
      display: inline-block;
      margin-top: 0.5rem;
      padding: 0.6rem 1.2rem;
      background: #25D366;
      color: white;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
    }

    .product-card a:hover {
      background: #1eaa44;
    }

    #pagination-controls {
      margin-top: 2rem;
      text-align: center;
    }

    #pagination-controls button {
      padding: 0.6rem 1.4rem;
      font-size: 1rem;
      border: none;
      background: #25D366;
      color: white;
      border-radius: 8px;
      margin: 0 0.5rem;
      cursor: pointer;
      transition: 0.3s;
    }

    #pagination-controls button:disabled {
      background: #ccc;
      cursor: not-allowed;
    }

/* ====== Footer Section ====== */
:root {
      --clr-bg: #111827;
      --clr-text: #e2e8f0;
      --clr-accent: #007BFF;
      --clr-muted: #94a3b8;
      --clr-hover: #007BFF;
    }

    
    .footer {
      background: var(--clr-bg);
      color: var(--clr-text);
      padding: 2rem 2rem 1.5rem;
      user-select: none;
    }

    .footer__grid {
      display: grid;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* About Section */
    .footer__logo {
      color: var(--clr-accent);
      font-size: 2rem;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
    }

    .footer__logo i {
      font-size: 2.4rem;
    }

    .footer__col p {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--clr-muted);
    }

    .footer__col h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      color: var(--clr-text);
    }

    .footer__col h3 i {
      color: var(--clr-accent);
      font-size: 1.3rem;
    }

    .footer a {
      color: var(--clr-muted);
      text-decoration: none;
      transition: color 0.3s ease, transform 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
    }

    .footer a i {
      min-width: 18px;
      text-align: center;
      font-size: 1.1rem;
      color: var(--clr-accent);
      transition: color 0.3s ease;
    }

    .footer a:hover,
    .footer a:focus-visible {
      color: var(--clr-hover);
      transform: translateX(4px);
      outline: none;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    ul li {
      margin: 0.5rem 0;
    }

    /* Location Section */
    .location-section {
      background: transparent;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    .address p {
      color: var(--clr-muted);
      font-size: 0.95rem;
      margin: 0.4rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .address a {
      color: var(--clr-accent);
      font-weight: 600;
      text-decoration: none;
    }

    .address a:hover,
    .address a:focus-visible {
      color: var(--clr-hover);
      text-decoration: underline;
      outline: none;
    }

    .map-wrapper {
      display: block;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      margin: 1rem 0 1.5rem;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .map-wrapper:hover,
    .map-wrapper:focus-visible {
      transform: scale(1.04);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
      outline: none;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 180px;
      border: none;
      pointer-events: none;
      border-radius: 14px;
    }

    .buttons {
    display: flex;
    flex-wrap: nowrap; /* जरूरी: wrap को रोकना */
    gap: 1rem;
    overflow-x: auto; /* अगर जगह कम हो तो scroll हो जाए */
    padding: 1rem 0;
  }

  .buttons a {
    white-space: nowrap; /* टेक्स्ट को लाइन में रहने दो */
    /* background: #00e6f6; */
    color: #00d8ff99;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 14px #00d8ff99;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .buttons a:hover,
  .buttons a:focus-visible {
    background: #00c2d6;
    box-shadow: 0 8px 22px rgba(18, 247, 255, 0.85);
    transform: translateY(-3px);
    outline: none;
  }

    /* Scroll to Top Button */
    .scrollTop {
      position: fixed;
      right: 2vh;
      bottom: 5.2rem;
      width: 5vh;
      height: 5vh;
      border: none;
      border-radius: 50%;
      background: var(--clr-accent);
      color: #000000;
      font-size: 1.85rem;
      display: none;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 5px 18px rgba(0, 216, 255, 0.7);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 9999;
    }

    .scrollTop:hover,
    .scrollTop:focus-visible {
      background: var(--clr-hover);
      box-shadow: 0 7px 22px rgba(18, 247, 255, 0.95);
      transform: translateY(-5px);
      outline: none;
    }

    @media (max-width: 620px) {
      .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .map-wrapper iframe {
        height: 140px;
      }
      .buttons {
        justify-content: center;
      }
    }

    /* whatsap */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      font-size: 28px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      text-align: center;
      line-height: 60px;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      background-color: #1ebe5d;
    }
    /* PRODUCT IMG FIX */
    .product-card img {
  width: 100%;          /* पूरी width लेगा */
  height: 30VH;        /* या आप जैसे चाहें, वैसा height दें */
  object-fit: cover;    /* image को crop करके बराबर दिखाएगा */
  border-radius: 10px;  /* थोड़ा rounded लुक */
}
/* PRODUCT IMG FIX AND */