:root{
  --bg:#070b18;
  --bg2:#0a1024;
  --card:rgba(15,23,42,.75);
  --card2:rgba(2,6,23,.7);
  --text:#e6ecff;
  --muted:#9aa4d1;
  --border:rgba(148,163,184,.18);

  --brand:#0ea5e9;
  --brand2:#0284c7;

  --radius:22px;
  --shadow:0 30px 80px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background-color: #cfe9ff;
  color:var(--text);
  line-height:1.75;
}

a{color:inherit}
.container{max-width:1180px;margin:0 auto;padding:0 22px}

/* ===== Topbar / Header ===== */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(10,16,36,.72);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(148,163,184,.12);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; gap:12px; align-items:center;
  text-decoration:none;
  min-width:240px;
}
.logo{
  width:48px;
  height:48px;
  border-radius:12px;
  background-image:url("images/logo.png");
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}
.brand h1{font-size:16px;margin:0;font-weight:800;letter-spacing:.2px}
.brand small{display:block;color:rgba(234,240,255,.65);font-size:12px;margin-top:2px}
.brand h1{
  line-height:1.1;     /* text height tight */
  margin-bottom:2px;   /* niche ka gap control */
}

.brand small{
  margin-top:0;        /* extra gap remove */
  line-height:1.1;
}
.nav-links{
  display:flex; gap:2px; flex-wrap:wrap;
  align-items:center; justify-content:center;
}
.nav-links a{
  text-decoration:none;
  color:rgba(234,240,255,.78);
  font-size:13px;
  padding:8px 10px;
  border-radius:10px;
}
.nav-links a:hover{
  background:rgba(255,255,255,.06);
  color:#fff;
}
.nav-links a.active{
  background:rgba(255,255,255,.06);
  color:#fff;
}

.nav-actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.18);
  background-color:#0ea5e9;
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  color: #1f2937;
  transition:.25s;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);background-color:#0284c7;}
.btn.primary{
  border:0;
  color:#020617;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow:0 10px 20px rgba(14,165,233,.30);
}
.btn.primary:hover{box-shadow:0 14px 28px rgba(14,165,233,.35)}
.btn.ghost{
  background:transparent;
}

/* ===== Mobile menu ===== */
.menu-btn{display:none}
.mobile-nav{
  display:none;
  padding:0 0 14px;
}
.mobile-nav a{
  display:block;
  text-decoration:none;
  padding:12px 12px;
  border-radius:14px;
  margin:8px 0;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(148,163,184,.12);
  color:rgba(234,240,255,.82);
}

/* ===== Hero ===== */
.hero{padding:62px 0 26px}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.hero-card,.side-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{padding:30px}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(14,165,164,0.18);
  border:1px solid rgba(14,165,233,.25);
  color:rgba(215,235,255,.95);
  font-size:12px;
  font-weight:750;
}
.hero-card h2{
  margin:14px 0 10px;
  font-size:28px;
  line-height:1.18;
  letter-spacing:-.2px;
}
.hero-card p{margin:0;color:rgba(234,240,255,.70);font-size:15px;max-width:64ch}

.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:18px}
.kpi{
  background:rgba(2,6,23,.55);
  border:1px solid rgba(148,163,184,.14);
  border-radius:16px;
  padding:14px;
}
.kpi b{display:block;font-size:13px;margin-bottom:4px}
.kpi span{display:block;color:rgba(234,240,255,.65);font-size:12px}

.hr{
  height:1px;
  background:linear-gradient(to right, transparent, rgba(255,255,255,.14), transparent);
  margin:18px 0;
}
.note{
  font-size:14px;
  color:#0ea5e9;
  padding:12px 14px;
  background-color:  #1f2937;
  border:1px solid rgba(148,163,184,.14);
  border-radius:14px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.note a {
  text-decoration: none;
}

/* ===== Side ===== */
.side-card{padding:22px;display:flex;flex-direction:column;gap:12px}
.frame{
  border-radius:18px;
  border:1px solid rgba(148,163,184,.16);
  background:linear-gradient(135deg, rgba(14,165,233,.16), rgba(2,132,199,.06));
  height:160px;
  position:relative;
  overflow:hidden;
}
.tag{
  position:absolute; left:12px; top:12px;
  font-size:12px; font-weight:700;
  color:rgba(234,240,255,.78);
  background:rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.12);
  padding:6px 10px;border-radius:999px;
}
.quick{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.quick a{
  text-decoration:none;
  background:rgba(2,6,23,.55);
  border:1px solid rgba(148,163,184,.14);
  border-radius:16px;
  padding:12px;
}
.quick b{font-size:13px}
.card{
  background:rgba(2,6,23,.55);
  border:1px solid rgba(148,163,184,.14);
  border-radius:18px;
  padding:16px;
}
.card h4{margin:0 0 8px;font-size:14px}
.card p{margin:0;color:rgba(234,240,255,.65);font-size:13px}
.badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.badge{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.14);
  background:rgba(255,255,255,.03);
  color:rgba(234,240,255,.75);
}

/* ===== Page title ===== */
.page-title{padding:42px 0 10px}
.page-title h2{margin:0;font-size:30px;color:#014a85;}
.breadcrumb{margin-top:6px;color:rgba(234,240,255,.55);font-size:13px}

/* ===== Sections ===== */
.section{padding:36px 0 70px}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:18px}
.section-head h3{margin:0;font-size:22px;color: #0284c7;}
.section-head p{margin:8px 0 0;color:rgba(234,240,255,.65);font-size:13px;max-width:none;color: #334155;}

.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}

.feature{display:flex;gap:12px;align-items:flex-start}
.icon{
  width:36px;height:36px;border-radius:12px;
  background:rgba(14,165,233,.14);
  border:1px solid rgba(14,165,233,.25);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}

/* ===== Service rows ===== */
.service-row{
  display:grid;
  grid-template-columns:230px 1fr;
  gap:16px;
  align-items:stretch;
}
.service-row .photo{
  border-radius:18px;
  border:1px solid rgba(148,163,184,.14);
  background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(2,132,199,.06));
  min-height:150px;
}
.service-row h4{margin:0 0 6px;font-size:16px}
.service-row p{margin:0;color:rgba(234,240,255,.65);font-size:13px}

ul{margin:10px 0 0;padding-left:18px}
li{margin:8px 0;color:rgba(234,240,255,.70);font-size:13px}

/* ===== Table ===== */
.table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
  overflow:hidden;
  border-radius:16px;
}
.table th,.table td{
  border:1px solid rgba(148,163,184,.12);
  padding:12px;
  text-align:left;
}
.table th{background:rgba(255,255,255,.04);color:rgba(234,240,255,.85)}

/* ===== Post list ===== */
.post-list a{
  text-decoration:none;
  background:rgba(2,6,23,.55);
  border:1px solid rgba(148,163,184,.14);
  border-radius:18px;
  padding:16px;
  display:block;
}
.post-list b{display:block;font-size:14px;margin-bottom:6px}
.post-list span{display:block;color:rgba(234,240,255,.65);font-size:12px}

/* ===== Footer ===== */
.footer{
  border-top:1px solid rgba(148,163,184,.12);
  background:rgba(10,16,36,.55);
  padding:8px 0 10px;
}
.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer small{color:rgba(234,240,255,.55)}
.footer a{color:rgba(234,240,255,.7);text-decoration:none}
.footer a:hover{color:#fff}
.legal{margin-top:10px;font-size:12px;color:rgba(234,240,255,.55)}

/* ===== Responsive ===== */
@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .service-row{grid-template-columns:1fr}

  .nav-links{display:none}
  .menu-btn{display:inline-flex}
  .mobile-nav{display:none}
  .btn.primary{display:none !IMPORTANT;}
  body.menu-open .mobile-nav{display:block}
}
/* ===== Career / Apply Form Fix ===== */

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 22px;
}

.form-field{
  display:flex;
  flex-direction:column;
}

.form-field.full{
  grid-column:1 / -1;
}

.form-field label{
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
}

.form-field small{
  opacity:.6;
  font-weight:400;
}

.form-field input,
.form-field select,
.form-field textarea{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.22);
  background:rgba(255,255,255,.04);
  color:inherit;
  outline:none;
}

.form-field textarea{
  resize:vertical;
  min-height:110px;
}

@media(max-width:768px){
  .form-grid{
    grid-template-columns:1fr;
  }
}

/* ===== Premium Single-Column Form (Career Apply) ===== */
.premium-form .premium-stack{
  display:flex !important;
  flex-direction:column !important;
  gap:16px !important;
}

/* Field block */
.premium-form .pf-field{
  display:flex !important;
  flex-direction:column !important;
  width:100% !important;
}

/* Label */
.premium-form .pf-field label{
  display:block !important;
  margin:0 0 8px !important;
  font-size:14px !important;
  font-weight:600 !important;
  color:rgba(234,240,255,.92) !important;
  letter-spacing:.2px !important;
}

.premium-form .pf-optional{
  font-weight:500 !important;
  opacity:.6 !important;
  margin-left:6px !important;
}

/* Inputs */
.premium-form .pf-field input,
.premium-form .pf-field select,
.premium-form .pf-field textarea{
  width:100% !important;
  display:block !important;
  padding:12px 14px !important;
  border-radius:14px !important;
  border:1px solid rgba(148,163,184,.22) !important;
  background:rgba(255,255,255,.04) !important;
  color:rgba(234,240,255,.92) !important;
  outline:none !important;
  box-shadow:0 0 0 1px rgba(255,255,255,.02) inset !important;
}

/* Focus premium glow */
.premium-form .pf-field input:focus,
.premium-form .pf-field select:focus,
.premium-form .pf-field textarea:focus{
  border-color:rgba(59,130,246,.65) !important;
  box-shadow:0 0 0 4px rgba(59,130,246,.15) !important;
}

/* Textarea */
.premium-form .pf-field textarea{
  resize:vertical !important;
  min-height:140px !important;
}

/* Actions area */
.premium-form .pf-actions{
  margin-top:14px !important;
}
/* ===== HERO IMAGE FINAL FIX (paste at END) ===== */
.frame{
  position:relative;
  overflow:hidden;
}

.frame .hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  z-index:0;
}

.frame .tag{
  z-index:2;
}
/* ===== NAV ALIGNMENT FIX ===== */

/* Nav main container */
.nav{
  justify-content:space-between; /* already hai, safe */
}

/* Push nav-links towards right (near CTA) */
.nav-links{
  margin-left:auto;      /* magic line */
  margin-right:2px;     /* CTA se thoda gap */
  gap:3px;               /* links ke beech gap kam */
}

/* Individual link padding thoda tight */
.nav-links a{
  padding:6px 8px;
  font-size:13px;
}
.service-row{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap:20px;
  align-items:center;
}

/* ===== SERVICES IMAGE FIX (paste at END) ===== */
.service-row{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:20px;
  align-items:center;
}

.service-row .photo{
  width:100%;
  height:180px;
  border-radius:18px;
  border:1px solid rgba(148,163,184,.14);
  background-color:rgba(2,6,23,.55);
  background-image:linear-gradient(135deg, rgba(14,165,233,.14), rgba(2,132,199,.05));
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain; /* IMPORTANT: full image visible */
  overflow:hidden;
}

/* ===== FIX: Apply Form Select Dropdown Colors ===== */
.dark-select{
  color: rgba(234,240,255,.92);
  background: rgba(255,255,255,.03);
}

/* dropdown options */
.dark-select option{
  background: #0b1220;
  color: #e6ecff;
}

/* highlight selected */
.dark-select option:checked{
  background: #1e293b;
  color: #ffffff;
}

/* placeholder/disabled */
.dark-select option:disabled{
  color: rgba(234,240,255,.55);
}

/* ===== FIX: MOBILE HEADER OVERFLOW + WHITE BG ON ZOOM (paste at END) ===== */

/* Prevent horizontal overflow + white background peeking on zoom */
html{
  background: var(--bg);
}
body{
  overflow-x: hidden;
}

/* Mobile header: allow shrink/wrap */
@media (max-width: 980px){

  .nav{
    flex-wrap: wrap;
    gap: 10px;
  }

  /* IMPORTANT: remove fixed min-width that breaks mobile */
  .brand{
    min-width: 0 !important;
    max-width: 100%;
    flex: 1 1 auto;
  }

  /* make text shrink/wrap instead of pushing layout */
  .brand h1,
  .brand small{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }

  /* CTA/buttons shouldn’t push outside */
  .nav-actions{
    flex: 0 0 auto;
    margin-left: auto;
  }

  /* optional: buttons slightly tighter on mobile */
  .btn{
    padding: 9px 12px;
    border-radius: 12px;
  }

  /* logo thoda compact */
  .logo{
    width: 42px;
    height: 42px;
  }
}
/* ===== FINAL MOBILE FIX: Services layout (paste at VERY END) ===== */
@media (max-width: 980px){

  /* force single column on mobile (overrides later 260px rule) */
  .service-row{
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  /* image/photo size sane on mobile */
  .service-row .photo{
    height: 190px !important;     /* mobile-friendly */
    background-size: cover !important; /* looks better on mobile */
    background-position: center !important;
  }

  /* text block breathing */
  .service-row h4{
    font-size: 16px !important;
    line-height: 1.25 !important;
  }
  .service-row p,
  .service-row li{
    font-size: 13px !important;
    line-height: 1.7 !important;
  }
}
/*=====disclaimer2=====*/
.disclaimer2{
    font-size: 12px;
    color: #a1a1aa;
}
/*=====note2=====*/
.note2{
  justify-content:flex-start !important;
  text-align:left !important;
  gap:12px;
}

.note2 b{
  white-space:nowrap;
  margin-right:10px;
  color:rgba(234,240,255,.92);
}

.note2 span{
  display:block;
  margin-top:2px;
}

.note2 .sub-note2{
  font-size:12px;                 /* thoda aur chota */
  color:rgba(234,240,255,.55);    /* muted premium */
  margin-top:6px;
  line-height:1.6;
  letter-spacing:.2px;            /* premium feel */
}

/* =========================================================
   MOBILE-FIRST OVERRIDES (ADD ONLY) — PASTE AT VERY END
   Desktop styles untouched. Only improves mobile behavior.
   ========================================================= */

/* 1) Global mobile safety: no horizontal scroll */
@media (max-width: 980px){
  html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }
  .container{
    padding-left:16px !important;
    padding-right:16px !important;
  }
}

/* 2) Header / Topbar mobile fit (brand + buttons + menu) */
@media (max-width: 980px){
  .nav{
    flex-wrap:wrap !important;
    align-items:center !important;
  }

  .brand{
    min-width:0 !important;     /* your min-width 240 breaks phones */
    max-width:100% !important;
    flex:1 1 220px !important;
  }

  /* allow wrapping instead of ellipsis (better on small screens) */
  .brand h1,
  .brand small{
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
    max-width:100% !important;
  }

  .nav-actions{
    flex:0 0 auto !important;
    margin-left:auto !important;
    gap:8px !important;
  }

  .btn{
    padding:9px 12px !important;
    font-size:13px !important;
    border-radius:12px !important;
  }

  .logo{
    width:42px !important;
    height:42px !important;
  }
}

/* 3) Hero section: spacing + typography + kpis stack */
@media (max-width: 980px){
  .hero{
    padding:34px 0 18px !important;
  }

  .hero-card{
    padding:18px !important;
  }

  .hero-card h2{
    font-size:clamp(24px, 7vw, 30px) !important;
    line-height:1.18 !important;
  }

  .hero-card p{
    font-size:14px !important;
  }

  .hero-cta{
    gap:10px !important;
  }

  .kpis{
    grid-template-columns:1fr !important;
  }
}

/* 4) Side card / frame height (avoid tall empty block) */
@media (max-width: 980px){
  .side-card{
    padding:18px !important;
  }
  .frame{
    height:160px !important; /* keep your design, just safe */
  }
}

/* 5) Section head stacking (title + text) */
@media (max-width: 980px){
  .section-head{
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:10px !important;
  }
  .section-head p{
    margin-top:6px !important;
  }
}

/* 6) Grid safety: ensure single-column always on mobile */
@media (max-width: 980px){
  .grid2{ grid-template-columns:1fr !important; }
  .grid3{ grid-template-columns:1fr !important; }
}

/* 7) Service rows: force 1 column + image sizing */
@media (max-width: 980px){
  .service-row{
    grid-template-columns:1fr !important;
    align-items:stretch !important;
    gap:12px !important;
  }
  .service-row .photo{
    height:190px !important;
    background-size:cover !important;
    background-position:center !important;
  }
}

/* 8) Tables on mobile: allow horizontal scroll instead of breaking layout */
@media (max-width: 980px){
  .table{
    display:block !important;
    width:100% !important;
    overflow-x:auto !important;
    -webkit-overflow-scrolling:touch;
  }
  .table th, .table td{
    white-space:nowrap;
  }
}

/* 9) Notes: prevent overflow and keep readable */
@media (max-width: 980px){
  .note{
    padding:12px !important;
    font-size:13px !important;
    text-align:left !important;
  }
}

/* 10) Footer stacking */
@media (max-width: 980px){
  .footer-grid{
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:12px !important;
  }
}

/* 11) Forms: already mostly done, just add small padding safety */
@media (max-width: 980px){
  .form-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }
  .form-field input,
  .form-field select,
  .form-field textarea{
    width:100% !important;
  }
}

/* ===== MOBILE HEADER HARD LOCK (FINAL) ===== */
@media (max-width: 980px){

  .topbar{
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999 !important;
    background: rgba(10,16,36,0.98) !important;
    backdrop-filter: blur(12px);
  }

  /* Push page content below fixed header */
  body{
    padding-top: 82px; /* adjust if header height differs */
    overflow-x: hidden;
  }
 
 /* ===== reCAPTCHA mobile overflow fix ===== */
.g-recaptcha{
  max-width: 100%;
  overflow: hidden;
}

.g-recaptcha iframe{
  max-width: 100% !important;
}

/* Mobile screens */
@media (max-width: 430px){
  .g-recaptcha{
    transform: scale(0.90);
    transform-origin: left top;
    width: 304px;
    height: 78px;
    margin-bottom: -8px;
  }
}

/* Smaller phones */
@media (max-width: 380px){
  .g-recaptcha{
    transform: scale(0.84);
    transform-origin: left top;
    width: 304px;
    height: 72px;
    margin-bottom: -14px;
  }
}

/* Very small phones */
@media (max-width: 340px){
  .g-recaptcha{
    transform: scale(0.76);
    transform-origin: left top;
    width: 304px;
    height: 66px;
    margin-bottom: -20px;
  }
}