/* ========================
   PAGE INTRO
======================== */
.digital-intro {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("new-images/Digital Integration top image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 40px 100px;
  color: #ffffff;
  margin-top: 80px;
}

.digital-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 84, 168, 0.85) 0%, rgba(39, 125, 225, 0.85) 50%, rgba(77, 184, 217, 0.75) 100%);
  z-index: 1;
}

.digital-intro .intro-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.digital-intro h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.digital-intro p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* ========================
   OVERVIEW SECTION
======================== */
.digital-overview {
  background: linear-gradient(135deg, #f0f9fc 0%, #ffffff 100%);
  padding: 100px 40px 60px;
}

.digital-overview .section-title {
  text-align: center;
  background: linear-gradient(135deg, #277de1, #5fd7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.digital-overview .overview-text {
  font-size: 18px;
  line-height: 1.9;
  color: #3a5a7e;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.digital-overview .overview-text::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #277de1 0%, #5fd7eb 100%);
  margin: 40px auto 0;
}

/* ========================
   CAPABILITY SECTIONS
======================== */
.capability-section {
  background: linear-gradient(135deg, #f0f9fc 0%, #ffffff 100%);
  padding: 60px 40px 100px;
}

.capability-section.alt-bg {
  background: linear-gradient(135deg, #eaf4ff 0%, #f3fbff 100%);
}

.capability-header {
  text-align: center;
  margin-bottom: 60px;
}

.capability-header .section-title {
  background: linear-gradient(135deg, #277de1, #5fd7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.capability-subtitle {
  font-size: 18px;
  color: #3a5a7e;
  max-width: 700px;
  margin: 16px auto 0;
  line-height: 1.8;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* ========================
   CAPABILITIES LIST (ALIGNED)
======================== */
.capabilities-list {
  max-width: 800px;
  margin: 40px auto;
}

.capabilities-list h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0 20px;
  color: #1a2332;
}

.capabilities-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capabilities-list ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: #3a5a7e;
  margin-bottom: 14px;
}

.capabilities-list ul li::before {
  content: "•";
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.45em;
  background: linear-gradient(135deg, #277de1 0%, #5fd7eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================
   CAPABILITY CARDS
======================== */
.capability-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9fc 100%);
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(39, 125, 225, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #c0dce8;
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(39, 125, 225, 0.2);
  border-color: #5fd7eb;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.capability-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #1a2332;
}

.capability-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5a7e;
}

/* ========================
   EXPERTISE SECTION
======================== */
.expertise-section {
  background: linear-gradient(135deg, #f0f9fc 0%, #ffffff 100%);
  padding: 100px 40px;
}

.expertise-section .section-title {
  text-align: center;
  background: linear-gradient(135deg, #277de1, #5fd7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expertise-text {
  font-size: 17px;
  line-height: 1.9;
  color: #3a5a7e;
  text-align: center;
  margin: 30px auto 50px;
}

.expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.expertise-tag {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9fc 100%);
  border: 2px solid #277de1;
  color: #277de1;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.expertise-tag:hover {
  background: linear-gradient(135deg, #277de1 0%, #5fd7eb 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ========================
   CTA SECTION
======================== */
.digital-cta {
  background: linear-gradient(135deg, #1854a8 0%, #277de1 100%);
  padding: 100px 40px;
  text-align: center;
  color: #ffffff;
}

.digital-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.digital-cta p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 768px) {
  .digital-intro {
    padding: 140px 20px 80px;
    min-height: 60vh;
    background-attachment: scroll;
    background-position: center top;
    background-size: cover;
  }

  .digital-intro h1 {
    font-size: 36px;
  }

  .digital-intro p {
    font-size: 16px;
  }

  .digital-overview,
  .capability-section,
  .expertise-section,
  .digital-cta {
    padding: 80px 20px;
  }

  .capability-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .capability-subtitle {
    font-size: 16px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .capability-card {
    padding: 30px 25px;
  }

  .capability-card h3 {
    font-size: 18px;
  }

  .capability-card p {
    font-size: 14px;
  }

  .digital-cta h2 {
    font-size: 28px;
  }

  .digital-cta p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .digital-intro {
    padding: 120px 15px 60px;
    min-height: 50vh;
    background-attachment: scroll;
    background-position: center top;
    background-size: cover;
  }

  .digital-intro h1 {
    font-size: 28px;
  }

  .digital-intro p {
    font-size: 15px;
  }

  .digital-overview,
  .capability-section,
  .expertise-section,
  .digital-cta {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .capability-subtitle {
    font-size: 15px;
  }

  .capability-card {
    padding: 25px 20px;
  }

  .card-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .capability-card h3 {
    font-size: 17px;
  }

  .capability-card p {
    font-size: 13px;
  }

  .digital-cta h2 {
    font-size: 24px;
  }

  .digital-cta p {
    font-size: 15px;
  }
}

.intro-description {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 850px;
  margin: 0 auto;
}
