/*
Theme Name: Safrroys Machines
Theme URI: https://safrroys.com
Author: Safrroys Machines Pvt. Ltd.
Description: Official WordPress theme for Safrroys Machines Pvt. Ltd.
Version: 4.0.0
License: GNU General Public License v2 or later
Text Domain: safrroys
*/

/* ===========================  VARIABLES  =========================== */
:root {
  --primary:    #0d1f3c;
  --primary-lg: #1a3560;
  --accent:     #e67e22;
  --accent-h:   #cf6d17;
  --white:      #ffffff;
  --light:      #f5f6fa;
  --grey:       #e8eaf0;
  --border:     #dde2ee;
  --text:       #1a1a2e;
  --text-m:     #444455;
  --text-l:     #888899;
  --shadow:     0 4px 24px rgba(13,31,60,.10);
  --shadow-h:   0 8px 36px rgba(13,31,60,.18);
  --radius:     6px;
  --radius-lg:  12px;
  --trans:      all .3s ease;
  --font-h:     'Manrope', sans-serif;
  --font-b:     'Manrope', sans-serif;
  --container:  1200px;
  --hh:         80px;
}

/* ===========================  RESET  =========================== */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; font-size:16px }
body { font-family:var(--font-b); color:var(--text); background:var(--white); line-height:1.7; overflow-x:hidden }
img  { max-width:100%; height:auto; display:block }
a    { color:var(--accent); text-decoration:none; transition:var(--trans) }
a:hover { color:var(--accent-h) }
ul   { list-style:none }
button { cursor:pointer; border:none; background:none; font-family:var(--font-b) }
input,textarea,select { font-family:var(--font-b) }

/* ===========================  TYPOGRAPHY  =========================== */
h1,h2,h3,h4,h5,h6 { font-family:var(--font-h); font-weight:700; line-height:1.25; color:var(--primary) }
h1 { font-size:clamp(2rem,4vw,3.2rem) }
h2 { font-size:clamp(1.6rem,3vw,2.4rem) }
h3 { font-size:clamp(1.1rem,2vw,1.5rem) }
p  { margin-bottom:1rem; color:var(--text-m) }
p:last-child { margin-bottom:0 }

/* ===========================  UTILITIES  =========================== */
.container      { max-width:var(--container); margin:0 auto; padding:0 24px }
.container-wide { max-width:1360px; margin:0 auto; padding:0 24px }
.section-pad    { padding:80px 0 }
.section-pad-sm { padding:56px 0 }
.text-center    { text-align:center }
.text-center .section-desc { margin:0 auto }

.section-label { display:inline-block; font-size:.78rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--accent); background:rgba(230,126,34,.1); padding:5px 14px; border-radius:30px; margin-bottom:14px }
.section-title  { font-size:clamp(1.6rem,3vw,2.3rem); color:var(--primary); margin-bottom:14px; line-height:1.2 }
.section-title span { color:var(--accent) }
.section-desc   { font-size:1rem; color:var(--text-m); max-width:620px; line-height:1.75 }

.btn           { display:inline-flex; align-items:center; gap:8px; padding:13px 30px; border-radius:var(--radius); font-family:var(--font-h); font-size:.88rem; font-weight:700; letter-spacing:.04em; transition:var(--trans); cursor:pointer; text-decoration:none; line-height:1 }
.btn-primary   { background:var(--accent); color:var(--white); border:2px solid var(--accent) }
.btn-primary:hover { background:var(--accent-h); border-color:var(--accent-h); color:var(--white); transform:translateY(-2px); box-shadow:0 6px 20px rgba(230,126,34,.35) }
.btn-outline   { background:transparent; color:var(--white); border:2px solid var(--white) }
.btn-outline:hover { background:var(--white); color:var(--primary) }
.btn-outline-dark { background:transparent; color:var(--primary); border:2px solid var(--primary) }
.btn-outline-dark:hover { background:var(--primary); color:var(--white) }
.btn-sm        { padding:9px 20px; font-size:.82rem }

/* ===========================  HEADER  =========================== */
#site-header {
  position:fixed; top:0; left:0; right:0;
  z-index:9000;
  height:var(--hh);
  transition:background .3s,box-shadow .3s;
  background:var(--light);
}
#site-header.scrolled,
#site-header.solid { background:var(--light); box-shadow:0 2px 20px rgba(0,0,0,.2) }
.header-inner { display:flex; align-items:center; justify-content:space-between; height:var(--hh) }

/* Logo */
.site-logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; line-height:0 }
.site-logo a.custom-logo-link { display:flex; align-items:center; line-height:0; background:none; padding:0; box-shadow:none }
.site-logo img,.site-logo .custom-logo { height:58px; width:auto; max-width:220px; object-fit:contain; display:block }
.logo-text { display:flex; flex-direction:column; line-height:1 }
.logo-text strong { font-family:var(--font-h); font-size:1.3rem; font-weight:900; color:var(--primary); letter-spacing:.05em }
.logo-text span   { font-size:.62rem; color:var(--text-l); letter-spacing:.1em; text-transform:uppercase; margin-top:3px }

/* Desktop Nav */
.main-nav { display:flex; align-items:center; gap:2px }
.nav-item { position:relative }
.nav-link {
  display:inline-flex; align-items:center; gap:4px;
  padding:10px 14px;
  font-family:var(--font-h); font-size:.90rem; font-weight:600;
  color:var(--primary); text-decoration:none;
  border-radius:var(--radius); transition:var(--trans); white-space:nowrap;
}
.nav-link:hover,.nav-link.active { color:var(--accent); background:rgba(13,31,60,.06) }
.nav-link .arrow { font-size:.6rem; opacity:.7; transition:transform .3s }
.nav-item:hover .arrow { transform:rotate(180deg) }

/* Dropdown */
.dropdown {
  position:absolute; top:calc(100% + 0px); left:0;
  min-width:300px; background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:0 16px 48px rgba(0,0,0,.14);
  border:1px solid var(--border); z-index:9999; overflow:hidden;
  opacity:0; visibility:hidden; pointer-events:none;
  transform:translateY(8px);
  transition:opacity .22s,visibility .22s,transform .22s;
}
.nav-item.has-dropdown:hover > .dropdown,
.nav-item.has-dropdown:focus-within > .dropdown {
  opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0);
}
.nav-item.has-dropdown:nth-child(3) > .dropdown,
.nav-item.has-dropdown:nth-child(4) > .dropdown { left:auto; right:0; min-width:220px }

/* Category rows */
.dd-cat-link {
  display:flex; align-items:center; gap:12px;
  padding:13px 18px; text-decoration:none;
  transition:var(--trans); border-bottom:1px solid var(--border); background:var(--white);
}
.dd-cat-link:last-of-type { border-bottom:none }
.dd-cat-link:hover { background:var(--light) }
.dd-cat-link:hover .dd-cat-arrow,.dd-cat-link:hover strong { color:var(--accent) }
.dd-cat-link:hover .dd-cat-arrow { transform:translateX(3px) }
.dd-cat-icon {
  font-size:1.15rem; width:34px; height:34px;
  background:rgba(13,31,60,.05); border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--trans);
}
.dd-cat-link:hover .dd-cat-icon { background:rgba(230,126,34,.1) }
.dd-cat-text { display:flex; flex-direction:column; gap:2px; flex:1 }
.dd-cat-text strong { font-size:.875rem; font-weight:700; color:var(--primary); font-family:var(--font-h); transition:var(--trans); line-height:1.2 }
.dd-cat-text small  { font-size:.72rem; color:var(--text-l); line-height:1.3 }
.dd-cat-arrow { font-size:1.1rem; color:var(--text-l); flex-shrink:0; transition:var(--trans); line-height:1 }
.nav-item.has-dropdown:nth-child(3) .dd-cat-link,
.nav-item.has-dropdown:nth-child(4) .dd-cat-link { padding:12px 18px; gap:0 }
.nav-item.has-dropdown:nth-child(3) .dd-cat-text,
.nav-item.has-dropdown:nth-child(4) .dd-cat-text { padding-right:12px }
.dd-footer { padding:10px 18px; background:rgba(13,31,60,.03); border-top:1px solid var(--border) }
.dd-footer a { font-size:.8rem; font-weight:700; color:var(--accent); text-decoration:none; display:block; transition:var(--trans) }
.dd-footer a:hover { color:var(--accent-h); padding-left:4px }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; margin-left:12px; flex-shrink:0 }
.hamburger span { display:block; width:24px; height:2px; background:var(--primary); border-radius:2px; transition:var(--trans) }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px) }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0) }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px) }

/* Mobile Menu */
.mobile-menu {
  position:fixed; top:var(--hh); left:0; right:0; bottom:0;
  background:var(--primary); z-index:8999; overflow-y:auto;
  transform:translateX(-100%); transition:transform .35s cubic-bezier(.4,0,.2,1); padding:0;
}
.mobile-menu.open { transform:translateX(0) }
.mobile-nav { padding:16px 20px 40px }
.mobile-nav-item { border-bottom:1px solid rgba(255,255,255,.08) }
.mobile-nav-toggle { display:flex; justify-content:space-between; align-items:center; padding:16px 0; font-family:var(--font-h); font-size:.95rem; font-weight:600; color:var(--white); cursor:pointer }
.mobile-nav-toggle .m-arrow { transition:transform .3s; font-size:.75rem; opacity:.7 }
.mobile-nav-toggle.expanded .m-arrow { transform:rotate(180deg) }
.mobile-nav-link { display:block; padding:16px 0; font-family:var(--font-h); font-size:.95rem; font-weight:600; color:var(--white) }
.mobile-nav-link:hover { color:var(--accent) }
.mobile-dropdown { display:none; padding-bottom:8px }
.mobile-dropdown.open { display:block }
.mobile-dropdown a { display:block; padding:9px 0 9px 16px; font-size:.87rem; color:rgba(255,255,255,.7); border-bottom:1px solid rgba(255,255,255,.04) }
.mobile-dropdown a:hover { color:var(--accent) }
.mobile-group-label { display:block; padding:10px 0 4px 16px; font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--accent) }

/* ===========================  HERO  =========================== */
.hero-section { position:relative; min-height:90vh; display:flex; align-items:center; background:#ffffff; overflow:hidden }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center right; background-repeat:no-repeat; width:55%; left:auto; right:0 }
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;   /* SAME as .hero-bg */
  height: 100%;

  background: linear-gradient(
    to left,   /* IMPORTANT: reverse direction */
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.8) 65%,
    rgba(255, 255, 255, 1) 100%
  );
}
.hero-no-image .hero-overlay { background:linear-gradient(135deg,#e8eef6 0%,#f0f4f8 100%) }
.hero-content { position:relative; z-index:2; width:600px; max-width:800px; padding:120px 0 80px; margin-right:580px;  }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(230,126,34,0.12); border:1px solid rgba(230,126,34,0.4); color:#e67e22; padding:6px 16px; border-radius:30px; font-size:.78rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; margin-bottom:20px }
.hero-title { font-size:clamp(2rem,4.5vw,3.5rem); color:var(--primary-lg); font-weight:700; line-height:1.15; margin-bottom:16px }
.hero-title span { color:var(--primary-lg); display:block }
.hero-subtitle { font-size:1.05rem; color:var(--text-m); margin-bottom:12px; font-weight:500; line-height:1.7 }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-top:35px }
.hero-deco { position:absolute; right:-60px; top:50%; transform:translateY(-50%); width:500px; height:500px; pointer-events:none; z-index:1 }
.hero-deco-circle { position:absolute; border-radius:50%; border:1px solid rgba(13,31,60,.06) }
.hero-deco-circle:nth-child(1) { width:400px; height:400px; top:50px; right:50px }
.hero-deco-circle:nth-child(2) { width:280px; height:280px; top:110px; right:110px; border-color:rgba(230,126,34,.08) }
.hero-deco-circle:nth-child(3) { width:160px; height:160px; top:170px; right:170px; background:rgba(230,126,34,.03) }

/* ===========================  STATS BAR  =========================== */
.hp-stats-bar { background:var(--primary); padding:0 }
.hp-stats-grid { display:flex; align-items:center; justify-content:space-between; padding:36px 0 }
.hp-stat-item { display:flex; align-items:center; gap:16px; flex:1; padding:0 24px }
.hp-stat-divider { width:1px; height:52px; background:rgba(255,255,255,0.12); flex-shrink:0 }
.hp-stat-icon { width:44px; height:44px; border-radius:10px; background:rgba(230,126,34,0.15); border:1px solid rgba(230,126,34,0.3); display:flex; align-items:center; justify-content:center; color:var(--accent); flex-shrink:0 }
.hp-stat-num { font-family:var(--font-h); font-size:1.9rem; font-weight:900; color:var(--white); line-height:1; margin-bottom:4px }
.hp-stat-num span { color:var(--accent) }
.hp-stat-label { font-size:.75rem; color:rgba(255,255,255,0.55); line-height:1.4; max-width:140px }

/* ===========================  ABOUT STRIP  =========================== */
.about-strip-v2 { background:var(--white) }
.about-v2-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:60px; align-items:center }
.about-v2-img-wrap { position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-h); background:var(--light) }
.about-v2-img-wrap img { width:100%; height:480px; object-fit:cover; display:block }
.about-v2-img-label { position:absolute; bottom:0; left:0; right:0; background:rgba(13,31,60,0.85); color:rgba(255,255,255,0.75); font-size:.72rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; padding:10px 16px; display:flex; align-items:center; gap:8px }
.about-v2-img-icon { width:22px; height:22px; border-radius:50%; border:1.5px solid rgba(255,255,255,0.4); display:flex; align-items:center; justify-content:center; font-size:.65rem; flex-shrink:0 }
.about-v2-desc { font-size:.95rem; color:var(--text-m); line-height:1.8; margin:16px 0 24px }
.about-v2-achievements { display:flex; flex-direction:column; gap:14px; margin-bottom:28px }
.about-v2-achievement-item { display:flex; align-items:flex-start; gap:14px; padding:14px 18px; border:1px solid var(--border); border-radius:var(--radius); background:var(--white); transition:var(--trans) }
.about-v2-achievement-item:hover { border-color:var(--accent); box-shadow:0 4px 16px rgba(230,126,34,0.1) }
.ach-icon { width:36px; height:36px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--primary) }
.ach-text { display:flex; flex-direction:column; gap:2px }
.ach-text strong { font-size:.88rem; font-weight:700; color:var(--primary); font-family:var(--font-h) }
.ach-text span   { font-size:.78rem; color:var(--text-l) }
.about-v2-stats { display:flex; align-items:center; padding:22px 24px; background:var(--primary); border-radius:var(--radius); margin-top:4px }
.about-v2-stat  { flex:1; text-align:center }
.about-v2-stat-divider { width:1px; height:40px; background:rgba(255,255,255,0.15); flex-shrink:0 }
.avs-num    { font-family:var(--font-h); font-size:2rem; font-weight:900; color:var(--white); line-height:1 }
.avs-suffix { color:var(--accent) }
.avs-label  { font-size:.72rem; color:rgba(255,255,255,0.55); text-transform:uppercase; letter-spacing:.08em; margin-top:4px }
.hp-pcard-featured h3 { color: #ffffff !important; }
/* ===========================  PRODUCTS SHOWCASE  =========================== */
.hp-products { background:var(--white) }
.hp-prod-header { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:52px }
.hp-prod-header-desc { font-size:.95rem; color:var(--text-m); max-width:500px; line-height:1.75; margin:0; padding-bottom:6px }
/*.hp-prod-layout { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start }*/
.hp-prod-layout { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:stretch }

/* Left image */
.hp-prod-image-wrap { position:relative; border-radius:16px; overflow:hidden; background:var(--light); box-shadow:0 20px 60px rgba(13,31,60,0.14) align-self: stretch; }
/*.hp-prod-image-wrap img { width:100%; height:540px; object-fit:cover; display:block }*/
/*.hp-prod-image-wrap { }*/
.hp-prod-image-wrap img { width:100%; height:100%; min-height:600px; object-fit:cover; display:block }
.hp-prod-img-badge { position:absolute; bottom:0; left:0; right:0; background:rgba(13,31,60,0.88); backdrop-filter:blur(8px); padding:12px 20px; display:flex; align-items:center; gap:10px; font-size:.75rem; color:rgba(255,255,255,0.75); font-weight:600; letter-spacing:.06em }
.hp-pib-dot { width:8px; height:8px; border-radius:50%; background:var(--accent); animation:sfpulse 2s infinite; flex-shrink:0 }
@keyframes sfpulse { 0%,100%{box-shadow:0 0 0 0 rgba(230,126,34,0.4)} 50%{box-shadow:0 0 0 6px rgba(230,126,34,0)} }
.hp-prod-img-tag { position:absolute; top:20px; right:20px; background:var(--white); color:var(--primary); font-size:.72rem; font-weight:700; padding:6px 12px; border-radius:20px; display:flex; align-items:center; gap:6px; box-shadow:0 4px 16px rgba(0,0,0,0.12) }
.hp-prod-img-tag svg { color:#22c55e }

/* Right product cards */
.hp-prod-cards { display:flex; flex-direction:column; gap:16px }
.hp-pcard { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:24px 28px; border:1.5px solid var(--border); border-radius:14px; background:var(--white); text-decoration:none; transition:all .3s ease; position:relative; overflow:hidden }
.hp-pcard::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--border); transition:background .3s ease }
.hp-pcard:hover { border-color:var(--accent); box-shadow:0 8px 32px rgba(230,126,34,0.12); transform:translateY(-2px) }
.hp-pcard:hover::before { background:var(--accent) }
.hp-pcard-featured { background:var(--primary); border-color:var(--primary) }
.hp-pcard-featured::before { background:var(--accent) }
.hp-pcard-featured:hover { border-color:var(--accent); box-shadow:0 8px 32px rgba(13,31,60,0.25) }
.hp-pcard-featured .hp-pcard-tag   { color:rgba(255,255,255,0.55) }
.hp-pcard-featured h3              { color:var(--white) }
.hp-pcard-featured .hp-pcard-features li { color:rgba(255,255,255,0.65) }
.hp-pcard-featured .hp-pcard-stat  { color:var(--accent) }
.hp-pcard-featured .hp-pcard-unit  { color:rgba(255,255,255,0.45) }
.hp-pcard-featured .hp-pcard-arrow { color:var(--accent) }
.hp-pcard-tag { font-size:.65rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); margin-bottom:6px }
.hp-pcard h3  { font-size:1rem; font-weight:700; color:var(--primary); margin-bottom:10px; line-height:1.3 }
.hp-pcard-features { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:4px }
.hp-pcard-features li { font-size:.78rem; color:var(--text-m); display:flex; align-items:center; gap:6px }
.hp-pcard-features li::before { content:'·'; color:var(--accent); font-size:1rem; line-height:1; flex-shrink:0 }
.hp-pcard-right { text-align:right; flex-shrink:0; display:flex; flex-direction:column; align-items:flex-end; gap:2px }
.hp-pcard-stat  { font-family:var(--font-h); font-size:1.2rem; font-weight:900; color:var(--accent); line-height:1 }
.hp-pcard-unit  { font-size:.68rem; color:var(--text-l); text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px }
.hp-pcard-vegan { font-size:.6rem; font-weight:800; letter-spacing:.1em; background:#22c55e; color:#fff; padding:2px 8px; border-radius:3px; margin-bottom:6px }
.hp-pcard-arrow { font-size:1.1rem; color:var(--text-l); transition:transform .3s ease,color .3s ease }
.hp-pcard:hover .hp-pcard-arrow { transform:translateX(4px); color:var(--accent) }
.hp-prod-viewall { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 0 0; border-top:1px solid var(--border); margin-top:4px }
.hp-prod-viewall-label { font-size:.75rem; color:var(--text-l); line-height:1.5 }
/*--------------*/
.hp-prod-viewall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}
 
.hp-prod-viewall-label {
  font-size: .82rem;
  color: var(--primary);
  line-height: 1.6;
}


/* ===========================  TURNKEY  =========================== */
.hp-turnkey { position:relative; padding:88px 0 72px; overflow:hidden }
.turnkey-bg { position:absolute; inset:0; background-size:cover; background-position:center; background-repeat:no-repeat; z-index:0 }
.turnkey-bg-fallback { background:linear-gradient(135deg,#0a1628 0%,#0d1f3c 60%,#1a3560 100%) }
.turnkey-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,14,26,0.96) 0%, rgba(10,22,40,0.88) 100%);
  z-index: 1;
}
 

/* TOP: text left, portrait image right */
.hp-tk-top { display:grid; grid-template-columns:1fr 380px; gap:64px; align-items:center; margin-bottom:56px; position:relative; z-index:2 }
.hp-tk-top-left { display:flex; flex-direction:column; justify-content:center }

.turnkey-label { font-size:.72rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--accent); margin-bottom:16px }
.turnkey-title { font-size:clamp(1.8rem,3.5vw,2.8rem); color:var(--white); font-weight:700; line-height:1.15; margin-bottom:18px }
.turnkey-title span { color:var(--accent) }
.turnkey-title-line { width:48px; height:3px; background:var(--accent); border-radius:2px; margin-bottom:24px }
.hp-tk-desc { font-size:.92rem; color:rgba(255,255,255,0.70); line-height:1.8; margin-bottom:28px }
.hp-tk-top-left .btn {
  align-self: flex-start;
  width: auto !important;
}
/* Portrait image */
.hp-tk-portrait-wrap { border-radius:14px; overflow:hidden; height:460px; box-shadow:0 24px 64px rgba(0,0,0,0.45); border:1px solid rgba(255,255,255,0.08) }
.hp-tk-portrait-wrap img { width:100%; height:100%; object-fit:cover; object-position:center; display:block }
.hp-tk-portrait-wrap {
  background: var(--primary);
}
/* BOTTOM: horizontal 4-step timeline */
.hp-tk-timeline { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; z-index:2; padding-top:36px;  }
.hp-tk-tl-connector { position:absolute; top:57px; left:calc(12.5%); right:calc(12.5%); height:2px; background:rgba(230,126,34,0.30); z-index:0 }
.hp-tk-tl-step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 16px; position:relative; z-index:1 }
.hp-tk-tl-circle { width:42px; height:42px; border-radius:50%; background:var(--primary); border:2px solid var(--accent); display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-size:.78rem; font-weight:800; color:var(--accent); margin-bottom:16px; flex-shrink:0; transition:all .3s ease }
.hp-tk-tl-step:hover .hp-tk-tl-circle { background:var(--accent); color:var(--white) }
.hp-tk-tl-body strong { display:block; font-size:.85rem; font-weight:700; color:var(--white); margin-bottom:6px; line-height:1.35; font-family:var(--font-h) }
.hp-tk-tl-body span { font-size:.75rem; color:rgba(255,255,255,0.48); line-height:1.55 }

/* OLD classes — kept so nothing breaks on other pages */
.hp-turnkey-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; position:relative; z-index:2 }
.hp-tk-left { position:relative; z-index:2 }
.hp-tk-right { position:relative; z-index:2 }
.hp-tk-steps { display:grid; grid-template-columns:1fr 1fr; gap:14px }
.hp-tk-step { display:flex; align-items:flex-start; gap:14px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:10px; padding:16px; transition:all .3s ease }
.hp-tk-step:hover { background:rgba(255,255,255,0.10); border-color:rgba(230,126,34,0.4) }
.hp-tk-step-num { font-family:var(--font-h); font-size:1.3rem; font-weight:900; color:var(--accent); line-height:1; flex-shrink:0; min-width:28px }
.hp-tk-step-body strong { display:block; font-size:.82rem; font-weight:700; color:var(--white); margin-bottom:3px; line-height:1.3 }
.hp-tk-step-body span { font-size:.74rem; color:rgba(255,255,255,0.5); line-height:1.5 }
.hp-tk-img-wrap { border-radius:16px; overflow:hidden; box-shadow:0 24px 64px rgba(0,0,0,0.4) }
.hp-tk-img-wrap img { width:100%; height:480px; object-fit:cover; display:block }
.hp-tk-pill { position:absolute; background:var(--white); border-radius:10px; padding:12px 18px; box-shadow:0 8px 28px rgba(0,0,0,0.2); display:flex; flex-direction:column; gap:2px; min-width:140px }
.hp-tk-pill strong { font-family:var(--font-h); font-size:1.4rem; font-weight:900; color:var(--accent); line-height:1 }
.hp-tk-pill span { font-size:.7rem; color:var(--text-m); font-weight:600; text-transform:uppercase; letter-spacing:.06em }
.hp-tk-pill-1 { top:32px; left:-24px }
.hp-tk-pill-2 { bottom:48px; left:-24px }

/* Responsive */
@media(max-width:1024px) {
  .hp-tk-top { grid-template-columns:1fr 1fr; gap:40px }
  .hp-tk-portrait-wrap { height:380px }
  .hp-turnkey-grid { grid-template-columns:1fr; gap:48px }
  .hp-tk-img-wrap img { height:360px }
  .hp-tk-pill-1,.hp-tk-pill-2 { left:auto; right:20px }
  .hp-tk-pill-1 { top:20px }
  .hp-tk-pill-2 { bottom:20px }
}
@media(max-width:768px) {
  .hp-tk-top { grid-template-columns:1fr; gap:32px }
  .hp-tk-portrait-wrap { height:260px }
  .hp-tk-timeline { grid-template-columns:1fr 1fr; gap:24px; padding-top:24px }
  .hp-tk-tl-connector { display:none }
  .hp-tk-tl-step { align-items:flex-start; text-align:left }
  .hp-tk-steps { grid-template-columns:1fr }
}
@media(max-width:480px) {
  .hp-tk-timeline { grid-template-columns:1fr }
}

.hp-tk-top {
  grid-template-columns: 1fr 320px !important;
  gap: 48px !important;
  margin-bottom: 40px !important;
}
 
/* Portrait image — shorter height, less overwhelming */
.hp-tk-portrait-wrap {
  height: 380px !important;
}
 
/* Timeline steps — tighter text */
.hp-tk-tl-body strong {
  font-size: .82rem !important;
}
.hp-tk-tl-body span {
  font-size: .72rem !important;
}
/* Paste at the very bottom of style.css */

/* Trust badges row below the CTA button */
.hp-tk-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hp-tk-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 9px 14px;
  transition: all .3s ease;
}

.hp-tk-trust-item:hover {
  background: rgba(230,126,34,0.10);
  border-color: rgba(230,126,34,0.30);
}

.hp-tk-trust-icon {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hp-tk-trust-text {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  font-family: var(--font-h);
}
/* Paste at the very bottom of style.css */

/* ── TURNKEY MOBILE FIX ── */
@media(max-width:768px) {

  .hp-turnkey { padding: 56px 0 48px }

  /* Stack: text first, image second */
  .hp-tk-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    margin-bottom: 36px !important;
  }
  .hp-tk-top-left  { order: 1 }
  .hp-tk-top-right { order: 2 }

  /* Shorter image on mobile */
  .hp-tk-portrait-wrap {
    height: 240px !important;
    border-radius: 10px !important;
  }

  /* Trust badges — wrap nicely */
  .hp-tk-trust {
    gap: 8px !important;
    margin-top: 20px !important;
  }
  .hp-tk-trust-item {
    padding: 8px 12px !important;
    flex: 0 0 auto;
  }
  .hp-tk-trust-text {
    font-size: .72rem !important;
  }

  /* Button — auto width, not full width */
  .hp-tk-top-left .btn {
    width: auto !important;
    align-self: flex-start !important;
    display: inline-flex !important;
  }

  /* Timeline — single column, left-aligned, no connector line */
  .hp-tk-timeline {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(255,255,255,0.10) !important;
  }
  .hp-tk-tl-connector { display: none !important }

  .hp-tk-tl-step {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 16px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .hp-tk-tl-step:last-child { border-bottom: none }

  .hp-tk-tl-circle {
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    width: 36px !important;
    height: 36px !important;
    font-size: .72rem !important;
  }
  .hp-tk-tl-body strong { font-size: .85rem !important }
  .hp-tk-tl-body span   { font-size: .75rem !important }
}

@media(max-width:480px) {
  .hp-tk-trust {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .hp-tk-trust-item { width: 100% !important }
}
/* ===========================  RECOGNITION  =========================== */
.hp-recognition { background:var(--light) }
.hp-recog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px }
.hp-recog-card { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:28px 26px; display:flex; align-items:flex-start; gap:18px; transition:all .3s ease }
.hp-recog-card:hover { box-shadow:0 8px 32px rgba(13,31,60,0.1); border-color:rgba(230,126,34,0.3); transform:translateY(-3px) }
.hp-recog-icon { width:44px; height:44px; background:rgba(230,126,34,0.1); border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--accent); flex-shrink:0 }
.hp-recog-body h4 { font-size:.95rem; font-weight:700; color:var(--primary); margin-bottom:8px; line-height:1.3 }
.hp-recog-body p  { font-size:.83rem; color:var(--text-m); line-height:1.7; margin:0 }

/* ===========================  CTA STRIP  =========================== */
.hp-cta-strip { background:var(--accent); padding:40px 0 }
.hp-cta-inner { display:flex; align-items:center; justify-content:space-between; gap:32px }
.hp-cta-text h3 { font-size:1.25rem; font-weight:700; color:var(--white); margin-bottom:5px; line-height:1.3 }
.hp-cta-text p  { font-size:.85rem; color:rgba(255,255,255,0.78); margin:0 }
.hp-cta-actions { display:flex; align-items:center; gap:12px; flex-shrink:0 }
.hp-cta-btn-white { background:var(--white); color:var(--accent); border:2px solid var(--white); font-weight:700; display:inline-flex; align-items:center; gap:8px }
.hp-cta-btn-white:hover { background:transparent; color:var(--white) }
.hp-cta-btn-outline { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,0.6); font-weight:700 }
.hp-cta-btn-outline:hover { background:var(--white); color:var(--accent); border-color:var(--white) }

/* ===========================  SHARED INNER PAGE  =========================== */
/* Page Hero */
.page-hero { background:var(--primary); padding:130px 0 68px; position:relative; overflow:hidden }
.page-hero::after { content:''; position:absolute; right:-100px; top:-100px; width:400px; height:400px; border-radius:50%; background:rgba(230,126,34,.07) }
.page-hero .section-title,.page-hero h1 { color:var(--white) }
.page-hero p { color:rgba(255,255,255,.7); font-size:1.05rem; max-width:580px }
.breadcrumb { display:flex; gap:8px; align-items:center; font-size:.82rem; color:rgba(255,255,255,.5); margin-bottom:14px }
.breadcrumb a { color:rgba(255,255,255,.65) }
.breadcrumb a:hover { color:var(--accent) }
.breadcrumb .sep { opacity:.35 }
.breadcrumb .current { color:var(--accent) }

/* Products grid (category pages) */
.products-section { background:var(--white) }
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:26px; margin-top:46px }
.product-card { border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:var(--trans); background:var(--white) }
.product-card:hover { box-shadow:var(--shadow-h); transform:translateY(-5px) }
.product-thumb { position:relative; overflow:hidden; height:220px; background:var(--light) }
.product-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s }
.product-card:hover .product-thumb img { transform:scale(1.05) }
.product-cat-badge { position:absolute; top:12px; left:12px; background:var(--accent); color:var(--white); font-size:.7rem; font-weight:700; padding:4px 11px; border-radius:20px; letter-spacing:.05em }
.product-body { padding:20px }
.product-body h3 { font-size:1rem; margin-bottom:8px }
.product-body p  { font-size:.85rem; color:var(--text-m); margin-bottom:16px; line-height:1.6 }

/* Product single */
.product-single-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:56px; margin-top:46px }
.product-gallery-main { border-radius:var(--radius-lg); overflow:hidden; background:var(--light); height:400px; display:flex; align-items:center; justify-content:center }
.product-gallery-main img { width:100%; height:100%; object-fit:cover }
.product-gallery-thumbs { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:10px }
.gallery-thumb { height:78px; border-radius:var(--radius); overflow:hidden; cursor:pointer; border:2px solid transparent; transition:var(--trans) }
.gallery-thumb:hover,.gallery-thumb.active { border-color:var(--accent) }
.gallery-thumb img { width:100%; height:100%; object-fit:cover }
.product-info h1 { font-size:clamp(1.5rem,2.5vw,1.9rem); margin-bottom:6px }
.product-cat-label { color:var(--accent); font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px; display:block }
.product-short-desc { color:var(--text-m); margin-bottom:20px; line-height:1.8 }
.product-features { margin:20px 0 }
.product-features h4 { margin-bottom:10px; font-size:.88rem; text-transform:uppercase; letter-spacing:.06em; color:var(--primary) }
.product-features li { display:flex; align-items:flex-start; gap:8px; margin-bottom:7px; font-size:.88rem; color:var(--text-m) }
.product-features li::before { content:'✓'; color:var(--accent); font-weight:900; flex-shrink:0 }
.product-cta { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px }
.product-specs { margin-top:56px }
.product-specs h2 { margin-bottom:22px }
.specs-table { width:100%; border-collapse:collapse }
.specs-table tr:nth-child(even) td { background:var(--light) }
.specs-table td { padding:11px 16px; border:1px solid var(--border); font-size:.88rem }
.specs-table td:first-child { font-weight:700; color:var(--primary); width:40% }

/* FAQ */
.faq-section { background:var(--light) }
.faq-list { max-width:780px; margin:48px auto 0 }
.faq-item { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); margin-bottom:10px; overflow:hidden }
.faq-question { padding:18px 22px; font-weight:700; font-size:.95rem; color:var(--primary); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:14px; transition:var(--trans); user-select:none }
.faq-question:hover { background:var(--light) }
.faq-icon { width:24px; height:24px; border-radius:50%; background:var(--accent); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; transition:transform .3s }
.faq-item.open .faq-icon { transform:rotate(45deg) }
.faq-answer { padding:0 22px; max-height:0; overflow:hidden; transition:max-height .35s ease,padding .35s ease }
.faq-item.open .faq-answer { max-height:500px; padding:0 22px 18px }
.faq-answer p { font-size:.9rem; color:var(--text-m); margin:0; line-height:1.75 }

/* Contact */
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:48px; margin-top:46px }
.contact-info-card { background:var(--primary); border-radius:var(--radius-lg); padding:38px 30px; color:var(--white) }
.contact-info-card h3 { color:var(--white); font-size:1.2rem; margin-bottom:6px }
.contact-info-card > p { color:rgba(255,255,255,.6); font-size:.88rem; margin-bottom:28px }
.contact-info-item { display:flex; gap:14px; margin-bottom:20px }
.contact-info-icon { width:42px; height:42px; background:rgba(255,255,255,.1); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0 }
.contact-info-text strong { display:block; font-size:.76rem; color:var(--accent); letter-spacing:.08em; text-transform:uppercase; margin-bottom:3px }
.contact-info-text a,.contact-info-text span { color:rgba(255,255,255,.8); font-size:.9rem; display:block }
.contact-info-text a:hover { color:var(--accent) }
.contact-map { margin-top:24px; border-radius:var(--radius); overflow:hidden }
.contact-map iframe { width:100%; height:200px; border:none; display:block }
.contact-form-wrap { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:36px }
.contact-form-wrap h3 { margin-bottom:5px }
.contact-form-wrap > p { font-size:.9rem; color:var(--text-m); margin-bottom:24px }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px }
.form-group { margin-bottom:16px }
.form-group label { display:block; font-size:.82rem; font-weight:700; color:var(--primary); margin-bottom:6px }
.form-group label span { color:var(--accent) }
.form-control { width:100%; padding:11px 14px; border:1.5px solid var(--border); border-radius:var(--radius); font-size:.9rem; color:var(--text); transition:var(--trans); background:var(--white); outline:none }
.form-control:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(230,126,34,.12) }
.form-control::placeholder { color:var(--text-l) }
textarea.form-control { resize:vertical; min-height:120px }
.form-submit { width:100%; padding:13px; font-size:.95rem; justify-content:center; margin-top:4px }
.form-msg { padding:10px 16px; border-radius:var(--radius); font-size:.88rem; font-weight:600; margin-bottom:14px; display:none }
.form-msg.success { background:#d4edda; color:#155724; border:1px solid #c3e6cb; display:block }
.form-msg.error   { background:#f8d7da; color:#721c24; border:1px solid #f5c6cb; display:block }

/* Blog */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:26px }
.blog-card { border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:var(--trans); background:var(--white) }
.blog-card:hover { box-shadow:var(--shadow-h); transform:translateY(-4px) }
.blog-thumb { height:200px; overflow:hidden; background:var(--light) }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s }
.blog-card:hover .blog-thumb img { transform:scale(1.06) }
.blog-body { padding:20px }
.blog-meta { display:flex; gap:12px; margin-bottom:8px }
.blog-meta span { font-size:.74rem; color:var(--text-l) }
.blog-body h3 { font-size:.98rem; margin-bottom:8px; line-height:1.4 }
.blog-body h3 a { color:var(--primary) }
.blog-body h3 a:hover { color:var(--accent) }
.blog-body p { font-size:.85rem; color:var(--text-m); margin-bottom:14px }
.read-more { font-size:.82rem; font-weight:700; color:var(--accent); display:inline-flex; align-items:center; gap:4px }
.read-more:hover { gap:8px }

/* Footer */
#site-footer { background:var(--primary); padding-top:66px }
.footer-top { display:grid; grid-template-columns:1.8fr 1fr 1fr 1.4fr; gap:36px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.1) }
.footer-brand p { font-size:.87rem; line-height:1.8; margin:14px 0 18px; color:rgba(255,255,255,.55) }
.footer-social { display:flex; gap:9px; flex-wrap:wrap }
.social-btn { width:36px; height:36px; background:rgba(255,255,255,.1); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.65); font-size:.88rem; transition:var(--trans); text-decoration:none }
.social-btn:hover { background:var(--accent); color:var(--white) }
.footer-col h4 { color:var(--white); font-size:.88rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase; margin-bottom:16px; padding-bottom:9px; border-bottom:2px solid var(--accent); display:inline-block }
.footer-links { display:flex; flex-direction:column; gap:7px }
.footer-links a { font-size:.86rem; color:rgba(255,255,255,.58); transition:var(--trans); padding:2px 0 }
.footer-links a:hover { color:var(--accent); padding-left:5px }
.footer-contact-item { display:flex; gap:10px; margin-bottom:11px; align-items:flex-start }
.footer-contact-item .icon { color:var(--accent); font-size:.9rem; margin-top:2px }
.footer-contact-item div { font-size:.84rem; color:rgba(255,255,255,.6); line-height:1.6 }
.footer-contact-item a { color:rgba(255,255,255,.6); display:block }
.footer-contact-item a:hover { color:var(--accent) }
.footer-bottom { padding:18px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px }
.footer-bottom p { font-size:.8rem; color:rgba(255,255,255,.4); margin:0 }
.footer-bottom-links { display:flex; gap:18px }
.footer-bottom-links a { font-size:.8rem; color:rgba(255,255,255,.4) }
.footer-bottom-links a:hover { color:var(--accent) }

/* About page */
.mvv-tabs { display:flex; gap:0; margin-bottom:36px; border-bottom:2px solid var(--border) }
.mvv-tab { padding:14px 28px; font-weight:700; font-family:var(--font-h); font-size:.9rem; color:var(--text-m); cursor:pointer; border-bottom:3px solid transparent; margin-bottom:-2px; transition:var(--trans) }
.mvv-tab.active { color:var(--accent); border-bottom-color:var(--accent) }
.mvv-tab-content { display:none }
.mvv-tab-content.active { display:block }
.timeline { position:relative; padding:10px 0 }
.timeline::before { content:''; position:absolute; left:50%; top:0; bottom:0; width:2px; background:linear-gradient(180deg,var(--accent),var(--primary)); transform:translateX(-50%) }
.timeline-item { position:relative; margin-bottom:48px; display:flex }
.timeline-item:nth-child(odd) { padding-right:calc(50% + 40px); justify-content:flex-end; text-align:right }
.timeline-item:nth-child(even) { padding-left:calc(50% + 40px) }
.timeline-dot { position:absolute; left:50%; top:6px; transform:translateX(-50%); width:16px; height:16px; background:var(--accent); border-radius:50%; border:3px solid var(--white); box-shadow:0 0 0 3px var(--accent) }
.timeline-year { font-family:var(--font-h); font-size:1rem; font-weight:800; color:var(--accent); margin-bottom:5px }
.timeline-content h3 { font-size:.98rem; margin-bottom:7px }
.timeline-content p  { font-size:.875rem; color:var(--text-m); line-height:1.7 }

/* Solutions */
.services-page-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:26px; margin-top:46px }
.service-page-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:30px 26px; transition:var(--trans); position:relative; overflow:hidden }
.service-page-card::after { content:''; position:absolute; top:0; left:0; width:100%; height:4px; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:var(--trans) }
.service-page-card:hover { box-shadow:var(--shadow-h) }
.service-page-card:hover::after { transform:scaleX(1) }
.service-page-card .svc-icon { font-size:2rem; margin-bottom:16px }
.service-page-card h3 { font-size:1rem; margin-bottom:10px }
.service-page-card p  { font-size:.875rem; color:var(--text-m); margin-bottom:18px }

/* Misc */
.img-placeholder { background:linear-gradient(135deg,var(--light),var(--border)); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px; color:var(--text-l); font-size:.78rem; font-weight:600; text-align:center; border:2px dashed var(--border); border-radius:var(--radius); padding:24px; width:100%; height:100% }
.img-placeholder .ph-icon { font-size:2rem; opacity:.35 }
.img-placeholder small { opacity:.7 }

.fade-up { opacity:0; transform:translateY(28px); transition:opacity .6s ease,transform .6s ease }
.fade-up.visible { opacity:1; transform:translateY(0) }
.fade-up.delay-1 { transition-delay:.1s }
.fade-up.delay-2 { transition-delay:.2s }
.fade-up.delay-3 { transition-delay:.3s }

.pagination .nav-links { display:flex; justify-content:center; gap:8px; flex-wrap:wrap }
.pagination .page-numbers { padding:8px 16px; border:2px solid var(--border); border-radius:var(--radius); font-size:.88rem; font-weight:600; color:var(--primary); text-decoration:none; transition:var(--trans) }
.pagination .page-numbers.current,.pagination .page-numbers:hover { background:var(--accent); border-color:var(--accent); color:var(--white) }

.admin-bar #site-header { top:32px }
@media(max-width:782px) { .admin-bar #site-header { top:46px } }

/* ===========================  RESPONSIVE  =========================== */
@media(max-width:1024px) {
  .footer-top { grid-template-columns:1fr 1fr }
  .contact-grid { grid-template-columns:1fr }
  .product-single-grid { grid-template-columns:1fr }
  .about-v2-grid { grid-template-columns:1fr; gap:40px }
  .about-v2-img-wrap img { height:360px }
  .hp-prod-layout { grid-template-columns:1fr; gap:36px }
  .hp-prod-image-wrap img { height:380px }
  .hp-turnkey-grid { grid-template-columns:1fr; gap:48px }
  .hp-tk-img-wrap img { height:360px }
  .hp-tk-pill-1,.hp-tk-pill-2 { left:auto; right:20px }
  .hp-tk-pill-1 { top:20px }
  .hp-tk-pill-2 { bottom:20px }
}
@media(max-width:992px) {
  .hamburger { display:flex }
  .nav-desktop { display:none }
}
@media(max-width:768px) {
  .section-pad { padding:56px 0 }
  .footer-top { grid-template-columns:1fr }
  .footer-bottom { flex-direction:column; text-align:center }
  .form-row { grid-template-columns:1fr }
  .contact-grid { grid-template-columns:1fr }
  .hp-stats-grid { flex-direction:column; gap:0; padding:20px 0 }
  .hp-stat-item { padding:16px 0; width:100% }
  .hp-stat-divider { width:100%; height:1px }
  .hp-prod-header { flex-direction:column; align-items:flex-start; gap:16px }
  .hp-prod-header-desc { max-width:100% }
  .hp-pcard { flex-direction:column; align-items:flex-start }
  .hp-pcard-right { align-items:flex-start }
  .hp-tk-steps { grid-template-columns:1fr }
  .hp-recog-grid { grid-template-columns:1fr }
  .hp-cta-inner { flex-direction:column; align-items:flex-start; gap:24px }
  .about-v2-stats { flex-direction:column; gap:16px; text-align:center; padding:20px }
  .about-v2-stat-divider { width:60px; height:1px }
  .timeline::before { left:16px }
  .timeline-item:nth-child(odd) { padding-right:0; padding-left:44px; text-align:left }
  .timeline-item:nth-child(even) { padding-left:44px }
  .timeline-dot { left:16px }
  .mvv-tabs { flex-wrap:wrap }
}
@media(max-width:480px) {
  .hero-btns { flex-direction:column }
  .hp-cta-actions { flex-direction:column; width:100% }
  .hp-cta-actions .btn { width:100%; justify-content:center }
}
/* ================================================================
   ABOUT US PAGE CSS — paste at BOTTOM of style.css
   ================================================================ */

/* ── 1. HERO (dark full-bg) ── */
.abt-hero-dark {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: #0a1628;
  background-size: cover;
  background-position: center center;  /* show full image */
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 130px 0 80px;
  text-align: left !important;
}

.abt-hero-dark .container {
  display: grid !important;
  grid-template-columns: 52% 1fr !important; /* text left 52%, map right */
  align-items: center !important;
  text-align: left !important;
  width: 100%;
  gap: 0;
}

.abt-hero-dark h1,
.abt-hero-dark h2,
.abt-hero-dark h3,
.abt-hero-dark p {
  text-align: left !important;
  color: inherit;
}

/* H1 — 3 line fit */
.abt-hero-dark h1 {
  font-size: clamp(1.65rem, 2.6vw, 2.3rem) !important;
  color: #ffffff !important;
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 16px;
  max-width: 500px;
}

/* Dark gradient overlay — covers left text area, fades into map on right */
.abt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 15, 35, 0.97) 0%,
    rgba(8, 15, 35, 0.92) 15%,
    rgba(8, 15, 35, 0.55) 45%,
    rgba(8, 15, 35, 0.10) 75%,
    rgba(8, 15, 35, 0.00) 100%
  );
  z-index: 1;
}

.abt-breadcrumb {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
  text-align: left !important;
}
.abt-breadcrumb a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.abt-breadcrumb a:hover { color: var(--accent); }
.abt-breadcrumb span:last-child { color: var(--accent); }

.abt-hero-left-col {
  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.abt-hero-right-col {
  /* empty — map visible through background */
}

.abt-hero-content {
  max-width: 100%;
  text-align: left !important;
}

.abt-hero-content h1,
.abt-hero-content p,
.abt-hero-content .abt-hero-label {
  text-align: left !important;
}

.abt-hero-pills {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start !important;
}

.abt-hero-pills {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start !important;
}

.abt-pill-dark {
  background: rgba(230,126,34,.12);
  border: 1.5px solid rgba(230,126,34,.5);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 30px;
  letter-spacing: .05em;
  transition: all .2s;
}
.abt-pill-dark:hover {
  background: rgba(230,126,34,.25);
  border-color: var(--accent);
}

/* Keep old .abt-pill for any other use */
.abt-pill {
  background: rgba(230,126,34,.18);
  border: 1px solid rgba(230,126,34,.5);
  color: var(--accent);
  font-size: .76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .06em;
}

/* ── 2. APPROACH ── */
.abt-approach-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.abt-approach-left h2 { margin:12px 0 18px; }
.abt-approach-left p  { font-size:.95rem; color:var(--text-m); line-height:1.8; }
.abt-approach-img { border-radius:14px; overflow:hidden; box-shadow:var(--shadow-h); }
.abt-approach-img img { width:100%; height:380px; object-fit:cover; display:block; }

/* ── 3. VISION / MISSION ── */
/*.abt-vm-grid { display:grid; grid-template-columns:1fr auto 1fr; gap:0; align-items:start; }*/
/*.abt-vm-card { padding:40px 36px; }*/
/*.abt-vm-card h3 { font-size:1.4rem; color:var(--primary); margin:18px 0 14px; }*/
/*.abt-vm-card p  { font-size:.9rem; color:var(--text-m); line-height:1.8; margin-bottom:24px; }*/
/*.abt-vm-icon { width:52px; height:52px; background:rgba(230,126,34,.1); border:1px solid rgba(230,126,34,.35); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--accent); }*/
/*.abt-vm-tags span { background:rgba(13,31,60,.06); border:1px solid var(--border); color:var(--primary); font-size:.72rem; font-weight:600; padding:4px 12px; border-radius:20px; }*/
/*.abt-vm-divider { width:1px; background:var(--border); min-height:300px; align-self:stretch; margin:40px 0; }*/

/* ── 3. VISION / MISSION ── */
.abt-vm-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:stretch; }
.abt-vm-divider { display:none; }
.abt-vm-card {
  padding:40px 38px;
  border-radius:20px;
  border:1px solid var(--border);
  background:var(--white);
  box-shadow:0 4px 24px rgba(13,31,60,.07);
  transition:var(--trans);
  position:relative;
  overflow:hidden;
}
.abt-vm-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background:linear-gradient(90deg, var(--accent), rgba(230,126,34,.3));
}
.abt-vm-card:hover {
  box-shadow:0 12px 40px rgba(13,31,60,.13);
  transform:translateY(-4px);
  border-color:rgba(230,126,34,.3);
}
.abt-vm-card h3 { font-size:1.5rem; color:var(--primary); margin:20px 0 14px; }
.abt-vm-card p  { font-size:.92rem; color:var(--text-m); line-height:1.85; margin-bottom:28px; }
.abt-vm-icon { width:56px; height:56px; background:rgba(230,126,34,.1); border:1.5px solid rgba(230,126,34,.35); border-radius:14px; display:flex; align-items:center; justify-content:center; color:var(--accent); }
.abt-vm-tags { display:flex; flex-wrap:wrap; gap:8px; }
.abt-vm-tags span { background:rgba(13,31,60,.05); border:1px solid var(--border); color:var(--primary); font-size:.72rem; font-weight:700; padding:6px 14px; border-radius:20px; transition:var(--trans); }
.abt-vm-tags span:hover { background:var(--accent); border-color:var(--accent); color:var(--white); }
@media(max-width:768px) { .abt-vm-grid { grid-template-columns:1fr; } }

/* ── 4. CORE VALUES ── */
.abt-values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.abt-value-card { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:28px 22px; transition:var(--trans); position:relative; overflow:hidden; }
.abt-value-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:var(--trans); }
.abt-value-card:hover { box-shadow:var(--shadow-h); transform:translateY(-4px); }
.abt-value-card:hover::after { transform:scaleX(1); }
.abt-value-icon { font-size:2rem; margin-bottom:16px; }
.abt-value-card h4 { font-size:.95rem; color:var(--primary); margin-bottom:10px; }
.abt-value-card p  { font-size:.83rem; color:var(--text-m); line-height:1.7; margin:0; }

/* ── 5. TIMELINE — PROFESSIONAL ALTERNATING ── */
.abt-timeline-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  /*padding: 0 20px;*/
}

.abt-timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr 60px 1fr;
  position: relative;
  gap: 0;
  margin-bottom: -300px;
}

/* Centre horizontal line through dot row */
.abt-timeline-track::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(230,126,34,.5) 60%, rgba(13,31,60,.2) 100%);
  z-index: 0;
}

/* Each item spans all 3 rows in its column */
.abt-tl-h-item {
  display: contents; /* children placed individually in grid */
}

/* Dot — always in middle row */
.abt-tl-h-dot {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(230,126,34,.25);
  z-index: 3;
  transition: var(--trans);
  align-self: center;
  justify-self: center;
  grid-row: 2;
}

/* Connector */
.abt-tl-h-connector {
  width: 2px;
  background: rgba(230,126,34,.35);
  justify-self: center;
  z-index: 1;
}

/* Card */


.abt-tl-h-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 4px 20px rgba(13,31,60,.08);
  margin: 0;
  width: 100%;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.abt-tl-h-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.abt-tl-h-card:hover {
  box-shadow: 0 8px 32px rgba(13,31,60,.14);
  border-color: rgba(230,126,34,.3);
}
.abt-tl-h-card:hover::after { transform: scaleX(1); }

/* ABOVE items: card row 1, connector row 2 top-half going DOWN, dot row 2 */
.abt-tl-h-item.above .abt-tl-h-card      { grid-row: 1; align-self: end; }
.abt-tl-h-item.above .abt-tl-h-connector { grid-row: 2; align-self: start; height: 50%; }
.abt-tl-h-item.above .abt-tl-h-dot       { grid-row: 2; align-self: center; }

/* BELOW items: dot row 2, connector row 2 bottom-half going DOWN, card row 3 */
.abt-tl-h-item.below .abt-tl-h-dot       { grid-row: 2; align-self: center; }
.abt-tl-h-item.below .abt-tl-h-connector { grid-row: 2; align-self: end; height: 50%; }
.abt-tl-h-item.below .abt-tl-h-card      { grid-row: 3; align-self: start; }

/* ABOVE: empty bottom row */
.abt-tl-h-item.above .abt-tl-h-spacer { grid-row: 3; }
/* BELOW: empty top row */
.abt-tl-h-item.below .abt-tl-h-spacer { grid-row: 1; }

.abt-tl-h-period {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  display: block;
}
.abt-tl-h-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.abt-tl-h-card li {
  font-size: .74rem; color: var(--text-m);
  line-height: 1.5; display: flex; gap: 6px; align-items: flex-start;
}
.abt-tl-h-card li::before {
  content: '✓'; color: var(--accent); font-weight: 900;
  flex-shrink: 0; font-size: .68rem; margin-top: 2px;
}

/* Column assignments */
.abt-tl-h-item:nth-child(1) .abt-tl-h-card,
.abt-tl-h-item:nth-child(1) .abt-tl-h-dot,
.abt-tl-h-item:nth-child(1) .abt-tl-h-connector,
.abt-tl-h-item:nth-child(1) .abt-tl-h-spacer { grid-column: 1; }

.abt-tl-h-item:nth-child(2) .abt-tl-h-card,
.abt-tl-h-item:nth-child(2) .abt-tl-h-dot,
.abt-tl-h-item:nth-child(2) .abt-tl-h-connector,
.abt-tl-h-item:nth-child(2) .abt-tl-h-spacer { grid-column: 2; }

.abt-tl-h-item:nth-child(3) .abt-tl-h-card,
.abt-tl-h-item:nth-child(3) .abt-tl-h-dot,
.abt-tl-h-item:nth-child(3) .abt-tl-h-connector,
.abt-tl-h-item:nth-child(3) .abt-tl-h-spacer { grid-column: 3; }

.abt-tl-h-item:nth-child(4) .abt-tl-h-card,
.abt-tl-h-item:nth-child(4) .abt-tl-h-dot,
.abt-tl-h-item:nth-child(4) .abt-tl-h-connector,
.abt-tl-h-item:nth-child(4) .abt-tl-h-spacer { grid-column: 4; }

.abt-tl-h-item:nth-child(5) .abt-tl-h-card,
.abt-tl-h-item:nth-child(5) .abt-tl-h-dot,
.abt-tl-h-item:nth-child(5) .abt-tl-h-connector,
.abt-tl-h-item:nth-child(5) .abt-tl-h-spacer { grid-column: 5; }

/* Mobile */
@media(max-width: 900px) {
  .abt-timeline-track {
    display: flex; flex-direction: column;
    padding-left: 40px;
  }
  .abt-timeline-track::before {
    top: 0; bottom: 0; left: 8px; right: auto;
    width: 2px; height: 100%; transform: none;
    background: linear-gradient(180deg, var(--accent), rgba(13,31,60,.2));
  }
  .abt-tl-h-item { display: flex; flex-direction: row; align-items: flex-start; margin-bottom: 24px; }
  .abt-tl-h-item.above,
  .abt-tl-h-item.below { flex-direction: row; }
  .abt-tl-h-dot       { order: 1; margin-left: -48px; margin-top: 4px; flex-shrink: 0; }
  .abt-tl-h-connector { order: 2; width: 20px; height: 2px; margin-top: 12px; }
  .abt-tl-h-card      { order: 3; width: 100%; }
  .abt-tl-h-spacer    { display: none; }
}

/* ── 6. TRUSTED EXPERTISE ── */
.abt-expertise-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-bottom:40px; }
.abt-exp-card { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:28px 22px; transition:var(--trans); }
.abt-exp-card:hover { box-shadow:var(--shadow-h); transform:translateY(-4px); border-color:rgba(230,126,34,.3); }
.abt-exp-num  { font-family:var(--font-h); font-size:2rem; font-weight:900; color:rgba(230,126,34,.2); line-height:1; margin-bottom:12px; }
.abt-exp-icon { color:var(--accent); margin-bottom:14px; }
.abt-exp-card h4 { font-size:.95rem; color:var(--primary); margin-bottom:10px; }
.abt-exp-card p  { font-size:.83rem; color:var(--text-m); line-height:1.7; margin:0; }
.abt-exp-cta { display:flex; align-items:center; justify-content:space-between; gap:24px; background:var(--primary); border-radius:14px; padding:28px 36px; }
.abt-exp-cta-text strong { font-size:1.1rem; color:var(--white); font-family:var(--font-h); }

/* ── 7. TECHNICAL EXCELLENCE ── */
.abt-tech-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.abt-tech-left h2 { font-size:clamp(1.5rem,2.8vw,2.2rem); line-height:1.3; margin:14px 0 32px; }
.abt-tech-items { display:flex; flex-direction:column; gap:20px; }
.abt-tech-item { display:flex; align-items:flex-start; gap:18px; padding:18px 20px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:10px; transition:var(--trans); }
.abt-tech-item:hover { background:rgba(255,255,255,.1); border-color:rgba(230,126,34,.35); }
.abt-tech-num { font-family:var(--font-h); font-size:1.5rem; font-weight:900; color:var(--accent); line-height:1; flex-shrink:0; min-width:32px; }
.abt-tech-item strong { display:block; font-size:.88rem; color:var(--white); margin-bottom:5px; }
.abt-tech-item p { font-size:.8rem; color:rgba(255,255,255,.55); margin:0; line-height:1.6; }
.abt-tech-img-wrap { border-radius:14px; overflow:hidden; box-shadow:0 24px 64px rgba(0,0,0,.4); }
.abt-tech-img-wrap img { width:100%; height:420px; object-fit:cover; display:block; }

/* ── 8. MANUFACTURING PROCESS ── */
.abt-process-steps { display:flex; align-items:flex-start; gap:0; justify-content:center; }
.abt-proc-step { flex:1; max-width:260px; text-align:center; padding:32px 20px; background:var(--light); border:1px solid var(--border); border-radius:14px; transition:var(--trans); }
.abt-proc-step:hover { box-shadow:var(--shadow-h); transform:translateY(-4px); border-color:rgba(230,126,34,.3); }
.abt-proc-icon { font-size:2.2rem; margin-bottom:12px; }
.abt-proc-num  { font-family:var(--font-h); font-size:.75rem; font-weight:800; color:var(--accent); letter-spacing:.12em; text-transform:uppercase; margin-bottom:12px; }
.abt-proc-step h4 { font-size:1rem; color:var(--primary); margin-bottom:10px; }
.abt-proc-step p  { font-size:.83rem; color:var(--text-m); line-height:1.7; margin:0; }
.abt-proc-arrow { align-self:center; font-size:1.8rem; color:var(--accent); padding:0 12px; flex-shrink:0; opacity:.6; }

/* ── 9. TEAM ── */
.abt-team-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:24px; }
.abt-team-card { background:var(--white); border:1px solid var(--border); border-radius:14px; overflow:hidden; transition:var(--trans); text-align:center; }
.abt-team-card:hover { box-shadow:var(--shadow-h); transform:translateY(-4px); }
.abt-team-photo { height:200px; overflow:hidden; background:var(--light); }
.abt-team-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.abt-team-placeholder { display:flex; align-items:center; justify-content:center; font-size:3rem; }
.abt-team-info { padding:16px; }
.abt-team-info strong { display:block; font-size:.92rem; color:var(--primary); margin-bottom:4px; }
.abt-team-info span   { font-size:.78rem; color:var(--text-l); }

/* ── 10. REVIEWS ── */
.abt-reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.abt-review-card  { background:var(--light); border:1px solid var(--border); border-radius:14px; padding:26px 22px; transition:var(--trans); }
.abt-review-card:hover { box-shadow:var(--shadow-h); border-color:rgba(230,126,34,.3); transform:translateY(-3px); }
.abt-review-stars { color:var(--accent); font-size:1rem; letter-spacing:2px; margin-bottom:14px; }
.abt-review-text  { font-size:.88rem; color:var(--text-m); line-height:1.75; margin-bottom:18px; font-style:italic; }
.abt-review-author { display:flex; align-items:center; gap:12px; }
.abt-review-avatar { width:40px; height:40px; border-radius:50%; background:var(--primary); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.95rem; flex-shrink:0; }
.abt-review-author strong { display:block; font-size:.85rem; color:var(--primary); }
.abt-review-author span   { font-size:.75rem; color:var(--text-l); }

/* ── 11. FAQs ── */
.abt-faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.abt-faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: var(--trans); }
.abt-faq-item:hover { border-color: rgba(230,126,34,.35); box-shadow: var(--shadow); }
.abt-faq-item.open { border-color: rgba(230,126,34,.5); box-shadow: var(--shadow-h); }
.abt-faq-q {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-h); font-size: .95rem;
  font-weight: 700; color: var(--primary); transition: var(--trans);
}
.abt-faq-q:hover { background: rgba(230,126,34,.04); }
.abt-faq-num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
  background: rgba(230,126,34,.12); color: var(--accent);
  font-size: .75rem; font-weight: 800; display: flex;
  align-items: center; justify-content: center; letter-spacing: .05em;
}
.abt-faq-item.open .abt-faq-num { background: var(--accent); color: var(--white); }
.abt-faq-q > span:nth-child(2) { flex: 1; line-height: 1.45; }
.abt-faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: var(--text-l);
  transition: var(--trans); line-height: 1;
}
.abt-faq-item.open .abt-faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.abt-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
}
.abt-faq-a p {
  padding: 0 24px 20px 72px; margin: 0;
  font-size: .88rem; color: var(--text-m); line-height: 1.8;
}
.abt-faq-item.open .abt-faq-a { max-height: 400px; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .abt-hero-dark { min-height: auto; padding: 120px 0 70px; }
  .abt-hero-overlay { background: rgba(8,15,35,0.88); }
  .abt-hero-dark .container {
    grid-template-columns: 1fr !important;
  }
  .abt-hero-right-col { display: none; }
  .abt-hero-left-col  { max-width: 100%; }
  .abt-approach-grid { grid-template-columns:1fr; gap:36px; }
  .abt-vm-grid       { grid-template-columns:1fr; }
  .abt-vm-divider    { width:100%; height:1px; min-height:0; margin:0; }
  .abt-values-grid   { grid-template-columns:repeat(2,1fr); }
  .abt-expertise-grid{ grid-template-columns:repeat(2,1fr); }
  .abt-tech-grid     { grid-template-columns:1fr; gap:40px; }
}
@media(max-width:768px) {
  .abt-values-grid   { grid-template-columns:1fr; }
  .abt-expertise-grid{ grid-template-columns:1fr; }
  .abt-timeline-wrap::before { display: none; }
  .abt-tl-left  { padding-right:0; padding-left:44px; justify-content:flex-start; }
  .abt-tl-right { padding-left:44px; }
  .abt-tl-dot   { left:16px; }
  .abt-tl-card  { max-width:100%; }
  /* Horizontal timeline — make cards smaller on mobile */
  .abt-tl-h-item { flex: 0 0 180px; }
  .abt-tl-h-card { width: 165px; padding: 14px 16px; }
  .abt-process-steps { flex-direction:column; align-items:center; }
  .abt-proc-arrow    { transform:rotate(90deg); padding:0; }
  .abt-reviews-grid  { grid-template-columns:1fr; }
  .abt-exp-cta       { flex-direction:column; align-items:flex-start; }
}

/* ================================================================
   SAFRROYS — HERO COMPLETE MOBILE FIX v3
   Paste at the VERY BOTTOM of style.css
   Removes ALL previous hero responsive attempts above this line
   ================================================================ */
/* ================================================================
   HERO — MOBILE REDESIGN: Image strip on top, content below
   Paste at the VERY BOTTOM of style.css
   (This REPLACES all previous hero mobile media query blocks —
   delete those old @media hero blocks first)
   ================================================================ */

@media (max-width: 992px) {

  .hero-section {
    min-height: auto !important;
    align-items: stretch !important;
    flex-direction: column !important;
    display: flex !important;
    background: var(--light, #f5f6fa) !important;
  }

  /* ── Image strip: shows pills clearly, fixed height ── */
  .hero-bg {
    position: relative !important;
    width: 100% !important;
    height: 240px !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    background-position: center 30% !important;  /* shows pill cluster */
    background-size: cover !important;
    order: 0 !important;
  }

  /* Light overlay only at the very bottom of the image for smooth transition */
  .hero-overlay {
    position: absolute !important;
    width: 100% !important;
    height: 240px !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    background: linear-gradient(
      to bottom,
      rgba(245, 246, 250, 0)   0%,
      rgba(245, 246, 250, 0)  78%,
      rgba(245, 246, 250, 1) 100%
    ) !important;
  }

  /* ── Content sits BELOW image, on clean light bg ── */
  .hero-content {
    position: relative !important;
    order: 1 !important;
    width: auto !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    padding: 28px 24px 48px !important;
    text-align: left !important;
    z-index: 2 !important;
  }

  /* Dark text on light background now */
  .hero-title {
    color: var(--primary, #0d1f3c) !important;
    font-size: clamp(1.7rem, 6.5vw, 2.3rem) !important;
    line-height: 1.2 !important;
  }
  .hero-title span {
    color: var(--primary, #0d1f3c) !important;
  }
  .hero-subtitle {
    color: var(--text-m, #444455) !important;
    font-size: .92rem !important;
  }
  .hero-badge {
    background: rgba(230, 126, 34, 0.1) !important;
    border: 1px solid rgba(230, 126, 34, 0.35) !important;
    color: #e67e22 !important;
  }

  .hero-btns {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }
  .hero-btns .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-deco { display: none !important; }
}


/* ── Mobile L ≤768px: slightly shorter strip ── */
@media (max-width: 768px) {

  .hero-bg,
  .hero-overlay {
    height: 200px !important;
  }

  .hero-bg {
    background-position: center 25% !important;
  }

  .hero-content {
    padding: 24px 20px 44px !important;
  }
}


/* ── Mobile S ≤480px ── */
@media (max-width: 480px) {

  .hero-bg,
  .hero-overlay {
    height: 170px !important;
  }

  .hero-content {
    padding: 20px 16px 36px !important;
  }

  .hero-title {
    font-size: 1.6rem !important;
  }

  .hero-subtitle {
    font-size: .87rem !important;
  }

  .hero-badge {
    font-size: .66rem !important;
    padding: 5px 12px !important;
  }
}


/* ================================================================
   ABOUT PAGE HERO — MOBILE MAP FIX
   Paste at the VERY BOTTOM of style.css

   How it works: .abt-hero-dark already carries the map image via
   inline style="background-image:url(...)". On mobile we DON'T
   remove that — we just resize/reposition the section so the map
   shows as a top banner, then stack the text below it on a solid
   dark panel.
   ================================================================ */

@media (max-width: 1024px) {

  .abt-hero-dark {
    min-height: 380px !important;   /* map banner + text panel combined */
    padding: 0 !important;
    display: block !important;
    background-size: cover !important;
    background-position: center 35% !important; /* keeps India + red dots visible */
    background-repeat: no-repeat !important;
  }

  .abt-hero-dark .container {
    display: block !important;
    height: 100% !important;
  }

  /* Map area: top portion of the section stays transparent (image shows through) */
  /* Text panel: solid dark background, anchored to bottom */
  .abt-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,15,35,0)    0%,
      rgba(8,15,35,0)   42%,
      rgba(8,15,35,.92) 62%,
      rgba(8,15,35,1)  100%
    ) !important;
  }

  .abt-hero-right-col {
    display: none !important; /* image is on the section itself now, no separate col needed */
  }

  .abt-hero-left-col {
    width: 100% !important;
    max-width: 100% !important;
    padding: 180px 24px 36px !important; /* pushes text below the visible map area */
  }

  .abt-hero-content {
    max-width: 100% !important;
  }

  .abt-breadcrumb {
    margin-bottom: 16px !important;
  }

  .abt-hero-dark h1 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    max-width: 100% !important;
  }

  .abt-hero-sub {
    font-size: .9rem !important;
    color: rgba(255,255,255,.65) !important;
  }

  .abt-hero-pills {
    margin-top: 18px !important;
  }
}

/* ── Tighter on small phones ── */
@media (max-width: 480px) {

  .abt-hero-dark {
    min-height: 320px !important;
    background-position: center 30% !important;
  }

  .abt-hero-left-col {
    padding: 140px 18px 30px !important;
  }

  .abt-hero-dark h1 {
    font-size: 1.4rem !important;
  }

  .abt-pill-dark {
    font-size: .7rem !important;
    padding: 6px 14px !important;
  }
}


/* ── About Hero — Mobile Map Fix ── */

/* Hide mobile map block on desktop */
.abt-hero-map-mobile { display: none; }
/* ================================================================
   ABOUT PAGE HERO — PREMIUM MOBILE REDESIGN
   Paste at VERY BOTTOM of style.css
   Replaces all previous about-hero mobile blocks
   ================================================================ */

@media (max-width: 1024px) {

  /* ── Section base ── */
  .abt-hero-dark {
    background-image: none !important;
    background-color: #060e1e !important;
    min-height: auto !important;
    padding: 0 !important;
    display: block !important;
  }

  .abt-hero-overlay  { display: none !important; }
  .abt-hero-right-col { display: none !important; }

  .abt-hero-dark .container {
    display: block !important;
    padding: 0 !important;
  }

  /* ── Left col = all the text content ── */
  .abt-hero-left-col {
    width: 100% !important;
    max-width: 100% !important;
    padding: 88px 22px 28px !important; /* top clears fixed header */
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }

  /* Breadcrumb */


  /* Label above h1 */
  /*.abt-hero-label {*/
  /*  display: inline-block !important;*/
  /*  font-size: .68rem !important;*/
  /*  font-weight: 700 !important;*/
  /*  letter-spacing: .14em !important;*/
  /*  text-transform: uppercase !important;*/
  /*  color: var(--accent, #e67e22) !important;*/
  /*  background: rgba(230,126,34,.1) !important;*/
  /*  border: 1px solid rgba(230,126,34,.3) !important;*/
  /*  padding: 5px 14px !important;*/
  /*  border-radius: 30px !important;*/
  /*  margin-bottom: 14px !important;*/
  /*}*/

  /* H1 */
  .abt-hero-dark h1 {
    font-size: clamp(1.55rem, 6.5vw, 2.1rem) !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    max-width: 100% !important;
    margin: 0 0 12px !important;
  }

  /* Subtitle */
  .abt-hero-sub {
    font-size: .88rem !important;
    color: rgba(255,255,255,.55) !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
  }

  /* Pills — inline wrap, NOT column */
  .abt-hero-pills {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    margin-top: 4px !important;
  }

  .abt-pill-dark {
    font-size: .72rem !important;
    font-weight: 700 !important;
    padding: 7px 16px !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    background: rgba(230,126,34,.1) !important;
    border: 1.5px solid rgba(230,126,34,.45) !important;
    color: var(--accent, #e67e22) !important;
  }

  /* ── Map image — full width, below content ── */
  .abt-hero-map-mobile {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #060e1e !important;
    /* top separator line */
    border-top: 1px solid rgba(255,255,255,.07) !important;
  }

  .abt-hero-map-mobile img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    opacity: .92 !important;
  }
}

/* ── Small phones ≤480px ── */
@media (max-width: 480px) {

  .abt-hero-left-col {
    padding: 82px 18px 24px !important;
  }

  .abt-hero-dark h1 {
    font-size: 1.45rem !important;
  }

  .abt-hero-sub {
    font-size: .84rem !important;
  }

  .abt-pill-dark {
    font-size: .68rem !important;
    padding: 6px 13px !important;
  }
}


/* ================================================================
   ABOUT PAGE — TIMELINE MOBILE FIX
   Paste at VERY BOTTOM of style.css
   ================================================================ */

@media (max-width: 900px) {

  /* ── Kill the orange/peach bleeding connector ── */
  .abt-tl-h-connector {
    display: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* ── Timeline track — vertical left-border strip ── */
  .abt-timeline-track {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding-left: 0 !important;
    position: relative !important;
  }

  /* Thin vertical accent line on left */
  .abt-timeline-track::before {
    content: '' !important;
    position: absolute !important;
    left: 18px !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 2px !important;
    height: 100% !important;
    background: rgba(230,126,34,.3) !important;
    transform: none !important;
  }

  /* ── Each timeline item — horizontal row ── */
  .abt-tl-h-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 0 0 0 44px !important;
    margin-bottom: 0 !important;
    position: relative !important;
  }

  /* ── Dot on the left line ── */
  .abt-tl-h-dot {
    position: absolute !important;
    left: 10px !important;
    top: 16px !important;
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    grid-row: unset !important;
    grid-column: unset !important;
    align-self: auto !important;
    justify-self: auto !important;
  }

  /* ── Hide spacer ── */
  .abt-tl-h-spacer { display: none !important; }

  /* ── Card — full width, compact ── */
  .abt-tl-h-card {
    width: 100% !important;
    padding: 14px 16px !important;
    margin-bottom: 12px !important;
    border-radius: 10px !important;
    grid-row: unset !important;
    grid-column: unset !important;
    align-self: auto !important;
  }

  /* Period label */
  .abt-tl-h-period {
    font-size: .7rem !important;
    margin-bottom: 8px !important;
  }

  /* List items smaller */
  .abt-tl-h-card ul {
    gap: 5px !important;
  }
  .abt-tl-h-card li {
    font-size: .78rem !important;
    line-height: 1.55 !important;
  }

  /* ── ACCORDION: collapse all but first by default ── */
  .abt-tl-h-card.tl-collapsed .abt-tl-expand-preview {
    display: block !important;
  }
  .abt-tl-h-card.tl-collapsed ul {
    display: none !important;
  }
  .abt-tl-h-card .abt-tl-expand-preview {
    display: none;
  }

  /* Expand toggle button */
  .abt-tl-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-top: 8px !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    color: var(--accent, #e67e22) !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    font-family: var(--font-h, inherit) !important;
  }
  .abt-tl-toggle .tl-arrow {
    transition: transform .2s !important;
    display: inline-block !important;
  }
  .abt-tl-h-card:not(.tl-collapsed) .abt-tl-toggle .tl-arrow {
    transform: rotate(180deg) !important;
  }
}

@media (max-width: 480px) {
  .abt-tl-h-item { padding-left: 38px !important; }
  .abt-tl-h-card { padding: 12px 14px !important; }
  .abt-tl-h-card li { font-size: .75rem !important; }
}


/* paste at bottom of style.css — fixes the line between content and map */
@media (max-width: 1024px) {

  /* Same bg on section and map div — no seam */
  .abt-hero-dark,
  .abt-hero-map-mobile {
    background-color: #060e1e !important;
  }

  /* Kill the border-top we added previously */
  .abt-hero-map-mobile {
    border-top: none !important;
    margin-top: -1px !important; /* overlap by 1px to kill any subpixel gap */
  }

  /* Fade the top edge of the map image into the dark bg above */
  .abt-hero-map-mobile img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,0)   0%,
      rgba(0,0,0,1)  12%,
      rgba(0,0,0,1)  88%,
      rgba(0,0,0,0) 100%
    ) !important;
    mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,0)   0%,
      rgba(0,0,0,1)  12%,
      rgba(0,0,0,1)  88%,
      rgba(0,0,0,0) 100%
    ) !important;
  }
}


/* ================================================================
   MOBILE FIXES — Homepage image, Solutions padding,
   Founder image, Contact padding
   ================================================================ */

@media (max-width: 992px) {

  /* ── Homepage: Product showcase image — full width, proper height ── */
  .hp-prod-image-wrap {
    border-radius: 12px !important;
    height: 100%  !important;
  }
  .hp-prod-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    min-height: unset !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
    .abt-timeline{
        margin-bottom: 50px;
    }
  /* ── Homepage: Turnkey portrait image ── */
  .hp-tk-portrait-wrap {
    height: 100% !important;
    border-radius: 10px !important;
  }
  .hp-tk-portrait-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
  }

  /* ── Solutions page: reduce padding ── */
  .sol-intro-section.section-pad,
  .sol-pillars-section.section-pad {
    padding: 40px 0 !important;
  }
  .sol-pillar { padding: 24px 20px !important; margin-bottom: 20px !important; }
  .sol-pillar-header { margin-bottom: 16px !important; padding-bottom: 16px !important; }

  /* ── About Us: Founder image — show full, no crop ── */
  .abt-founder-img-wrap {
    aspect-ratio: unset !important;
    height: auto !important;
  }
  .abt-founder-img-wrap img {
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
    object-position: top !important;
    background: var(--primary) !important;
  }

  /* ── Contact page: reduce padding ── */
  .page-hero {
    padding: 100px 0 40px !important;
  }
  .contact-grid {
    gap: 28px !important;
  }
  .contact-form-wrap {
    padding: 24px 20px !important;
  }
  .contact-info-card {
    padding: 24px 20px !important;
  }
  .container-how{
      margin-top:100px;
  }
}

@media (max-width: 768px) {

  /* Product image shorter on small phones */
  .hp-prod-image-wrap {
    height: auto  !important;
  }
  .container-how{
      margin-top:100px;
  }

  /* Solutions — tighter still */
  .sol-intro-section.section-pad,
  .sol-pillars-section.section-pad {
    padding: 32px 0 !important;
  }
  .sol-intro-grid { gap: 24px !important; }

  /* Founder — full image, no aspect ratio lock */
  .abt-founder-grid { gap: 24px !important; }
  .abt-founder-img-wrap img {
    object-fit: contain !important;
    max-height: 420px !important;
  }
  .abt-timeline{
        margin-bottom: 50px;
    }

  /* Contact */
  .page-hero { padding: 88px 0 32px !important; }
}

@media (max-width: 480px) {
  .hp-prod-image-wrap { height: 200px !important; }
  .abt-founder-img-wrap img { max-height: 360px !important; }
  .abt-timeline{
        margin-bottom: 50px;
    }
}
