/* ==========================================================================
   Shivoham Tech Solutions — Main Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-dark: #0a1e4d;
  --navy: #0d2a72;
  --blue: #1657d0;
  --blue-light: #2f7bf0;
  --blue-bg: #eef4ff;
  --blue-bg-2: #f5f9ff;
  --white: #ffffff;
  --text-dark: #16213e;
  --text-body: #4a5568;
  --text-muted: #6b7280;
  --border-light: #e6ecf5;
  --success: #16a34a;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 20px rgba(13, 42, 114, 0.08);
  --shadow-card-hover: 0 10px 30px rgba(13, 42, 114, 0.14);
  --container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.25;
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(22, 87, 208, 0.35);
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 87, 208, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-small {
  padding: 9px 20px;
  font-size: 13px;
  width: 100%;
}

.btn-block { width: 100%; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--white); }
.topbar .divider { width: 1px; height: 14px; background: rgba(255,255,255,0.25); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 500;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text .title {
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-dark);
  letter-spacing: 0.3px;
}
.logo-text .subtitle {
  font-weight: 500;
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--blue);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.dropdown a:hover { background: var(--blue-bg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.login-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.login-link:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  background: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy-dark);
  border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--blue) 130%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  right: 60px;
  bottom: -160px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.7fr;
  gap: 32px;
  align-items: center;
  padding: 64px 24px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 14px;
  display: block;
}
.hero-title {
  font-size: 44px;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-title .accent { color: #5aa3ff; }
.hero-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.8);
  max-width: 430px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 16px; }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-wrap img {
  max-height: 460px;
  width: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.stat-card .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-dark);
  line-height: 1.2;
}
.stat-card .label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Trusted logos
   ========================================================================== */
.trusted {
  padding: 36px 24px;
  border-bottom: 1px solid var(--border-light);
}
.trusted-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.logo-row .brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: #5b6472;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.logo-row .brand:hover { opacity: 1; filter: grayscale(0%); }

/* ==========================================================================
   Section heading
   ========================================================================== */
.section {
  padding: 80px 24px;
}
.section.bg-light { background: var(--blue-bg-2); }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 32px; }
.section-head p { margin-top: 12px; font-size: 15px; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: all 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13.8px;
  color: var(--text-muted);
}
.services-cta { text-align: center; margin-top: 36px; }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: var(--text-body);
}
.why-list .check {
  color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
}
.why-image {
  position: relative;
}
.why-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.badge-experience {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(22,87,208,0.35);
}
.badge-experience .num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.badge-experience .label {
  font-size: 11px;
  margin-top: 4px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 10px;
  text-align: center;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.process-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
  box-shadow: var(--shadow-card);
}
.process-step span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-dark);
  max-width: 100px;
}

/* ==========================================================================
   Industries
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  max-width: var(--container-width);
  margin: 0 auto;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 12px;
  text-align: center;
  transition: all 0.25s ease;
}
.industry-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.industry-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 12px;
}
.industry-card p {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-dark);
}

/* ==========================================================================
   Jobs
   ========================================================================== */
.jobs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}
.jobs-head h2 { font-size: 26px; }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.25s ease;
}
.job-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.job-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.job-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.job-top h3 { font-size: 15.5px; margin-bottom: 2px; }
.job-type { font-size: 12px; color: var(--text-muted); }
.job-meta { margin-bottom: 16px; }
.job-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 6px;
}
.job-meta li i { color: var(--blue); width: 14px; }

/* ==========================================================================
   Stats bar
   ========================================================================== */
.stats-bar {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  padding: 44px 24px;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-bar .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
}
.stats-bar .stat i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 4px;
}
.stats-bar .stat .num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
}
.stats-bar .stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.testimonial-card .quote-icon {
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 14px;
}
.testimonial-card p.quote {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 20px;
  min-height: 72px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-author .name { font-size: 14px; font-weight: 600; color: var(--navy-dark); }
.testimonial-author .role { font-size: 12px; color: var(--text-muted); }
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
}
.dots span.active { background: var(--blue); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-dark), var(--blue));
  padding: 64px 24px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 30px;
  margin-bottom: 10px;
}
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 26px; font-size: 15px; }

/* ==========================================================================
   Blog / Insights
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}
.blog-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.blog-card img { height: 170px; width: 100%; object-fit: cover; }
.blog-card .content { padding: 20px; }
.blog-meta {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-meta .dot-sep { color: var(--text-muted); }
.blog-card h3 { font-size: 15.5px; margin-bottom: 10px; }
.blog-card .read-more { font-size: 13px; font-weight: 600; color: var(--blue); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-bottom: 40px;
}
.footer-brand .logo-text .title,
.footer-brand .logo-text .subtitle { color: var(--white); }
.footer-brand p {
  font-size: 13.5px;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--blue); }
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--white); }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact i { color: var(--blue-light); margin-top: 3px; }
.footer-map {
  margin-top: 6px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 90px;
  background: #0d2358;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 18px; }
.footer-bottom a:hover { color: var(--white); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 600;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ==========================================================================
   Inner page banner (used on all sub-pages)
   ========================================================================== */
.page-banner {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 60%, var(--blue));
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.page-banner h1 { color: var(--white); font-size: 34px; margin-bottom: 10px; }
.breadcrumb { font-size: 13.5px; color: rgba(255,255,255,0.75); }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 6px; }

/* ==========================================================================
   Generic content helpers (about / careers / contact / blog pages)
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.value-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
}
.value-card .stat-icon { margin: 0 auto 14px; }
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}
.team-card h4 { font-size: 15px; }
.team-card span { font-size: 12.5px; color: var(--text-muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.contact-info-card li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-card li i {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card li h4 { font-size: 14.5px; margin-bottom: 2px; }
.contact-info-card li p { font-size: 13.5px; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--blue-bg-2);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  outline: none;
  background: var(--white);
}
.form-note { font-size: 13px; margin-top: 14px; color: var(--success); display: none; }
.form-note.show { display: block; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  max-width: var(--container-width);
  margin: 40px auto 0;
  box-shadow: var(--shadow-card);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-chip {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  background: var(--white);
  transition: all 0.2s ease;
}
.filter-chip.active,
.filter-chip:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-dark);
  background: var(--white);
  width: 100%;
  text-align: left;
}
.faq-question i { color: var(--blue); transition: transform 0.25s ease; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 18px; }
.faq-answer p { font-size: 13.8px; }

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .stat-card { flex: 1 1 200px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .value-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav, .header-actions .login-link { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: var(--shadow-card-hover);
    gap: 16px;
  }
  .has-dropdown:hover .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 32px; }
  .section { padding: 56px 20px; }
  .services-grid, .industries-grid, .jobs-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .value-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
