 :root{
    --navy-900:#071426;
    --navy-800:#0a1c33;
    --navy-700:#0e2745;
    --blue-500:#3b82c4;
    --blue-400:#5b9bd8;
    --blue-300:#8fb9e0;
    --ink:#0d1b2a;
    --muted:#5c6b7a;
    --line:#e2e6ea;
    --bg-light:#f4f6f8;
    --white:#ffffff;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{
    font-family:'Segoe UI', Arial, Helvetica, sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.5;
  }
  img{max-width:100%;display:block;}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  .container{
    max-width:1440px;
    margin:0 auto;
    padding:0 48px;
  }
 
  /* ===== HEADER ===== */
  header{
   background:var(--navy-900);
  position:sticky;
  top:0;
  z-index:100;
  }
  
  .navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 48px;
    max-width:1440px;
    margin:0 auto;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .logo-mark{
    width:42px;
    height:42px;
    flex-shrink:0;
  }
  .logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
  }
  .logo-text .name{
    font-size:22px;
    font-weight:700;
    letter-spacing:3px;
    color:#fff;
  }
  .logo-text .sub{
    font-size:10px;
    letter-spacing:4px;
    color:var(--blue-300);
    font-weight:500;
  }
  nav ul{
    display:flex;
    gap:38px;
  }
  nav a{
    color:#e7edf3;
    font-size:15px;
    font-weight:500;
    padding-bottom:8px;
    position:relative;
    transition:color .2s ease;
  }
  nav a:hover{color:var(--blue-400);}
  nav a.active{color:#fff;}
  nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:var(--blue-500);
    border-radius:2px;
  }
  .nav-cta{
    background:var(--blue-500);
    color:#fff;
    padding:12px 26px;
    border-radius:4px;
    font-weight:600;
    font-size:15px;
    transition:background .2s ease;
    white-space:nowrap;
  }
  .nav-cta:hover{background:var(--blue-400);}

  /* ===== MOBILE NAV TOGGLE (hamburger) ===== */
  .nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:space-between;
    width:28px;
    height:20px;
    background:transparent;
    border:none;
    cursor:pointer;
    padding:0;
    z-index:110;
  }
  .nav-toggle span{
    display:block;
    width:100%;
    height:2px;
    background:#fff;
    border-radius:2px;
    transition:all .3s ease;
  }
  .nav-toggle.open span:nth-child(1){transform:translateY(9px) rotate(45deg);}
  .nav-toggle.open span:nth-child(2){opacity:0;}
  .nav-toggle.open span:nth-child(3){transform:translateY(-9px) rotate(-45deg);}

  .nav-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(4,10,20,0.55);
    z-index:90;
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease;
  }
  .nav-overlay.show{
    display:block;
    opacity:1;
    visibility:visible;
  }
 
  /* ===== HERO ===== */
  .hero{
    position:relative;
    min-height:620px;
    background:
      linear-gradient(100deg, rgba(4,13,26,0.92) 0%, rgba(6,18,36,0.72) 32%, rgba(6,18,36,0.15) 62%, rgba(6,18,36,0.05) 100%),
      url('../images/slider/slider-1.jpg') center 40%/cover no-repeat;
    display:flex;
    align-items:center;
  }
  .hero-inner{
    max-width:1440px;
    margin:0 auto;
    width:100%;
    padding:70px 48px;
  }
  .hero-content{
    max-width:640px;
  }
  .hero h1{
    font-size:52px;
    font-weight:800;
    line-height:1.12;
    color:#fff;
    letter-spacing:0.5px;
  }
  .hero h1 .accent{
    color:var(--blue-400);
    display:block;
  }
  .hero p{
    margin-top:24px;
    font-size:17px;
    color:#cdd8e2;
    max-width:460px;
    line-height:1.6;
  }
  .hero-buttons{
    margin-top:34px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }
  .btn{
    padding:15px 28px;
    font-size:15px;
    font-weight:600;
    border-radius:4px;
    cursor:pointer;
    border:1px solid transparent;
    transition:all .2s ease;
  }
  .btn-primary{
    background:var(--navy-900);
    color:#fff;
  }
  .btn-primary:hover{background:var(--blue-400);}
  .btn-outline{
    background:transparent;
    color:#fff;
    border-color:#fff;
  }
  .btn-outline:hover{background:rgba(255,255,255,0.1);}
 
  /* ===== FEATURES STRIP ===== */
  .features{
    background:var(--navy-800);
    padding:56px 0 60px;
  }
  .features-grid{
    max-width:1440px;
    margin:0 auto;
    padding:0 48px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
  }
  .feature-card{
    text-align:center;
    padding:0 10px;
  }
  .feature-icon{
    width:56px;
    height:56px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid var(--blue-500);
    border-radius:50%;
  }
  .feature-icon svg{
    width:26px;
    height:26px;
    stroke:var(--blue-400);
  }
  .feature-card h3{
    color:#fff;
    font-size:14.5px;
    font-weight:700;
    letter-spacing:0.4px;
    margin-bottom:12px;
    text-transform:uppercase;
  }
  .feature-card p{
    color:#a9b8c6;
    font-size:13.5px;
    line-height:1.6;
  }
 
  /* ===== ABOUT SECTION ===== */
.about{
  background:var(--bg-light);
  padding:64px 0;
}

/* top: text + image, two columns */
.about-top{
  max-width:1440px;
  margin:0 auto 56px;
  padding:0 48px;
  display:flex;
  align-items:center;
  gap:60px;
}
.about-intro{
  flex:1.2;
}
.about-intro .eyebrow{
  color:var(--blue-500);
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  display:inline-block;
  margin-bottom:10px;
}
.about-intro .eyebrow::after{
  content:"";
  display:block;
  width:34px;
  height:3px;
  background:var(--blue-500);
  margin-top:10px;
  border-radius:2px;
}
.about-intro p{
  margin-top:16px;
  font-size:14.5px;
  color:#3d4a56;
  line-height:1.7;
  text-align:justify;
}
.about-intro .learn-more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:18px;
  color:var(--blue-500);
  font-weight:600;
  font-size:14.5px;
}

.about-image{
  flex:1;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(10,28,51,0.12);
}
.about-image img{
  width:100%;
  height:100%;
  height:330px;
  object-fit:cover;
  display:block;
}

/* below: 4 cards in a row */
.about-cards{
  max-width:1440px;
  margin:0 auto;
  padding:0 48px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.about-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:32px 20px;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
}
.about-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 30px rgba(10,28,51,0.1);
}
.about-card .icon-wrap{
  width:56px;
  height:56px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--blue-500);
  border-radius:12px;
  background:var(--bg-light);
}
.about-card .icon-wrap svg{
  width:26px;
  height:26px;
  stroke:var(--blue-500);
}
.about-card h3{
  font-size:17px;
  font-weight:800;
  color:var(--ink);
  margin-bottom:10px;
  line-height:1.3;
}
.about-card p{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1100px){
  .about-top{flex-direction:column;}
  .about-image{width:100%;}
  .about-image img{min-height:300px;}
  .about-cards{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .about-top,.about-cards{padding-left:20px;padding-right:20px;}
  .about-cards{grid-template-columns:1fr;}
}

  
  /* ===== FOOTER ===== */
  .site-footer{
    background:var(--navy-900);
    color:#c3ccd6;
  }
  .footer-top{
    max-width:1440px;
    margin:0 auto;
    padding:64px 48px 40px;
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:40px;
  }
  .footer-logo{
    height:80px;
    margin-bottom:18px;
    
  }
  .footer-brand p{
    font-size:13.5px;
    line-height:1.7;
    color:#ffffff;
    /* max-width:320px; */
  }
  .social-links{
    display:flex;
    gap:12px;
    margin-top:20px;
  }
  .social-links a{
    width:36px;
    height:36px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .2s ease, border-color .2s ease;
  }
  .social-links a:hover{
    background:var(--blue-500);border-color:var(--blue-500);
  }

  .social-links svg{
    width:16px;height:16px;stroke:#fff;
  }
.footer-col h4{
    position: relative;
    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:0.4px;
    margin-bottom:30px; /* Space below heading */
    padding-bottom:12px; /* Space between text and border */
}

.footer-col h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;          /* Border width */
    height:2px;
    background:var(--blue-400); /* Border color */
    border-radius:2px;
}
 .footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    display:inline-block;
    font-size:13.5px;
    color:#fff;
    transition: transform .45s cubic-bezier(.4,0,.2,1), color .45s ease;
    will-change: transform;
}

.footer-col ul li a:hover{
    color:var(--blue-400);
    transform:translateX(12px);
}
  .footer-contact li{
    font-size:13.5px;
    color:white;
  }
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:22px 48px;
    text-align:center;
  }
  .footer-bottom p{
    font-size:13px;
    color:white;
  }
 
  /* ===== RESPONSIVE ===== */
  @media (max-width:1100px){
    .features-grid{grid-template-columns:repeat(3,1fr);}
    .about-grid{grid-template-columns:1fr 1fr;}
    .about-intro{grid-column:1 / -1;}
    .footer-top{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:900px){
    nav{
      position:fixed;
      top:0;
      right:-300px;
      width:280px;
      height:100vh;
      background:var(--navy-800);
      padding:100px 32px 32px;
      transition:right .3s ease;
      box-shadow:-8px 0 24px rgba(0,0,0,0.35);
      z-index:100;
      overflow-y:auto;
    }
    nav.open{right:0;}
    nav ul{
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    nav ul li{border-bottom:1px solid rgba(255,255,255,0.08);}
    nav a{
      display:block;
      padding:14px 0;
    }
    .nav-toggle{display:flex;}
    .nav-cta{display:none;}
    .hero h1{font-size:38px;}
  }
  @media (max-width:640px){
    .container,.navbar,.hero-inner,.features-grid,.about-grid,.footer-top,.footer-bottom{padding-left:20px;padding-right:20px;}
    .features-grid{grid-template-columns:1fr 1fr;}
    .about-grid{grid-template-columns:1fr;}
    .hero h1{font-size:30px;}
    .footer-top{grid-template-columns:1fr;}
  }

 /* ===== CONTACT SECTION ===== */
.contact{
  background:white;
  padding:40px 0;
}
.contact-head{
  margin:0 auto 48px;
  text-align:center;
  padding:0 24px;
}
.contact-head .eyebrow{
  color:var(--blue-500);
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  display:inline-block;
  margin-bottom:16px;
}
.contact-head .eyebrow::after{
  content:"";
  display:block;
  width:34px;
  height:3px;
  background:var(--blue-500);
  margin:10px auto 0;
  border-radius:2px;
}
.contact-head h2{
  font-size:32px;
  font-weight:800;
  color:var(--ink);
  margin-bottom:12px;
}
.contact-head p{
  font-size:14.5px;
  color:var(--muted);
  line-height:1.7;
}

.contact-row{
  max-width:1440px;
  margin:0 auto;
  padding:0 48px;
  display:flex;
  gap:40px;
  align-items:stretch;
}

/* ===== Contact Details (left, replaces image) ===== */
.contact-details{
  flex:1;
  background:var(--navy-900);
  border-radius:12px;
  padding:40px;
  color:#fff;
}
.contact-details h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:12px;
}
.contact-details-lead{
  font-size:14px;
  color:#a9b8c6;
  line-height:1.7;
  margin-bottom:32px;
}
.contact-info-list{
  list-style:none;
  margin:0;
  padding:0;
}
.contact-info-list li{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:26px;
}
.contact-info-list li:last-child{margin-bottom:0;}
.contact-icon{
  flex-shrink:0;
  width:44px;
  height:44px;
  border:2px solid var(--blue-500);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.contact-icon svg{
  width:20px;
  height:20px;
  stroke:var(--blue-400);
}
.contact-info-list h4{
  font-size:14.5px;
  font-weight:700;
  color:#fff;
  margin-bottom:4px;
}
.contact-info-list p{
  font-size:13.5px;
  color:#a9b8c6;
  line-height:1.5;
}

/* ===== Form (right) ===== */
.contact-form-wrap{
  flex:1;
  border-radius:12px;
  padding:40px;
  box-shadow:0 8px 24px rgba(10,28,51,0.06);
  height:100%;
  background:#fff;
  border:1px solid #ddd;
}
.form-row{
  display:flex;
  gap:20px;
}
.form-group{
  flex:1;
  margin-bottom:18px;
  display:flex;
  flex-direction:column;
}
.form-group label{
  font-size:13.5px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:8px;
}
.form-group input,
.form-group textarea{
  border:1px solid var(--line);
  border-radius:6px;
  padding:12px 14px;
  font-size:14.5px;
  font-family:inherit;
  color:var(--ink);
  background:var(--bg-light);
  transition:border-color .2s ease, background .2s ease;
  resize:vertical;
  width:100%;
}
.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--blue-500);
  background:#fff;
}
.btn-submit.btn{
  border:none;
  width:100%;
  padding:14px 28px;
  font-size:15.5px;
  margin-top:6px;
}
.form-note{
  margin-top:14px;
  font-size:13.5px;
  color:var(--blue-500);
  font-weight:600;
  min-height:18px;
}

@media (max-width:900px){
  .contact-row{flex-direction:column;}
  .contact-details, .contact-form-wrap{padding:28px;}
}
@media (max-width:640px){
  .contact-row{padding-left:20px;padding-right:20px;}
  .form-row{flex-direction:column;gap:0;}
  .contact-form-wrap{padding:22px;}
}


/* ===== OUR APPROACH ===== */
.approach{
  /* background:var(--navy-900); */
  padding:40px 0;
}
.approach-head{
  max-width:640px;
  margin:0 auto 48px;
  text-align:center;
  padding:0 24px;
}
.approach-head .eyebrow{
  color:var(--blue-400);
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  display:inline-block;
  margin-bottom:16px;
}
.approach-head .eyebrow::after{
  content:"";
  display:block;
  width:34px;
  height:3px;
  background:var(--blue-400);
  margin:10px auto 0;
  border-radius:2px;
}
.approach-head h2{
  font-size:32px;
  font-weight:800;
  color:white;
  margin-bottom:12px;
}
.approach-head p{
  font-size:14.5px;
  color:#a9b8c6;
  line-height:1.7;
}

.approach-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 48px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.approach-card{
  background:var(--navy-800);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  padding:32px 24px;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.approach-card:hover{
  transform:translateY(-6px);
  border-color:var(--blue-500);
  box-shadow:0 16px 30px rgba(0,0,0,0.3);
}
.approach-icon{
  width:56px;
  height:56px;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--blue-500);
  border-radius:50%;
}
.approach-icon svg{
  width:26px;
  height:26px;
  stroke:var(--blue-400);
}
.approach-card h3{
  font-size:17px;
  font-weight:800;
  color:#fff;
  margin-bottom:12px;
}
.approach-card p{
  font-size:13.5px;
  color:#a9b8c6;
  line-height:1.65;
}

@media (max-width:1100px){
  .approach-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .approach-grid{grid-template-columns:1fr;padding-left:20px;padding-right:20px;}
  .approach-head{padding:0 20px;}
}


/* ===== OUR VISION ===== */
.vision{
  position:relative;
  padding:70px 0;
  background:
    linear-gradient(100deg, rgba(4,13,26,0.92) 0%, rgba(6,18,36,0.8) 50%, rgba(6,18,36,0.92) 100%),
    url('../images/slider/slider-1.jpg') center 45%/cover no-repeat;
  /* background-attachment:fixed; */
}
.vision-inner{
  max-width:820px;
  margin:0 auto;
  text-align:center;
  padding:0 24px;
  position:relative;
  z-index:2;
}
.vision .eyebrow{
  color:var(--blue-400);
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  display:inline-block;
  margin-bottom:20px;
}
.vision .eyebrow::after{
  content:"";
  display:block;
  width:34px;
  height:3px;
  background:var(--blue-400);
  margin:10px auto 0;
  border-radius:2px;
}
.vision h2{
  font-size:30px;
  font-weight:700;
  line-height:1.5;
  color:#fff;
}

@media (max-width:900px){
  .vision{
    padding:70px 0;
    background-attachment:scroll; /* fixed backgrounds are buggy on mobile Safari/Chrome */
  }
  .vision h2{font-size:24px;}
}
@media (max-width:640px){
  .vision-inner{padding:0 20px;}
  .vision h2{font-size:20px;}
}

/* ===== WHAT WE DO ===== */
.what-we-do{
  background:var(--bg-light);
  padding:40px 0;
}
.wwd-head{
  max-width:640px;
  margin:0 auto 64px;
  text-align:center;
  padding:0 24px;
}
.wwd-head .eyebrow{
  color:var(--blue-500);
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  display:inline-block;
  margin-bottom:16px;
}
.wwd-head .eyebrow::after{
  content:"";
  display:block;
  width:34px;
  height:3px;
  background:var(--blue-500);
  margin:10px auto 0;
  border-radius:2px;
}
.wwd-head h2{
  font-size:32px;
  font-weight:800;
  color:var(--ink);
}

.wwd-list{
  /* max-width:1200px; */
  margin:0 auto;
  padding:0 48px;
  display:flex;
  flex-direction:column;
  gap:40px;
}

.wwd-block{
  display:flex;
  align-items:center;
  gap:60px;
  border: 1px solid rgb(214, 214, 214);
  border-radius: 10px;
  padding: 20px;
}
.wwd-block.reverse{
  flex-direction:row-reverse;
}

.wwd-media{
  flex:1 1 45%;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(10,28,51,0.12);
}
.wwd-media img{
  width:100%;
  height:380px;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.wwd-media:hover img{
  transform:scale(1.05);
}

.wwd-content{
  flex:1 1 55%;
}
.wwd-tag{
  display:inline-block;
  font-size:13px;
  font-weight:800;
  letter-spacing:1.5px;
  color:var(--blue-500);
  background:rgba(59,130,196,0.1);
  padding:6px 34px;
  border-radius:20px;
  margin-bottom:16px;
}
.wwd-content h3{
  font-size:24px;
  font-weight:800;
  color:var(--ink);
  margin-bottom:16px;
  line-height:1.3;
}
.wwd-content p{
  font-size:14.5px;
  color:#3d4a56;
  line-height:1.75;
  margin-bottom:14px;
  text-align: justify;
}
.wwd-content p:last-child{margin-bottom:0;}
.wwd-content .wwd-sub{
  font-weight:600;
  color:var(--ink);
  margin-bottom:10px;
}
.wwd-list-items{
  list-style:none;
  margin:0 0 16px;
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 20px;
}
.wwd-list-items li{
  position:relative;
  padding-left:20px;
  font-size:14px;
  color:#3d4a56;
  line-height:1.6;
}
.wwd-list-items li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:7px;
  height:7px;
  background:var(--blue-500);
  border-radius:50%;
}

@media (max-width:1100px){
  .wwd-block, .wwd-block.reverse{
    flex-direction:column;
  }
  .wwd-media{width:100%;}
  .wwd-media img{height:300px;}
}
@media (max-width:640px){
  .wwd-list{padding-left:20px;padding-right:20px;gap:60px;}
  .wwd-head{padding:0 20px;}
  .wwd-list-items{grid-template-columns:1fr;}
  .wwd-content h3{font-size:20px;}
  .wwd-media img{height:220px;}
}


/* ===== WHO WE WORK WITH / PARTNERSHIPS ===== */
.partners-section{
  background:var(--navy-900);
  padding:90px 0;
}
.ps-head{
  max-width:640px;
  margin:0 auto 48px;
  text-align:center;
  padding:0 24px;
}
.ps-head-second{
  margin-top:80px;
}
.ps-head .eyebrow{
  color:var(--blue-400);
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  display:inline-block;
  margin-bottom:16px;
}
.ps-head .eyebrow::after{
  content:"";
  display:block;
  width:34px;
  height:3px;
  background:var(--blue-400);
  margin:10px auto 0;
  border-radius:2px;
}
.ps-head h2{
  font-size:28px;
  font-weight:800;
  color:#fff;
}

/* Who We Work With — icon card grid */
.ps-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 48px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}
.ps-card{
  background:var(--navy-800);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  padding:26px 18px;
  text-align:center;
  transition:transform .25s ease, border-color .25s ease;
}
.ps-card:hover{
  transform:translateY(-4px);
  border-color:var(--blue-500);
}
.ps-icon{
  width:48px;
  height:48px;
  margin:0 auto 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--blue-500);
  border-radius:50%;
}
.ps-icon svg{
  width:22px;
  height:22px;
  stroke:var(--blue-400);
}
.ps-card p{
  font-size:13.5px;
  color:#cdd8e2;
  line-height:1.5;
  font-weight:500;
}

/* Partnership Opportunities — pill tags */
.ps-tags{
  max-width:900px;
  margin:0 auto;
  padding:0 48px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.ps-tag{
  display:inline-block;
  background:rgba(59,130,196,0.12);
  border:1px solid rgba(91,155,216,0.35);
  color:#cdd8e2;
  font-size:14px;
  font-weight:500;
  padding:12px 20px;
  border-radius:30px;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.ps-tag:hover{
  background:var(--blue-500);
  border-color:var(--blue-500);
  color:#fff;
}

.ps-cta{
  max-width:900px;
  margin:48px auto 0;
  padding:0 48px;
  text-align:center;
}
.ps-cta p{
  color:#cdd8e2;
  font-size:16px;
  margin-bottom:20px;
}

@media (max-width:1100px){
  .ps-grid{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:640px){
  .ps-grid{grid-template-columns:1fr 1fr;padding-left:20px;padding-right:20px;}
  .ps-tags{padding-left:20px;padding-right:20px;}
  .ps-head, .ps-cta{padding:0 20px;}
  .ps-head h2{font-size:22px;}
}


#about-us,
#business-areas,
#partnerships,
#contact-us{
  scroll-margin-top:90px;
}

html{
  scroll-behavior:smooth;
}


/* ===== TOP STRIP ===== */
.top-strip{
  background:var(--navy-800);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.top-strip-inner{
  max-width:1440px;
  margin:0 auto;
  padding:8px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.top-strip-left span{
  font-size:12.5px;
  color:#ffffff;
  font-weight:500;
}
.top-strip-right{
  display:flex;
  align-items:center;
  gap:24px;
}
.top-strip-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  color:#a9b8c6;
  white-space:nowrap;
  transition:color .2s ease;
}
.top-strip-item:hover{
  color:var(--blue-400);
}
.top-strip-item svg{
  width:14px;
  height:14px;
  stroke:var(--blue-400);
  flex-shrink:0;
}
.top-strip-social{
  display:flex;
  align-items:center;
  gap:10px;
  padding-left:16px;
  border-left:1px solid rgba(255,255,255,0.12);
}
.top-strip-social a{
  width:26px;
  height:26px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s ease, border-color .2s ease;
}
.top-strip-social a:hover{
  background:var(--blue-500);
  border-color:var(--blue-500);
}
.top-strip-social svg{
  width:18px;
  height:18px;
  stroke:#fff;
}

@media (max-width:900px){
  .top-strip-item span{display:none;}
  .top-strip-inner{padding:8px 32px;}
}
@media (max-width:640px){
  .top-strip-inner{
    padding:8px 20px;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
  }
  .top-strip-left{
    width:100%;
    text-align:center;
  }
  .top-strip-right{
    gap:14px;
  }
}