:root{
  --bg:#0b1220;
  --card:#0f1a33;
  --muted:#9fb0d0;
  --text:#eaf0ff;
  --accent:#47b0ff;
  --accent2:#60ffa8;
  --border: rgba(255,255,255,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 16px;
  --max: 1100px;
  --pad: 18px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{
  margin:0;
  padding:0;
  background: radial-gradient(1200px 700px at 15% 0%, #14244a 0%, var(--bg) 55%);
  color:var(--text);
  font-family:var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
.container{ width:100%; max-width:var(--max); margin:0 auto; padding: 0 var(--pad); }

.topbar{
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.topbar .container{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding: 10px var(--pad);
}
.pills{ display:flex; gap:10px; flex-wrap:wrap; }
.pill{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 6px 10px;
  border-radius: 999px;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.65);
  border-bottom: 1px solid var(--border);
}
.header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px var(--pad);
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.logo{
  width:38px;
  height:38px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: var(--shadow);
}
.brand .name{
  font-weight: 800;
  letter-spacing:.2px;
  line-height: 1.1;
}
.brand .sub{
  font-size: 13px;
  color: var(--muted);
}

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  transition: color .15s ease, transform .15s ease;
}
.nav a.active, .nav a:hover{ color: var(--text); }
.nav a:hover{ transform: translateY(-1px); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 750;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.btn:active{ transform: translateY(0px); filter: brightness(0.98); }

.btn.primary{
  border: 0;
  background: linear-gradient(135deg, var(--accent), #7b6dff);
  box-shadow: var(--shadow);
}
.menuBtn{
  display:none;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  cursor:pointer;
}

.hero{
  padding: 36px 0 8px 0;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:stretch;
}
.heroCard{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCopy{ padding: 22px; }
.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  color: var(--muted);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 6px 10px;
  border-radius:999px;
  font-size: 13px;
}
.h1{
  font-size: 40px;
  line-height: 1.05;
  margin: 12px 0 10px;
  letter-spacing: -0.5px;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.ctaRow{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }

/* ✅ UPDATED overlay for better contrast */
.heroImg{
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.62)),
    url("./hero-office.jpg");
  background-size: cover;
  background-position: center;
}

.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 16px;
}
.badge{
  font-size: 13px;
  color: var(--muted);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 8px 10px;
  border-radius: 14px;
}

.section{ padding: 20px 0; }
.sectionTitle{
  font-size: 22px;
  margin: 0 0 10px;
}
.sectionDesc{
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform .15s ease, filter .15s ease, border-color .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  border-color: rgba(255,255,255,.16);
}
.card h3{ margin: 0 0 8px; }
.card p{ margin:0; color: var(--muted); line-height: 1.6; }
.card .tag{
  margin-top: 12px;
  display:inline-flex;
  font-size: 12px;
  color: #d7e2ff;
  background: rgba(71,176,255,.12);
  border: 1px solid rgba(71,176,255,.25);
  padding: 6px 10px;
  border-radius: 999px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mediaCard{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

/* ✅ UPDATED overlay for better contrast */
.mediaImg{
  height: 220px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.58)),
    url("./delhi-skyline.jpg");
  background-size: cover;
  background-position: center;
}

.mediaBody{ padding: 16px; }
.list{ margin:0; padding-left: 18px; color: var(--muted); line-height: 1.7; }

.notice{
  border-left: 4px solid var(--accent);
  background: rgba(71,176,255,.08);
  border: 1px solid rgba(71,176,255,.18);
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
}

.footer{
  margin-top: 24px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.footer .container{
  padding: 18px var(--pad);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer a{ color: var(--text); }

.form{
  display:grid;
  gap: 10px;
}
.input, textarea{
  width:100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 10px 12px;
  outline:none;
}
textarea{ min-height: 120px; resize: vertical; }

@media (max-width: 900px){
  .heroGrid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menuBtn{ display:inline-flex; }
  .nav.open{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    position:absolute;
    right: 18px;
    top: 62px;
    background: rgba(11,18,32,.95);
    border:1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    width: min(320px, calc(100% - 36px));
    box-shadow: var(--shadow);
  }
}
