/* General */
body {
  font-family: 'Google Sans';
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  width: 85%;
  margin: auto;
}

/* HERO SECTION */
/* DEFAULT HERO */
.service-hero {
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 69px;
}

/* OVERLAY */
.service-hero .overlay {
  background: rgba(0, 0, 0, 0.65);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔷 SERVICE BACKGROUNDS */

/* 1. Staffing */
.staffing-bg {
  background-image: url('staffing.png');
}

/* 2. Background Verification */
.verification-bg {
  background-image: url('verification.png');
}

/* 3. Augmentation */
.augmentation-bg {
  background-image: url('augmentation.png');
}

/* 4. Deployment */
.deployment-bg {
  background-image: url('deployment.png');
}

/* 5. Training */
.training-bg {
  background-image: url('training.png');
}

/* 6. Payroll */
.payroll-bg {
  background-image: url('payroll.png');
}

.service-title {
  color: #fff;
  font-size: 100px;
  text-align: center;
  font-weight: 700;
}

/* ABOUT SECTION */
.service-about {
  padding: 60px 0;
  background: linear-gradient(135deg, #000435, #001f7a);
  text-align: center;
  color: white;
}

.service-about h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

.about1-text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin: auto;
  padding: 25px
}

/* WHY SECTION */
.service-why {
  padding: 80px 20px;
  background: #f5f7fa;
  text-align: center;
}

.service-why h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
}

.service-why h2 span {
  color: #2b4c7e;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.why-card {
  background: #dfe5ec;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.why-card img {
  width: 50px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  color: #1f3c6e;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA SECTION */
.service-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #000435, #001f7a);
  color: #fff;
  text-align: center;
}

.service-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.service-cta p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: white;
  color: #000435;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #000966;
  color: white;
}

.cta-btn1 {
  display: inline-block;
  padding: 12px 30px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-btn1:hover {
  background: #00ff5e;
  color: black;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-title {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}