 :root{
    --navy-deep:#0B2545;
    --navy-mid:#123B6B;
    --blue-primary:#1B4F8C;
    --blue-bright:#2D7DD2;
    --blue-pale:#E7F0FA;
    --steel:#5C6B7A;
    --steel-light:#8C99A6;
    --fog:#F1F4F8;
    --line:#DCE4EC;
    --white:#FFFFFF;
    --ink:#101823;
    --radius:6px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'IBM Plex Sans', sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{font-family:'Space Grotesk', sans-serif; font-weight:600; color:var(--navy-deep); line-height:1.15;}
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  img{max-width:100%; display:block;}
  .mono{font-family:'IBM Plex Mono', monospace;}
  .wrap{max-width:1200px; margin:0 auto; padding:0 32px;}

  /* ---------- Line-tag signature element ---------- */
  .linetag{
    display:inline-flex; align-items:center; gap:10px;
    font-family:'IBM Plex Mono', monospace;
    font-size:12.5px; font-weight:600; letter-spacing:.12em;
    color:var(--blue-bright); text-transform:uppercase;
    margin-bottom:18px;
  }
  .linetag .flange{
    width:16px; height:16px; border-radius:50%;
    border:2px solid var(--blue-bright);
    position:relative; flex-shrink:0;
  }
  .linetag .flange::after{
    content:""; position:absolute; inset:4px; border-radius:50%; background:var(--blue-bright);
  }
  .linetag .seg{width:26px; height:2px; background:var(--blue-bright); opacity:.55;}

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:15px 30px; border-radius:var(--radius);
    font-weight:600; font-size:15px; letter-spacing:.01em;
    cursor:pointer; border:2px solid transparent; transition:all .2s ease;
    white-space:nowrap;
  }
  .btn-primary{background:var(--blue-bright); color:#fff;}
  .btn-primary:hover{background:#2469b3; transform:translateY(-1px);}
  .btn-outline{border-color:rgba(255,255,255,.55); color:#fff;}
  .btn-outline:hover{background:rgba(255,255,255,.12); border-color:#fff;}
  .btn-outline-dark{border-color:var(--blue-primary); color:var(--blue-primary);}
  .btn-outline-dark:hover{background:var(--blue-primary); color:#fff;}

  /* ---------- Nav ---------- */
  header{
    position:sticky; top:0; z-index:100; background:rgba(255,255,255,.96);
    backdrop-filter:blur(8px); border-bottom:1px solid var(--line);
  }
  nav{display:flex; align-items:center; justify-content:space-between; padding:16px 32px; max-width:1200px; margin:0 auto;}
  .logo{display:flex; align-items:center; gap:10px;}
  .logo-mark{width:38px; height:38px;}
  .logo-text{font-family:'Space Grotesk'; font-weight:700; font-size:20px; color:var(--navy-deep); letter-spacing:.01em;}
  .logo-sub{font-family:'IBM Plex Mono'; font-size:9.5px; letter-spacing:.18em; color:var(--steel); display:block; margin-top:-2px;}
  .nav-links{display:flex; align-items:center; gap:34px;}
  .nav-links a{font-size:14.5px; font-weight:500; color:var(--navy-deep); position:relative; padding:6px 0;}
  .nav-links a::after{content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--blue-bright); transition:width .2s ease;}
  .nav-links a:hover::after{width:100%;}
  .nav-cta{display:flex; align-items:center; gap:14px;}
  .nav-cta .btn{padding:11px 22px; font-size:14px;}
  .menu-toggle{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none;}
  .menu-toggle span{width:24px; height:2px; background:var(--navy-deep);}

  /* ---------- Hero ---------- */
  .hero{
    position:relative; overflow:hidden;
    background:linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-mid) 55%, #0E3363 100%);
    color:#fff; padding:100px 0 0;
  }
  .hero::before{
    content:""; position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image:radial-gradient(ellipse at 70% 40%, black 10%, transparent 70%);
  }
  .hero-inner{
    position:relative; z-index:2; max-width:1200px; margin:0 auto; padding:0 32px;
    display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center;
  }
  .hero-eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'IBM Plex Mono'; font-size:12px; letter-spacing:.18em; text-transform:uppercase;
    color:#8FC1F2; margin-bottom:22px;
  }
  .hero-eyebrow::before{content:""; width:22px; height:1px; background:#8FC1F2;}
  .hero h1{font-size:46px; color:#fff; margin-bottom:22px; letter-spacing:-.01em;}
  .hero h1 em{font-style:normal; color:#7EBBF5;}
  .hero p{font-size:17px; color:#C6D6E8; max-width:480px; margin-bottom:34px;}
  .hero-ctas{display:flex; gap:16px; margin-bottom:56px; flex-wrap:wrap;}
  .hero-art{position:relative; z-index:2;}
  .hero-art svg{width:100%; height:auto;}

  .stats-strip{
    position:relative; z-index:3; background:#fff; border-radius:12px;
    box-shadow:0 20px 50px rgba(11,37,69,.18);
    display:grid; grid-template-columns:repeat(4,1fr);
    transform:translateY(48px); margin-bottom:0;
  }
  .stat{text-align:center; padding:30px 12px; border-right:1px solid var(--line);}
  .stat:last-child{border-right:none;}
  .stat .num{font-family:'IBM Plex Mono'; font-size:32px; font-weight:600; color:var(--blue-bright);}
  .stat .lbl{font-size:12.5px; color:var(--steel); text-transform:uppercase; letter-spacing:.08em; margin-top:6px;}

  /* ---------- Sections ---------- */
  section{padding:130px 0 96px;}
  .section-alt{background:var(--fog);}
  .section-head{max-width:640px; margin-bottom:56px;}
  .section-head h2{font-size:34px; margin-bottom:14px;}
  .section-head p{color:var(--steel); font-size:16px;}

  /* Intro */
  .intro-grid{display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;}
  .intro-visual{
    border-radius:10px; overflow:hidden; background:var(--blue-pale);
    border:1px solid var(--line); aspect-ratio:4/3.1; position:relative;
  }
  .intro-visual svg{position:absolute; inset:0; width:100%; height:100%;}
  .intro-copy h2{font-size:30px; margin-bottom:18px;}
  .intro-copy p{color:var(--steel); margin-bottom:16px; font-size:15.5px;}
  .intro-list{margin:26px 0 30px; display:grid; gap:12px;}
  .intro-list li{display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--navy-deep); font-weight:500;}
  .intro-list li .dot{width:7px; height:7px; border-radius:50%; background:var(--blue-bright); margin-top:7px; flex-shrink:0;}

  /* Product cards */
  .cards-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:10px;}
  .card{
    background:#fff; border:1px solid var(--line); border-radius:10px; padding:32px 26px;
    transition:transform .2s ease, box-shadow .2s ease; position:relative;
  }
  .card:hover{transform:translateY(-5px); box-shadow:0 16px 32px rgba(11,37,69,.1); border-color:transparent;}
  .card .icon-box{
    width:52px; height:52px; border-radius:9px; background:var(--blue-pale);
    display:flex; align-items:center; justify-content:center; margin-bottom:22px;
  }
  .card .icon-box svg{width:26px; height:26px; stroke:var(--blue-primary);}
  .card h3{font-size:17px; margin-bottom:10px;}
  .card p{font-size:13.8px; color:var(--steel); margin-bottom:16px;}
  .card .card-link{font-size:13px; font-weight:600; color:var(--blue-bright); display:inline-flex; align-items:center; gap:6px;}

  /* Projects */
  .projects-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
  .project{border-radius:10px; overflow:hidden; border:1px solid var(--line); background:#fff;}
  .project-visual{aspect-ratio:4/3; background:var(--navy-deep); position:relative; overflow:hidden;}
  .project-visual svg{position:absolute; inset:0; width:100%; height:100%;}
  .project-tag{
    position:absolute; top:14px; left:14px; background:rgba(255,255,255,.94);
    font-family:'IBM Plex Mono'; font-size:10.5px; letter-spacing:.08em; text-transform:uppercase;
    padding:5px 10px; border-radius:20px; color:var(--navy-deep); font-weight:600;
  }
  .project-body{padding:22px 24px 26px;}
  .project-body h3{font-size:16.5px; margin-bottom:6px;}
  .project-body p{font-size:13.5px; color:var(--steel); margin-bottom:16px;}
  .project-body a{font-size:13px; font-weight:600; color:var(--blue-bright);}

  /* Clients carousel */
  .clients-track-wrap{overflow:hidden; position:relative; mask-image:linear-gradient(90deg, transparent, black 8%, black 92%, transparent);}
  .clients-track{display:flex; gap:64px; width:max-content; animation:scroll 26s linear infinite;}
  @keyframes scroll{from{transform:translateX(0);} to{transform:translateX(-50%);}}
  .client-logo{
    font-family:'Space Grotesk'; font-weight:700; font-size:19px; color:var(--steel-light);
    display:flex; align-items:center; gap:9px; white-space:nowrap; opacity:.85;
  }
  .client-logo .sq{width:10px; height:10px; background:var(--steel-light); border-radius:2px; flex-shrink:0;}

  /* Testimonials */
  .testi-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:26px;}
  .testi{
    background:#fff; border:1px solid var(--line); border-radius:10px; padding:36px;
    position:relative;
  }
  .testi .quote-mark{font-family:'Space Grotesk'; font-size:52px; color:var(--blue-pale); line-height:0; position:absolute; top:28px; right:30px;}
  .testi p{font-size:15.5px; color:var(--navy-deep); margin-bottom:26px; position:relative; z-index:1;}
  .testi-person{display:flex; align-items:center; gap:12px;}
  .avatar{width:44px; height:44px; border-radius:50%; background:var(--blue-primary); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk'; font-weight:600; font-size:15px;}
  .testi-person .name{font-size:14px; font-weight:600; color:var(--navy-deep);}
  .testi-person .role{font-size:12.5px; color:var(--steel);}

  /* Certifications */
  .certs-row{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
  .cert{
    display:flex; align-items:center; gap:14px; padding:20px 20px; background:#fff;
    border:1px solid var(--line); border-radius:8px;
  }
  .cert .badge{width:42px; height:42px; border-radius:50%; border:2px solid var(--blue-bright); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .cert .badge svg{width:20px; height:20px; stroke:var(--blue-bright);}
  .cert .t1{font-size:13.5px; font-weight:600; color:var(--navy-deep);}
  .cert .t2{font-size:11.5px; color:var(--steel);}

  /* Contact CTA banner */
  .cta-banner{
    background:linear-gradient(120deg, var(--blue-primary), var(--navy-deep));
    border-radius:14px; padding:56px 60px; display:flex; align-items:center; justify-content:space-between;
    gap:30px; flex-wrap:wrap; color:#fff;
  }
  .cta-banner h2{color:#fff; font-size:28px; margin-bottom:8px;}
  .cta-banner p{color:#C6D6E8; font-size:15px;}
  .cta-banner-btns{display:flex; gap:14px; flex-wrap:wrap;}

  /* Footer */
  footer{background:var(--navy-deep); color:#B7C6D8; padding:72px 0 26px;}
  .foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr; gap:36px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.12);}
  .foot-brand p{font-size:13.8px; color:#93A6BC; margin:16px 0 20px; max-width:260px;}
  .foot-col h4{color:#fff; font-size:14.5px; margin-bottom:18px; letter-spacing:.02em;}
  .foot-col ul li{margin-bottom:11px;}
  .foot-col a{font-size:13.8px; color:#A9BAD0;}
  .foot-col a:hover{color:#fff;}
  .social-row{display:flex; gap:10px;}
  .social-row a{
    width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.2);
    display:flex; align-items:center; justify-content:center;
  }
  .social-row a svg{width:16px; height:16px; stroke:#fff;}
  .social-row a:hover{background:var(--blue-bright); border-color:var(--blue-bright);}
  .news-input{
    display:flex; margin-top:14px; border:1px solid rgba(255,255,255,.2); border-radius:6px; overflow:hidden;
  }
  .news-input input{
    flex:1; background:transparent; border:none; padding:11px 12px; color:#fff; font-size:13.5px; outline:none;
  }
  .news-input input::placeholder{color:#7B8DA3;}
  .news-input button{background:var(--blue-bright); border:none; padding:0 16px; color:#fff; font-size:13px; font-weight:600; cursor:pointer;}
  .foot-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:22px; font-size:12.5px; color:#7B8DA3; flex-wrap:wrap; gap:10px;}
  .foot-bottom a{color:#93A6BC;}
  
  
  /* ---------- slider---------- */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-slider{
    position:absolute;
    inset:0;
}

.hero-slider .slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:.8s;
}

.hero-slider .slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-inner{
    position:relative;
    z-index:5;
    width:1200px;
    max-width:90%;
    margin:auto;
}

.hero-content{
    max-width:650px;
    color:#fff;
}

.hero-eyebrow{
    margin-bottom:15px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero h1{
    font-size:34px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:30px;
}

.hero-ctas{
    display:flex;
    gap:15px;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:5px;
    text-decoration:none;
}

.btn-primary{
    background:#0b5ed7;
    color:#fff;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.3);
    color:#fff;
    font-size:30px;
    cursor:pointer;
    z-index:10;
}

.prev{
    left:25px;
}

.next{
    right:25px;
}

.dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#bbb;
    cursor:pointer;
}

.dot.active{
    background:#0b5ed7;
}
  /* ---------- Responsive ---------- */
  @media(max-width:980px){
    .hero-inner{grid-template-columns:1fr;}
    .hero-art{order:-1; max-width:420px; margin:0 auto;}
    .cards-grid{grid-template-columns:repeat(2,1fr);}
    .projects-grid{grid-template-columns:1fr; gap:22px;}
    .intro-grid{grid-template-columns:1fr; gap:36px;}
    .testi-grid{grid-template-columns:1fr;}
    .certs-row{grid-template-columns:repeat(2,1fr);}
    .foot-grid{grid-template-columns:1fr 1fr; gap:30px 20px;}
  }
  @media(max-width:760px){
    .nav-links{position:fixed; top:73px; left:0; right:0; background:#fff; flex-direction:column; padding:26px 32px; gap:20px; border-bottom:1px solid var(--line); transform:translateY(-130%); transition:transform .25s ease; z-index:99;}
    .nav-links.open{transform:translateY(0);}
    .nav-cta .btn:first-child{display:none;}
    .menu-toggle{display:flex;}
    .hero h1{font-size:32px;}
    .hero{padding-top:90px;}
    .stats-strip{grid-template-columns:repeat(2,1fr); transform:translateY(30px);}
    .stat{border-bottom:1px solid var(--line); padding:22px 8px;}
    section{padding:90px 0 70px;}
    .section-head h2{font-size:26px;}
    .cards-grid{grid-template-columns:1fr;}
    .certs-row{grid-template-columns:1fr;}
    .cta-banner{padding:40px 28px; flex-direction:column; text-align:center; align-items:flex-start;}
    .foot-grid{grid-template-columns:1fr;}
  }
  
  
  
  /**************Contact us**************/
  
  

  /* Hero */
  .hero{
    position:relative;height:320px;display:flex;align-items:center;color:#fff;overflow:hidden;
    background:linear-gradient(120deg,rgba(8,27,48,.95) 30%,rgba(8,27,48,.55) 65%,rgba(8,27,48,.25) 100%),
      url('/assests/contact.png') right center/cover no-repeat;
  }
  .hero-inner{max-width:1200px;margin:0 auto;padding:0 32px;width:100%;}
  .hero-bar{width:56px;height:4px;background:var(--blue);margin-bottom:16px;}
  .hero h1{font-size:42px;font-weight:800;margin-bottom:14px;letter-spacing:.5px;}
  .hero p{max-width:480px;color:#dbe4f0;font-size:15px;}
  .breadcrumb{background:var(--gray-bg);padding:12px 0;font-size:13px;color:var(--text-muted);}
  .breadcrumb span{color:var(--blue);}

  /* Info bar */
  .info-bar{
    display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
    padding:48px 0;
  }
  .info-card{display:flex;gap:14px;align-items:flex-start;}
  .info-icon{
    width:46px;height:46px;flex:none;border-radius:50%;background:#e8f0fe;color:var(--blue);
    display:flex;align-items:center;justify-content:center;font-size:20px;
  }
  .info-card h4{font-size:15px;margin-bottom:6px;color:var(--navy);}
  .info-card p{font-size:13.5px;color:var(--text-muted);}

  /* Send message + map */
  .contact-section{background:var(--gray-bg);padding:56px 0;}
  h2.section-title{text-align:center;font-size:28px;color:var(--navy);margin-bottom:8px;font-weight:800;}
  p.section-sub{text-align:center;color:var(--text-muted);margin-bottom:36px;font-size:14.5px;}

  .contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
  .form-card, .map-card{background:#fff;border-radius:10px;padding:28px;box-shadow:0 4px 16px rgba(20,30,50,.06);}
  .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px;}
  label{display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:var(--navy);}
  input,select,textarea{
    width:100%;padding:11px 12px;border:1px solid var(--border);border-radius:6px;font-size:13.5px;
    background:#fbfcfe;color:var(--text-dark);font-family:inherit;
  }
  textarea{resize:vertical;min-height:100px;}
  .full-row{margin-bottom:16px;}
  .checkbox-row{display:flex;align-items:center;gap:8px;font-size:12.5px;color:var(--text-muted);margin-bottom:18px;}
  .checkbox-row a{color:var(--blue);}
  .send-btn{
    background:var(--blue);color:#fff;padding:13px 28px;border:none;border-radius:6px;font-size:14px;font-weight:700;cursor:pointer;
  }
  .send-btn:hover{background:var(--blue-light);}

  .map-card{padding:0;overflow:hidden;display:flex;flex-direction:column;}
  .map-info{padding:20px 24px;border-bottom:1px solid var(--border);}
  .map-info h4{color:var(--navy);font-size:15px;margin-bottom:4px;}
  .map-info p{font-size:12.5px;color:var(--text-muted);}
  .map-info a{color:var(--blue);font-size:12.5px;font-weight:600;}
  .map-embed{flex:1;min-height:260px;background:#dfe6ee url('https://api.mapbox.com/styles/v1/mapbox/streets-v11/static/75.8573,30.901,12,0/700x400?access_token=pk.placeholder') center/cover;}
  .map-fallback{
    flex:1;min-height:260px;background:
      linear-gradient(#eef2f7,#eef2f7),
      repeating-linear-gradient(0deg, transparent, transparent 38px, #d7dee7 39px),
      repeating-linear-gradient(90deg, transparent, transparent 38px, #d7dee7 39px);
    position:relative;
  }
  .map-pin{
    position:absolute;top:45%;left:48%;width:28px;height:28px;border-radius:50% 50% 50% 0;
    background:#d64545;transform:rotate(-45deg);box-shadow:0 3px 8px rgba(0,0,0,.3);
  }

  /* Why choose us */
  .why-section{padding:60px 0;text-align:center;}
  .why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:36px;}
  .why-card{border:1px solid var(--border);border-radius:10px;padding:32px 24px;transition:.2s;}
  .why-card:hover{box-shadow:0 8px 20px rgba(20,30,50,.08);transform:translateY(-3px);}
  .why-icon{
    width:52px;height:52px;border-radius:12px;background:#e8f0fe;color:var(--blue);
    display:flex;align-items:center;justify-content:center;font-size:22px;margin:0 auto 16px;
  }
  .why-card h4{font-size:16px;color:var(--navy);margin-bottom:10px;}
  .why-card p{font-size:13.5px;color:var(--text-muted);}

  /* FAQ */
  .faq-section{background:var(--gray-bg);padding:60px 0;}
  .faq-list{max-width:900px;margin:36px auto 0;}
  .faq-item{background:#fff;border:1px solid var(--border);border-radius:8px;margin-bottom:12px;overflow:hidden;}
  .faq-question{
    padding:18px 22px;display:flex;justify-content:space-between;align-items:center;
    cursor:pointer;font-size:14.5px;font-weight:600;color:var(--navy);
  }
  .faq-question .plus{
    width:26px;height:26px;border-radius:50%;background:#e8f0fe;color:var(--blue);
    display:flex;align-items:center;justify-content:center;font-size:16px;flex:none;
  }
  .faq-answer{max-height:0;overflow:hidden;transition:max-height .25s ease;padding:0 22px;font-size:13.5px;color:var(--text-muted);}
  .faq-item.open .faq-answer{max-height:200px;padding:0 22px 18px;}
  .faq-item.open .plus{transform:rotate(45deg);}

  @media(max-width:900px){
    .info-bar{grid-template-columns:repeat(2,1fr);}
    .contact-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    nav{display:none;}
    .hero h1{font-size:30px;}
  }
  
  
  /**************about us***************/
  
   /* Hero */
  .hero{
    position:relative;height:340px;display:flex;align-items:center;color:#fff;overflow:hidden;
    background:linear-gradient(100deg,rgba(8,28,51,.94) 28%,rgba(8,28,51,.55) 60%,rgba(8,28,51,.15) 100%),
      url('/assests/contact.png') right center/cover no-repeat;
  }
  .hero-inner{max-width:1200px;margin:0 auto;padding:0 32px;width:100%;}
  .hero-bar{width:56px;height:4px;background:var(--blue);margin-bottom:16px;}
  .hero h1{font-size:42px;font-weight:800;margin-bottom:14px;letter-spacing:.5px;}
  .hero p{max-width:480px;color:#dbe4f0;font-size:15px;margin-bottom:22px;}
  .breadcrumb{font-size:13px;color:#c7d3e3;}
  .breadcrumb span{color:#fff;font-weight:600;}

  /* Who we are */
  .about-section{padding:80px 0;}
  .about-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
  .eyebrow{
    color:var(--blue);font-size:13px;font-weight:700;letter-spacing:1px;text-transform:uppercase;
    display:flex;align-items:center;gap:8px;margin-bottom:14px;
  }
  .eyebrow::before{content:"";width:20px;height:2px;background:var(--blue);}
  .about-text h2{font-size:32px;color:var(--navy);font-weight:800;margin-bottom:18px;line-height:1.25;}
  .about-text p{color:var(--text-muted);font-size:14.5px;margin-bottom:16px;}
  .learn-btn{
    display:inline-block;margin-top:10px;padding:12px 26px;border:1px solid var(--blue);color:var(--blue);
    border-radius:6px;font-size:14px;font-weight:600;
  }
  .learn-btn:hover{background:var(--blue);color:#fff;}
  .about-image img{border-radius:10px;box-shadow:0 12px 30px rgba(20,30,50,.15);}

  /* Commitment */
  .commit-section{background:var(--gray-bg);padding:70px 0;text-align:center;}
  .commit-section .eyebrow{justify-content:center;}
  .commit-section .eyebrow::before{display:none;}
  .commit-section .eyebrow::after{content:"";display:block;width:20px;height:2px;background:var(--blue);margin:6px auto 0;}
  h2.section-title{font-size:28px;color:var(--navy);margin-bottom:44px;font-weight:800;}

  .commit-grid{display:grid;grid-template-columns:repeat(3,1fr);}
  .commit-card{padding:0 32px;position:relative;}
  .commit-card:not(:last-child)::after{
    content:"";position:absolute;right:0;top:10px;bottom:10px;width:1px;background:var(--border);
  }
  .commit-icon{
    width:56px;height:56px;border-radius:50%;background:#e3ecfb;color:var(--blue);
    display:flex;align-items:center;justify-content:center;font-size:24px;margin:0 auto 18px;
  }
  .commit-card h4{font-size:16px;color:var(--navy);margin-bottom:10px;}
  .commit-card p{font-size:13.5px;color:var(--text-muted);}

  /* Stats */
  .stats-section{
    background:linear-gradient(120deg,var(--navy-dark),var(--blue) 180%);
    background-color:#0d2f77;
    color:#fff;padding:48px 0;
  }
  .stats-grid{display:grid;grid-template-columns:repeat(4,1fr);text-align:center;}
  .stats-grid > div:not(:last-child){border-right:1px solid rgba(255,255,255,.15);}
  .stat-icon{
    width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,.12);
    display:flex;align-items:center;justify-content:center;font-size:22px;margin:0 auto 14px;
  }
  .stat-num{font-size:32px;font-weight:800;margin-bottom:4px;}
  .stat-label{font-size:13px;color:#cfdaeb;}

  @media(max-width:900px){
    .about-grid{grid-template-columns:1fr;}
    .commit-grid{grid-template-columns:1fr;gap:36px;}
    .commit-card::after{display:none;}
    .stats-grid{grid-template-columns:1fr 1fr;gap:28px;}
    .stats-grid > div{border-right:none !important;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    nav{display:none;}
    .hero h1{font-size:30px;}
  }