body {
  margin: 0;
  background: transparent;
  color: #f5f7fb;
  font-family: Arial, sans-serif;
}

.service-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 96px 20px 72px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(15, 118, 110, 0.58)),
    url("../img/Home/services/services3.png") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.service-hero::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 999px;
}

.service-hero::after {
  content: "";
  position: absolute;
  top: 72px;
  left: 7%;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: rgba(227, 32, 40, 0.92);
  transform: rotate(10deg);
}

.service-hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.service-hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 4rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.service-hero p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #e5e7eb;
  font-size: 1.14rem;
  line-height: 1.7;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.service-details,
.related-services,
.cta-section,
.service-package-cta {
  padding: 72px 0;
}

.service-details {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.92) 0%, rgba(10, 10, 10, 0.98) 100%);
}

.service-details .container {
  max-width: 980px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.76);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.service-details h2,
.related-services h2,
.cta-section h2,
.service-package-cta h2 {
  margin: 0 0 18px;
  color: #f8fafc;
  font-size: 2.45rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.service-details h3 {
  margin: 34px 0 12px;
  color: #ffffff;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.service-details p,
.related-services p,
.cta-section p,
.service-package-cta p {
  color: #d7dde6;
  font-size: 1rem;
  line-height: 1.75;
}

.service-details ul {
  display: grid;
  gap: 12px;
  padding-left: 0;
  color: #e5edf7;
  line-height: 1.65;
  list-style: none;
}

.service-details li {
  position: relative;
  min-height: 36px;
  padding: 10px 12px 10px 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.service-details li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #facc15;
  box-shadow: 0 0 0 5px rgba(250, 204, 21, 0.12);
}

.service-action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.service-package-cta {
  background:
    linear-gradient(135deg, rgba(227, 32, 40, 0.12), rgba(250, 204, 21, 0.06)),
    #101010;
  text-align: center;
}

.service-package-cta .container {
  max-width: 880px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.82);
}

.service-package-cta p {
  margin: 0 0 12px;
  color: #facc15;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-package-cta h2 {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.related-services {
  background:
    linear-gradient(135deg, rgba(227, 32, 40, 0.12), rgba(15, 118, 110, 0.10)),
    rgba(10, 10, 10, 0.94);
  text-align: center;
}

.related-services .container {
  max-width: 820px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.68);
}

.cta-section {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(15, 118, 110, 0.72)),
    url("../img/services/tech.jpg") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section p {
  color: #dbeafe;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.btn-secondary {
  background: #111827;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #0f766e;
}

@media (max-width: 700px) {
  .service-hero {
    min-height: 360px;
    padding: 84px 16px 54px;
  }

  .service-hero::before {
    right: -60px;
    bottom: -70px;
    width: 180px;
    height: 180px;
  }

  .service-hero::after {
    top: 78px;
    left: 18px;
    width: 54px;
    height: 54px;
  }

  .service-hero h1 {
    font-size: 2.55rem;
  }

  .service-hero p {
    font-size: 1rem;
  }

  .container {
    width: min(100% - 32px, 1120px);
  }

  .service-details .container,
  .related-services .container,
  .service-package-cta .container {
    width: min(100% - 28px, 1120px);
    padding: 22px;
  }

  .service-details h2,
  .related-services h2,
  .cta-section h2,
  .service-package-cta h2 {
    font-size: 2rem;
  }

  .service-details,
  .related-services,
  .cta-section,
  .service-package-cta {
    padding: 52px 0;
  }

  .service-package-cta h2 {
    font-size: 1.85rem;
  }
}
