*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #4a5568; line-height: 1.6; overflow-x: hidden; background: #fff;padding-top: 90px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

:root {
  --blue: #0e6ba8; --blue-dark: #095280; --teal: #1a9ab5;
  --orange: #e07b39; --orange-dark: #c4682c;
  --navy: #0a1e35;
  --grey-50: #f8fafc; --grey-100: #f1f5f9; --grey-200: #e2e8f0;
  --grey-500: #64748b; --grey-700: #334155;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06),0 4px 16px rgba(0,0,0,.06);
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --r: 12px; --r-lg: 18px;
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.section { padding: 5rem 0; }

.tag { display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--orange);margin-bottom:.75rem; }
.heading { font-family:'Montserrat',sans-serif;font-weight:800;font-size:clamp(1.65rem,4vw,2.55rem);color:var(--navy);line-height:1.18;margin-bottom:1rem; }
.heading .hi-blue{color:var(--blue)} .heading .hi-teal{color:var(--teal)} .heading .hi-orange{color:var(--orange)}
.subheading { font-size:.96rem;color:var(--grey-500);max-width:560px;margin:0 auto 2.8rem;line-height:1.75; }

.btn { display:inline-flex;align-items:center;gap:.45rem;font-family:'Inter',sans-serif;font-weight:600;font-size:.93rem;padding:.75rem 1.6rem;border-radius:var(--r);border:none;cursor:pointer;transition:all .2s ease;text-decoration:none; }
.btn-solid { background:var(--orange);color:#fff;box-shadow:0 4px 14px rgba(224,123,57,.35); }
.btn-solid:hover { background:var(--orange-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(224,123,57,.45); }
.btn-ghost { background:transparent;color:#fff;border:2px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background:rgba(255,255,255,.12);border-color:#fff; }
.btn-blue { background:var(--blue);color:#fff;box-shadow:0 4px 14px rgba(14,107,168,.3); }
.btn-blue:hover { background:var(--blue-dark);transform:translateY(-2px); }

/* ================= NAVBAR ================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);

  transition: all 0.3s ease;
}

nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

/* Links */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: var(--navy);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Right Section */
.nav-right {
  display: flex;
  align-items: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile */
@media (max-width: 900px) {

  .nav-inner {
    padding: 14px 18px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #fff;
    flex-direction: column;
    gap: 0;
    display: none;
    border-bottom: 1px solid var(--grey-200);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-top: 1px solid var(--grey-200);
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
  }
}

/* HERO */
.hero { position:relative;background:linear-gradient(135deg,#061828 0%,#0a2f52 35%,#0e5d94 65%,#1a8fad 100%);min-height:calc(100vh - 70px);display:flex;align-items:center;overflow:hidden;padding:4rem 0 5rem; }
.hero::before { content:'';position:absolute;inset:0;background-image:radial-gradient(circle,rgba(255,255,255,.07) 1px,transparent 1px);background-size:36px 36px;pointer-events:none; }
.hero-ring { position:absolute;right:-8%;top:50%;transform:translateY(-50%);width:60vw;max-width:680px;aspect-ratio:1;border-radius:50%;border:1px solid rgba(255,255,255,.08);pointer-events:none; }
.hero-ring::before,.hero-ring::after { content:'';position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.06); }
.hero-ring::before{inset:14%} .hero-ring::after{inset:30%}
.hero-glow { position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none; }
.hero-glow-1 { width:400px;height:400px;background:rgba(26,155,181,.18);right:10%;top:-5%; }
.hero-glow-2 { width:300px;height:300px;background:rgba(224,123,57,.1);left:-5%;bottom:0; }
.hero__content { position:relative;z-index:2;max-width:640px; }
.hero__badge { display:inline-flex;align-items:center;gap:.5rem;border:1.5px solid rgba(255,255,255,.3);background:rgba(255,255,255,.07);backdrop-filter:blur(8px);color:rgba(255,255,255,.9);padding:.4rem 1rem;border-radius:50px;font-size:.8rem;font-weight:600;letter-spacing:.04em;margin-bottom:1.8rem; }
.badge-dot { width:7px;height:7px;background:#4dffb4;border-radius:50%;animation:pulse 2s infinite; }
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.4)}}
.hero h1 { font-family:'Montserrat',sans-serif;font-weight:900;font-size:clamp(2rem,5.5vw,3.75rem);line-height:1.1;color:#fff;margin-bottom:1.4rem; }
.hero h1 .hi-t{color:#5ee8ff} .hero h1 .hi-o{color:var(--orange)}
.hero p { color:rgba(255,255,255,.78);font-size:1rem;max-width:520px;margin-bottom:2.5rem;line-height:1.75; }
.hero__btns { display:flex;gap:.9rem;flex-wrap:wrap;align-items:center; }

/* STATS */
.stats { background:#fff;border-bottom:1px solid var(--grey-200);padding:2rem 0; }
.stats__grid { display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--grey-200);border:1px solid var(--grey-200);border-radius:var(--r);overflow:hidden; }
.stat-card { background:#fff;display:flex;align-items:center;gap:.9rem;padding:1.3rem 1.5rem; }
.stat-icon-wrap { width:46px;height:46px;flex-shrink:0;background:linear-gradient(135deg,var(--blue),var(--teal));border-radius:10px;display:flex;align-items:center;justify-content:center; }
.stat-icon-wrap svg { color:#fff; }
.stat-num { font-family:'Montserrat',sans-serif;font-weight:800;font-size:1.65rem;color:var(--navy);line-height:1; }
.stat-lbl { font-size:.74rem;color:var(--grey-500);font-weight:500;margin-top:.2rem; }

/* ABOUT */
.about__grid { display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center; }
.about__visual { position:relative; }
.about__img-wrap { border-radius:var(--r-lg);overflow:hidden;background:linear-gradient(135deg,#0a2744,#1a6fa8 50%,#1a9ab5);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center; }
.about__badge-float { position:absolute;bottom:-1.2rem;right:-1rem;background:#fff;border-radius:var(--r);padding:1rem 1.4rem;box-shadow:var(--shadow);display:flex;align-items:center;gap:.75rem;min-width:170px; }
.about__badge-icon { width:42px;height:42px;background:linear-gradient(135deg,var(--orange),#f0a060);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.about__badge-num { font-family:'Montserrat',sans-serif;font-weight:800;font-size:1.35rem;color:var(--navy);line-height:1; }
.about__badge-txt { font-size:.72rem;color:var(--grey-500);font-weight:500; }
.about__body p { font-size:.94rem;line-height:1.8;color:var(--grey-500);margin-bottom:1.1rem; }
.feature-list { list-style:none;display:flex;flex-direction:column;gap:.75rem;margin-top:1.4rem; }
.feature-list li { display:flex;align-items:flex-start;gap:.75rem;background:var(--grey-50);border:1px solid var(--grey-200);border-radius:var(--r);padding:.85rem 1rem; }
.chk { width:22px;height:22px;flex-shrink:0;background:linear-gradient(135deg,var(--blue),var(--teal));border-radius:50%;display:flex;align-items:center;justify-content:center;margin-top:.1rem; }
.chk svg { width:12px;height:12px;color:#fff; }
.feature-list li span { font-size:.88rem;font-weight:500;color:var(--grey-700);line-height:1.5; }

/* SERVICES */
.services { background:var(--grey-50); }
.services__grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem; }
.srv-card { background:#fff;border:1px solid var(--grey-200);border-radius:var(--r);padding:2rem;transition:all .25s; }
.srv-card:hover { transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:rgba(14,107,168,.2); }
.srv-icon { width:58px;height:58px;background:linear-gradient(135deg,var(--blue),var(--teal));border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:1.4rem;color:#fff; }
.srv-card h3 { font-family:'Montserrat',sans-serif;font-weight:700;font-size:1.05rem;color:var(--navy);margin-bottom:.6rem; }
.srv-card p { font-size:.88rem;line-height:1.72; }

/* INDUSTRIES */
.ind__grid { display:grid;grid-template-columns:repeat(6,1fr);gap:1rem; }
.ind-card { border:1px solid var(--grey-200);border-radius:var(--r);padding:1.4rem .8rem;text-align:center;cursor:pointer;transition:all .2s;background:#fff; }
.ind-card:hover { border-color:var(--blue);background:linear-gradient(135deg,rgba(14,107,168,.04),rgba(26,154,181,.04));transform:translateY(-3px);box-shadow:var(--shadow-sm); }
.ind-icon { font-size:1.65rem;margin-bottom:.55rem;display:block; }
.ind-card p { font-size:.78rem;font-weight:600;color:var(--grey-700); }

/* WHY US */
.why { background:linear-gradient(135deg,#061828 0%,#0a2f52 50%,#0e5080 100%);position:relative;overflow:hidden; }
.why::before { content:'';position:absolute;inset:0;background-image:radial-gradient(circle,rgba(255,255,255,.04) 1px,transparent 1px);background-size:40px 40px; }
.why .tag{color:#f6a552} .why .heading{color:#fff} .why .heading .hi-teal{color:#5ee8ff} .why .subheading{color:rgba(255,255,255,.65)}
.why__grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:3rem; }
.why-card { background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:var(--r);padding:1.8rem;backdrop-filter:blur(6px);transition:background .2s; }
.why-card:hover { background:rgba(255,255,255,.11); }
.why-icon { width:52px;height:52px;background:rgba(255,255,255,.12);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1.3rem;color:#5ee8ff; }
.why-card h3 { font-family:'Montserrat',sans-serif;font-weight:700;font-size:1rem;color:#fff;margin-bottom:.55rem; }
.why-card p { font-size:.87rem;color:rgba(255,255,255,.68);line-height:1.7; }

/* CONTACT */
.contact__grid { display:grid;grid-template-columns:1fr 1.7fr;gap:2rem;align-items:start; }
.c-info { background:linear-gradient(145deg,var(--blue),var(--teal));border-radius:var(--r-lg);padding:2.4rem;color:#fff; }
.c-info h3 { font-family:'Montserrat',sans-serif;font-weight:700;font-size:1.4rem;margin-bottom:2rem; }
.c-detail { display:flex;align-items:flex-start;gap:.9rem;margin-bottom:1.5rem; }
.c-detail-icon { width:38px;height:38px;flex-shrink:0;background:rgba(255,255,255,.2);border-radius:8px;display:flex;align-items:center;justify-content:center; }
.c-detail h4 { font-size:.85rem;font-weight:600;margin-bottom:.15rem; }
.c-detail p { font-size:.85rem;opacity:.82; }
.c-form { background:#fff;border:1px solid var(--grey-200);border-radius:var(--r-lg);padding:2.4rem;box-shadow:var(--shadow-sm); }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:1rem; }
.fg { display:flex;flex-direction:column;gap:.35rem;margin-bottom:1rem; }
.fg label { font-size:.8rem;font-weight:600;color:var(--grey-700); }
.fg input,.fg textarea { border:1.5px solid var(--grey-200);border-radius:var(--r);padding:.72rem 1rem;font-size:.9rem;font-family:inherit;color:var(--navy);outline:none;transition:border-color .2s,box-shadow .2s;background:var(--grey-50);width:100%; }
.fg input:focus,.fg textarea:focus { border-color:var(--blue);background:#fff;box-shadow:0 0 0 3px rgba(14,107,168,.1); }
.fg input::placeholder,.fg textarea::placeholder { color:#a0aec0; }
.fg textarea { resize:vertical;min-height:130px; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.3fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

/* footer logo */
.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

/* Dark footer logo fix (only if needed) */
footer img {
  filter: brightness(0) invert(1);
}

/* Tablet */
@media (max-width: 992px) {
  .footer-logo-img {
    max-width: 180px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-logo {
    justify-content: center;
  }

  .footer-logo-img {
    max-width: 150px;
    margin: 0 auto 15px auto;
  }

  .footer-brand-desc {
    text-align: center;
  }
}
.footer-logo-circle svg { width: 22px; height: 22px; color: #fff; }
.footer-logo-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .88rem; color: #fff; }
.footer-logo-text span  { font-size: .67rem; color: rgba(255,255,255,.5); }
.footer-brand-desc { font-size: .87rem; line-height: 1.75; opacity: .72; max-width: 280px; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .88rem; color: #fff; margin-bottom: 1.1rem; letter-spacing: .03em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .18s; }
.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: .7rem;
}
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color .18s; }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
/* SCROLL REVEAL */
.reveal { opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity:1;transform:none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ── RESPONSIVE ─────────────────── */
@media(max-width:1080px){
  .ind__grid { grid-template-columns:repeat(4,1fr); }
  .about__grid { gap:2.5rem; }
}
@media(max-width:900px){
  .navbar__links,.navbar__phone,.navbar__cta { display:none!important; }
  .hamburger { display:flex; }

  .stats__grid { grid-template-columns:repeat(2,1fr); }

  .about__grid { grid-template-columns:1fr; }
  .about__visual { max-width:460px;margin:0 auto 1.5rem; }
  .about__badge-float { right:0; }

  .services__grid { grid-template-columns:repeat(2,1fr); }

  .ind__grid { grid-template-columns:repeat(3,1fr); }

  .why__grid { grid-template-columns:repeat(2,1fr); }

  .contact__grid { grid-template-columns:1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media(max-width:600px){
  .section { padding:3.5rem 0; }

  .hero { padding:3rem 0 4rem;min-height:auto; }
  .hero h1 { font-size:clamp(1.8rem,8vw,2.4rem); }
  .hero__btns { flex-direction:column;align-items:stretch; }
  .hero__btns .btn { justify-content:center; }

  .stats__grid { grid-template-columns:1fr 1fr; }
  .stat-card { padding:.85rem .9rem;gap:.6rem; }
  .stat-num { font-size:1.3rem; }
  .stat-lbl { font-size:.68rem; }
  .stat-icon-wrap { width:38px;height:38px; }

  .about__badge-float { position:static;margin-top:1rem;width:100%;justify-content:center; }

  .services__grid { grid-template-columns:1fr; }

  .ind__grid { grid-template-columns:repeat(2,1fr); }

  .why__grid { grid-template-columns:1fr; }

  .contact__grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .c-form { padding:1.5rem; }
  .c-info { padding:1.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .subheading { margin-bottom:2rem; }
}
@media(max-width:380px){
  .stat-num { font-size:1.15rem; }
  .hero h1 { font-size:1.75rem; }
}

/* ── INDUSTRIES SECTION ───────────────────────────── */
#industries {
  padding: 100px 24px;
}

#industries .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.ind__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.ind-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}

.ind-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ind-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.ind-card:hover::before {
  opacity: 1;
}

.ind-card:hover .ind-icon-wrap {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.4);
}

.ind-card:hover .ind-icon-wrap svg {
  stroke: #60a5fa;
}

.ind-card:hover p {
  color: #f1f5f9;
}

.ind-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.ind-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #006aff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.ind-card p {
  font-size: 13px;
  font-weight: 500;
  color: #0a1e35;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

/* Staggered animation delays */
.ind-card:nth-child(1)  { animation-delay: 0.04s; }
.ind-card:nth-child(2)  { animation-delay: 0.08s; }
.ind-card:nth-child(3)  { animation-delay: 0.12s; }
.ind-card:nth-child(4)  { animation-delay: 0.16s; }
.ind-card:nth-child(5)  { animation-delay: 0.20s; }
.ind-card:nth-child(6)  { animation-delay: 0.24s; }
.ind-card:nth-child(7)  { animation-delay: 0.28s; }
.ind-card:nth-child(8)  { animation-delay: 0.32s; }
.ind-card:nth-child(9)  { animation-delay: 0.36s; }
.ind-card:nth-child(10) { animation-delay: 0.40s; }
.ind-card:nth-child(11) { animation-delay: 0.44s; }
.ind-card:nth-child(12) { animation-delay: 0.48s; }
.ind-card:nth-child(13) { animation-delay: 0.52s; }
.ind-card:nth-child(14) { animation-delay: 0.56s; }
.ind-card:nth-child(15) { animation-delay: 0.60s; }
.ind-card:nth-child(16) { animation-delay: 0.64s; }
.ind-card:nth-child(17) { animation-delay: 0.68s; }
.ind-card:nth-child(18) { animation-delay: 0.72s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── MOBILE RESPONSIVE: INDUSTRIES ───────────────── */
@media (max-width: 1024px) {
  .ind__grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 768px) {
  #industries {
    padding: 72px 16px;
  }

  .ind__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .ind-card {
    padding: 22px 12px 18px;
    border-radius: 14px;
    gap: 12px;
  }

  .ind-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .ind-icon-wrap svg {
    width: 20px;
    height: 20px;
  }

  .ind-card p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #industries {
    padding: 60px 14px;
  }

  .ind__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .ind-card {
    padding: 18px 8px 14px;
    border-radius: 12px;
    gap: 10px;
  }

  .ind-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .ind-icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .ind-card p {
    font-size: 11px;
    letter-spacing: 0;
  }
}

@media (max-width: 360px) {
  .ind__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Contact style  */
    /* ── CONTACT HERO BANNER ── */
    .contact-hero {
      background: linear-gradient(135deg,#061828 0%,#0a2f52 35%,#0e5d94 65%,#1a8fad 100%);
      padding: 5rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content:'';position:absolute;inset:0;
      background-image:radial-gradient(circle,rgba(255,255,255,.06) 1px,transparent 1px);
      background-size:36px 36px;pointer-events:none;
    }
    .contact-hero-glow-1 { position:absolute;width:350px;height:350px;background:rgba(26,155,181,.18);border-radius:50%;filter:blur(80px);right:5%;top:-10%;pointer-events:none; }
    .contact-hero-glow-2 { position:absolute;width:250px;height:250px;background:rgba(224,123,57,.1);border-radius:50%;filter:blur(60px);left:-3%;bottom:0;pointer-events:none; }
    .contact-hero-inner { position:relative;z-index:2;text-align:center; }
    .contact-hero .tag { color:#f6a552; }
    .contact-hero h1 { font-family:'Montserrat',sans-serif;font-weight:900;font-size:clamp(2rem,5vw,3.2rem);color:#fff;line-height:1.12;margin-bottom:1rem; }
    .contact-hero h1 span { color:#5ee8ff; }
    .contact-hero p { color:rgba(255,255,255,.76);font-size:1rem;max-width:520px;margin:0 auto;line-height:1.75; }

    /* ── QUICK STAT STRIP ── */
    .contact-strip { background:#fff;border-bottom:1px solid var(--grey-200);padding:1.5rem 0; }
    .contact-strip__grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--grey-200);border:1px solid var(--grey-200);border-radius:var(--r);overflow:hidden; }
    .cs-item { background:#fff;display:flex;align-items:center;gap:.9rem;padding:1.2rem 1.6rem; }
    .cs-icon { width:44px;height:44px;flex-shrink:0;border-radius:10px;display:flex;align-items:center;justify-content:center; }
    .cs-icon.blue { background:linear-gradient(135deg,var(--blue),var(--teal)); }
    .cs-icon.orange { background:linear-gradient(135deg,var(--orange),#f0a060); }
    .cs-icon.teal { background:linear-gradient(135deg,var(--teal),#2ecfd1); }
    .cs-icon svg { color:#fff;width:20px;height:20px; }
    .cs-label { font-size:.8rem;color:var(--grey-500);font-weight:500; }
    .cs-value { font-family:'Montserrat',sans-serif;font-weight:700;font-size:.95rem;color:var(--navy); }

    /* ── MAIN CONTACT SECTION ── */
    .contact-main { padding: 5rem 0; background: var(--grey-50); }
    .contact-layout { display:grid;grid-template-columns:1fr 1.65fr;gap:2.5rem;align-items:start; }

    /* Info panel */
    .c-info {
      background: linear-gradient(145deg, var(--blue), var(--teal));
      border-radius: var(--r-lg);
      padding: 2.4rem;
      color: #fff;
      position: sticky;
      top: 110px;
    }
    .c-info h3 { font-family:'Montserrat',sans-serif;font-weight:700;font-size:1.3rem;margin-bottom:.5rem; }
    .c-info .c-info-sub { font-size:.875rem;opacity:.8;margin-bottom:2rem;line-height:1.6; }
    .c-detail { display:flex;align-items:flex-start;gap:.9rem;margin-bottom:1.5rem; }
    .c-detail-icon { width:40px;height:40px;flex-shrink:0;background:rgba(255,255,255,.2);border-radius:9px;display:flex;align-items:center;justify-content:center; }
    .c-detail-icon svg { width:18px;height:18px;color:#fff; }
    .c-detail h4 { font-size:.82rem;font-weight:600;margin-bottom:.18rem;opacity:.9; }
    .c-detail p,.c-detail a { font-size:.875rem;opacity:.82;color:#fff;transition:opacity .2s; }
    .c-detail a:hover { opacity:1; }
    .c-divider { border:none;border-top:1px solid rgba(255,255,255,.2);margin:1.8rem 0; }
    .c-social-row { display:flex;gap:.65rem;margin-top:.5rem; }
    .c-social-btn { width:38px;height:38px;background:rgba(255,255,255,.18);border-radius:9px;display:flex;align-items:center;justify-content:center;transition:background .2s; }
    .c-social-btn:hover { background:rgba(255,255,255,.32); }
    .c-social-btn svg { width:17px;height:17px;color:#fff; }
    .c-hours { background:rgba(255,255,255,.12);border-radius:var(--r);padding:1rem 1.2rem;margin-top:1.8rem; }
    .c-hours h4 { font-size:.82rem;font-weight:700;margin-bottom:.75rem;letter-spacing:.04em;text-transform:uppercase;opacity:.9; }
    .c-hour-row { display:flex;justify-content:space-between;font-size:.82rem;padding:.3rem 0;border-bottom:1px solid rgba(255,255,255,.12); }
    .c-hour-row:last-child { border-bottom:none; }
    .c-hour-row span:last-child { font-weight:600; }

    /* Form panel */
/* ===============================
   SIMPLE CONTACT SECTION
================================ */

.simple-contact {
  padding: 100px 0;
  background: #f7f9fc;
}

.sc-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.sc-header p {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 60px;
}

.sc-tag {
  color: #f97316;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

/* Layout */
.sc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT PANEL */
.sc-info {
  background: linear-gradient(4deg, #061828 0%, #0a2f52 35%, #0e5d94 65%, #1a8fad 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
}

.sc-info h3 {
  margin-bottom: 30px;
  font-weight: 700;
}

.sc-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.sc-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px;
}

/* RIGHT PANEL */
.sc-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.sc-row {
  display: flex;
  gap: 20px;
}

.sc-field {
  margin-bottom: 20px;
  width: 100%;
}

.sc-field label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.sc-field input,
.sc-field textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

.sc-field input:focus,
.sc-field textarea:focus {
  border-color: #2563eb;
  background: white;
}

/* Button */
.sc-btn {
  background: #2563eb;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.sc-btn:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 992px) {
  .sc-wrapper {
    grid-template-columns: 1fr;
  }

  .sc-row {
    flex-direction: column;
  }
}
    /* Service chips */
    .service-chips { display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.8rem; }
    .chip { font-size:.75rem;font-weight:600;padding:.38rem .85rem;border-radius:50px;border:1.5px solid var(--grey-200);color:var(--grey-700);cursor:pointer;transition:all .18s;background:#fff;font-family:'Inter',sans-serif; }
    .chip:hover,.chip.active { border-color:var(--blue);color:var(--blue);background:rgba(14,107,168,.06); }
    .chip-label { font-size:.77rem;font-weight:600;color:var(--grey-700);margin-bottom:.6rem;display:block; }

    .form-row { display:grid;grid-template-columns:1fr 1fr;gap:1rem; }
    .fg { display:flex;flex-direction:column;gap:.35rem;margin-bottom:1rem; }
    .fg label { font-size:.8rem;font-weight:600;color:var(--grey-700); }
    .fg input,.fg textarea,.fg select {
      border:1.5px solid var(--grey-200);border-radius:var(--r);
      padding:.72rem 1rem;font-size:.9rem;font-family:inherit;
      color:var(--navy);outline:none;
      transition:border-color .2s,box-shadow .2s;
      background:var(--grey-50);width:100%;
    }
    .fg input:focus,.fg textarea:focus,.fg select:focus {
      border-color:var(--blue);background:#fff;
      box-shadow:0 0 0 3px rgba(14,107,168,.1);
    }
    .fg input::placeholder,.fg textarea::placeholder { color:#a0aec0; }
    .fg textarea { resize:vertical;min-height:130px; }
    .fg select { appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .75rem center;padding-right:2.5rem; }
    .form-submit-row { display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;margin-top:1.4rem; }
    .form-privacy { font-size:.77rem;color:var(--grey-500);display:flex;align-items:center;gap:.4rem; }
    .form-privacy svg { color:var(--teal);flex-shrink:0; }
    .btn-submit { background:linear-gradient(135deg,var(--orange),var(--orange-dark));color:#fff;font-weight:700;border:none;border-radius:var(--r);padding:.82rem 2rem;font-size:.95rem;font-family:'Inter',sans-serif;cursor:pointer;transition:all .2s;box-shadow:0 4px 14px rgba(224,123,57,.35);align-items:center;gap:.5rem; }
    .btn-submit:hover { transform:translateY(-2px);box-shadow:0 6px 20px rgba(224,123,57,.45); }
    .btn-submit svg { width:17px;height:17px; }

    /* success state */
    .form-success { display:none;text-align:center;padding:3rem 2rem; }
    .form-success-icon { width:64px;height:64px;background:linear-gradient(135deg,var(--teal),var(--blue));border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem; }
    .form-success-icon svg { color:#fff;width:30px;height:30px; }
    .form-success h4 { font-family:'Montserrat',sans-serif;font-weight:700;font-size:1.3rem;color:var(--navy);margin-bottom:.5rem; }
    .form-success p { font-size:.9rem;color:var(--grey-500); }

    /* ── MAP SECTION ── */
    .map-section { padding: 5rem 0; background:#fff; }
    .map-wrap { border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--grey-200);box-shadow:var(--shadow-sm);height:420px;background:linear-gradient(135deg,#e2e8f0,#f1f5f9);display:flex;align-items:center;justify-content:center;position:relative; }
    .map-placeholder { text-align:center; }
    .map-placeholder svg { width:48px;height:48px;color:var(--blue);margin:0 auto 1rem;display:block; }
    .map-placeholder p { font-family:'Montserrat',sans-serif;font-weight:700;color:var(--navy);margin-bottom:.4rem; }
    .map-placeholder span { font-size:.85rem;color:var(--grey-500); }
    /* Office cards row */
    .offices-row { display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2.5rem; }
    .office-card { background:var(--grey-50);border:1px solid var(--grey-200);border-radius:var(--r);padding:1.5rem;transition:all .25s; }
    .office-card:hover { transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(14,107,168,.2); }
    .office-badge { display:inline-flex;align-items:center;gap:.4rem;font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--blue);background:rgba(14,107,168,.08);padding:.3rem .7rem;border-radius:50px;margin-bottom:.9rem; }
    .office-badge-dot { width:6px;height:6px;background:var(--teal);border-radius:50%; }
    .office-card h4 { font-family:'Montserrat',sans-serif;font-weight:700;font-size:.97rem;color:var(--navy);margin-bottom:.5rem; }
    .office-card p { font-size:.85rem;color:var(--grey-500);line-height:1.7; }

    /* ── FAQ ── */
    .faq-section { padding:5rem 0;background:var(--grey-50); }
    .faq-list { max-width:720px;margin:0 auto;display:flex;flex-direction:column;gap:.75rem; }
    .faq-item { background:#fff;border:1px solid var(--grey-200);border-radius:var(--r);overflow:hidden;transition:box-shadow .2s; }
    .faq-item.open { box-shadow:var(--shadow-sm);border-color:rgba(14,107,168,.2); }
    .faq-q { display:flex;align-items:center;justify-content:space-between;padding:1.1rem 1.4rem;cursor:pointer;gap:1rem; }
    .faq-q span { font-family:'Montserrat',sans-serif;font-weight:600;font-size:.93rem;color:var(--navy); }
    .faq-toggle { width:28px;height:28px;flex-shrink:0;background:var(--grey-100);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:background .2s,transform .3s; }
    .faq-item.open .faq-toggle { background:var(--blue);transform:rotate(45deg); }
    .faq-toggle svg { width:14px;height:14px;color:var(--grey-700); }
    .faq-item.open .faq-toggle svg { color:#fff; }
    .faq-a { max-height:0;overflow:hidden;transition:max-height .35s ease; }
    .faq-a-inner { padding:0 1.4rem 1.2rem;font-size:.875rem;color:var(--grey-500);line-height:1.75; }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease; }
    .reveal.visible { opacity:1;transform:none; }
    .d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

    /* ── RESPONSIVE ── */
    @media(max-width:900px){
      .contact-layout { grid-template-columns:1fr; }
      .c-info { position:static; }
      .contact-strip__grid { grid-template-columns:1fr; }
      .offices-row { grid-template-columns:repeat(2,1fr); }
    }
    @media(max-width:600px){
      .contact-hero { padding:3.5rem 0 3rem; }
      .c-form-panel { padding:1.5rem; }
      .c-info { padding:1.5rem; }
      .form-row { grid-template-columns:1fr; }
      .form-submit-row { flex-direction:column;align-items:stretch; }
      .btn-submit { justify-content:center; }
      .offices-row { grid-template-columns:1fr; }
      .map-wrap { height:300px; }
    }
    @media(max-width:380px){
      .contact-strip__grid { grid-template-columns:1fr; }
    }

        /* Loading spinner on button */
    .sc-btn .btn-text  { display: inline; }
    .sc-btn .btn-spinner { display: none; }
    .sc-btn.loading .btn-text   { display: none; }
    .sc-btn.loading .btn-spinner { display: inline-flex; align-items: center; gap: 8px; }
    .sc-btn.loading { opacity: .85; cursor: not-allowed; pointer-events: none; }

    /* Spinner animation */
    @keyframes spin { to { transform: rotate(360deg); } }
    .spinner-ring {
      width: 18px; height: 18px;
      border: 2.5px solid rgba(255,255,255,.35);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin .7s linear infinite;
      display: inline-block;
      flex-shrink: 0;
    }

    /* Toast notification */
    #gs-toast {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: #fff;
      border-radius: 14px;
      padding: 16px 20px;
      box-shadow: 0 8px 40px rgba(0,0,0,.18);
      max-width: 360px;
      min-width: 280px;
      transform: translateY(20px);
      opacity: 0;
      transition: opacity .35s ease, transform .35s ease;
      pointer-events: none;
      border-left: 4px solid #1a9ab5;
    }
    #gs-toast.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    #gs-toast.success { border-left-color: #1a9ab5; }
    #gs-toast.error   { border-left-color: #e07b39; }

    .toast-icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
    }
    #gs-toast.success .toast-icon { background: rgba(26,154,181,.12); color: #1a9ab5; }
    #gs-toast.error   .toast-icon { background: rgba(224,123,57,.12); color: #e07b39; }

    .toast-body strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem; color: #0a1e35; margin-bottom: 2px; }
    .toast-body span   { font-size: .82rem; color: #64748b; line-height: 1.5; }

    .toast-close {
      margin-left: auto;
      background: none; border: none; cursor: pointer;
      color: #94a3b8; font-size: 16px; line-height: 1;
      padding: 0 0 0 8px; flex-shrink: 0;
      transition: color .2s;
    }
    .toast-close:hover { color: #0a1e35; }

    /* Form field error highlight */
    .sc-field input.invalid,
    .sc-field textarea.invalid {
      border-color: #e07b39 !important;
      box-shadow: 0 0 0 3px rgba(224,123,57,.12) !important;
    }
    .sc-field .field-error {
      font-size: .76rem;
      color: #e07b39;
      margin-top: 4px;
      display: none;
    }
    .sc-field input.invalid ~ .field-error,
    .sc-field textarea.invalid ~ .field-error {
      display: block;
    }

    /* Inline success state inside form */
    .sc-success-inline {
      display: none;
      text-align: center;
      padding: 3rem 1rem;
    }
    .sc-success-inline .success-ring {
      width: 68px; height: 68px;
      background: linear-gradient(135deg, #1a9ab5, #0e6ba8);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.2rem;
    }
    .sc-success-inline .success-ring i { font-size: 26px; color: #fff; }
    .sc-success-inline h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 1.2rem; color: #0a1e35; margin-bottom: .5rem;
    }
    .sc-success-inline p { font-size: .9rem; color: #64748b; margin-bottom: 1.4rem; }
    .sc-success-inline a {
      display: inline-block;
      font-size: .85rem; font-weight: 600;
      color: #0e6ba8; text-decoration: underline; cursor: pointer;
    }

    @media (max-width: 480px) {
      #gs-toast { bottom: 16px; right: 16px; left: 16px; max-width: none; }
    }

    /* form style of index page */
  /* ── GOOGLE SHEETS FORM STATES (index) ── */
  .btn-index-submit .btn-text    { display: inline; }
  .btn-index-submit .btn-spinner { display: none; }
  .btn-index-submit.loading .btn-text    { display: none; }
  .btn-index-submit.loading .btn-spinner { display: inline-flex; align-items: center; gap: 8px; }
  .btn-index-submit.loading { opacity: .85; cursor: not-allowed; pointer-events: none; }

  @keyframes idx-spin { to { transform: rotate(360deg); } }
  .idx-spinner-ring {
    width: 17px; height: 17px;
    border: 2.5px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: idx-spin .7s linear infinite;
    display: inline-block; flex-shrink: 0;
  }

  /* Field error */
  .fg input.invalid, .fg textarea.invalid {
    border-color: #e07b39 !important;
    box-shadow: 0 0 0 3px rgba(224,123,57,.12) !important;
  }
  .fg .field-error {
    font-size: .75rem; color: #e07b39;
    margin-top: 4px; display: none;
  }
  .fg input.invalid ~ .field-error,
  .fg textarea.invalid ~ .field-error { display: block; }

  /* Inline success */
  .idx-success {
    display: none;
    text-align: center;
    padding: 2.5rem 1rem;
  }
  .idx-success-ring {
    width: 64px; height: 64px;
    background: rgba(255,255,255,.2);
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.1rem;
  }
  .idx-success-ring i { font-size: 24px; color: #fff; }
  .idx-success h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 1.15rem;
    color: #fff; margin-bottom: .45rem;
  }
  .idx-success p { font-size: .88rem; color: rgba(0, 0, 0, 0.8); margin-bottom: 1.2rem; }
  .idx-success a {
    font-size: .83rem; font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: underline; cursor: pointer;
  }
  .idx-success a:hover { color: #fff; }

  /* Toast */
  #idx-toast {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    display: flex; align-items: flex-start; gap: 14px;
    background: #fff; border-radius: 14px; padding: 16px 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    max-width: 360px; min-width: 280px;
    transform: translateY(20px); opacity: 0;
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none; border-left: 4px solid #1a9ab5;
  }
  #idx-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
  #idx-toast.success { border-left-color: #1a9ab5; }
  #idx-toast.error   { border-left-color: #e07b39; }
  .idx-toast-icon {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 15px;
  }
  #idx-toast.success .idx-toast-icon { background: rgba(26,154,181,.12); color: #1a9ab5; }
  #idx-toast.error   .idx-toast-icon { background: rgba(224,123,57,.12);  color: #e07b39; }
  .idx-toast-body strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .87rem; color: #0a1e35; margin-bottom: 2px; }
  .idx-toast-body span   { font-size: .81rem; color: #64748b; line-height: 1.5; }
  .idx-toast-close {
    margin-left: auto; background: none; border: none;
    cursor: pointer; color: #94a3b8; font-size: 16px;
    padding: 0 0 0 8px; flex-shrink: 0; transition: color .2s;
  }
  .idx-toast-close:hover { color: #0a1e35; }
  @media(max-width:480px) { #idx-toast { bottom:16px;right:16px;left:16px;max-width:none; } }

  /* ================================================================
    JOBS OPENINGS PAGE STYLES
================================================================ */

/* ── JOBS HERO ── */
.jobs-hero {
  position: relative;
  background: linear-gradient(135deg, #061828 0%, #0a2f52 35%, #0e5d94 65%, #1a8fad 100%);
  padding: 7rem 0 5rem;
  overflow: hidden;
  text-align: center;
}

.jobs-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.jobs-hero-blob-1 {
  width: 420px; height: 420px;
  background: rgba(14, 107, 168, 0.08);
  top: -80px; right: -60px;
}
.jobs-hero-blob-2 {
  width: 300px; height: 300px;
  background: rgba(224, 123, 57, 0.07);
  bottom: -60px; left: -40px;
}

.jobs-hero-inner {
  position: relative;
  z-index: 2;
}

.jobs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #0e6ba8;
  margin-bottom: 1.6rem;
  box-shadow: 0 2px 12px rgba(14,107,168,.1);
}
.jobs-hero-badge i {
  font-size: 14px;
  color: #1a9ab5;
}

.jobs-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.jobs-hero p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── JOB LISTINGS SECTION ── */
.jobs-listings {
  padding: 5rem 0;
  background: #f8fafc;
}

/* ── CATEGORY BLOCK ── */
.job-category {
  margin-bottom: 4rem;
}

.jcat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #e2e8f0;
}

.jcat-icon {
  width: 52px;
  height: 52px;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: #0e6ba8;
}

.jcat-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: #0a1e35;
  margin: 0;
}

.jcat-count {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  margin: 0.2rem 0 0;
}

/* ── JOB GRID ── */
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

/* ── JOB CARD ── */
.job-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.22s ease;
}

.job-card:hover {
  border-color: #0e6ba8;
  box-shadow: 0 8px 32px rgba(14,107,168,.12);
  transform: translateY(-3px);
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.job-card-top h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: #0a1e35;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.job-badge {
  display: inline-block;
  background: #eff6ff;
  color: #0e6ba8;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(14,107,168,.15);
}

.job-exp {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0.1rem 0 0.3rem;
}

.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0e6ba8;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
  transition: gap 0.2s ease, color 0.2s;
}
.job-apply:hover {
  gap: 9px;
  color: #095280;
}
.job-apply i {
  font-size: 12px;
}

/* ── COMPANY BENEFITS ── */
.jobs-benefits {
  background: #fff;
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.jbenefits-icon {
  width: 56px;
  height: 56px;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0e6ba8;
  margin: 0 auto 1.2rem;
}

.jbenefits-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0a1e35;
  margin-bottom: 2rem;
}

.jbenefits-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto;
}

.jbenefit-pill {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 50px;
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
  transition: all 0.2s;
}
.jbenefit-pill:hover {
  border-color: #0e6ba8;
  color: #0e6ba8;
  background: rgba(14,107,168,.04);
}

/* ── READY TO APPLY CTA ── */
.jobs-cta {
  background: linear-gradient(160deg, #f1f5f9 0%, #e8f0f8 100%);
  padding: 5rem 0;
}

.jobs-cta-inner {
  text-align: center;
}

.jobs-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: #0a1e35;
  margin-bottom: 0.9rem;
}

.jobs-cta p {
  font-size: 0.97rem;
  color: #64748b;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.2rem;
}

.jobs-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.jobs-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0e6ba8;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(14,107,168,.3);
  transition: all 0.2s;
}
.jobs-cta-btn-primary:hover {
  background: #095280;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(14,107,168,.4);
  color: #fff;
}

.jobs-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0a1e35;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: 1.5px solid #cbd5e1;
  text-decoration: none;
  transition: all 0.2s;
}
.jobs-cta-btn-ghost:hover {
  border-color: #0e6ba8;
  color: #0e6ba8;
  background: rgba(14,107,168,.04);
}

/* ── ACTIVE NAV LINK ── */
.nav-links a.active {
  color: var(--blue);
}
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jobs-hero {
    padding: 5.5rem 0 4rem;
  }
}

@media (max-width: 600px) {
  .job-grid {
    grid-template-columns: 1fr;
  }
  .jcat-header {
    gap: 0.75rem;
  }
  .jcat-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .jobs-hero {
    padding: 4.5rem 0 3.5rem;
  }
  .jobs-listings {
    padding: 3.5rem 0;
  }
  .jobs-benefits {
    padding: 3.5rem 0;
  }
  .jobs-cta {
    padding: 3.5rem 0;
  }
  .jobs-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .jobs-cta-btn-primary,
  .jobs-cta-btn-ghost {
    width: 100%;
    max-width: 320px;
  }
  .jbenefits-pills {
    gap: 0.5rem;
  }
  .jbenefit-pill {
    font-size: 0.82rem;
    padding: 0.45rem 1rem;
  }
}

@media (max-width: 400px) {
  .job-card-top {
    flex-direction: column;
    gap: 0.5rem;
  }
  .job-badge {
    align-self: flex-start;
  }
}