    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #f8fafc;
      color: #0f172a;
      line-height: 1.6;
    }

    body.modal-open {
      overflow: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .navbar {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-img {
      width: 52px;
      height: 52px;
      object-fit: contain;
    }

    .logo-text h3 {
      font-size: 18px;
      line-height: 1.1;
      color: #0f172a;
      font-weight: 800;
    }

    .logo-text p {
      font-size: 13px;
      color: #475569;
      margin-top: 2px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    nav a {
      color: #334155;
      font-size: 15px;
      font-weight: 500;
      transition: 0.25s ease;
    }

    nav a:hover,
    nav a.active {
      color: #2563eb;
    }

    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      transition: 0.3s ease;
      border: 1px solid transparent;
      background: linear-gradient(135deg, #2563eb, #0ea5e9);
      color: #fff;
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
      cursor: pointer;
    }

    .btn-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(37, 99, 235, 0.28);
    }

    .hero-products {
      position: relative;
      overflow: hidden;
      padding: 90px 0 70px;
      background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 35%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.12), transparent 30%),
        linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }

    .hero-badge,
    .mini-title {
      display: inline-block;
      padding: 7px 14px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.1);
      color: #2563eb;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.3px;
      margin-bottom: 18px;
    }

    .hero-text h1 {
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.08;
      margin-bottom: 18px;
      font-weight: 800;
      color: #0f172a;
    }

    .hero-text h1 span {
      color: #2563eb;
    }

    .hero-text p {
      font-size: 16px;
      color: #475569;
      max-width: 620px;
      margin-bottom: 26px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      transition: 0.3s ease;
      border: 1px solid #cbd5e1;
      background: #fff;
      color: #0f172a;
    }

    .btn-outline:hover {
      transform: translateY(-2px);
      border-color: #94a3b8;
    }

    .hero-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 28px;
      padding: 20px;
      box-shadow: 0 30px 60px rgba(15, 23, 42, 0.10);
      position: relative;
    }

    .hero-card img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 22px;
    }

    .since-box {
      position: absolute;
      left: 24px;
      bottom: 24px;
      background: rgba(255, 255, 255, 0.95);
      padding: 14px 18px;
      border-radius: 18px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    }

    .since-box h3 {
      color: #2563eb;
      font-size: 24px;
      line-height: 1;
      margin-bottom: 4px;
    }

    .since-box p {
      color: #475569;
      font-size: 13px;
    }
    
   
    .products-section {
      padding: 85px 0;
    }

    .products-layout {
      display: grid;
      grid-template-columns: 290px 1fr;
      gap: 30px;
      align-items: start;
    }

    .sidebar,
    .products-panel {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 24px;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    }

    .sidebar {
      padding: 28px;
      position: sticky;
      top: 110px;
    }

    .sidebar h3 {
      font-size: 22px;
      margin-bottom: 8px;
      color: #0f172a;
    }

    .muted {
      color: #64748b;
      font-size: 14px;
    }

    .cat-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 22px;
    }

    .cat-list button {
      width: 100%;
      text-align: left;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
      color: #334155;
      padding: 13px 16px;
      border-radius: 14px;
      cursor: pointer;
      transition: 0.25s ease;
      font-weight: 500;
    }

    .cat-list button:hover,
    .cat-list button.active {
      background: linear-gradient(135deg, #2563eb, #0ea5e9);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
    }

    .products-panel {
      padding: 32px;
    }

    .page-head {
      margin-bottom: 22px;
    }

    .page-head h2 {
      font-size: clamp(28px, 4vw, 42px);
      color: #0f172a;
      margin-bottom: 8px;
      line-height: 1.15;
    }

    .page-head p {
      color: #475569;
      font-size: 16px;
      max-width: 720px;
    }

    .search-wrap {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 26px;
      padding: 18px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 18px;
    }

    .search {
      flex: 1;
      min-width: 250px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: #fff;
      border: 1px solid #dbeafe;
      border-radius: 999px;
      padding: 0 16px;
      min-height: 52px;
    }

    .search input {
      border: none;
      outline: none;
      background: transparent;
      width: 100%;
      color: #0f172a;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .product-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
      transition: 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    }

    .media {
      background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
      padding: 18px;
    }

    .media img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 16px;
      background: #fff;
    }

    .product-content {
      padding: 22px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .product-tag {
      display: inline-block;
      align-self: flex-start;
      font-size: 12px;
      font-weight: 700;
      color: #2563eb;
      background: rgba(37, 99, 235, 0.08);
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 12px;
      text-transform: capitalize;
    }

    .product-content h4 {
      font-size: 20px;
      color: #0f172a;
      margin-bottom: 10px;
      line-height: 1.25;
    }

    .product-content p {
      color: #475569;
      font-size: 14px;
      margin-bottom: 18px;
      flex-grow: 1;
    }

    .product-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: auto;
    }

    .brand-name {
      color: #64748b;
      font-size: 14px;
      font-weight: 600;
    }

    .product-btn {
      border: none;
      cursor: pointer;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      background: linear-gradient(135deg, #2563eb, #0ea5e9);
      color: #fff;
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
      transition: 0.3s ease;
    }

    .product-btn:hover {
      transform: translateY(-2px);
    }

    dialog {
      border: none;
      padding: 0;
      max-width: 880px;
      width: calc(100% - 24px);
      border-radius: 24px;
      overflow: hidden;
      background: transparent;
    }

    dialog::backdrop {
      background: rgba(15, 23, 42, 0.65);
      backdrop-filter: blur(4px);
    }

    .modal-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      box-shadow: 0 30px 60px rgba(15, 23, 42, 0.22);
    }

    .modal-img {
      background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
      padding: 24px;
    }

    .modal-img img {
      width: 100%;
      height: 100%;
      max-height: 420px;
      object-fit: cover;
      border-radius: 18px;
    }

    .modal-body {
      padding: 34px 30px;
    }

    .modal-body h2 {
      font-size: 30px;
      color: #0f172a;
      margin-bottom: 14px;
      line-height: 1.15;
    }

    .modal-body p {
      color: #475569;
      margin-bottom: 14px;
      font-size: 15px;
    }

    .close-x {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      background: rgba(15, 23, 42, 0.08);
      color: #0f172a;
      font-size: 24px;
      cursor: pointer;
      z-index: 10;
    }

    .close-x:hover {
      background: rgba(15, 23, 42, 0.14);
    }
    
    .btn {
      display: inline-block;
      padding: 12px 18px;
      border-radius: 14px;
      font-weight: 700;
      transition: 0.3s;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #2563eb, #0ea5e9);
      color: #fff;
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(37, 99, 235, 0.28);
    }
    
.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-grid {
      display: grid;
      gap: 24px;
    }


 .contact-box h2 {
      margin-top: 12px;
      font-size: 46px;
      font-weight: 900;
      color: #0f172a;
    }
    
     .contact-box .mini-title {
      font-weight: 800;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 3px;
    }
    
    .contact-box,
    .form-box {
      background: #fff;
      border-radius: 28px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }
    
     .contact-box p
     .footer-grid a {
      color: #64748b;
      line-height: 1.9;
    }
    
     .form-box {
      background: #0f172a;
      color: white;
      box-shadow: 0 18px 35px rgba(0,0,0,0.18);
    }
    
    .contact-box,
    .form-box {
      padding: 28px;
    }
    
   
    .form-box input,
    .form-box textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.08);
      color: white;
      padding: 16px 18px;
      border-radius: 18px;
      outline: none;
      margin-bottom: 16px;
      font-size: 15px;
    }
    
     .form-box input::placeholder,
    .form-box textarea::placeholder {
      color: #cbd5e1;
    }
    
    .form-box textarea {
      min-height: 150px;
      resize: vertical;
    }
    
     .contact-info {
      margin-top: 24px;
      display: grid;
      gap: 14px;
    }
    
     .contact-info span {
      color: #0f172a;
      font-weight: 800;
    }
    
    

    footer {
      background: #0f172a;
      color: #e2e8f0;
      padding: 65px 0 0;
      margin-top: 80px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 30px;
    }

    footer h3,
    footer h4 {
      color: #fff;
      margin-bottom: 14px;
    }

    footer p,
    .footer-links a {
      color: #cbd5e1;
      font-size: 15px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .copyright {
      margin-top: 40px;
      text-align: center;
      padding: 18px 12px;
      border-top: 1px solid rgba(148, 163, 184, 0.18);
      color: #94a3b8;
      font-size: 14px;
    }

    @media (max-width: 1100px) {
      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-grid,
      .products-layout,
      .footer-grid,
      .modal-card {
        grid-template-columns: 1fr;
      }

      .sidebar {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        padding: 14px 0;
      }

      nav {
        justify-content: center;
      }

      .hero-card img {
        height: 300px;
      }

      .products-panel,
      .sidebar {
        padding: 22px;
      }
    }

    @media (max-width: 640px) {
      .hero-products {
        padding: 70px 0 50px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
      }

      .product-grid {
        grid-template-columns: 1fr;
      }

      nav {
        gap: 14px;
      }

      .logo-text h3 {
        font-size: 16px;
      }
    }