.emp-intro {
  padding: 70px 0;
  background: #fff;
}

.emp-intro .container {
  max-width: 900px;
  margin: auto;
}

.emp-intro p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  text-align: center;
}
.emp-split {
  padding: 90px 0;
  background: #fff;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
}

.split-image {
  display: flex;
  justify-content: end;
}

/* IMAGE */
.split-image img {
  width: 90%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* CONTENT */
.split-content h2 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

/* REVERSE LAYOUT */
.emp-split.reverse .split-image {
  order: 2;
}

.emp-split.reverse .split-content {
  order: 1;
}

.split-image,
.split-content {
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.emp-solutions {
  padding: 60px 0;
  background: #f9fafc;
  text-align: center;
}

/* TITLE */
.emp-solutions-title {
  display: flex;
  justify-content: center;
}
.emp-solutions h1 {
  margin-bottom: 60px;
  position: relative;
}
.emp-solutions h1::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin-top: 10px;
}

/* GRID */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.solution-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* ICON */
.solution-card img {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
}

/* TITLE */
.solution-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary);
}

/* TEXT */
.solution-card p {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
}

/* HOVER */
.solution-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* 🔥 CENTER HIGHLIGHT CARD */
.solution-card.highlight {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
  border: none;
}

.solution-card.highlight p,
.solution-card.highlight h3 {
  color: var(--white);
}

/* OPTIONAL: MAKE CENTER CARD SLIGHTLY BIGGER */
.solution-card.highlight:hover {
  transform: scale(1.08);
}

/* MAP */
.locations-map img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* CONTENT */
.locations-content {
  padding-left: 20px;
  border-left: 3px solid #1e73be;
}

.locations-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #1e73be;
  font-weight: 600;
}

.locations-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ================= GOV ================= */
.gov {
  text-align: center;
  padding: 20px 0;
}

.gov-title {
  margin-bottom: 40px;
}

.gov-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.gov-item h3 {
  margin-bottom: 15px;
}

.gov-item img {
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

/* ================= CAPABILITY ================= */
.capability {
  background: var(--light-gray);
  padding: 30px 0;
}

.capability-box {
  max-width: 800px;
  margin: 0 auto;
}

.capability-title {
  margin-bottom: 20px;
}

.capability-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.capability-item {
  text-decoration: none;
  color: #a00000;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.capability-item:hover {
  color: #000;
}

/* ================= CTA MODERN ================= */

.cta-modern {
  padding: 60px 0;
  background: #fff;
}

/* TITLE */
.cta-main-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

/* IMAGE WRAP */
.cta-image-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* IMAGE */
.cta-image {
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* LEFT WHITE CARD */
.cta-card {
  position: absolute;
  left: 40px;
  top: 60px;

  background: #fff;
  padding: 30px;
  max-width: 500px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.cta-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}



@media (max-width: 1024px) {
  .gov-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .emp-split {
    padding: 60px 0;
  }

  .split-content h2 {
    font-size: 26px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .emp-solutions {
    padding: 60px 0;
  }
  .certs-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .emp-locations {
    padding: 60px 0;
  }

  .locations-content h2 {
    font-size: 26px;
  }
  .capability-item {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .cta-main-title {
    font-size: 28px;
  }

  .cta-card {
    position: static;
    margin: -40px 20px 0;
  }

  .cta-image {
    height: 300px;
  }
}
