:root{
  --orange:#c2482c;
  --orange2:#ff6a00;
  --navy:#0b1f44;
  --text:#0f172a;
  --muted:#6b7280;
  --white:#ffffff;
  --shadow: 0 18px 45px rgba(2,8,23,.18);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{
  width:min(1180px, 92vw);
  margin:0 auto;
}

/* ===== TOPBAR ===== */
.topbar{
  background:var(--orange);
  color:#fff;
  font-weight:600;
}
.topbar-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.tlink,.ttext{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  opacity:.95;
  white-space:nowrap;
}
.ico{font-size:15px}
.topbar-right{
  display:flex;
  align-items:center;
  gap:12px;
}
.soc{
  width:28px;height:28px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  display:grid;place-items:center;
  font-size:12px;
  font-weight:800;
  opacity:.95;
  transition:.2s;
}
.soc:hover{transform:translateY(-1px);opacity:1}

/* ===== HEADER ===== */
.header{
  background:#fff;
  border-bottom:1px solid #eef2f7;
  position:sticky;
  top:0;
  z-index:50;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:180px;
}
.brand-logo{height:46px;width:auto}
.brand-title{font-size:22px;font-weight:800;color:var(--navy);line-height:1}
.brand-sub{font-size:12px;color:var(--muted);font-weight:600;margin-top:2px}

.nav{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-link{
  font-weight:700;
  color:#0b2554;
  padding:10px 2px;
  position:relative;
  transition:.2s;
}
.nav-link:hover{color:var(--orange2)}
.nav-link.active{color:#0b2554}
.nav-link.active::after{
  content:"";
  position:absolute;
  left:0;bottom:2px;
  width:100%;height:3px;
  background:var(--orange2);
  border-radius:3px;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.icon-btn{
  width:40px;height:40px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
  display:grid;place-items:center;
  cursor:pointer;
  transition:.2s;
}
.icon-btn:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(2,8,23,.08)}

.menu-btn{
  width:52px;height:42px;
  border:none;
  border-radius:10px;
  background:var(--orange2);
  cursor:pointer;
  display:none;
  position:relative;
  transition:.2s;
}
.menu-btn:hover{filter:brightness(.98)}
.menu-btn .bars,
.menu-btn .bars::before,
.menu-btn .bars::after{
  content:"";
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  border-radius:2px;
}
.menu-btn .bars{top:50%}
.menu-btn .bars::before{top:-7px;position:absolute}
.menu-btn .bars::after{top:7px;position:absolute}

/* ===== DRAWER ===== */
.drawer{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:0;
  transition:.2s;
}
.drawer.open{
  opacity:1;
  pointer-events:auto;
}
.drawer-panel{
  position:absolute;
  right:0; top:0;
  height:100%;
  width:min(340px, 86vw);
  background:#fff;
  box-shadow:var(--shadow);
  transform:translateX(110%);
  transition:.25s ease;
  z-index:2;
  display:flex;
  flex-direction:column;
}
.drawer.open .drawer-panel{transform:translateX(0)}
.drawer-backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,8,23,.45);
  z-index:1;
}
.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 18px 14px;
  border-bottom:1px solid #eef2f7;
}
.drawer-title{font-weight:800;color:var(--navy);font-size:18px}
.close-btn{
  width:40px;height:40px;
  border:1px solid #e5e7eb;
  background:#fff;
  border-radius:12px;
  cursor:pointer;
  font-size:18px;
  transition:.2s;
}
.close-btn:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(2,8,23,.08)}

.drawer-links{
  padding:14px 18px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.drawer-link{
  padding:12px 12px;
  border:1px solid #eef2f7;
  border-radius:12px;
  font-weight:700;
  color:#0b2554;
  transition:.2s;
}
.drawer-link:hover{
  border-color:#ffd1bf;
  background:#fff6f1;
  color:var(--orange2);
}
.drawer-cta{
  margin-top:auto;
  padding:14px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* ===== HERO ===== */
.hero{
  position:relative;
  width:100%;
  min-height:520px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 48%, rgba(255,255,255,.75) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  min-height:520px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  align-items:center;
  gap:34px;
  padding:46px 0;
}
.hero-left h1{
  margin:0 0 10px;
  color:#fff;
  font-size:48px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.5px;
  text-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.hero-left p{
  margin:0 0 22px;
  color:rgba(255,255,255,.92);
  font-size:16px;
  font-weight:600;
  max-width:640px;
}
.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:10px;
  font-weight:800;
  border:1px solid transparent;
  transition:.2s;
}
.btn-primary{
  background:#e43b2c;
  color:#fff;
  box-shadow:0 14px 30px rgba(228,59,44,.28);
}
.btn-primary:hover{transform:translateY(-1px);filter:brightness(.98)}
.btn-dark{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}
.btn-dark:hover{transform:translateY(-1px);background:rgba(255,255,255,.16)}
.btn-ghost{
  background:#fff;
  border-color:#e5e7eb;
  color:#0b2554;
}
.btn-ghost:hover{transform:translateY(-1px);box-shadow:0 12px 26px rgba(2,8,23,.10)}
.w100{width:100%}

/* Badge */
.badge{margin-top:18px}
.badge-ring{
  width:120px;height:120px;
  border-radius:999px;
  background:radial-gradient(circle at 30% 30%, #fff 0%, #ffe9bf 22%, #d6a93a 55%, #a77a12 100%);
  display:grid;
  place-items:center;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  position:relative;
  overflow:hidden;
}
.badge-ring::after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:999px;
  background:rgba(11,31,68,.82);
  mix-blend-mode:multiply;
  opacity:.25;
}
.badge-top,.badge-mid,.badge-bot{
  position:relative;
  z-index:2;
  color:#1a1402;
  font-weight:900;
}
.badge-top{font-size:11px;letter-spacing:.8px}
.badge-mid{font-size:22px}
.badge-bot{font-size:11px;letter-spacing:.6px}

/* Owner card */
.hero-right{
  display:flex;
  justify-content:flex-end;
}
.owner-card{
  width:min(340px, 92%);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.55);
  border-radius:18px;
  padding:16px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(6px);
}
.owner-img{
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(2,8,23,.08);
}
.owner-img img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.owner-info{
  padding:12px 6px 4px;
  text-align:center;
}
.owner-name{
  font-size:22px;
  font-weight:900;
  color:#d12a1d;
  margin-top:6px;
}
.owner-role{
  font-size:12.5px;
  font-weight:800;
  color:#111827;
  margin-top:6px;
  line-height:1.35;
}
.owner-role span{font-weight:700;color:#374151}
.owner-edu{
  margin-top:8px;
  font-size:12.5px;
  font-weight:700;
  color:#1f2937;
  line-height:1.35;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .nav{display:none}
  .menu-btn{display:inline-block}
  .hero-content{
    grid-template-columns: 1fr;
    gap:20px;
    padding:36px 0;
  }
  .hero-overlay{
    background:linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.40) 60%, rgba(0,0,0,.45) 100%);
  }
  .hero-right{justify-content:flex-start}
  .owner-card{
    background:rgba(255,255,255,.90);
    width:min(420px, 100%);
  }
  .hero-left h1{font-size:38px}
}

@media (max-width: 560px){
  .topbar-wrap{gap:10px}
  .topbar-right{display:none}
  .tlink,.ttext{font-size:13px}
  .brand-logo{height:40px}
  .hero{min-height:640px}
  .hero-content{min-height:640px}
  .hero-left h1{font-size:32px}
  .owner-img img{height:200px}
  .icon-btn{display:none}
}

/* =========================
   ABOUT US SECTION (IPCS)
   ========================= */
.ipcs-about,
.ipcs-about *{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ipcs-about{
  padding: 60px 0;
  background: #ffffff;
}

.ipcs-about__grid{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: center;
}

/* Left photo box */
.ipcs-about__photoBox{
  background: #57c6ff; /* sky blue like screenshot */
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(2, 20, 50, .10);
}

.ipcs-about__photoBox img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Right content */
.ipcs-about__title{
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 800; /* heading bold ok */
  color: #0b1220;
  letter-spacing: -.4px;
}

.ipcs-about__p{
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #222b3a;
  font-weight: 400; /* content not bold */
  text-align: justify;
}

/* CTA buttons row */
.ipcs-about__cta{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* button base */
.ipcs-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 4px; /* square-ish like screenshot */
  font-weight: 700;
  font-size: 14px;

  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 10px 20px rgba(2, 20, 50, .12);
  transition: transform .15s ease, filter .15s ease;
}

.ipcs-btn:hover{
  transform: translateY(-1px);
  filter: brightness(.98);
}

.ipcs-btn__icon{
  font-size: 15px;
  line-height: 1;
}

/* button colors */
.ipcs-btn--call{ background: #0b66d6; }
.ipcs-btn--wa{ background: #1fc95a; }
.ipcs-btn--mail{ background: #ff5a2a; }
.ipcs-btn--down{ background: #0b7a2b; }

/* Responsive */
@media (max-width: 992px){
  .ipcs-about__grid{
    grid-template-columns: 360px 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px){
  .ipcs-about{
    padding: 40px 0;
  }

  .ipcs-about__grid{
    grid-template-columns: 1fr;
  }

  .ipcs-about__title{
    font-size: 28px;
  }

  .ipcs-about__photoBox{
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 420px){
  .ipcs-btn{
    width: 100%;
  }
}

/* ===============================
   IPCS SERVICES SECTION
================================ */
.ipcs-services{
  padding:80px 0;
  background:#f8fafc;
  font-family:"Inter","Montserrat",Arial,sans-serif;
}

.ipcs-services .container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  text-align:center;
}

.ipcs-services__title{
  font-size:40px;
  font-weight:800;
  color:#0b132b;
  margin-bottom:10px;
}

.ipcs-services__subtitle{
  font-size:16.5px;
  color:#475569;
  max-width:760px;
  margin:0 auto 50px;
}

/* ===============================
   IPCS SERVICES – CLEAN TYPO
================================ */
.ipcs-services{
  padding:1px 0;
  background:#f9fafb;
  font-family:"Poppins","Inter","Segoe UI",Arial,sans-serif;
}

.ipcs-services .container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  text-align:center;
}

/* Heading */
.ipcs-services__title{
  font-size:34px;
  font-weight:600;   /* lighter */
  color:#0f172a;
  margin-bottom:8px;
  letter-spacing:.2px;
}

.ipcs-services__subtitle{
  font-size:15px;
  font-weight:400;
  color:#475569;
  max-width:880px;
  margin:0 auto 45px;
  line-height:1.6;
}

/* GRID 4 + 4 */
.ipcs-services__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

/* CARD */
.ipcs-service-box{
  background:#ffffff;
  padding:26px 22px;
  border-radius:14px;
  text-align:left;
  border:1px solid #e5e7eb;
  transition:all .3s ease;
}

.ipcs-service-box:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* ICON REMOVE */
.ipcs-service-icon{
  display:none;
}

/* Title */
.ipcs-service-box h3{
  font-size:16.5px;
  font-weight:500;     /* reduced */
  color:#111827;
  margin-bottom:6px;
}

/* Paragraph */
.ipcs-service-box p{
  font-size:14.2px;    /* smaller */
  font-weight:400;
  line-height:1.6;
  color:#4b5563;
  text-align:justify;
}

/* TABLET */
@media (max-width:1024px){
  .ipcs-services__grid{
    grid-template-columns:repeat(2,1fr);
  }

  .ipcs-services__title{
    font-size:30px;
  }
}

/* MOBILE */
@media (max-width:600px){
  .ipcs-services{
    padding:55px 0;
  }

  .ipcs-services__title{
    font-size:26px;
  }

  .ipcs-services__grid{
    grid-template-columns:1fr;
  }

  .ipcs-service-box{
    padding:24px 20px;
  }
}



/* =========================
HERO SECTION (IPCS) - CSS
(You can paste into your main style.css)
========================= */

.ipcs-hero{
  position:relative;
  padding: 44px 0 28px;
  overflow:hidden;
  background: radial-gradient(900px 520px at 20% 22%, rgba(176,24,43,.22), transparent 55%),
              linear-gradient(120deg, rgba(7,27,56,.96) 0%, rgba(11,42,85,.88) 52%, rgba(7,27,56,.96) 100%);
  color:#fff;
}

.ipcs-hero__bg{
  position:absolute; inset:-30px;
  background:
    radial-gradient(700px 420px at 80% 25%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(600px 420px at 18% 78%, rgba(255,255,255,.05), transparent 60%);
  filter: blur(0px);
  pointer-events:none;
}

.ipcs-hero__wrap{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:center;
}

.ipcs-hero__kicker{
  display:flex; align-items:center; flex-wrap:wrap; gap:10px;
  margin-bottom: 12px;
  opacity:.98;
}
.kicker-pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  font-weight:800;
  font-size:12px;
  letter-spacing:.2px;
}
.kicker-dot{opacity:.6}
.kicker-mini{font-weight:700; font-size:12px; opacity:.92}

.ipcs-hero__h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.06;
  letter-spacing:-.8px;
}

.ipcs-hero__sub{
  margin: 0;
  max-width: 70ch;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
}

.ipcs-hero__trust{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trustItem{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.trustItem:hover{
  transform: translateY(-3px);
  border-color: rgba(176,24,43,.30);
  background: rgba(176,24,43,.08);
}

.trustIco{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  flex: 0 0 42px;
}
.trustIco svg{
  width: 22px; height: 22px;
  fill: rgba(255,255,255,.92);
}

.trustTxt b{display:block; font-weight:900; font-size:14px}
.trustTxt span{display:block; font-size:12.5px; opacity:.88; margin-top:2px}

.ipcs-hero__cta{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

.ipcs-hero__note{
  margin-top: 10px;
  font-size: 12.5px;
  opacity: .88;
}

/* RIGHT slider card */
.heroSlider{
  position:relative;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  box-shadow: 0 26px 80px rgba(2,8,23,.30);
}

.heroSlider__track{
  position:relative;
  height: 430px;
}

.heroSlide{
  position:absolute;
  inset:0;
  margin:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .55s ease;
}
.heroSlide.is-active{
  opacity:1;
  transform: scale(1);
}

.heroSlide img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter: contrast(1.05) saturate(1.08);
}

.heroSlide::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,.05) 0%, rgba(2,6,23,.22) 52%, rgba(2,6,23,.70) 100%);
}

.heroSlide figcaption{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  font-weight:900;
  letter-spacing:.2px;
  z-index:2;
}

/* slider arrows */
.heroNav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
  z-index:3;
  transition: transform .25s ease, background .25s ease;
}
.heroNav:hover{transform: translateY(-50%) scale(1.05); background: rgba(176,24,43,.18)}
.heroNav--prev{left: 12px}
.heroNav--next{right: 12px}

/* dots */
.heroDots{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display:flex;
  gap: 8px;
  justify-content:center;
  z-index:4;
  pointer-events:auto;
}
.heroDot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.22);
  cursor:pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.heroDot.is-active{
  background: rgba(176,24,43,.92);
  border-color: rgba(176,24,43,.92);
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 980px){
  .ipcs-hero{padding: 34px 0 18px}
  .ipcs-hero__wrap{grid-template-columns: 1fr; gap: 16px}
  .heroSlider__track{height: 320px}
}
@media (max-width: 520px){
  .ipcs-hero__trust{grid-template-columns: 1fr}
}




/* =========================
SERVICES (8 GRID) - CSS
Dark Blue + Red theme, pro hover, responsive
========================= */

.ipcs-services{
  padding: 56px 0;
  background: #ffffff;
  color: #0b1b32;
}

.sec-head h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: -.3px;
}
.sec-head p{max-width: 70ch; margin: 0 auto}

.center{text-align:center}
.muted{color: rgba(11,27,50,.72)}
.justify{text-align: justify}

.services-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.svc-card{
  position:relative;
  padding: 18px 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(11,27,50,.10);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 36px rgba(2, 8, 23, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow:hidden;
  min-height: 190px;
}

.svc-card::before{
  content:"";
  position:absolute;
  inset:-2px -2px auto -2px;
  height: 4px;
  opacity:.95;
}

.svc-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 220px at 20% 0%, rgba(176,24,43,.10), transparent 55%);
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
}

.svc-card:hover{
  transform: translateY(-6px);
  border-color: rgba(176,24,43,.22);
  box-shadow: 0 22px 52px rgba(2, 8, 23, .12);
}
.svc-card:hover::after{opacity:1}

/* ✅ Icon Center */
.svc-ico{
  width: 46px; height: 46px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(11,42,85,.06);
  border: 1px solid rgba(11,42,85,.12);
  margin: 0 auto 10px;  /* ✅ center */
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.svc-ico svg{
  width: 24px; height: 24px;
  fill: #0b2a55;
  transition: fill .25s ease;
}
.svc-card:hover .svc-ico{
  transform: translateY(-2px) scale(1.02);
  background: rgba(176,24,43,.08);
  border-color: rgba(176,24,43,.22);
}
.svc-card:hover .svc-ico svg{fill:#b0182b}

.svc-card h3{
  margin: 0 0 8px;
  font-size: 15.5px;
  line-height: 1.25;
  letter-spacing: -.2px;
  color: #071b38;
}

.svc-card p{
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.7;
}

.svc-link{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  font-weight: 800;
  font-size: 13px;
  color: #0b2a55;
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(11,42,85,.06);
  border: 1px solid rgba(11,42,85,.10);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.svc-link:hover{
  transform: translateY(-2px);
  background: rgba(176,24,43,.08);
  border-color: rgba(176,24,43,.22);
  color: #b0182b;
}

/* Responsive */
@media (max-width: 1100px){
  .services-grid{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 520px){
  .services-grid{grid-template-columns: 1fr}
  .svc-card{min-height: auto}
}

/* =========================
SERVICES CTA BUTTONS
For:
<button class="btn btn--danger">
<a class="btn btn--outline">
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  font-family:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:.3px;

  padding:13px 22px;
  border-radius:14px;
  cursor:pointer;
  text-decoration:none;
  border:1px solid transparent;

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

/* 🔴 Primary CTA */
.btn--danger{
  background:#b0182b;                 /* IPCS Red */
  color:#ffffff;
  border-color:rgba(176,24,43,.35);
  box-shadow:0 10px 24px rgba(176,24,43,.25);
}

.btn--danger:hover{
  background:#9f1526;
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(176,24,43,.35);
}

/* 🔵 Secondary CTA */
.btn--outline{
  background:rgba(11,42,85,.06);      /* IPCS Navy tint */
  color:#0b2a55;
  border:1px solid rgba(11,42,85,.22);
}

.btn--outline:hover{
  background:rgba(11,42,85,.12);
  color:#0b2a55;
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(11,42,85,.15);
}

/* CTA wrapper spacing (optional but recommended) */
.center.reveal{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

/* Mobile optimization */
@media(max-width:520px){
  .btn{
    width:100%;
    max-width:320px;
  }
}




/* =========================
IPCS • PRODUCTS GRID (9 cards)
Neat + responsive + hover
========================= */

:root{
  --ipcs-navy:#0b2a55;
  --ipcs-red:#b0182b;
  --ipcs-text:#071b38;
  --ipcs-muted:rgba(7,27,56,.72);
  --ipcs-bg:#f7fbff;
  --ipcs-card:#ffffff;
  --ipcs-radius:14px;
  --ipcs-font:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body{font-family:var(--ipcs-font);}

/* Products section */
.products-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 44px 18px;
  background: var(--ipcs-bg);
}

.products-grid h2{
  grid-column: 1/-1;
  margin: 0 0 6px;
  color: var(--ipcs-text);
  letter-spacing: -.2px;
}

.product{
  background: var(--ipcs-card);
  border-radius: var(--ipcs-radius);
  padding: 18px;
  border: 1px solid rgba(11,42,85,.10);
  box-shadow: 0 14px 34px rgba(2, 8, 23, .06);
  text-align:center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 360px; /* equal look */
}

.product:hover{
  transform: translateY(-6px);
  border-color: rgba(176,24,43,.22);
  box-shadow: 0 22px 52px rgba(2, 8, 23, .12);
}

.product img{
  width:100%;
  height: 190px;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
  margin-bottom: 12px;
}

.product h3{
  margin: 8px 0 6px;
  font-size: 16px;
  color: var(--ipcs-navy);
  letter-spacing: -.15px;
}

.product p{
  margin: 0 0 14px;
  color: var(--ipcs-muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: justify;
  flex: 1; /* push button down */
}

.product-buttons{
  margin-top:auto;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.product-buttons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding: 10px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
  font-family: var(--ipcs-font);

  background: rgba(11,42,85,.06);
  color: var(--ipcs-navy);
  border: 1px solid rgba(11,42,85,.14);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.product-buttons a:hover{
  transform: translateY(-2px);
  background: rgba(176,24,43,.08);
  border-color: rgba(176,24,43,.22);
  color: var(--ipcs-red);
}

/* Responsive */
@media (max-width: 980px){
  .products-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 560px){
  .products-grid{grid-template-columns: 1fr;}
  .product{min-height:auto;}
  .product p{text-align:left;}
}


/* =========================
IPCS • POPUP FORM (Professional)
Use with #popup-form markup
========================= */

.popup-form{
  display:none;
  position:fixed;
  inset:0;
  background: rgba(2,8,23,.62);
  z-index: 9999;
  align-items:center;
  justify-content:center;
  padding: 18px;
}

.popup-form.is-open{display:flex;}

.popup-content{
  width: min(520px, 96vw);
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(11,42,85,.10);
  box-shadow: 0 24px 70px rgba(2,8,23,.35);
  padding: 22px 20px 18px;
  position:relative;
  overflow:hidden;
}

.popup-content::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ipcs-red), var(--ipcs-navy), var(--ipcs-red));
  opacity:.95;
}

.popup-content h3{
  margin: 10px 0 12px;
  color: var(--ipcs-text);
  letter-spacing:-.2px;
}

.close-popup{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  cursor:pointer;
  border: 1px solid rgba(11,42,85,.10);
  background: rgba(11,42,85,.06);
  color: var(--ipcs-navy);
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.close-popup:hover{
  transform: translateY(-1px);
  background: rgba(176,24,43,.10);
  color: var(--ipcs-red);
}

.popup-content form{
  display:grid;
  gap: 10px;
}

.popup-content input,
.popup-content textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,42,85,.18);
  outline:none;
  font-family: var(--ipcs-font);
  font-size: 14px;
}

.popup-content input:focus,
.popup-content textarea:focus{
  border-color: rgba(176,24,43,.40);
  box-shadow: 0 0 0 4px rgba(176,24,43,.10);
}

.popup-content button{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(176,24,43,.35);
  background: var(--ipcs-red);
  color:#fff;
  font-weight: 900;
  font-family: var(--ipcs-font);
  cursor:pointer;
  transition: transform .25s ease, filter .25s ease;
}
.popup-content button:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (max-width: 420px){
  .popup-content{padding: 20px 16px 16px;}
}


/* =========================
START CTA – IPCS
========================= */
.start-cta{
  padding: 70px 20px;
  background: linear-gradient(
    135deg,
    #0b2a55 0%,
    #071b38 100%
  );
  color: #ffffff;
}

.start-cta-inner{
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.start-cta h2{
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.start-cta p{
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
}

.start-cta-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn{
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.cta-btn.primary{
  background: #b0182b;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(176,24,43,.35);
}

.cta-btn.primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(176,24,43,.45);
}

.cta-btn.secondary{
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.25);
}

.cta-btn.secondary:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.20);
}

/* =========================
YOUTUBE VIDEO SECTION
========================= */
.video-section{
  padding: 70px 20px;
  background: #f7fbff;
}

.video-inner{
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.video-section h2{
  font-size: clamp(24px, 3vw, 34px);
  color: #071b38;
  margin-bottom: 12px;
}

.video-section p{
  max-width: 820px;
  margin: 0 auto 28px;
  font-size: 16px;
  color: rgba(7,27,56,.75);
  line-height: 1.7;
}

.video-wrapper{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(2,8,23,.15);
  background: #000;
}

.video-wrapper iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-cta{
  margin-top: 30px;
}


/* =========================
FAQ + CERTIFICATIONS
========================= */
/* =========================
FAQ + CERTIFICATIONS (ENHANCED)
========================= */
.ipcs-faq-cert{
  padding: 80px 20px;
  background: linear-gradient(180deg,#ffffff 0%,#f5f9ff 100%);
}

.faq-cert-inner{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

/* FAQ BOX */
.faq-box{
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(2,8,23,.08);
}

.faq-box h2{
  font-size: 28px;
  color: #071b38;
  margin-bottom: 26px;
}

.faq-item{
  margin-bottom: 22px;
}

.faq-item h4{
  font-size: 17px;
  font-weight: 700;
  color: #0b2a55;
  margin-bottom: 6px;
}

.faq-item p{
  font-size: 15px;
  line-height: 1.75;
  color: rgba(7,27,56,.82);
}

/* CERTIFICATION BOX */
.cert-box{
  background: linear-gradient(135deg,#0b2a55,#071b38);
  padding: 36px 32px;
  border-radius: 20px;
  color: #ffffff;
  box-shadow: 0 22px 50px rgba(2,8,23,.18);
}

.cert-box h2{
  font-size: 26px;
  margin-bottom: 18px;
  text-align: center;
}

/* CERT LIST */
.cert-list{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.cert-list li{
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  text-align: center;
}

.cert-list li:last-child{
  border-bottom: none;
}

/* CERT LOGOS */
.cert-logos{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  justify-items: center;
  align-items: center;
}

.cert-logos img{
  max-width: 80px;
  max-height: 45px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.cert-logos img:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .faq-cert-inner{
    grid-template-columns: 1fr;
  }

  .cert-logos{
    grid-template-columns: repeat(5, 1fr);
  }
}




/* =========================
IPCS • FOOTER CSS
Dark Blue + Red | Premium look | Responsive
========================= */

.ipcs-footer{
  font-family:'Montserrat',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: #071b38;
  color: rgba(255,255,255,.88);
  position: relative;
  overflow: hidden;
}

.ipcs-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(176,24,43,.22), transparent 55%),
    radial-gradient(900px 420px at 90% 30%, rgba(11,42,85,.35), transparent 58%);
  pointer-events:none;
}

.footer-top{
  padding: 70px 20px 40px;
  position: relative;
}

.footer-inner{
  max-width: 1200px;
  margin: auto;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 26px;
  position: relative;
}

.f-col{min-width: 0;}

.f-logo{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  margin-bottom: 14px;
}

.f-logo img{
  width: 150px;
  height: 100px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  padding: 8px;
  border: 1px solid rgba(255,255,255,.10);
}

.f-logo-fallback{
  width: 52px; height: 52px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 900;
  color: #fff;
}

.f-about{
  margin: 0 0 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  font-size: 14.5px;
}

.f-cta{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.f-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  text-decoration:none;
  cursor:pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.f-btn--red{
  background:#b0182b;
  color:#fff;
  border-color: rgba(176,24,43,.35);
  box-shadow: 0 16px 36px rgba(176,24,43,.30);
}

.f-btn--red:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(176,24,43,.42);
}

.f-btn--ghost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

.f-btn--ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
}

.f-mini{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
}

.f-chip{
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.9);
}

.f-head{
  margin: 6px 0 14px;
  color: #fff;
  font-size: 16px;
  letter-spacing: -.2px;
  position: relative;
}

.f-head::after{
  content:"";
  display:block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b0182b, rgba(255,255,255,.15));
}

.f-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.f-links a{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  font-size: 14px;
  line-height: 1.4;
  transition: color .2s ease, transform .2s ease;
}

.f-links a:hover{
  color:#ffffff;
  transform: translateX(2px);
}

.f-contact{
  display:grid;
  gap: 10px;
}

.f-line{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(255,255,255,.84);
  text-decoration:none;
  font-size: 14px;
  line-height: 1.5;
}

.f-ico{
  width: 22px;
  display:inline-flex;
  justify-content:center;
  opacity: .9;
}

.f-note{
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

.f-social{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}

.f-soc{
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  text-decoration:none;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease;
}

.f-soc:hover{
  transform: translateY(-2px);
  background: rgba(176,24,43,.18);
}

/* Bottom bar */
.footer-bottom{
  position: relative;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 20px;
  background: rgba(0,0,0,.10);
}

.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
}

.footer-bottom p{
  margin:0;
  font-size: 13px;
  color: rgba(255,255,255,.76);
}

.bottom-links{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
}

.bottom-links a{
  color: rgba(255,255,255,.76);
  text-decoration:none;
  transition: color .2s ease;
}
.bottom-links a:hover{color:#fff}
.dot{opacity:.6}

/* Responsive */
@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .f-head::after{width: 60px}
  .footer-top{padding-top: 56px}
}






/* ===== PAGE HERO HEADER (Like screenshot) ===== */
.page-hero{
  background:#65370b;              /* screenshot jaisa solid slate */
  padding:72px 0;
  position:relative;
  overflow:hidden;
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  /* halka premium overlay, still looks solid */
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.10));
  pointer-events:none;
}

.page-hero__inner{
  position:relative;
  text-align:center;
  max-width:980px;
  margin:0 auto;
}

.page-hero__title{
  margin:0;
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.15;
}

.page-hero__subtitle{
  margin:12px 0 0;
  color:rgba(255,255,255,.92);
  font-weight:600;
  letter-spacing:.2px;
  font-size:clamp(14px, 2vw, 18px);
  line-height:1.55;
}

/* Optional: thin top & bottom border feel */
.page-hero{
  border-top:1px solid rgba(255,255,255,.15);
  border-bottom:1px solid rgba(0,0,0,.08);
}

/* Mobile spacing */
@media (max-width: 768px){
  .page-hero{ padding:56px 0; }
  .page-hero__subtitle{ margin-top:10px; }
}







/* =========================
CONTACT PAGE FIX (Paste at END of style.css)
Works for: page-hero + contact-grid + form + map
========================= */

/* PAGE HERO (global) */
.page-hero{
  padding: 80px 0 48px;
  color:#fff;
  position:relative;
}
.page-hero__inner{
  text-align:center;
  max-width: 980px;
  margin: 0 auto;
}
.page-hero__title{
  margin:0;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: .2px;
}
.page-hero__subtitle{
  margin:10px 0 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  opacity: .92;
}

/* Your required hero bg color */
.page-hero--contact,
.page-hero--machines,
.page-hero--faq{
  background:#65370b;
}

/* keep hero text readable even if header overlaps */
.header + .page-hero{ margin-top:0; }

/* SECTION base */
.section{ padding: 56px 0; }
.section-alt{ background:#fafafa; }

.sec-head.center{ text-align:center; }
.sec-head h2{
  margin:0;
  font-size: 34px;
  font-weight: 800;
  line-height:1.2;
}
.sec-head p{
  margin:10px auto 0;
  max-width: 860px;
  font-size: 16px;
  line-height: 1.6;
}

/* CONTACT GRID */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}

.contact-card{
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 40px rgba(17,24,39,.08);
}

.contact-card .kicker{
  display:inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(176,24,43,.10);
  color: #b0182b;
}

.contact-card h3{
  margin: 10px 0 10px;
  font-size: 22px;
  font-weight: 800;
  color:#0f172a;
}

/* CONTACT FIELDS LIST */
.contact-card .field{
  display:flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(17,24,39,.10);
}
.contact-card .field:last-child{ border-bottom:0; }

.contact-card .field b{
  min-width: 140px;
  font-weight: 800;
  color:#0f172a;
}
.contact-card .field span,
.contact-card .field a{
  color:#334155;
  text-decoration:none;
  font-weight: 600;
}
.contact-card .field a:hover{ text-decoration: underline; }

/* CONTACT FORM */
.contact-form{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  box-sizing:border-box;
  border:1px solid rgba(17,24,39,.14);
  border-radius: 12px;
  padding: 12px 12px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size: 14px;
  outline:none;
  background:#fff;
}
.contact-form textarea{ resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: rgba(176,24,43,.55);
  box-shadow: 0 0 0 4px rgba(176,24,43,.10);
}

/* Buttons alignment inside cards */
.contact-card .btn,
.contact-card .cta-btn{
  border-radius: 999px;
}

/* Map block */
.contact-map{
  margin-top: 22px;
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(17,24,39,.08);
}
.contact-map .kicker{
  display:inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(12,90,166,.10);
  color: #0c5aa6;
}
.map-frame iframe{
  display:block;
  width:100%;
  border:0;
  border-radius: 14px;
}

/* Fix: top hero buttons wrap nicely */
.page-hero .btn,
.page-hero .btn--outline{
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .page-hero__title{ font-size: 36px; }
  .page-hero__subtitle{ font-size: 16px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-card .field b{ min-width: 130px; }
}

@media (max-width: 560px){
  .page-hero{ padding: 66px 0 36px; }
  .page-hero__title{ font-size: 30px; }
  .sec-head h2{ font-size: 28px; }
  .contact-card{ padding: 16px; }
  .contact-card .field{
    flex-direction: column;
    gap: 4px;
  }
  .contact-card .field b{ min-width: 0; }
}
