:root{
  --primary:#071a3d;
  --secondary:#0a4fc5;
  --accent:#8a2bff;
  --cyan:#22d3ee;
  --text:#0d1b2a;
  --muted:#64748b;
  --light:#f7fbff;
  --white:#ffffff;
  --border:#dbe7f3;
  --shadow:0 22px 55px rgba(10,35,85,.15);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:var(--primary);
  letter-spacing:.3px;
}
.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:10px;
}
nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:15px;
  font-weight:650;
}
nav a{color:#24324a}
nav a:hover{color:var(--secondary)}
.nav-cta{
  background:linear-gradient(135deg,var(--secondary),var(--accent));
  color:#fff!important;
  padding:10px 16px;
  border-radius:999px;
}
.menu-toggle{
  display:none;
  border:0;
  background:var(--primary);
  color:white;
  font-size:24px;
  border-radius:10px;
  padding:8px 12px;
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 15%,rgba(34,211,238,.25),transparent 34%),
    radial-gradient(circle at 10% 20%,rgba(138,43,255,.16),transparent 28%),
    linear-gradient(135deg,#f8fbff 0%,#eef7ff 48%,#ffffff 100%);
  padding:86px 0 70px;
}
.hero:after{
  content:"";
  position:absolute;
  width:800px;
  height:800px;
  right:-380px;
  bottom:-420px;
  background:linear-gradient(135deg,var(--secondary),var(--primary));
  border-radius:50%;
  opacity:.12;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:56px;
  align-items:center;
}
.eyebrow{
  color:var(--secondary);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:13px;
  margin:0 0 12px;
}
h1,h2,h3{line-height:1.15;margin:0;color:var(--primary)}
h1{font-size:clamp(42px,6vw,72px);letter-spacing:-2px}
h2{font-size:clamp(30px,4vw,48px);letter-spacing:-1px}
h3{font-size:22px;margin-bottom:10px}
.hero-text{
  font-size:19px;
  color:#40506b;
  max-width:660px;
  margin:24px 0 30px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:14px 22px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
}
.btn.primary{
  background:linear-gradient(135deg,var(--secondary),var(--accent));
  color:#fff;
  box-shadow:0 14px 30px rgba(10,79,197,.24);
}
.btn.secondary{
  background:#fff;
  color:var(--primary);
  border-color:var(--border);
}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.trust-row span,.pill-list span{
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 13px;
  font-weight:700;
  color:#28405f;
}
.hero-card{
  position:relative;
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-card img{
  width:100%;
  height:560px;
  object-fit:cover;
}
.floating-card{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  border-radius:24px;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  padding:18px 20px;
  display:flex;
  flex-direction:column;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}
.floating-card strong{color:var(--primary);font-size:20px}
.floating-card span{color:#45546d}

.stats{
  margin-top:-36px;
  position:relative;
  z-index:5;
}
.stats-grid{
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  border-radius:26px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
}
.stats-grid div{
  padding:28px 24px;
  border-right:1px solid var(--border);
}
.stats-grid div:last-child{border-right:0}
.stats-grid strong{
  display:block;
  font-size:34px;
  color:var(--secondary);
}
.stats-grid span{font-weight:700;color:#40506b}

.section{padding:92px 0}
.muted{background:var(--light)}
.section-title{
  max-width:780px;
  margin:0 auto 46px;
  text-align:center;
}
.section-title p:not(.eyebrow){color:var(--muted);font-size:18px}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:28px;
  box-shadow:0 16px 42px rgba(17,38,75,.08);
  transition:transform .2s ease,box-shadow .2s ease;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}
.icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg,#e9f5ff,#f5ecff);
  font-size:27px;
  margin-bottom:18px;
}
.card p,.industry-card p,.project-grid p,.staffing-box li,.contact-info p{color:var(--muted);margin-bottom:0}

.image-band{
  padding:70px 0;
  background:linear-gradient(135deg,var(--primary),#0f2e68);
  color:#fff;
}
.image-band h2,.dark h2,.cta h2{color:#fff}
.image-band p{color:#d7e7ff;font-size:18px}
.image-band-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:50px;
  align-items:center;
}
.image-band img{
  height:430px;
  width:100%;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 25px 55px rgba(0,0,0,.35);
}
.check-list{
  list-style:none;
  padding:0;
  margin:24px 0 0;
}
.check-list li{
  margin:12px 0;
  padding-left:32px;
  position:relative;
  color:#eaf3ff;
  font-weight:650;
}
.check-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--cyan);
  font-weight:900;
}

.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.industry-card{
  position:relative;
  min-height:250px;
  border-radius:28px;
  padding:26px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background-size:cover;
  background-position:center;
  color:#fff;
  box-shadow:0 18px 42px rgba(8,24,64,.18);
}
.industry-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(7,26,61,.05),rgba(7,26,61,.86));
}
.industry-card h3,.industry-card p{position:relative;color:#fff}
.industry-card p{opacity:.88}
.energy{background-image:url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=900&q=80')}
.bfsi{background-image:url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=900&q=80')}
.banking{background-image:url('https://images.unsplash.com/photo-1541354329998-f4d9a9f9297f?auto=format&fit=crop&w=900&q=80')}
.healthcare{background-image:url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=900&q=80')}
.aviation{background-image:url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=80')}
.conglomerate{background-image:url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80')}
.ecommerce{background-image:url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=900&q=80')}
.cross{background-image:url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=900&q=80')}

.project-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.project-grid article{
  border:1px solid var(--border);
  border-radius:26px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 14px 35px rgba(14,36,80,.08);
}
.project-grid img{
  height:190px;
  width:100%;
  object-fit:cover;
}
.project-grid h3,.project-grid p{padding:0 22px}
.project-grid h3{margin-top:22px}
.project-grid p{padding-bottom:24px}

.dark{
  background:
    radial-gradient(circle at 85% 5%,rgba(34,211,238,.22),transparent 28%),
    linear-gradient(135deg,#071a3d,#020817);
  color:#fff;
}
.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:46px;
  align-items:center;
}
.dark p{color:#dceaff;font-size:18px}
.pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:11px;
  margin-top:26px;
}
.pill-list span{
  background:rgba(255,255,255,.1);
  color:#fff;
  border-color:rgba(255,255,255,.18);
}
.staffing-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:30px;
  padding:34px;
}
.staffing-box h3{color:#fff}
.staffing-box li{color:#e6f1ff;margin:13px 0}

.client-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.client-grid img{
  height:270px;
  width:100%;
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 16px 38px rgba(15,35,75,.12);
}
.logo-strip{
  margin-top:30px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}
.logo-strip span{
  border:1px solid var(--border);
  padding:12px 18px;
  border-radius:16px;
  font-weight:800;
  color:#334765;
  background:#fff;
}

.cta-section{
  background:linear-gradient(135deg,var(--secondary),var(--accent));
  color:#fff;
  padding:54px 0;
}
.cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}
.cta p{color:#e7efff}
.cta .btn.primary{
  background:#fff;
  color:var(--primary);
}

.contact-section{background:#fbfdff}
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
}
.contact-info{
  margin-top:28px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:24px;
}
.contact-info a{color:var(--secondary);font-weight:800}
.contact-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  padding:30px;
  box-shadow:var(--shadow);
}
label{
  display:block;
  color:#334155;
  font-weight:800;
  margin-bottom:18px;
}
input,select,textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 15px;
  margin-top:8px;
  font:inherit;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--secondary);
  box-shadow:0 0 0 4px rgba(10,79,197,.11);
}

.footer{
  background:#031028;
  color:#d7e7ff;
  padding:52px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr repeat(3,1fr);
  gap:32px;
}
.footer img{
  width:120px;
  margin-bottom:14px;
}
.footer h4{color:#fff;margin:0 0 14px}
.footer a{
  display:block;
  color:#c6d8f5;
  margin:9px 0;
}
.copyright{
  margin-top:36px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  color:#9fb3d4;
}

@media(max-width:980px){
  .hero-grid,.image-band-grid,.split,.contact-grid{grid-template-columns:1fr}
  .cards,.industry-grid,.project-grid,.client-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .hero-card img{height:430px}
}

@media(max-width:720px){
  .menu-toggle{display:block}
  nav{
    position:absolute;
    top:78px;
    left:0;
    right:0;
    background:#fff;
    padding:18px 4%;
    flex-direction:column;
    align-items:flex-start;
    border-bottom:1px solid var(--border);
    display:none;
  }
  nav.open{display:flex}
  h1{font-size:42px}
  .hero{padding:58px 0}
  .section{padding:68px 0}
  .cards,.industry-grid,.project-grid,.client-grid,.stats-grid,.footer-grid{grid-template-columns:1fr}
  .stats{margin-top:0}
  .stats-grid div{border-right:0;border-bottom:1px solid var(--border)}
  .cta{flex-direction:column;align-items:flex-start}
}
