.featured-service {
  padding: 6rem 0;
  position: relative;
}

.featured-box {
  background: linear-gradient(135deg, #ffffff 0%, #fafcfe 100%);
  padding: 3.5rem 3rem;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.featured-box:hover {
  transform: translateY(-12px);
  box-shadow:
    0 20px 50px rgba(1, 110, 239, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(1, 110, 239, 0.3);
}

.featured-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.75rem;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  color: #ffffff;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(1, 110, 239, 0.3);
}

.featured-box:hover .featured-icon {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 15px 40px rgba(1, 110, 239, 0.4);
}

.featured-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.featured-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.featured-servicing {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.featured-servicing strong {
  color: #0f172a;
  font-weight: 700;
}

/* Hero Supporting Paragraph */
.hero-supporting-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  max-width: 750px;
  font-weight: 500;
}


.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #016EEF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-link:hover {
  color: #0180ff;
  transform: translateX(4px);
}


.core-services {
  padding: 6rem 0;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detailed-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafcfe 100%);
  padding: 3rem;
  border-radius: 24px;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  flex-direction: column;
}

.service-detailed-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 20px 50px rgba(1, 110, 239, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(1, 110, 239, 0.3);
}

.service-detailed-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.service-detailed-card:hover .service-icon-large {
  transform: scale(1.08) rotate(3deg);
}


.icon-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.icon-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.icon-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-detailed-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-detailed-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 2rem;
}

.service-detailed-intro strong {
  color: #016EEF;
  font-weight: 700;
}

.service-features,
.service-benefits {
  margin-bottom: 2rem;
}

.service-features h4,
.service-benefits h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.service-features ul,
.service-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features ul li,
.service-benefits ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.service-features ul li::before,
.service-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #016EEF;
  font-weight: 700;
  font-size: 1.125rem;
}

.service-note {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: italic;
  margin-bottom: 2rem;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 2rem;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  box-shadow: 0 4px 16px rgba(1, 110, 239, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-service::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  transform: translateX(-100%) rotate(25deg);
  transition: transform 0.6s ease;
}

.btn-service:hover::before {
  transform: translateX(100%) rotate(25deg);
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 110, 239, 0.4);
}

.benefits-section {
  min-height: 70vh;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.benefits-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #0a0e27 0%, #141a32 40%, #1d2741 70%, #0a0e27 100%);
  z-index: -1;
}

.benefits-background .animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(1, 110, 239, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 110, 239, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.benefits-section .section-title {
  color: #ffffff;
  margin-bottom: 2rem;
}

.gradient-text-white {
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(1, 110, 239, 0.3);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(1, 110, 239, 0.3);
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 12px 32px rgba(1, 110, 239, 0.4);
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.5;
}

.benefits-cta {
  text-align: center;
  margin-top: 3rem;
}


.industries-section {
  padding: 6rem 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafcfe 100%);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.6);
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 20px 50px rgba(1, 110, 239, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(1, 110, 239, 0.3);
}

.industry-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.08) rotate(5deg);
}

.industry-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.industry-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

.services-cta-light {
  padding: 8rem 0;
  background: linear-gradient(180deg,
      #f8fbff 0%,
      #ffffff 50%,
      #f0f7fe 100%);
  position: relative;
}

.services-cta-light .container {
  position: relative;
  z-index: 1;
}

.services-cta-light .cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Two-line CTA heading with proper spacing */
.services-cta-light .section-title br {
    display: block;
    content: "";
    margin-bottom: 0.25rem;
}

.services-cta-light .section-title {
    line-height: 1.2;
}


.services-cta-light .gradient-text {
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-cta-light .section-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 2.5rem;
}

.services-cta-light .cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta-light .btn-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.services-cta-light .btn-secondary svg {
  color: #016EEF;
}

.services-cta-light .btn-secondary:hover {
  background: #f9fafb;
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  transform: translateY(-2px);
}

.service-detailed-card,
.benefit-card,
.industry-card,
.featured-box {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {

  .hero-section,
  .benefits-section,
  .services-cta-light {
    background: white !important;
  }

  .btn,
  .header,
  .footer-section {
    display: none;
  }
}



/* ============================================
   SERVICES HERO - CENTERED LAYOUT (NO ILLUSTRATION)
   ============================================ */

/* Override grid layout to center content */
#services-hero .hero-content {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

/* Center and constrain text width */
#services-hero .hero-text {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center the badge */
#services-hero .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

/* Center buttons */
#services-hero .hero-buttons {
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #services-hero .hero-text {
    max-width: 100%;
  }

  #services-hero .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  #services-hero .hero-buttons .btn {
    width: 100%;
  }
}


.benefits-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 850px;
    margin: 0;
    font-weight: 500;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.industries-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    text-align: center;
    max-width: 900px;
    font-weight: 500;
}

