/* Data Analytics & Business Intelligence Banner Section */
main{
    margin-top: 80px;;
}
.data-analytics-banner {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 2rem 0 0 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  padding-top: 0;
  background: #0a1e3c;
}

.banner-figure {
  position: relative;
  margin: 0;
}

.banner-image {
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 60%;
  min-height: 40%;
  background: rgba(10, 30, 60, 0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 0 0 2rem;
  border-radius: 8px;
  box-sizing: border-box;
}

.banner-overlay h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.banner-overlay p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0;
}

@media (max-width: 900px) {
  .banner-overlay {
    width: 80%;
    left: 10%;
    top: 10%;
    padding: 1rem 1rem 0 1rem;
  }
}

@media (max-width: 600px) {
  .data-analytics-banner,
  .banner-image {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    border-radius: 0;
  }
  .banner-overlay {
    position: static;
    width: 100%;
    min-height: unset;
    border-radius: 0 0 8px 8px;
    padding: 1rem;
    align-items: center;
    text-align: center;
    background: rgba(10, 30, 60, 0.85);
  }
  .banner-overlay h1 {
    font-size: 1.3rem;
  }
  .banner-overlay p {
    font-size: 1rem;
  }
}

.analytics-services-intro {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0 2.5rem 0;
  background: #f7faff;
}

.analytics-services-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.analytics-services-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #142047;
  letter-spacing: 0.5px;
}

.analytics-services-description  {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.analytics-services-highlight  {
  font-size: 1.15rem;
  text-decoration-color: #ff6600;
  margin-bottom: 1rem;
  font-weight: 600;
}

@media (max-width: 600px) {
  .analytics-services-content {
    padding: 0 4vw; 
  }
  .analytics-services-intro h2 {
    font-size: 1.2rem;
  }
  .analytics-services-highlight,
  .analytics-services-intro p {
    font-size: 1rem;
  }
}

.key-services-section {
  background: #fff;
  padding: 2.5rem 0;
}

.key-services-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.key-services-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #142047;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

.key-service-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.key-service-row-reverse {
  flex-direction: row-reverse;
}

.key-service-image {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.key-service-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(20,32,71,0.08);
  object-fit: cover;
}

.key-service-content {
  flex: 2 1 400px;
  min-width: 260px;
}

.key-service-content h3 {
  font-size: 1.25rem;
  color: #ff6600;
  font-weight: 700;
  margin-bottom: 1rem;
}

.key-service-content ul {
  padding-left: 1.2em;
  margin: 0;
}

.key-service-content li {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.7em;
  line-height: 1.6;
}

.key-service-content strong {
  color: #142047;
}

@media (max-width: 900px) {
  .key-service-row,
  .key-service-row-reverse {
    flex-direction: column !important;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .key-service-image,
  .key-service-content {
    max-width: 100%;
    min-width: 0;
  }
  .key-service-image img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .key-services-title {
    font-size: 1.2rem;
  }
  .key-service-content h3 {
    font-size: 1rem;
  }
  .key-service-content li {
    font-size: 0.98rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}