/* =========================
   Hydra Safety - Premium UI
   ========================= */

:root{
  --navy:#07152f;
  --navy2:#0b234a;
  --ink:#0b1020;
  --blue:#1f4ed8;
  --bg:#f6f8fc;
  --card:#ffffff;
  --muted:#5b667a;
  --border:rgba(15, 23, 42, .10);
  --shadow:0 18px 55px rgba(0,0,0,.10);
  --shadow2:0 14px 38px rgba(0,0,0,.12);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background:var(--bg);
  color:#0f172a;
}

/* Containers */
.container{max-width:1180px; margin:0 auto; padding:0 18px;}
.section{padding:70px 0;}
.section.tight{padding:45px 0;}
.grid{display:grid; gap:18px;}
.flex{display:flex; gap:14px; align-items:center;}
.between{justify-content:space-between;}
.wrap{flex-wrap:wrap}

/* Top bar */
.topbar{
  background:linear-gradient(90deg, #07152f, #0b1020);
  color:rgba(255,255,255,.92);
  font-size:14px;
}
.topbar .row{padding:10px 0;}
.topbar a{color:rgba(255,255,255,.92); text-decoration:none}
.topbar .pill{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  transition:.2s ease;
}
.topbar .pill:hover{background:rgba(255,255,255,.12)}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header .row{padding:14px 0;}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit;}
.brand img{height:42px; width:auto}
.brand .name{font-weight:900; letter-spacing:.2px}
.brand .tag{font-size:12px; color:var(--muted); margin-top:2px}

/* Nav */
.nav{display:flex; gap:22px; align-items:center;}
.nav a{
  text-decoration:none;
  color:#334155;
  font-weight:700;
  padding:10px 10px;
  border-radius:12px;
  transition:.2s ease;
}
.nav a:hover{background:rgba(31,78,216,.06); color:#0f172a}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  font-weight:800;
  border-radius:999px;
  padding:12px 18px;
  border:1px solid transparent;
  cursor:pointer;
  text-decoration:none;
  transition:.22s ease;
  line-height:1;
  user-select:none;
}
.btn.primary{background:var(--blue); color:#fff; box-shadow:0 10px 28px rgba(31,78,216,.28)}
.btn.primary:hover{transform:translateY(-1px); filter:brightness(1.03)}
.btn.ghost{background:#fff; color:#0b1020; border:1px solid var(--border)}
.btn.ghost:hover{transform:translateY(-1px); background:#f4f7ff}
.btn.dark{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}
.btn.dark:hover{background:rgba(255,255,255,.14)}

/* Dropdown (Products) */
.dropdown{
  position:relative;
}
.dropbtn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:12px;
}
.dropbtn .chev{font-size:12px; opacity:.75}
.menu{
  position:absolute;
  top:48px;
  left:0;
  width:270px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow2);
  padding:10px;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:.18s ease;
}
.dropdown.open .menu,
.dropdown:hover .menu,
.menu:hover{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.menu a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  color:#0f172a;
  font-weight:800;
}
.menu a:hover{background:rgba(31,78,216,.06)}
.menu .ico{width:22px; text-align:center}
and Uniforms only:

/* Same product view like your screenshot */
.winter-grid,
.coverall-grid,
.footwear-grid,
.uniform-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* Light category cards (used on product pages) */
.light-cats .cat{
  background:#fff;
  border:1px solid var(--border);
  color:#0f172a;
}

.light-cats .cat .body{
  background:#fff;
}

.light-cats .cat .body b{
  color:#0f172a;
}

.light-cats .cat .body span{
  color:#475569;
}

.winter-grid .prod .ph,
.coverall-grid .prod .ph,
.footwear-grid .prod .ph,
.uniform-grid .prod .ph{
  height: 470px;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.winter-grid .prod img,
.coverall-grid .prod img,
.footwear-grid .prod img,
.uniform-grid .prod img{
  width: 100%;
  height: 100%;
  object-fit: contain;   /* important */
  padding: 0px;
  transform: scale(1);
  transition: transform .35s ease;
}

.winter-grid .prod:hover img,
.coverall-grid .prod:hover img,
.footwear-grid .prod:hover img,
.uniform-grid .prod:hover img{
  transform: scale(1.04);
}

.winter-grid .prod .pb,
.coverall-grid .prod .pb,
.footwear-grid .prod .pb,
.uniform-grid .prod .pb{
  padding: 18px 20px 22px;
}

.winter-grid .prod .name,
.coverall-grid .prod .name,
.footwear-grid .prod .name,
.uniform-grid .prod .name{
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}


/* tablet */
@media (max-width: 980px){
  .winter-grid,
  .coverall-grid,
  .footwear-grid,
  .uniform-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .winter-grid .prod .ph,
  .coverall-grid .prod .ph,
  .footwear-grid .prod .ph,
  .uniform-grid .prod .ph{
    height: 420px;
  }
}

/* mobile */
@media (max-width: 560px){
  .winter-grid,
  .coverall-grid,
  .footwear-grid,
  .uniform-grid{
    grid-template-columns: 1fr;
  }

  .winter-grid .prod .ph,
  .coverall-grid .prod .ph,
  .footwear-grid .prod .ph,
  .uniform-grid .prod .ph{
    height: 360px;
  }
}
/* Hero */
.hero{
  position:relative;
  min-height:520px;
  color:#fff;
  overflow:hidden;
  background:
    linear-gradient(110deg, rgba(7,21,47,.28), rgba(7,21,47,.12)),
    url("assets/hero.jpg");
  background-size:cover;
  background-position:center;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 420px at 18% 25%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 420px at 80% 30%, rgba(31,78,216,.18), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.06));
  pointer-events:none;
}
.hero .inner{position:relative; z-index:1; padding:78px 0 64px;}
.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  font-weight:800;
}
.h1{
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 950;
  line-height:1.02;
  margin:16px 0 10px;
  letter-spacing:-.6px;
}
.lead{
  max-width:720px;
  color:rgba(255,255,255,.90);
  font-size:18px;
  line-height:1.6;
}
.hero-actions{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap;}
.stats{
  margin-top:26px;
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.stat{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:20px;
  padding:14px 16px;
  backdrop-filter: blur(10px);
}
.stat b{display:block; font-size:16px}
.stat span{display:block; margin-top:4px; color:rgba(255,255,255,.85); font-size:13px}

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.card.pad{padding:22px;}
.card.soft{box-shadow:var(--shadow)}
.title{
  font-size:32px;
  font-weight:950;
  letter-spacing:-.4px;
  margin:0;
}
.sub{color:var(--muted); margin:10px 0 0; line-height:1.6}

/* Industries */
.industry-grid{grid-template-columns:repeat(4, minmax(0, 1fr));}
.industry .h{font-weight:950; font-size:18px}
.industry p{margin:10px 0 0; color:var(--muted); font-size:14px; line-height:1.6}

/* About + Quote */
.two-col{grid-template-columns: 1.6fr 1fr;}
.tick{display:flex; gap:10px; align-items:flex-start; color:#0f172a}
.tick i{color:#16a34a; font-style:normal; font-weight:900}
.form input, .form textarea{
  width:100%;
  border:1px solid var(--border);
  padding:14px 14px;
  border-radius:16px;
  outline:none;
  font-size:15px;
}
.form input:focus, .form textarea:focus{border-color:rgba(31,78,216,.45); box-shadow:0 0 0 4px rgba(31,78,216,.12)}
.form small{color:#64748b}

/* Product Categories (with real images instead of blank/black) */
.cat-wrap{
  background:linear-gradient(120deg, #07152f, #0b1020);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.cat-grid{grid-template-columns:repeat(5, minmax(0, 1fr)); margin-top:18px;}
.cat{
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  box-shadow:0 18px 55px rgba(0,0,0,.25);
  text-decoration:none;
  color:#fff;
  transform:translateY(0);
  transition:.22s ease;
}
.cat:hover{transform:translateY(-4px)}
.cat .img{
  height:210px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.cat .img::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.55));
}
.cat .body{padding:18px 18px 20px}
.cat .body b{display:block; font-size:20px}
.cat .body span{display:block; margin-top:6px; color:rgba(255,255,255,.78); font-weight:650; font-size:13px}

/* Product grid */
.products-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px}
.products-head .kicker{color:var(--muted); margin-top:8px; max-width:820px}
.prod-grid{grid-template-columns:repeat(3, minmax(0, 1fr)); margin-top:18px;}
.prod{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:0 12px 35px rgba(0,0,0,.07);
  transition:.22s ease;
}
.prod:hover{transform:translateY(-4px); box-shadow:0 18px 55px rgba(0,0,0,.12)}
.prod .ph{
  height:270px;              /* increased product display height */
  background:#eef2f7;
  overflow:hidden;
}
.prod img{
  width:100%; height:100%;
  object-fit: contain;
background:#eef2f7;
  transform:scale(1);
  transition:.35s ease;
}
.prod:hover img{transform:scale(1.06)} /* hover zoom */
.prod .pb{padding:14px 16px 16px}
.prod .name{font-weight:950; font-size:16px; color:#0b1020}

/* Page hero (category pages) */
.page-hero{
  background:linear-gradient(120deg, #07152f, #0b1020);
  color:#fff;
  padding:58px 0 40px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.page-hero h1{margin:0; font-size:44px; font-weight:950; letter-spacing:-.5px}
.page-hero p{margin:10px 0 0; color:rgba(255,255,255,.82); max-width:760px; line-height:1.6}
.page-hero .actions{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}

/* Supply coverage compact + merged contact */
.supply-grid{grid-template-columns:1fr 1.35fr; align-items:stretch;}
.contact-lines{
  color:#0f172a;
  line-height:1.7;
}
.contact-lines b{display:inline-block; min-width:92px}
.mapbox{
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 14px 44px rgba(0,0,0,.10);
  background:#0b1020;
}
.mapbox img{
  width:100%;
  height:360px;     /* smaller than before */
  object-fit:cover;
  display:block;
  opacity:.98;
}

/* Footer */
.footer{
  background:linear-gradient(120deg, #07152f, #0b1020);
  color:#fff;
  padding:44px 0 18px;
  margin-top:0;
}
.footer p, .footer a{color:rgba(255,255,255,.78)}
.footer a{text-decoration:none}
.footer a:hover{color:#fff}
.footer-grid{grid-template-columns:1.2fr 1fr 1fr;}
.hr{border-top:1px solid rgba(255,255,255,.10); margin-top:24px; padding-top:16px}

/* WhatsApp floating */
.wa{
  position:fixed; right:18px; bottom:18px;
  width:58px; height:58px;
  display:grid; place-items:center;
  border-radius:999px;
  background:#22c55e;
  color:#fff;
  text-decoration:none;
  box-shadow:0 18px 55px rgba(0,0,0,.25);
  z-index:60;
}

/* Increase WhatsApp icon size */
.wa i{
  font-size:34px;
  line-height:1;
}

/* Scroll Reveal */
.reveal{opacity:0; transform:translateY(18px); transition: opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none;}
  .industry-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
  .two-col{grid-template-columns:1fr;}
  .cat-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
  .prod-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
  .stats{grid-template-columns:1fr}
  .supply-grid{grid-template-columns:1fr;}
  .mapbox img{height:300px;}
}
@media (max-width: 560px){
  .prod-grid{grid-template-columns:1fr;}
  .cat-grid{grid-template-columns:1fr;}
  .hero{min-height:560px;}
}