
    :root{
      --ink:#0B1F33;
      --muted:#5E7083;
      --bg:#F5F7FA;
      --card:#ffffff;
      --line:#DCE5EE;
      --accent:#1264A3;
      --accent-2:#0B1F33;
      --soft:#EAF2F9;
      --max:1180px;
      --radius:22px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--ink);
      background:var(--bg);
      line-height:1.55;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    .wrap{max-width:var(--max);margin:auto;padding:0 24px}
    .eyebrow{
      text-transform:uppercase; letter-spacing:.16em; font-weight:800;
      font-size:12px; color:var(--accent);
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      padding:14px 18px; border-radius:999px; border:1px solid var(--ink);
      font-weight:800; transition:.2s ease; cursor:pointer;
    }
    .btn.primary{background:var(--ink);color:white}
    .btn.primary:hover{transform:translateY(-1px);background:#1a2632}
    .btn.ghost:hover{background:white}
    header{
      position:fixed; top:0; left:0; right:0; z-index:50;
      background:transparent;
      border-bottom:1px solid rgba(255,255,255,.12);
      transition:background .28s ease,border-color .28s ease,box-shadow .28s ease;
    }
    header.scrolled{
      backdrop-filter:blur(18px);
      background:rgba(255,255,255,.94);
      border-bottom:1px solid #DCE5EE;
      box-shadow:0 8px 24px rgba(11,31,51,.06);
    }
    .nav{height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    .brand{display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:.01em;color:white;transition:color .28s ease}
    .mark{
      width:40px;height:40px;border-radius:12px;background:white;color:#0B1F33;
      display:grid;place-items:center;font-weight:900;transition:.28s ease
    }
    .logo-mark{overflow:hidden;background:white!important;padding:3px}
    .logo-mark img{width:100%;height:100%;object-fit:contain;display:block}
    .navlinks{display:flex;gap:22px;font-weight:700;font-size:14px;color:rgba(255,255,255,.86);transition:color .28s ease}
    .navlinks a:hover{color:white}
    header .btn.primary{background:white;color:#0B1F33;border-color:white}
    header.scrolled .brand{color:#0B1F33}
    header.scrolled .mark{background:#0B1F33;color:white}
    header.scrolled .navlinks{color:#334250}
    header.scrolled .navlinks a:hover{color:#1264A3}
    header.scrolled .btn.primary{background:#0B1F33;color:white;border-color:#0B1F33}
    .menu{display:none}

    .hero{
      min-height:100vh;
      padding:0;
      position:relative;
      overflow:hidden;
      background:#061422;
    }
    .hero-stage{
      min-height:100vh;
      position:relative;
      display:flex;
      align-items:flex-end;
      isolation:isolate;
    }
    .hero-video{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      z-index:-4;
      background:#0B1F33;
    }

    .hero-photo-stack{
      position:absolute;inset:0;z-index:-5;overflow:hidden;background:#061422
    }
    .hero-photo-slide{
      position:absolute;inset:-2%;
      width:104%;height:104%;object-fit:cover;
      opacity:0;
      transition:opacity 1.4s ease;
      transform:scale(1.02);
      animation:cinematicDrift 14s ease-in-out infinite alternate;
      filter:saturate(.92) contrast(1.02);
    }
    .hero-photo-slide.active{opacity:1}
    @keyframes cinematicDrift{
      from{transform:scale(1.02) translate3d(0,0,0)}
      to{transform:scale(1.08) translate3d(-1%, -.5%,0)}
    }

    .hero-video-placeholder{
      position:absolute;
      inset:0;
      z-index:-5;
      overflow:hidden;
      background:
        radial-gradient(circle at 76% 18%, rgba(25,117,190,.42), transparent 24%),
        radial-gradient(circle at 18% 70%, rgba(40,115,155,.24), transparent 24%),
        linear-gradient(140deg,#061321 0%,#0B2943 45%,#0A4169 100%);
    }
    .hero-video-placeholder:before{
      content:"";
      position:absolute;
      width:54vw;
      height:54vw;
      right:-12vw;
      top:-12vw;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:
        0 0 0 7vw rgba(255,255,255,.025),
        0 0 0 14vw rgba(255,255,255,.018);
    }
    .hero-video-placeholder:after{
      content:"";
      position:absolute;
      left:-8vw;
      bottom:-20vw;
      width:50vw;
      height:50vw;
      border-radius:50%;
      background:rgba(255,255,255,.03);
      filter:blur(2px);
    }
    .hero-overlay{
      position:absolute;
      inset:0;
      z-index:-2;
      background:
        linear-gradient(90deg,rgba(3,12,21,.88) 0%,rgba(3,12,21,.67) 45%,rgba(3,12,21,.18) 78%),
        linear-gradient(0deg,rgba(3,12,21,.76) 0%,rgba(3,12,21,.08) 48%,rgba(3,12,21,.30) 100%);
    }
    .hero-grid-lines{
      position:absolute;
      inset:0;
      z-index:-1;
      opacity:.10;
      background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.12) 1px, transparent 1px);
      background-size:80px 80px;
      mask-image:linear-gradient(to bottom,transparent 0%,black 38%,black 100%);
    }
    .hero-inner{
      width:100%;
      max-width:var(--max);
      margin:0 auto;
      padding:160px 24px 72px;
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(280px,.55fr);
      gap:44px;
      align-items:end;
    }
    .hero-copy{max-width:900px}
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:9px 13px;
      border-radius:999px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.18);
      color:#DCEEFF;
      font-weight:800;
      font-size:12px;
      letter-spacing:.10em;
      text-transform:uppercase;
      backdrop-filter:blur(8px);
    }
    .hero h1{
      color:white;
      font-size:clamp(58px,8vw,112px);
      max-width:1050px;
      margin:22px 0 22px;
      line-height:.88;
      letter-spacing:-.065em;
      text-wrap:balance;
    }
    .hero h1 .accent-line{
      display:block;
      color:#A9D4FF;
    }
    .hero .lead{
      color:#D6E2EC;
      max-width:720px;
      font-size:clamp(18px,2vw,22px);
      line-height:1.55;
      margin:0;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:30px;
    }
    .hero-actions .btn{
      min-width:170px;
      padding:15px 20px;
    }
    .hero-actions .btn.primary{
      background:white;
      color:#0B1F33;
      border-color:white;
    }
    .hero-actions .btn.ghost{
      color:white;
      border-color:rgba(255,255,255,.56);
      background:rgba(255,255,255,.05);
      backdrop-filter:blur(8px);
    }
    .hero-actions .btn.ghost:hover{
      background:rgba(255,255,255,.12);
    }
    .hero-film-note{
      align-self:end;
      justify-self:end;
      width:min(100%,320px);
      padding:20px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:22px;
      color:white;
      background:rgba(7,24,39,.30);
      backdrop-filter:blur(12px);
    }
    .film-icon{
      width:50px;height:50px;border-radius:50%;
      display:grid;place-items:center;
      border:1px solid rgba(255,255,255,.22);
      background:rgba(255,255,255,.11);
      margin-bottom:18px;
      font-size:18px;
    }
    .hero-film-note strong{display:block;font-size:17px;margin-bottom:8px}
    .hero-film-note p{margin:0;color:#C9D8E4;font-size:13px;line-height:1.55}
    .scroll-cue{
      position:absolute;
      right:32px;
      bottom:32px;
      color:rgba(255,255,255,.72);
      display:flex;
      align-items:center;
      gap:12px;
      font-size:11px;
      font-weight:800;
      letter-spacing:.18em;
      text-transform:uppercase;
    }
    .scroll-line{
      width:48px;height:1px;background:rgba(255,255,255,.48);
      position:relative;overflow:hidden
    }
    .scroll-line:after{
      content:"";position:absolute;inset:0 auto 0 0;width:45%;
      background:white;animation:scrollPulse 1.8s ease-in-out infinite
    }
    @keyframes scrollPulse{
      0%{transform:translateX(-110%)}
      100%{transform:translateX(250%)}
    }
    .stats{padding:18px 0 72px}
    .statgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
    .stat{
      background:white;border:1px solid var(--line);border-radius:20px;padding:24px
    }
    .stat strong{display:block;font-size:32px;letter-spacing:-.03em}
    .stat span{font-size:14px;color:var(--muted)}
    section{padding:86px 0}
    .section-head{
      display:flex;justify-content:space-between;gap:40px;align-items:end;margin-bottom:34px
    }
    h2{font-size:clamp(38px,5vw,60px);line-height:1;letter-spacing:-.045em;margin:8px 0}
    .section-head p{max-width:560px;color:var(--muted)}
    .cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    .card{
      background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
      padding:28px;min-height:260px;transition:.22s ease
    }
    .card:hover{transform:translateY(-3px);box-shadow:0 18px 40px rgba(15,23,32,.07)}
    .icon{
      width:44px;height:44px;border-radius:14px;background:var(--soft);
      display:grid;place-items:center;font-weight:900;margin-bottom:54px
    }
    .card h3{font-size:24px;margin:0 0 8px}
    .card p{color:var(--muted);margin:0}
    .brands{background:#0B1F33;color:white}
    .brands .section-head p{color:#bdc8d0}
    .brandgrid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
      align-items:stretch
    }
    .brandcard{
      min-height:120px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:18px;
      background:rgba(255,255,255,.05);
      padding:18px 16px;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      transition:.22s ease;
      overflow:hidden;
      position:relative;
    }
    .brandcard:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.08);
      box-shadow:0 18px 36px rgba(0,0,0,.18)
    }
    .brandlogo{
      width:100%;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      line-height:1;
    }
    .brandlogo .word{font-weight:900; letter-spacing:-.02em}
    .brandlogo .sub{
      margin-top:8px;
      font-size:11px;
      line-height:1.2;
      letter-spacing:.08em;
      text-transform:uppercase;
      opacity:.95;
      font-weight:800
    }
    .brandlogo .note{
      margin-top:6px;
      font-size:10px;
      line-height:1.2;
      letter-spacing:.12em;
      text-transform:uppercase;
      opacity:.86;
      font-weight:800
    }
    .brandlogo.hindware .word{font-size:34px;color:#ffffff;text-transform:lowercase;letter-spacing:-.035em}
    .brandlogo.jaquar .word{font-size:34px;color:#ffffff;letter-spacing:-.03em}
    .brandlogo.astral .word{font-size:34px;color:#58AEE8;letter-spacing:.01em}
    .brandlogo.astral .sub{color:#d8e6f0}
    .brandlogo.ashirvad .word{
      font-size:32px;color:#f15b4a;text-transform:lowercase;
      border:2px solid #f15b4a;border-radius:999px;padding:8px 18px 6px
    }
    .brandlogo.ashirvad .sub{color:#ffffff;margin-top:10px}
    .brandlogo.skipper .word{font-size:32px;color:#8ac5ff}
    .brandlogo.skipper .sub{color:#d6e7f7}
    .brandlogo.apollo .word{font-size:30px;display:flex;gap:8px;align-items:flex-end;justify-content:center;flex-wrap:wrap}
    .brandlogo.apollo .apl{color:#2ad1d1}
    .brandlogo.apollo .apollo-text{color:#ff9b31}
    .brandlogo.apollo .sub{color:#ffffff}
    .brandlogo.kelvin .word{font-size:34px;color:#79c9ff}
    .brandlogo.kelvin .sub{color:#ff8484}
    .brandlogo.kisan .word{font-size:34px;color:#7dbcff}
    .brandlogo.kisan .sub{color:#dbeaf7}
    .brandlogo.florex .word{font-size:30px;display:flex;gap:6px;align-items:center;justify-content:center;flex-wrap:wrap}
    .brandlogo.florex .flx-red{color:#ff6b5d}
    .brandlogo.florex .flx-green{color:#9bd46a}
    .brandlogo.florex .sub{color:#dbeaf7}
    .brandlogo.berger{gap:6px}
    .brandlogo .berger-mark{
      width:30px;height:22px;border-radius:3px;
      background:conic-gradient(from 205deg,#f15a24 0 21%,#fed53e 21% 43%,#92d050 43% 63%,#2d88d8 63% 82%,#8b63c7 82% 100%);
      clip-path:polygon(0 100%,100% 100%,76% 0);
      margin-bottom:4px
    }
    .brandlogo.berger .word{font-size:34px;color:#ffffff}
    .brandlogo.kirloskar .word{font-size:31px;color:#70bfff}
    .brandlogo.kirloskar .sub{color:#dbeaf7}
    .brandlogo.varuna .note{margin-top:0;color:#ffffff}
    .brandlogo.varuna .word{font-size:34px;color:#ff4b3a;letter-spacing:-.03em}
    .brandlogo.varuna .sub{margin-top:6px;color:#ffe0da}
    .brandlogo.crompton .word{
      font-size:28px;color:#ffffff;background:#2274c9;
      padding:10px 16px;border-radius:10px;display:inline-block
    }
    .brandlogo.watertec .word{font-size:30px;display:flex;gap:4px;align-items:flex-end;justify-content:center;flex-wrap:wrap}
    .brandlogo.watertec .water{color:#78bfff}
    .brandlogo.watertec .tec{color:#ff5f55}
    .brandlogo.watertec .waves{margin-top:8px;font-size:14px;letter-spacing:2px}
    .brandlogo.watertec .waves .b{color:#78bfff}
    .brandlogo.watertec .waves .r{color:#ff5f55}
    .brandlogo.vectus .roof{
      width:0;height:0;
      border-left:13px solid transparent;border-right:13px solid transparent;border-bottom:12px solid #ff4a44;
      margin-bottom:8px
    }
    .brandlogo.vectus .word{font-size:32px;color:#ffffff;letter-spacing:.02em}
    .brandlogo.pidilite .sun{
      width:14px;height:14px;background:#ffcf33;border-radius:50%;
      box-shadow:0 0 0 4px rgba(255,207,51,.14);margin-bottom:4px
    }
    .brandlogo.pidilite .brush{
      width:72px;height:10px;background:#4a8ad9;border-radius:999px;margin-bottom:6px
    }
    .brandlogo.pidilite .word{font-size:32px;color:#ffffff}
    
    
    
    
    .network{display:grid;grid-template-columns:.98fr 1.02fr;gap:24px;align-items:stretch}
    .mapcard{
      min-height:520px;border-radius:28px;overflow:hidden;position:relative;
      background:linear-gradient(180deg,#fbfdff 0%,#f3f8fd 100%);
      border:1px solid var(--line);
      padding:22px;
      box-shadow:0 12px 32px rgba(11,31,51,.05)
    }
    .map-head{
      display:flex;justify-content:space-between;align-items:center;gap:16px;
      margin-bottom:16px
    }
    .map-head strong{
      font-size:18px;letter-spacing:-.02em;color:#0B1F33
    }
    .map-tag{
      padding:8px 12px;border-radius:999px;background:#e8f1fa;color:#1264A3;
      font-size:12px;font-weight:850;letter-spacing:.06em;text-transform:uppercase
    }
    .jh-map-wrap{
      position:relative;width:100%;height:438px;border-radius:22px;overflow:hidden;
      background:linear-gradient(180deg,#fcfeff 0%,#f4f8fc 100%);
      border:1px solid #dce7f1;
    }
    .jh-map-wrap:before{
      content:"";
      position:absolute;inset:0;
      background-image:
        linear-gradient(rgba(187,204,221,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(187,204,221,.10) 1px, transparent 1px);
      background-size:34px 34px;
      opacity:.45;
      pointer-events:none;
    }
    .jh-map-svg{
      width:100%;
      height:100%;
      display:block
    }
    .district{
      stroke:#ffffff;
      stroke-width:2;
      opacity:1;
    }
    .district-border{
      fill:none;
      stroke:#91abc4;
      stroke-width:3;
    }
    .district-name{
      font-size:10px;
      font-weight:800;
      fill:#4a5f75;
      paint-order:stroke;
      stroke:#ffffff;
      stroke-width:3px;
      stroke-linejoin:round;
    }
    .network-line{
      stroke:#8ab0d3;
      stroke-width:1.8;
      fill:none;
      opacity:.85;
      stroke-linecap:round;
    }
    .network-line.main{
      stroke:#1264A3;
      stroke-width:2.8;
      opacity:1;
    }
    .network-halo{
      fill:rgba(18,100,163,.08);
    }
    .map-pin{
      fill:#567189;
      stroke:#ffffff;
      stroke-width:2;
    }
    .map-pin.head{
      fill:#1264A3;
      stroke:#ffffff;
      stroke-width:3;
    }
    .ranchi-label{
      font-size:12px;
      font-weight:900;
      fill:#1264A3;
      paint-order:stroke;
      stroke:#ffffff;
      stroke-width:4px;
      stroke-linejoin:round;
      letter-spacing:.02em;
    }
    .compass{
      fill:#5c7287;
      font-size:10px;
      font-weight:900;
    }
    .map-caption{
      position:absolute;
      right:16px;bottom:14px;
      background:rgba(255,255,255,.92);
      border:1px solid #dde7f0;
      border-radius:12px;
      padding:8px 10px;
      font-size:11px;
      color:#557086;
      font-weight:800;
    }




    .network-copy{
      background:white;border:1px solid var(--line);border-radius:28px;padding:38px
    }
    .network-copy h3{font-size:34px;margin-top:8px}
    .districts{display:flex;flex-wrap:wrap;gap:9px;margin-top:22px}
    .districts span{padding:9px 12px;border:1px solid var(--line);border-radius:999px;font-size:13px;font-weight:750}
    .projects{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
    .project{
      min-height:210px;border-radius:20px;padding:20px;color:white;
      display:flex;align-items:flex-end;font-weight:850;letter-spacing:-.02em;
      background:linear-gradient(160deg,#314c5e,#101923);
      position:relative;overflow:hidden
    }
    .project:before{
      content:"";position:absolute;inset:-20% -40% auto auto;width:180px;height:180px;
      border:1px solid rgba(255,255,255,.15);border-radius:50%
    }
    .why{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .why .card{min-height:220px}
    .about{
      background:#EAF2F9;border-radius:32px;padding:48px;display:grid;
      grid-template-columns:1fr 1fr;gap:50px
    }
    .quote{font-size:28px;line-height:1.2;letter-spacing:-.02em;margin:0}
    .about p{color:#4d5963}
    .cta{
      background:var(--accent-2);color:white;border-radius:30px;padding:44px;
      display:grid;grid-template-columns:1fr auto;align-items:center;gap:24px
    }
    .cta h3{font-size:38px;line-height:1.05;margin:0 0 8px}
    .cta p{color:#d4dee5;margin:0}
    .cta .btn{background:white;color:var(--ink);border-color:white}
    .contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
    form{background:white;border:1px solid var(--line);border-radius:24px;padding:28px}
    .fields{display:grid;grid-template-columns:1fr 1fr;gap:12px}
    input,textarea,select{
      width:100%;padding:14px 15px;border:1px solid #d9dfe3;border-radius:12px;
      background:#FBFDFF;font:inherit
    }
    textarea{min-height:120px;resize:vertical}
    .full{grid-column:1/-1}
    .contact-card{
      background:#0B1F33;color:white;border-radius:24px;padding:34px;display:flex;flex-direction:column;justify-content:space-between
    }
    .contact-card p{color:#c5cfd5}
    .leadership-bridge{
      margin-top:24px;
      padding:26px 28px;
      border-radius:24px;
      background:#0B1F33;
      color:white;
      display:grid;
      grid-template-columns:.7fr 1.3fr;
      gap:24px;
      align-items:center;
    }
    .leadership-bridge strong{
      font-size:28px;
      line-height:1.08;
      letter-spacing:-.035em;
    }
    .leadership-bridge p{
      margin:0;
      color:#D6E3ED;
      font-size:16px;
      line-height:1.7;
    }
    @media (max-width:920px){
      .leadership-bridge{grid-template-columns:1fr}
    }
    @media (max-width:620px){
      .leadership-bridge{padding:22px}
    }
    .leader-tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:max-content;
      padding:9px 13px;
      border-radius:999px;
      background:#EAF2F9;
      color:#1264A3;
      font-size:12px;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:18px;
    }
    .team-culture{
      margin-top:26px;
      position:relative;
      overflow:hidden;
      border-radius:28px;
      min-height:420px;
      box-shadow:0 12px 36px rgba(11,31,51,.05);
      background:#EAF2F9;
    }
    .team-culture img{
      position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
    }
    .team-overlay{
      position:absolute;inset:0;
      background:linear-gradient(0deg,rgba(11,31,51,.78) 0%,rgba(11,31,51,.18) 45%,rgba(11,31,51,.10) 100%);
    }
    .team-copy{
      position:absolute;left:28px;right:28px;bottom:26px;
      color:white;z-index:2;max-width:760px;
    }
    .team-copy h3{
      font-size:34px;line-height:1.05;letter-spacing:-.03em;margin:0 0 10px;font-weight:900;
    }
    .team-copy p{
      margin:0;color:#DCE7EF;font-size:17px;line-height:1.65;
    }
    @media (max-width:920px){
      .team-culture{min-height:360px}
    }
    @media (max-width:620px){
      .team-copy{left:20px;right:20px;bottom:20px}
      .team-copy h3{font-size:28px}
      .team-copy p{font-size:15px}
      .team-culture{min-height:320px}
    }

    
    .leadership-section{background:#fff}
    .leaders-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,340px));
      justify-content:center;
      gap:28px;
      margin-top:10px;
    }
    .leader-mini-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 12px 34px rgba(11,31,51,.05);
      text-align:center;
    }
    .leader-mini-media{
      position:relative;
      height:320px;
      background:#EAF2F9;
      overflow:hidden;
    }
    .leader-mini-media img{
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit:cover;
    }
    .leader-mini-media.chairman img{object-position:center 14%}
    .leader-mini-media.director img{object-position:center 20%}
    .leader-mini-body{
      padding:22px 20px 26px;
    }
    .leader-mini-name{
      margin:0 0 8px;
      font-size:30px;
      line-height:1;
      letter-spacing:-.035em;
      color:#0B1F33;
      font-weight:900;
    }
    .leader-mini-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 16px;
      border-radius:999px;
      background:#EEF5FC;
      border:1px solid #D8E7F5;
      color:#1264A3;
      font-size:13px;
      font-weight:850;
      letter-spacing:.04em;
      text-transform:uppercase;
      margin-bottom:16px;
    }
    .leader-mini-copy{
      color:#5A6D7E;
      font-size:15px;
      line-height:1.7;
      margin:0;
    }
    .leadership-bridge{
      margin-top:28px;
      padding:24px 28px;
      border-radius:24px;
      background:#F8FBFE;
      border:1px solid var(--line);
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:24px;
      align-items:center;
    }
    .leadership-bridge strong{
      font-size:28px;
      line-height:1.06;
      letter-spacing:-.035em;
      color:#0B1F33;
    }
    .leadership-bridge p{
      margin:0;
      color:#5A6D7E;
      font-size:16px;
      line-height:1.7;
    }
    .team-culture{
      margin-top:28px;
      position:relative;
      overflow:hidden;
      border-radius:28px;
      min-height:410px;
      box-shadow:0 12px 36px rgba(11,31,51,.05);
      background:#EAF2F9;
    }
    .team-culture img{
      position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
    }
    .team-overlay{
      position:absolute;inset:0;
      background:linear-gradient(0deg,rgba(11,31,51,.80) 0%,rgba(11,31,51,.18) 45%,rgba(11,31,51,.12) 100%);
    }
    .team-copy{
      position:absolute;left:28px;right:28px;bottom:26px;
      color:white;z-index:2;max-width:760px;
    }
    .team-copy h3{
      font-size:34px;line-height:1.05;letter-spacing:-.03em;margin:0 0 10px;font-weight:900;
    }
    .team-copy p{
      margin:0;color:#DCE7EF;font-size:17px;line-height:1.65;
    }
    @media (max-width:920px){
      .leaders-grid{grid-template-columns:1fr;max-width:420px;margin-left:auto;margin-right:auto}
      .leadership-bridge{grid-template-columns:1fr}
      .team-culture{min-height:360px}
    }
    @media (max-width:620px){
      .leader-mini-media{height:280px}
      .leader-mini-name{font-size:28px}
      .leader-mini-body{padding:20px 18px 22px}
      .leadership-bridge{padding:20px}
      .team-copy{left:20px;right:20px;bottom:20px}
      .team-copy h3{font-size:28px}
      .team-copy p{font-size:15px}
      .team-culture{min-height:320px}
    }

    .office-showcase{background:#F8FBFE}
    .office-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:18px;
      margin-top:12px
    }
    .office-main,.office-card{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      background:#eaf2f9;
      min-height:300px;
      box-shadow:0 10px 30px rgba(11,31,51,.05)
    }
    .office-main{min-height:520px}
    .office-column{display:grid;grid-template-rows:1fr 1fr;gap:18px}
    .office-main img,.office-card img{
      position:absolute;inset:0;width:100%;height:100%;object-fit:cover
    }
    .office-caption{
      position:absolute;left:18px;bottom:18px;z-index:2;
      background:rgba(11,31,51,.78);color:#fff;
      border:1px solid rgba(255,255,255,.14);
      border-radius:14px;padding:11px 14px;
      font-size:13px;font-weight:800;backdrop-filter:blur(8px)
    }
    .office-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      margin-top:18px
    }
    .office-strip .office-card{min-height:230px}
    @media (max-width:920px){
      .office-grid{grid-template-columns:1fr}
      .office-main{min-height:420px}
      .office-column{grid-template-columns:1fr 1fr;grid-template-rows:none}
    }
    @media (max-width:620px){
      .office-main{min-height:300px}
      .office-column,.office-strip{grid-template-columns:1fr}
      .office-card,.office-strip .office-card{min-height:240px}
    }

        .warehouse-showcase{background:#fff}
    .warehouse-grid{
      display:grid;grid-template-columns:1.15fr .85fr;gap:18px
    }
    .warehouse-main,.warehouse-small{
      overflow:hidden;border-radius:24px;position:relative;background:#eaf2f9
    }
    .warehouse-main{min-height:520px}
    .warehouse-side{display:grid;grid-template-rows:1fr 1fr;gap:18px}
    .warehouse-small{min-height:250px}
    .warehouse-main img,.warehouse-small img{
      width:100%;height:100%;object-fit:cover;position:absolute;inset:0
    }
    .warehouse-caption{
      position:absolute;left:18px;bottom:18px;z-index:2;
      background:rgba(11,31,51,.78);color:white;
      border:1px solid rgba(255,255,255,.15);
      border-radius:14px;padding:11px 14px;font-weight:800;font-size:13px;
      backdrop-filter:blur(8px)
    }
    .warehouse-strip{
      display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px
    }
    .warehouse-strip .warehouse-small{min-height:230px}
    @media (max-width:920px){
      .warehouse-grid{grid-template-columns:1fr}
      .warehouse-main{min-height:430px}
      .warehouse-side{grid-template-columns:1fr 1fr;grid-template-rows:none}
    }
    @media (max-width:620px){
      .warehouse-main{min-height:320px}
      .warehouse-side,.warehouse-strip{grid-template-columns:1fr}
      .warehouse-small,.warehouse-strip .warehouse-small{min-height:240px}
    }

    .location-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
    .location-card{
      background:#fff;border:1px solid var(--line);border-radius:26px;
      padding:36px 40px 32px;min-height:360px;
      box-shadow:0 10px 35px rgba(15,23,32,.045);
      display:flex;flex-direction:column
    }
    .location-title{display:flex;align-items:center;gap:14px;font-size:27px;font-weight:900;letter-spacing:-.025em;margin-bottom:34px}
    .location-icon{width:32px;height:32px;color:#0b64c0;flex:0 0 auto}
    .location-company{font-size:21px;font-weight:850;margin-bottom:16px}
    .location-address{color:#53657a;font-size:18px;line-height:1.65;margin:0}
    .location-divider{height:1px;background:#e7e9ec;margin:28px 0 24px}
    .map-link{margin-top:auto;color:#0b64c0;font-weight:850;font-size:17px;display:inline-flex;align-items:center;gap:10px;width:max-content}
    .map-link:hover{gap:14px}
    footer{padding:34px 0 44px;color:#6d7a84;font-size:14px}
    .footerline{border-top:1px solid var(--line);padding-top:24px;display:flex;justify-content:space-between;gap:20px}
    .float{
      position:fixed;right:20px;bottom:20px;background:#1264A3;color:white;border-radius:999px;
      padding:14px 18px;font-weight:850;box-shadow:0 14px 34px rgba(0,0,0,.18);z-index:30
    }
    @media (max-width: 920px){
      .navlinks,.nav .btn{display:none}.menu{display:block}
      .network,.about,.contact-grid{grid-template-columns:1fr}
      .hero-inner{grid-template-columns:1fr;padding-top:150px;padding-bottom:54px}
      .hero-film-note{justify-self:start;width:min(100%,360px)}
      .scroll-cue{display:none}
      .statgrid,.brandgrid{grid-template-columns:repeat(2,1fr)}
      .cards,.why{grid-template-columns:1fr 1fr}
      .projects{grid-template-columns:1fr 1fr}
      .section-head{align-items:start;flex-direction:column}
      .cta{grid-template-columns:1fr}
    }
    @media (max-width: 620px){
      .wrap{padding:0 18px}
      .hero{padding-top:0}
      .hero-inner{padding:132px 18px 42px}
      .hero h1{font-size:clamp(50px,15vw,72px)}
      .hero-film-note{display:none}
      .stats{padding-bottom:44px}
      section{padding:62px 0}
      .statgrid,.cards,.why,.brandgrid,.projects,.fields,.location-grid{grid-template-columns:1fr}
      .about,.cta{padding:28px}
      .project{min-height:150px}
      h1{font-size:52px}
    }
  

/* Production header — exact Shreya Polymers logo */
header{
  background:rgba(255,255,255,.97)!important;
  border-bottom:1px solid #DCE5EE!important;
  box-shadow:0 6px 20px rgba(11,31,51,.05);
  backdrop-filter:blur(18px);
}
header.scrolled{
  background:rgba(255,255,255,.98)!important;
  border-bottom:1px solid #DCE5EE!important;
}
.nav{height:92px}
.official-brand{
  display:flex;
  align-items:center;
  height:100%;
}
.official-brand img{
  display:block;
  width:auto;
  height:68px;
  max-width:235px;
  object-fit:contain;
}
header .navlinks,
header.scrolled .navlinks{color:#334250!important}
header .navlinks a:hover,
header.scrolled .navlinks a:hover{color:#1264A3!important}
header .btn.primary,
header.scrolled .btn.primary{
  background:#0B1F33!important;
  color:white!important;
  border-color:#0B1F33!important;
}
@media (max-width:920px){
  .nav{height:82px}
  .official-brand img{height:58px;max-width:195px}
}
@media (max-width:620px){
  .nav{height:76px}
  .official-brand img{height:52px;max-width:175px}
}


.bot-field{
  position:absolute!important;
  overflow:hidden!important;
  clip:rect(0 0 0 0)!important;
  height:1px!important;
  width:1px!important;
  margin:-1px!important;
  padding:0!important;
  border:0!important;
}

/* Approved real brand-logo assets */
.real-brand-logo{display:block;max-width:88%;max-height:78px;width:auto;height:auto;object-fit:contain;margin:auto;}
.brandcard{background:#fff!important;border-color:#dfe7ef!important;}
.brands .brandcard{min-height:132px;}
@media(max-width:620px){.real-brand-logo{max-width:84%;max-height:66px}}

/* Hero update: cross-fade photos removed only */
.hero{
  background:
    radial-gradient(circle at 18% 18%, rgba(18,100,163,.20), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(135deg,#071521 0%,#0B1F33 48%,#1264A3 100%) !important;
}
.hero-photo-stack,
.hero-photo-slide{
  display:none !important;
}


/* --- Hero video integration --- */
.hero{
  background:#071521 !important;
}
.hero-stage{
  position:relative;
  overflow:hidden;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:0;
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(5,18,30,.82) 0%, rgba(5,18,30,.62) 44%, rgba(5,18,30,.30) 75%, rgba(5,18,30,.42) 100%),
    linear-gradient(180deg, rgba(5,18,30,.24) 0%, rgba(5,18,30,.12) 55%, rgba(5,18,30,.55) 100%);
}
.hero-grid-lines{
  z-index:2;
}
.hero-inner,
.scroll-cue{
  position:relative;
  z-index:3;
}
@media (max-width: 768px){
  .hero-video{
    object-position:center center;
  }
  .hero-overlay{
    background:rgba(5,18,30,.64);
  }
}
@media (prefers-reduced-motion: reduce){
  .hero-video{
    display:none;
  }
  .hero{
    background:#0B1F33 !important;
  }
}


/* Clean hero layout: side information card removed */
.hero-inner{
  grid-template-columns:minmax(0, 820px) !important;
  justify-content:start !important;
}
.hero-copy{
  max-width:820px;
}


/* --- Brand logo upgrade --- */
.brands .brandgrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.brands .brandcard{
  min-height:148px;
  background:#ffffff !important;
  border:1px solid #dfe7ef !important;
  border-radius:20px;
  padding:18px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(11,31,51,.04);
}
.brands .brandcard:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(11,31,51,.08);
}
.brand-logo-image{
  display:block;
  width:auto;
  max-width:92%;
  max-height:78px;
  object-fit:contain;
  margin:auto;
}
.brand-logo-image.logo-medium{
  max-height:84px;
}
.brand-logo-image.logo-large{
  max-height:92px;
  max-width:94%;
}
@media (max-width: 1000px){
  .brands .brandgrid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
@media (max-width: 720px){
  .brands .brandgrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .brands .brandcard{
    min-height:130px;
    padding:16px 14px;
  }
  .brand-logo-image{
    max-height:68px;
  }
  .brand-logo-image.logo-medium{
    max-height:72px;
  }
  .brand-logo-image.logo-large{
    max-height:78px;
  }
}


/* === FINAL REAL BRAND LOGO WALL === */
.real-brand-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:18px !important;
}
.real-brand-grid .brandcard{
  min-height:154px !important;
  padding:18px 18px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#fff !important;
  border:1px solid #dfe7ef !important;
  border-radius:20px !important;
  overflow:hidden !important;
}
.real-brand-grid .brandcard.dark-logo-card{
  background:#0B1F33 !important;
}
.final-brand-logo{
  display:block !important;
  width:auto !important;
  height:auto !important;
  object-fit:contain !important;
  margin:auto !important;
}
.final-brand-logo.size-xl{
  max-width:94% !important;
  max-height:102px !important;
}
.final-brand-logo.size-lg{
  max-width:91% !important;
  max-height:94px !important;
}
.final-brand-logo.kirloskar-logo{
  max-height:116px !important;
}
@media(max-width:1000px){
  .real-brand-grid{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
}
@media(max-width:720px){
  .real-brand-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
  }
  .real-brand-grid .brandcard{
    min-height:126px !important;
    padding:12px !important;
  }
  .final-brand-logo.size-xl{max-height:80px !important;max-width:96% !important;}
  .final-brand-logo.size-lg{max-height:74px !important;max-width:94% !important;}
  .final-brand-logo.kirloskar-logo{max-height:88px !important;}
}


/* Specific fixes for Kisan + Florex */
.final-brand-logo[alt="Kisan"]{
  max-height: 108px !important;
  max-width: 96% !important;
}
.final-brand-logo[alt="Florex Green"]{
  max-height: 88px !important;
  max-width: 98% !important;
}
.real-brand-grid .brandcard:has(.final-brand-logo[alt="Florex Green"]){
  padding: 16px 10px !important;
}
@media (max-width:720px){
  .final-brand-logo[alt="Kisan"]{
    max-height: 82px !important;
  }
  .final-brand-logo[alt="Florex Green"]{
    max-height: 68px !important;
    max-width: 100% !important;
  }
}


/* Exact uploaded Kisan + Florex logos */
.final-brand-logo[alt="Kisan"]{
  max-height: 112px !important;
  max-width: 96% !important;
}
.final-brand-logo[alt="Florex Green"]{
  max-height: 72px !important;
  max-width: 96% !important;
}
.real-brand-grid .brandcard:has(.final-brand-logo[alt="Florex Green"]){
  padding: 18px 10px !important;
}
@media (max-width:720px){
  .final-brand-logo[alt="Kisan"]{max-height:84px !important;}
  .final-brand-logo[alt="Florex Green"]{max-height:56px !important; max-width:98% !important;}
}
