/* ====== Variables ====== */
:root {
  --navy: #0a1d4f;
  --navy-deep: #061541;
  --navy-2: #0d2461;
  --yellow: #f5b800;
  --yellow-2: #ffc926;
  --text: #1c2536;
  --muted: #6b7280;
  --light: #f6f7fb;
  --border: #e6e8ee;
  --white: #ffffff;
  --shadow-sm: 0 6px 20px rgba(10, 29, 79, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 29, 79, 0.10);
  --radius: 8px;
}

/* ====== Reset / base ====== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-yellow {
  background: var(--yellow);
  color: #1a2447;
}
.btn-yellow:hover {
  background: var(--yellow-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 184, 0, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}

.text-yellow { color: var(--yellow); }

/* ====== Logo ====== */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}
.logo.logo-lg img { height: 64px; }
.logo.logo-light img { height: 56px; }

/* ====== Header ====== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(10, 29, 79, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 30px;
}
.nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--navy);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--yellow); }
.nav .has-drop { position: relative; }
.nav .has-drop > a i { font-size: 10px; margin-left: 4px; }
.nav .drop {
  position: absolute;
  top: 100%;
  left: -10px;
  background: #fff;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  display: block;
  flex-direction: column;
  gap: 0;
}
.nav .drop li { display: block; }
.nav .drop a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
}
.nav .has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-cta { padding: 11px 22px; font-size: 12px; }

.hamburger {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
}

/* ====== Hero ====== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #061541 0%, #0a1d4f 60%, #0d2461 100%);
  color: #fff;
  overflow: hidden;
  min-height: 600px;
  padding: 70px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(245,184,0,0.12) 0%, transparent 60%),
    url('https://images.unsplash.com/photo-1444723121867-7a241cacace9?w=1600&q=80') center/cover;
  opacity: 0.18;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  text-transform: none;
}
.hero-text > p {
  max-width: 480px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.hero-arrow:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.hero-arrow-left { left: 18px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.2s;
}
.dot.active { background: var(--yellow); width: 24px; border-radius: 5px; }

/* Hero collage — bolt arrangement */
.hero-visual { position: relative; height: 520px; }
.bolt-collage {
  position: relative;
  width: 100%;
  height: 100%;
}
.tile {
  position: absolute;
  background-size: cover;
  background-position: center;
  border: 3px solid #fff;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  overflow: hidden;
}
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,29,79,0.18) 0%, rgba(10,29,79,0.55) 100%);
}
/* Top-left, narrower, leans into bolt */
.t1 { top: 0; left: 8%; width: 38%; height: 28%; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
/* Top-right */
.t2 { top: 0; right: 0; width: 48%; height: 28%; }
/* Middle-left (security) */
.t3 { top: 31%; left: 0; width: 50%; height: 32%; }
/* Middle-right (workers/equipment) */
.t4 { top: 31%; right: 6%; width: 38%; height: 32%; }
/* Bottom wide handshake — diagonal cut on right edge */
.t5 {
  bottom: 0;
  left: 6%;
  width: 80%;
  height: 32%;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.bolt-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 22px rgba(245,184,0,0.55));
}

/* Floating contact */
.floating-contact {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  background: #fff;
  color: var(--navy);
  width: 78px;
  padding: 12px 6px;
  border-radius: 6px 0 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: -4px 6px 18px rgba(0,0,0,0.18);
  transition: all 0.2s;
}
.float-btn i { color: var(--yellow); font-size: 18px; }
.float-btn:hover { background: var(--yellow); color: var(--navy); }
.float-btn:hover i { color: var(--navy); }

/* ====== Page banner (sub pages) ====== */
.page-banner {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6,21,65,0.92) 0%, rgba(10,29,79,0.85) 60%, rgba(13,36,97,0.8) 100%),
    url('https://images.pexels.com/photos/325185/pexels-photo-325185.jpeg?auto=compress&w=1600&q=70') center/cover;
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
}
.page-banner h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 9px; }

/* ====== Section heads ====== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.section-head h2,
.about-text h2,
.cta-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-head p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 16px;
}
.underline-bar {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0 auto;
}
.underline-bar.left { display: block; margin: 0 0 22px; }
.eyebrow.left { display: block; }

/* ====== Services ====== */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 72px;
  height: 72px;
  background: rgba(245,184,0,0.12);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 30px;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.read-more {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.read-more:hover { color: var(--navy); }

/* ====== Stats ====== */
.stats {
  background: var(--navy);
  padding: 55px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat { position: relative; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-icon { color: var(--yellow); font-size: 30px; margin-bottom: 12px; }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ====== About ====== */
.about { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 14.5px;
  line-height: 1.8;
}
.about-text .btn { margin-top: 14px; }
.about-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.about-img-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  padding: 14px 26px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.about-img-logo img { height: 64px; width: auto; }

/* ====== Industries ====== */
.industries { background: #fff; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.industry {
  padding: 18px 10px;
  transition: all 0.25s;
}
.industry:hover { transform: translateY(-5px); }
.industry-icon {
  width: 88px;
  height: 88px;
  border: 2px solid var(--border);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 36px;
  transition: all 0.25s;
}
.industry:hover .industry-icon {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
}
.industry h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ====== CTA band ====== */
.cta-band {
  position: relative;
  background:
    linear-gradient(90deg, rgba(10,29,79,0.92) 0%, rgba(10,29,79,0.7) 60%, rgba(10,29,79,0.4) 100%),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80') right center/cover;
  color: #fff;
  padding: 70px 0;
}
.cta-text h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 38px;
}
.cta-text p {
  margin-bottom: 22px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
}

/* ====== Testimonials ====== */
.testimonials { background: #fff; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute;
  top: 14px;
  left: 22px;
  font-size: 70px;
  color: var(--yellow);
  font-family: Georgia, serif;
  line-height: 0.8;
  font-weight: 700;
}
.testi-card p {
  margin-top: 30px;
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.testi-author strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.testi-author span {
  color: var(--muted);
  font-size: 12px;
}
.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}
.testi-dots .dot {
  background: rgba(10,29,79,0.2);
}
.testi-dots .dot.active { background: var(--yellow); }

/* ====== Footer ====== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col p {
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}
.footer-col h5 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
}
.contact-list li i {
  color: var(--yellow);
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.socials a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: all 0.2s;
}
.socials a:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a:hover { color: var(--yellow); }

/* ====== Feature grid (Why Choose Us) ====== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.25s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.feature h4 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
}
.feature p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ====== Service detail blocks ====== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.service-detail-text h2 {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.service-detail-text p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.75;
}
.feature-list {
  margin-top: 18px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
}
.feature-list li i {
  color: var(--yellow);
  margin-top: 4px;
}

/* ====== Industry detail cards ====== */
.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.industry-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.industry-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.industry-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,29,79,0) 50%, rgba(10,29,79,0.6) 100%);
}
.industry-card-body {
  padding: 24px 22px;
}
.industry-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.industry-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

/* ====== Career positions ====== */
.positions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.position {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.2s;
}
.position:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.position h4 { color: var(--navy); font-size: 17px; margin-bottom: 6px; }
.position .meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.position .meta span { display: flex; align-items: center; gap: 6px; }
.position .meta i { color: var(--yellow); }

/* ====== Forms ====== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.4px;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ====== Contact info cards ====== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.25s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.contact-card h4 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.contact-card p, .contact-card a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.contact-card a:hover { color: var(--yellow); }
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-embed {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* ====== Blog ====== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-card-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--yellow); }
.blog-card h3 {
  font-size: 17px;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 700;
}
.blog-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ====== Misc text page ====== */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 30px;
}
.mv-card {
  background: #fff;
  border-left: 4px solid var(--yellow);
  padding: 26px 26px 26px 28px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}
.mv-card h4 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-card h4 i { color: var(--yellow); }
.mv-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 44px; }
  .bolt-svg { width: 150px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-md);
    padding: 14px 0;
  }
  .nav.open ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .nav.open a {
    display: block;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav.open .drop {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 14px;
  }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; }
  .bolt-svg { width: 130px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat:nth-child(2)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .service-detail { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .service-detail.reverse { direction: ltr; }
  .industry-detail-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .position { grid-template-columns: 1fr; gap: 14px; }
  .about-mission { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .section { padding: 60px 0; }
  .hero h1 { font-size: 34px; }
  .section-head h2, .about-text h2, .cta-text h2 { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .floating-contact .float-btn { width: 60px; }
  .floating-contact .float-btn span { display: none; }
  .bolt-svg { width: 110px; }
}
