/* HERO BACKGROUND */
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;

  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.hero-bg-wrapper {
  font-family: "Outfit", sans-serif;
  background: url("../assets/images/government-services-hero.png") no-repeat top center;
  background-size: 100% 100%;
  background-position: center;
  padding-bottom: 150px;
}

.hero-title {
  font-size: 4rem;
  /* Adjust based on exact need, 64px approx */
  font-weight: 300;
  /* Lighter weight for Government */
  color: #1a1a1a;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.hero-title span {
  font-weight: 800;
  /* Bolder for Services */
  color: #4a4af4;
  /* Approximate distinct blue/purple from image */
}

.hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
  /* Muted text color */
  max-width: 500px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-bg-wrapper {
    padding: 100px 0;
    text-align: center;
    background-size: cover;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    margin: 0 auto 3rem auto;
  }
}

.industries-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.industries-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

.industries-title span {
  color: #4f46e5;
}

/* List container */
.industries-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Each row */
.industry-item {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #3a3a3a;
  padding: 1rem 1rem 1.5rem 1rem;

  background-image: url("../assets/images/industry-section-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* 👈 critical */
  background-position: center;
}

/* Responsive */
@media (max-width: 768px) {
  .industries-title {
    font-size: 28px;
  }

  .industry-item {
    font-size: 14px;
  }
}

/* SECTION */
.domain-section {
  background-image: url("../assets/images/domain-bg.png");
  /* your bg */
  background-size: 100% 100%;
  background-position: center;
  padding: 120px 0;
}

/* TITLE */
.domain-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 60px;
}

.domain-title span {
  background: linear-gradient(270deg, #2f47ac 2.39%, #792ef1 100%);
  background: linear-gradient(270deg, #2f47ac 2.39%, #792ef1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* GRID */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.domain-card {
  position: relative;
  border-radius: 14px;
  padding: 36px 24px 24px;
  min-height: 120px;
  display: flex;
  align-items: center;
}

/* Gradient border */
.domain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* border thickness */

  background: linear-gradient(270deg,
      rgba(47, 71, 172, 0.38) 2.39%,
      rgba(121, 46, 241, 0.38) 100%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* TEXT */
.domain-card p {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}

/* ICON PILL */
.domain-icon {
  position: absolute;
  top: -16px;
  right: 0px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(240.16deg, #2f47ac 17.84%, #792ef1 104.7%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-icon i {
  color: #fff;
  font-size: 18px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .domain-section {
    background: none !important;
    padding: 0px;
  }

  .domain-title {
    font-size: 24px;
    padding: 0 16px;
  }

  .domain-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .domain-card {
    padding: 32px 20px 20px;
  }
}

/* SECTION */
.delivery-strength-section {
  padding: 120px 0;
  background: #ffffff;
}

/* TITLE */
.delivery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #111827;
}

.delivery-title span {
  color: #4f46e5;
  font-weight: 700;
}

/* GRID */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

/* CARD */
.delivery-card {
  grid-column: span 2;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

@media (min-width: 993px) {
  .delivery-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .delivery-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* IMAGE */
.delivery-card img {
  width: 100%;
  height: 290px;
  display: block;
  object-fit: cover;
}

/* LABEL */
.delivery-label {
  background: linear-gradient(135deg, #6d28d9, #4f46e5);
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  min-height: 65px;
  margin-top: -12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */
.delivery-cta {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #7c3aed, #3730a3);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.delivery-cta p {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}

.delivery-cta p span {
  color: #fde047;
  font-weight: 700;
}

/* CTA BUTTON */
.cta-btn {
  background: #020617;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn i {
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-card {
    grid-column: auto !important;
  }

  .delivery-label {
    margin-top: -1px;
    /* keep seam fix clean */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    grid-column: auto !important;
  }
}