/* ==========================================================================
   Pawan Machine Tools Corporation
   Design language: industrial spec-sheet / blueprint
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* ---- palette ---- */
  --bg:            #F2EEE4;   /* paper / drafting-table cream */
  --bg-panel:      #EAE4D4;
  --ink:           #1C1D1B;   /* near-black text */
  --ink-soft:      #4B4C46;
  --steel:         #1F3245;   /* deep steel blue - primary */
  --steel-light:   #35516B;
  --steel-pale:    #E4EAEE;
  --safety:        #D9541F;   /* safety-orange accent */
  --safety-dark:   #B4441A;
  --line:          #C9C2AC;   /* hairline rule on paper */
  --line-steel:    rgba(255,255,255,0.14);
  --white:         #FBFAF6;

  /* ---- type ---- */
  --f-display: 'Oswald', sans-serif;
  --f-body:    'IBM Plex Sans', sans-serif;
  --f-mono:    'IBM Plex Mono', monospace;

  --radius: 2px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ width: 100%;
    display: block;
    height: auto; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--steel);
  margin: 0 0 .5em;
  line-height: 1.15;
}
p{ margin: 0 0 1em; color: var(--ink-soft); }

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--safety);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* ---- eyebrow / spec-tag ---- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--safety-dark);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 1px;
  background: var(--safety);
  display:inline-block;
}
/* flex */
.flx{
  display: flex;

}
.flx-aln{
  align-items: center;
}
.flx-jus-cen{
  justify-content: center;
}
.flx-jus{
  justify-content: space-between;
}
.flx-gap{
  gap:20px;
}
.flx-width-50{
  flex:50%;
}
.flx-width-80{
  flex:80%;
}
.flx-width-60{
  flex:60%;
}
.flx-width-20{
  flex:20%;
}
.flx-width-25{
  flex:25%;
}
.flx-width-30{
  flex:30%;
}
.flx-width-33{
  flex:33%;
}
.flx-width-40{
  flex:40%;
}
/* text-aln */
.text-start{
  text-align: start;
}
.text-center{
  text-align: center;
}
.text-end{
  text-align: end;
}
/* ==========================================================================
   Top utility bar + header
   ========================================================================== */
.topbar{
  background: var(--steel);
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 13px;
  padding:20px;
}
.topbar .container{
  /* display:flex;
  justify-content:space-between;
  align-items:center; */
  padding-top:8px;
  padding-bottom:8px;
  gap: 16px;
  /* flex-wrap: wrap; */
}
.topbar a{ color: var(--white); }
.topbar-item{ display:flex; align-items:center; gap:8px; }
.topbar-item svg{
  width:40px;
  height:40px;
}
.topbar-item .label{ color: rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.08em; font-size:11px; }
.topbar-item strong{ font-weight:600; letter-spacing:.02em; }

.site-header{
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top:0;
  z-index: 100;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px;
  padding-bottom:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{     width: 48px;
    height: 55px; }
.brand-word{ display:flex; flex-direction:column; line-height:1.1; }
.brand-word strong{
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--steel);
  letter-spacing:.01em;
}
.brand-word span{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing:.12em;
  text-transform: uppercase;
  color: var(--safety-dark);
}

.main-nav{ display:flex; align-items:center; gap: 4px; }
.main-nav > ul{ display:flex; align-items:center; gap:2px; }
.main-nav a.nav-link{
  display:block;
  padding: 10px 16px;
  font-family: var(--f-display);
  font-size: 14.5px;
  letter-spacing:.03em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid transparent;
}
.main-nav a.nav-link:hover,
.main-nav li.current > a.nav-link{
  color: var(--safety-dark);
  border-bottom-color: var(--safety);
}
.has-dropdown{ position:relative; }
.has-dropdown > a.nav-link{ display:flex; align-items:center; gap:6px; }
.caret{ width:8px; height:8px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform: rotate(45deg); margin-top:-4px; }
.dropdown{
  position:absolute;
  top: 100%;
  left:0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(20,25,20,.08);
  padding: 8px;
  opacity:0;
  visibility:hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity:1; visibility:visible; transform: translateY(0);
}
.dropdown a{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--ink);
  border-left: 2px solid transparent;
}
.dropdown a:hover{ background: var(--bg-panel); border-left-color: var(--safety); color:var(--steel); }
.dropdown .tag{ font-family:var(--f-mono); font-size:10.5px; color:var(--safety-dark); }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding: 6px;
}
.nav-toggle span{ width:24px; height:2px; background: var(--steel); display:block; }

/* ==========================================================================
   Hero — blueprint frame
   ========================================================================== */
.hero{
  position:relative;
  background: var(--steel);
  color: var(--white);
  overflow:hidden;
  border-bottom: 4px solid var(--safety);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(var(--line-steel) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-steel) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity:.5;
}
.hero-inner{
  position:relative;
  padding: 88px 24px 96px;
  max-width: 1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items:center;
}
.hero-frame{
  position:relative;
  border:1px solid rgba(255,255,255,.25);
  padding: 32px;
}
.hero-frame::before, .hero-frame::after,
.hero-corner-b::before, .hero-corner-b::after{
  content:""; position:absolute; width:18px; height:18px;
  border-color: var(--safety); border-style: solid; border-width:0;
}
.hero-frame::before{ top:-1px; left:-1px; border-top-width:3px; border-left-width:3px; }
.hero-frame::after{ top:-1px; right:-1px; border-top-width:3px; border-right-width:3px; }
.hero-frame .hero-corner-b{ position:absolute; inset:0; }
.hero-corner-b::before{ bottom:-1px; left:-1px; border-bottom-width:3px; border-left-width:3px; }
.hero-corner-b::after{ bottom:-1px; right:-1px; border-bottom-width:3px; border-right-width:3px; }

.hero .eyebrow{ color: #F0A47C; }
.hero .eyebrow::before{ background: var(--safety); }
.hero h1{
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: .35em;
}
.hero h1 em{ font-style:normal; color: var(--safety); }
.hero p.lead{ color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 46ch; }
.hero-actions{ display:flex; gap:14px; margin-top: 28px; flex-wrap:wrap;position:relative; z-index: 100;}

.hero-spec{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.18);
  padding: 20px;
}
.hero-spec-row{
  display:flex; justify-content:space-between; align-items:baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.2);
  font-family: var(--f-mono);
}
.hero-spec-row:last-child{ border-bottom:none; }
.hero-spec-row .k{ color: rgba(255,255,255,.55); font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; }
.hero-spec-row .v{ color: var(--white); font-size:15px; font-weight:600; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 13px 26px;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing:.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--safety); color: var(--white); }
.btn-primary:hover{ background: var(--safety-dark); }
.btn-outline{ border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover{ background: rgba(255,255,255,.08); }
.btn-steel{ background: var(--steel); color:var(--white); }
.btn-steel:hover{ background: var(--steel-light); }
.btn-ghost{ border-color: var(--steel); color: var(--steel); }
.btn-ghost:hover{ background: var(--steel); color:var(--white); }
.btn-block{ width:100%; justify-content:center; }
.btn-sm{ padding:9px 18px; font-size:12.5px; }
.btn[disabled]{ opacity:.55; cursor:not-allowed; transform:none; }

/* ==========================================================================
   Section rhythm
   ========================================================================== */
section{ padding: 84px 0; }
.section-tight{ padding: 56px 0; }
.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.bg-panel{ background: var(--bg-panel); }
.bg-steel{ background: var(--steel); color: var(--white); }
.bg-steel h2, .bg-steel h3{ color: var(--white); }
.bg-steel p{ color: rgba(255,255,255,.7); }
.rule{ height:1px; background: var(--line); border:none; margin: 0; }

/* ==========================================================================
   Pillars (Aim / Mission / Vision)
   ========================================================================== */
.pillars{ display:grid; grid-template-columns: repeat(3,1fr); gap:28px; }
.pillar{
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--steel);
  padding: 30px 26px;
}
.pillar .num{ font-family:var(--f-mono); font-size:12px; color:var(--safety-dark); letter-spacing:.1em; }
.pillar-icon{ width:38px; height:38px; margin-bottom:16px; color: var(--safety); }
.pillar h3{ font-size:1.2rem; }

/* ==========================================================================
   About split
   ========================================================================== */
.about-split{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
.about-split .panel{
  background: var(--steel);
  padding: 6px;
}
.about-split .panel-inner{
  border: 1px dashed rgba(255,255,255,.35);
  padding: 34px;
  color: var(--white);
}
.about-split .panel-inner .badge{
  display:inline-block;
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#F0A47C;
  border:1px solid rgba(255,255,255,.3);
  padding:4px 10px;
  margin-bottom:16px;
}
.about-split .panel-inner strong{ color:var(--white); }
.stat-strip{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:20px; }
.stat-strip div{ border-top:1px solid rgba(255,255,255,.25); padding-top:10px; }
.stat-strip .n{ font-family:var(--f-display); font-size:1.6rem; color:var(--white); }
.stat-strip .l{ font-family:var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.55); }

/* ==========================================================================
   Product grid / spec cards
   ========================================================================== */
.product-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.spec-card{
  background: var(--white);
  border: 1px solid var(--line);
  position:relative;
  display:flex; flex-direction:column;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.spec-card:hover{ box-shadow: 0 16px 32px rgba(20,30,25,.10); transform: translateY(-3px); border-color: var(--steel); }
.spec-card .thumb{
  background: var(--steel-pale);
  aspect-ratio: 4/3;
  display:flex; align-items:center; justify-content:center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.product-img {
  /* width:60%; */
}
.spec-card .thumb svg{ width:64%; height:64%; }
.spec-card .thumb .model-tag{
  position:absolute; top:10px; left:10px;
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:.06em;
  background: var(--steel); color:var(--white); padding:3px 8px;
}
.spec-card .body{ padding: 22px 22px 20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.spec-card h3{ font-size:1.15rem; margin-bottom:2px; }
.spec-card p{ font-size:.94rem; margin-bottom:6px; flex:1; }
.spec-card .card-actions{ display:flex; gap:10px; margin-top:auto; }

/* ==========================================================================
   Awards / Team
   ========================================================================== */
.awards-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:26px; }
.award-frame{ border:1px solid var(--line); background:var(--white); padding:10px; }
.award-frame img{ width:100%; }
.award-frame .cap{ font-family:var(--f-mono); font-size:12px; color:var(--ink-soft); padding:10px 6px 2px; text-align:center; letter-spacing:.04em; text-transform:uppercase; }

.team-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.team-card{ text-align:center; }
.team-photo{
  width:100%; aspect-ratio:1/1;
  background: var(--steel-pale);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px; overflow:hidden;
}
.team-photo svg{ width:52%; color: var(--steel-light); }
.team-card h4{ font-size:1.02rem; margin-bottom:2px; }
.team-card .role{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--safety-dark); }
.team-card:nth-of-type(2){
  margin: 20px;
}
/* ==========================================================================
   Gauge stats ("Our Speciality")
   ========================================================================== */
.gauge-strip{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
.gauge{ text-align:center; }
.gauge svg{ width:132px; height: 84px; }
.gauge .value{ font-family:var(--f-display); font-size:1.9rem; color:var(--white); margin-top:6px; }
.gauge .label{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.55); margin-top:4px; }

/* ==========================================================================
   Timeline (about page)
   ========================================================================== */
.timeline{ position:relative; padding-left: 34px; }
.timeline::before{ content:""; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background:var(--line); }
.timeline-item{ position:relative; padding-bottom: 34px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-34px; top:2px; width:12px; height:12px;
  background: var(--safety); border:3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--safety);
  border-radius:50%;
}
.timeline-item .yr{ font-family:var(--f-mono); font-size:12.5px; color:var(--safety-dark); letter-spacing:.06em; }

/* ==========================================================================
   Values grid (about page)
   ========================================================================== */
.values-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
.value-item{ border-left:2px solid var(--safety); padding-left:16px; }
.value-item h4{ font-size:1.02rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-filter{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 32px; }
.chip{
  font-family:var(--f-mono); font-size:12px; letter-spacing:.05em; text-transform:uppercase;
  padding:8px 16px; border:1px solid var(--line); background:var(--white); color:var(--ink-soft);
}
.chip.active, .chip:hover{ border-color:var(--steel); color:var(--steel); }
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.gallery-item{
  background: var(--steel-pale);
  border:1px solid var(--line);
  aspect-ratio: 4/3;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.gallery-item svg{ width:56%; }
.gallery-item .cap{
  position:absolute; left:0; right:0; bottom:0;
  background: rgba(31,50,69,.88); color:var(--white);
  font-family:var(--f-mono); font-size:11.5px; letter-spacing:.05em;
  padding:8px 12px; transform: translateY(100%); transition: transform .18s ease;
}
.gallery-item:hover .cap{ transform: translateY(0); }
.gallery-container{
  padding:30px;
}

/* ==========================================================================
   Shop
   ========================================================================== */
.shop-toolbar{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; gap:16px; flex-wrap:wrap; }
.shop-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
.shop-card{ background:var(--white); border:1px solid var(--line); display:flex; flex-direction:column; }
.shop-card .thumb{ background:var(--steel-pale); aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; border-bottom:1px solid var(--line); position:relative; }
.shop-card .thumb svg{ width:58%; }
.shop-card .badge{ position:absolute; top:10px; right:10px; background:var(--safety); color:var(--white); font-family:var(--f-mono); font-size:10px; letter-spacing:.05em; padding:3px 8px; text-transform:uppercase; }
.shop-card .body{ padding:20px 20px 22px; display:flex; flex-direction:column; gap:8px; flex:1; }
.shop-card .price-row{ display:flex; justify-content:space-between; align-items:center; margin-top:auto; padding-top:12px; }
.shop-card .price{ font-family:var(--f-mono); font-weight:600; color:var(--steel); }
.shop-card .price small{ display:block; font-size:10.5px; color:var(--ink-soft); font-weight:400; text-transform:uppercase; letter-spacing:.06em; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-wrap{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 48px; }
.contact-info-card{ background: var(--steel); color:var(--white); padding: 36px 32px; }
.contact-info-card h3{ color:var(--white); }
.info-row{ display:flex; gap:14px; padding: 16px 0; border-bottom:1px solid rgba(255,255,255,.15); }
.info-row:last-of-type{ border-bottom:none; }
.info-row .ic{ width:20px; height:20px; flex:0 0 auto; margin-top:2px; color: var(--safety); }
.info-row .k{ font-family:var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.5); }
.info-row .v{ font-size:15px; color:var(--white); }
.social-row{ display:flex; gap:10px; margin-top:24px; }
.social-row a{ width:36px; height:36px; border:1px solid rgba(255,255,255,.3); display:flex; align-items:center; justify-content:center; }
.social-row a:hover{ background: var(--safety); border-color: var(--safety); }
.social-row svg{ width:16px; height:16px; }

.form-card{ background:var(--white); border:1px solid var(--line); padding: 36px 32px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--f-mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:8px; }
.field input, .field textarea, .field select{
  width:100%; padding: 12px 14px; border:1px solid var(--line); background:var(--bg);
  font-family: var(--f-body); font-size:15px; color:var(--ink); border-radius:var(--radius);
}
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--steel); outline:none; background:var(--white); }
.field textarea{ min-height:130px; resize:vertical; }
.form-note{ font-size:12.5px; color: var(--ink-soft); margin-top:10px; }
.form-success{ display:none; background:#EAF4EC; border:1px solid #9CC7A4; color:#28623A; padding:14px 16px; font-size:14px; margin-bottom:18px; }
.form-success.show{ display:block; }

.map-strip{ border:1px solid var(--line); margin-top:40px; }
.map-strip iframe{ width:100%; height:340px; display:block; border:none; filter: grayscale(.25) contrast(1.05); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: var(--steel);
  color: var(--white);
  padding: 56px 0;
  position:relative;
  border-top:4px solid var(--safety);
}
.cta-band .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.cta-band h2{ color:var(--white); margin-bottom:6px; font-size:1.7rem; }
.cta-band p{ margin:0; color: rgba(255,255,255,.7); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: #16232F; color: rgba(255,255,255,.82); padding-top: 64px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap:36px; padding-bottom: 48px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .brand-word strong, .footer-brand .brand-word span{ color: var(--white); }
.footer-brand .brand-word span{ color:#F0A47C; }
.footer-brand p{ color: rgba(255,255,255,.55); margin-top:16px; font-size:14px; max-width:32ch; }
.site-footer h4{ color:var(--white); font-size:13px; letter-spacing:.1em; text-transform:uppercase; font-family:var(--f-mono); margin-bottom:18px; }
.site-footer ul li{ margin-bottom:11px; }
.site-footer ul a{ color: rgba(255,255,255,.62); font-size:14.5px; }
.site-footer ul a:hover{ color: var(--safety); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; color:rgba(255,255,255,.62); font-size:14px; margin-bottom:14px; }
.footer-contact svg{ width:16px; height:16px; flex:0 0 auto; margin-top:3px; color:var(--safety); }
.footer-bottom{ padding: 20px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:13px; color:rgba(255,255,255,.45); }
.footer-bottom .social-row a{ border-color: rgba(255,255,255,.2); width:32px; height:32px; }

/* ==========================================================================
   Breadcrumb / page header (inner pages)
   ========================================================================== */
.page-head{
  background: var(--steel);
  color: var(--white);
  padding: 48px 0;
  border-bottom: 4px solid var(--safety);
  position:relative;
  overflow:hidden;
}
.page-head::before{
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(var(--line-steel) 1px, transparent 1px), linear-gradient(90deg, var(--line-steel) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity:.4;
}
.page-head .container{ position:relative; }
.page-head h1{ color:var(--white); margin-bottom:8px; }
.breadcrumb{ font-family:var(--f-mono); font-size:13px; color: rgba(255,255,255,.55); }
.breadcrumb a:hover{ color: var(--safety); }
.breadcrumb .sep{ margin:0 8px; }

/* ==========================================================================
   Misc components
   ========================================================================== */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.feature-list{ margin-top:18px; }
.feature-list li{ display:flex; gap:12px; padding:12px 0; border-bottom:1px dashed var(--line); }
.feature-list li:last-child{ border-bottom:none; }
.feature-list svg{ width:18px; height:18px; color:var(--safety); flex:0 0 auto; margin-top:3px; }
.feature-list b{ color:var(--steel); }

.spec-table{ width:100%; border-collapse: collapse; font-family: var(--f-mono); font-size:14px; }
.spec-table tr{ border-bottom:1px solid var(--line); }
.spec-table td{ padding: 13px 6px; }
.spec-table td:first-child{ color: var(--ink-soft); width:44%; text-transform:uppercase; font-size:12px; letter-spacing:.05em; }
.spec-table td:last-child{ color: var(--steel); font-weight:600; }

.related-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }

.back-to-top{
  position:fixed; right:22px; bottom:22px;
  width:44px; height:44px;
  background: var(--steel); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  border:none; opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 90;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:none; }
.back-to-top:hover{ background: var(--safety); }
.back-to-top svg{ width:18px; height:18px; }

.whatsapp-fab{
  position:fixed; left:22px; bottom:22px; z-index:90;
  width:52px; height:52px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.whatsapp-fab svg{ width:26px; height:26px; }

[data-reveal]{ opacity:0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].in{ opacity:1; transform:none; }

/* gallery */
.gallery-hero{

    position:relative;
    height:100vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    radial-gradient(circle at top right,#ffc40025,transparent 35%),
    radial-gradient(circle at bottom left,#ffc40015,transparent 30%),
    #050505;

}

/* Overlay */

.hero-overlay{

    position:absolute;
    inset:0;

  background: linear-gradient(to bottom, rgb(218 217 215 / 91%), rgb(247 244 229 / 89%));

}

/* Decorative Grid */

.hero-grid{

    position:absolute;
    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

    background-size:60px 60px;

    opacity:.4;

}

/* Glowing Circles */

.glow{

    position:absolute;
    border-radius:50%;
    filter:blur(90px);

}

.glow-one{

    width:420px;
    height:420px;

    background:#f56e30e6;

    top:-100px;
    right:-120px;

    animation:float1 8s infinite ease-in-out;

}

.glow-two{

    width:300px;
    height:300px;

    background:#f56e30e6;

    left:-80px;
    bottom:-80px;

    animation:float2 10s infinite ease-in-out;

}

/* Glass Box */

.gallery-content{

    position:relative;

    width:90%;
    max-width:900px;

    text-align:center;

    padding:60px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(16px);

    border:1px solid rgb(138 135 135 / 83%);

    box-shadow:
    0 0 40px rgba(255,208,0,.15);

}

/* Tag */

.gallery-tag{

    display:inline-block;

    color:#ff5c00;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

/* Heading */

.gallery-content h1{

    font-family:'Montserrat',sans-serif;

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

}

.gallery-content h1 span{

    color:#ff5c00;

}

/* Paragraph */

.gallery-content p{

    max-width:720px;

    margin:auto;

    color:#3f3f3f;

    font-size:18px;

    line-height:1.8;

}

/* Buttons */

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons a{

    text-decoration:none;

    padding:16px 38px;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

/* Primary */

.btn-primary{

    background:#f48b4e;

    color:#000;

}

.btn-primary:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(255,208,0,.45);
  color:white;
}

/* Secondary */

.btn-secondary{

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

    background:rgba(55, 55, 55, 0.848);

}

.btn-secondary:hover{

    background:#fff;

    color:#000;

}

/* Scroll Indicator */

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-down span{

    display:block;

    width:28px;

    height:50px;

    border:2px solid #ffd000;

    border-radius:40px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:8px;
    height:8px;

    background:#ffd000;

    border-radius:50%;

    left:50%;
    top:10px;

    transform:translateX(-50%);

    animation:scroll 2s infinite;

}

/* Animations */

@keyframes scroll{

0%{
transform:translate(-50%,0);
opacity:1;
}

100%{

transform:translate(-50%,20px);
opacity:0;

}

}

@keyframes float1{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(40px);
}

}

@keyframes float2{

0%,100%{
transform:translateX(0);
}

50%{
transform:translateX(35px);
}

}

/*============================

Gallery Filter Section

=============================*/

.gallery-filter-section{

    width:100%;
    padding:100px 8% 1px;

    background:#cdcdca8c;

}

.gallery-filter-heading{

    text-align:center;
    margin-bottom:55px;

}

.gallery-filter-heading span{

    color:#ff5c00;
    letter-spacing:2px;
    font-size:14px;
    text-transform:uppercase;
    font-weight:600;

}

.gallery-filter-heading h2{

    margin-top:12px;
    font-size:42px;
    color:#3d3d3d;
    font-family:'Montserrat',sans-serif;
    font-weight:700;

}

.gallery-filter-heading p{

    width:700px;
    max-width:100%;
    margin:20px auto 0;
    color:#3e3d3d;
    line-height:1.8;

}

/*============================

Filter Container

=============================*/

.gallery-filter{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;

}

/*============================

Glass Button

=============================*/

.filter-btn{

    position:relative;

    padding:16px 34px;

    border-radius:50px;

    border:1px solid rgba(39, 38, 38, 0.584);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    color:#313030;

    font-size:15px;
    font-weight:500;

    cursor:pointer;

    transition:.35s ease;

    overflow:hidden;

}

/* Shine Effect */

.filter-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:linear-gradient(
    120deg,
    transparent,
    rgba(36, 35, 35, 0.315),
    transparent);

    transition:.8s;

}

.filter-btn:hover::before{

    left:120%;

}

/* Hover */

.filter-btn:hover{

    transform:translateY(-6px);

    border-color:#FFD000;

    box-shadow:

    0 0 18px rgba(255,208,0,.18),
    0 0 45px rgba(255,208,0,.12);

}

/* Active */

.filter-btn.active{

    background:#FFD000;

    color:#000;

    border-color:#FFD000;

    font-weight:600;

    box-shadow:

    0 0 18px rgba(255,208,0,.45),
    0 0 40px rgba(255,208,0,.18);

}

/* Active underline */

.filter-btn.active::after{

    content:"";

    position:absolute;

    bottom:0;
    left:50%;

    width:60%;
    height:3px;

    background:#000;

    border-radius:50px;

    transform:translateX(-50%);

}

/*=========================
Gallery Section
=========================*/

.gallery-section{

    padding:100px 8%;
    background:#cdcdca8c;

}

/* Masonry */

.gallery-grid{

    columns:3 320px;
    column-gap:22px;

}

/* Card */

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    margin-bottom:22px;

    break-inside:avoid;

    cursor:pointer;

    background:#111;

    transition:.45s;

}

/* Heights */

.gallery-item img{

    width:100%;
    display:block;

    border-radius:22px;

    transition:.7s;

}

/* Overlay */

.gallery-overlay{

    position:absolute;

    inset:0;

    padding:35px;

    display:flex;

    justify-content:flex-end;

    flex-direction:column;

    background:

    linear-gradient(
    transparent,
    rgba(0,0,0,.88));

    opacity:0;

    transition:.45s;

}

/* Category */

.gallery-overlay span{

    display:inline-block;

    width:max-content;

    padding:8px 18px;

    background:#FFD000;

    color:#000;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

}

/* Title */

.gallery-overlay h3{

    color:#fff;

    font-size:28px;

    margin-bottom:12px;

    font-family:Montserrat;

}

/* Link */

.gallery-overlay a{

    color:#FFD000;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

/* Hover */

.gallery-item:hover img{

    transform:scale(1.12);

    filter:brightness(.65);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

/* Card Lift */

.gallery-item:hover{

    transform:translateY(-10px);

    box-shadow:

    0 18px 40px rgba(0,0,0,.45),

    0 0 30px rgba(255,208,0,.18);

}

/* Arrow Animation */

.gallery-overlay a:hover{

    letter-spacing:1px;

}

/* Border Glow */

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

    pointer-events:none;

}

/* Responsive */

@media(max-width:992px){

.gallery-grid{

columns:2 280px;

}

}

@media(max-width:768px){




}
/*============================

Responsive

=============================*/

@media(max-width:768px){

.gallery-filter{

gap:14px;

}

.filter-btn{

padding:14px 24px;
font-size:14px;

}

.gallery-filter-heading h2{

font-size:34px;

}
.gallery-grid{

columns:1;

}
.flx-dir-col{
  flex-direction: column;
}

}



@media(max-width:480px){

.gallery-content h1{

font-size:32px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

text-align:center;

}
.gallery-filter{

display:grid;
grid-template-columns:repeat(2,1fr);

}

.filter-btn{

width:100%;

}

.gallery-filter-heading h2{

font-size:28px;

}

}
/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .pillars{ grid-template-columns: 1fr; }
  .about-split{ grid-template-columns:1fr; }
  .two-col{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns: repeat(2,1fr); }
  .gauge-strip{ grid-template-columns: repeat(2,1fr); }
  .values-grid{ grid-template-columns: repeat(2,1fr); }
  .awards-grid{ grid-template-columns:1fr; }
  .contact-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .shop-grid{ grid-template-columns: repeat(2,1fr); }
  .related-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-content h1{
font-size:52px;
}
}
@media (max-width: 760px){
  .main-nav{
    position:fixed; top:79px; left:0; right:0; bottom:0;
    background: var(--bg); padding: 20px 24px; overflow:auto;
    transform: translateX(-100%); transition: transform .22s ease;
    flex-direction:column; align-items:stretch; z-index:99;
  }
  .main-nav.open{ transform:none; }
  .main-nav > ul{ flex-direction:column; align-items:stretch; gap:0; }
  .main-nav a.nav-link{ padding:14px 4px; border-bottom:1px solid var(--line); }
  .dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; display:none; margin-left:12px; }
  .has-dropdown.open .dropdown{ display:block; }
  .nav-toggle{ display:flex; }
  .topbar .container{ justify-content:center; text-align:center; flex-direction: column; }
  .form-row{ grid-template-columns:1fr; }
  .gallery-content{

padding:40px 25px;

}

.gallery-content h1{

font-size:40px;

}

.gallery-content p{

font-size:16px;

}
}
@media (max-width: 620px){
  .product-grid{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:1fr; }
  .shop-grid{ grid-template-columns:1fr; }
  .related-grid{ grid-template-columns:1fr 1fr; }
  section{ padding: 56px 0; }
}
