 /* =============================================
     ROOT VARIABLES
  ============================================= */
  :root {
    --black:      #0a0a0b;
    --deep:       #111115;
    --panel:      #17171c;
    --steel:      #1e1e25;
    --mid:        #2c2c36;
    --muted:      #6b6b7a;
    --silver:     #9ca3af;
    --light:      #d1d5db;
    --white:      #f4f5f7;
    --red:        #e8272b;
    --red-dim:    #b81e21;
    --red-glow:   rgba(232,39,43,0.18);
    --border:     rgba(255,255,255,0.07);
    --section-py: 100px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--light);
    overflow-x: hidden;
  }

  img  { display: block; max-width: 100%; }
  a    { text-decoration: none; color: inherit; }
  ul   { list-style: none; }

  /* =============================================
     UTILITY
  ============================================= */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }

  .tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    border-left: 2px solid var(--red);
    padding-left: 10px;
    margin-bottom: 16px;
  }

  .section-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.02em;
  }

  .section-heading span { color: var(--red); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 34px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }

  .btn-red {
    background: var(--red);
    color: #fff;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }

  .btn-red:hover { background: var(--red-dim); transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }

  .btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
  }

  /* =============================================
     SCROLLBAR
  ============================================= */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

  /* =============================================
     NAVBAR
  ============================================= */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
  }

  #navbar.scrolled {
    background: rgba(10,10,11,0.96);
    padding: 14px 5vw;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }

  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
  }

  .nav-logo span { color: var(--red); }

  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 1px;
    background: var(--red);
    transition: right 0.3s ease;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { right: 0; }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    display: block;
    transition: all 0.3s;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-drawer {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(280px, 78vw);
    background: var(--deep);
    border-left: 1px solid var(--border);
    z-index: 999;
    flex-direction: column;
    padding: 90px 36px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  }

  .mobile-drawer.open { transform: translateX(0); }

  .mobile-drawer a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--silver);
    transition: color 0.2s;
  }

  .mobile-drawer a:hover { color: var(--red); }

  .mob-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 998;
  }
  .mob-overlay.show { display: block; }

  /* =============================================
     HERO
  ============================================= */
  #hero {
    position: relative;
    height: 100svh;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(105deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.5) 55%, rgba(10,10,11,0.2) 100%),
      url('./images/banner.webp') center/cover no-repeat;
  }

  /* Diagonal red accent line */
  .hero-bg::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 48%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--red) 30%, var(--red) 70%, transparent);
    opacity: 0.25;
    transform: skewX(-8deg);
  }

  .hero-content {
    position: relative;
    padding: 0 5vw 30px;
    max-width: 760px;
    animation: heroIn 1s ease both;
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    animation: heroIn 1s 0.1s ease both;
  }

  .hero-tag::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--red);
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.2rem, 7.5vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    animation: heroIn 1s 0.2s ease both;
  }

  .hero-title .accent { color: var(--red); }

  .hero-sub {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 300;
    color: var(--silver);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 42px;
    animation: heroIn 1s 0.3s ease both;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroIn 1s 0.4s ease both;
  }

  /* Scroll indicator */
  .scroll-ind {
    position: absolute;
    bottom: 38px; right: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }

  .scroll-ind::after {
    content: '';
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollPulse 2s infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
  }

  /* =============================================
     TICKER STRIP
  ============================================= */
  .ticker {
    background: var(--red);
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
  }

  .ticker-inner {
    display: inline-flex;
    gap: 0;
    animation: ticker 22s linear infinite;
  }

  .ticker-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 0 40px;
  }

  .ticker-item::before {
    content: '// ';
    opacity: 0.5;
  }

  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* =============================================
     ABOUT
  ============================================= */
  #about {
    padding: var(--section-py) 0;
    background: var(--deep);
    position: relative;
    overflow: hidden;
  }

  #about::before {
    content: 'ABOUT';
    position: absolute;
    right: -30px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    letter-spacing: 0.05em;
    pointer-events: none;
    user-select: none;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-img-wrap {
    position: relative;
  }

  .about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
  }

  /* Red corner accent */
  .about-img-wrap::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px;
    width: 80px; height: 80px;
    border-top: 3px solid var(--red);
    border-left: 3px solid var(--red);
    pointer-events: none;
    z-index: 1;
  }

  .about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -12px; right: -12px;
    width: 80px; height: 80px;
    border-bottom: 3px solid var(--red);
    border-right: 3px solid var(--red);
    pointer-events: none;
    z-index: 1;
  }

  .about-text p {
    font-size: 0.96rem;
    line-height: 1.85;
    color: var(--silver);
    margin-top: 18px;
  }

  .about-text p + p { margin-top: 12px; }

  .about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .pillar {
    padding: 18px 20px;
    background: var(--steel);
    border-left: 2px solid var(--red);
  }

  .pillar h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
  }

  .pillar p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.5; }

  /* =============================================
     PRODUCTS
  ============================================= */
  #products {
    padding: var(--section-py) 0;
    background: var(--black);
  }

  .products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .prod-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .prod-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.75);
    transition: all 0.5s ease;
    display: block;
  }

  .prod-card:hover .prod-card-img {
    filter: grayscale(0%) brightness(0.85);
    transform: scale(1.04);
  }

  .prod-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,11,0.95) 0%, rgba(10,10,11,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.3s;
  }

  .prod-card:hover .prod-card-overlay {
    background: linear-gradient(to top, rgba(10,10,11,0.98) 0%, rgba(10,10,11,0.5) 60%, rgba(232,39,43,0.05) 100%);
  }

  /* Red bar that slides up on hover */
  .prod-card-overlay::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }

  .prod-card:hover .prod-card-overlay::before { transform: scaleX(1); }

  .prod-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
  }

  .prod-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 8px;
  }

  .prod-desc {
    font-size: 0.82rem;
    color: var(--silver);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s;
    opacity: 0;
  }

  .prod-card:hover .prod-desc { max-height: 60px; opacity: 1; }

  /* =============================================
     SERVICES
  ============================================= */
  #services {
    padding: var(--section-py) 0;
    background: var(--panel);
    position: relative;
    overflow: hidden;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 52px;
  }

  .svc-card {
    padding: 42px 32px;
    background: var(--steel);
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
  }

  .svc-card:hover {
    background: var(--mid);
    border-top-color: var(--red);
    transform: translateY(-4px);
  }

  .svc-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 20px;
  }

  .svc-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 12px;
  }

  .svc-card p {
    font-size: 0.84rem;
    line-height: 1.7;
    color: var(--muted);
  }

  .svc-num {
    position: absolute;
    top: 18px; right: 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
  }

  /* =============================================
     WHY CHOOSE US
  ============================================= */
  #why {
    padding: var(--section-py) 0;
    background: var(--black);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 52px;
  }

  .why-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
  }

  .why-list { display: flex; flex-direction: column; gap: 24px; }

  .why-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 24px;
    background: var(--deep);
    border: 1px solid var(--border);
    transition: border-color 0.3s, background 0.3s;
  }

  .why-item:hover {
    border-color: var(--red);
    background: var(--steel);
  }

  .why-item-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .why-item-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
  }

  .why-item-text p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* =============================================
     STATS
  ============================================= */
  #stats {
    background: var(--red);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }

  #stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(0,0,0,0.05) 20px,
      rgba(0,0,0,0.05) 22px
    );
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
  }

  .stat-item {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
  }

  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    display: block;
  }

  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
    display: block;
  }

  /* =============================================
     TESTIMONIALS
  ============================================= */
  #testimonials {
    padding: var(--section-py) 0;
    background: var(--deep);
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 52px;
  }

  .testi-card {
    padding: 40px 34px;
    background: var(--steel);
    position: relative;
    transition: background 0.3s;
    border-top: 3px solid transparent;
  }

  .testi-card:hover {
    background: var(--mid);
    border-top-color: var(--red);
  }

  .testi-quote {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    color: var(--red);
    opacity: 0.25;
    line-height: 0.8;
    margin-bottom: 14px;
    display: block;
  }

  .testi-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--silver);
    margin-bottom: 28px;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(30%);
  }

  .testi-author strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    display: block;
  }

  .testi-author span {
    font-size: 0.75rem;
    color: var(--muted);
  }

  .testi-stars {
    color: var(--red);
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
  }

  /* =============================================
     CONTACT / FOOTER
  ============================================= */
  #contact {
    background: var(--panel);
    padding: var(--section-py) 0 0;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border);
  }

  .contact-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }

  .contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
  }

  .contact-item-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .contact-item p {
    font-size: 0.88rem;
    color: var(--silver);
    line-height: 1.6;
  }

  .contact-item strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
  }

  /* Map placeholder */
  .map-placeholder {
    width: 100%; height: 170px;
    background: var(--steel);
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px dashed var(--border);
    position: relative;
    overflow: hidden;
  }

  .map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=600&q=60&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.08;
  }

  /* Contact form */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-group label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    background: var(--steel);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.25s;
    resize: none;
  }

  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--red); }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--muted); }

  /* Footer bottom */
  .footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-brand-lg {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
  }

  .footer-brand-lg span { color: var(--red); }

  .footer-social { display: flex; gap: 12px; }

  .footer-social a {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    font-size: 0.8rem;
    transition: all 0.25s;
  }

  .footer-social a:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-glow);
  }

  .footer-copy {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.08em;
  }

  /* =============================================
     RESPONSIVE
  ============================================= */
  @media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  }

  @media (max-width: 820px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img { height: 360px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-img { height: 300px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  }

  @media (max-width: 640px) {
    :root { --section-py: 70px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-drawer { display: flex; }
    .products-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .about-pillars { grid-template-columns: 1fr; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
   /* Popup Background */
      .popup-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.6);
          display: none;
          justify-content: center;
          align-items: center;
          z-index: 9999;
      }

      /* Popup Box */
      .popup-box {
          background: #121E44;
          padding: 25px;
          border-radius: 12px;
          width: 350px;
          color: #fff;
          position: relative;
          animation: fadeIn 0.5s ease-in-out;
      }

      /* Close Button */
      .close-btn {
          position: absolute;
          top: 10px;
          right: 15px;
          cursor: pointer;
          font-size: 20px;
      }

      /* Form Fields */
      .popup-box input,
      .popup-box select {
          width: 100%;
          padding: 10px;
          margin: 8px 0;
          border: none;
          border-radius: 6px;
      }

      /* Button */
      .popup-box button {
          width: 100%;
          padding: 12px;
          background: #E4BF50;
          color: #121E44;
          border: none;
          border-radius: 6px;
          font-weight: bold;
          cursor: pointer;
          margin-top: 10px;
      }

      .popup-box button:hover {
          opacity: 0.9;
      }
      
      
      
      .popup-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9998; /* form popup se thoda kam ya zyada adjust kar sakte ho */
}

.popup1-content {
  position: relative;
  max-width: 400px;
}

.popup1-content img {
  width: 100%;
  border-radius: 10px;
}

.close-banner {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: bold;
}