.breadcrumb-section {
  background: linear-gradient(rgba(30,41,59,0.8), rgba(30,41,59,0.8)),
              url('/image/breadcrumbimg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

/* TITLE */
.page-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #ddd;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

/* MOBILE */
@media (max-width: 576px) {
  .page-title {
    font-size: 28px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}









.eca-mv-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(44, 72, 116, 0.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.16), transparent 32%),
    #f8f9fa;
}

.eca-section-heading {
  max-width: 760px;
  margin-inline: auto;
}

.eca-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(44, 72, 116, 0.1);
  color: #2c4874;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.eca-section-heading h2 {
  color: #10263d;
}

.eca-section-heading p {
  font-size: 16px;
}

.eca-mv-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(16, 38, 61, 0.15);
  background: #fff;
}

.eca-mv-image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.eca-mv-image-wrap:hover .eca-mv-image {
  transform: scale(1.04);
}

.eca-mv-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 38, 61, 0.9);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.eca-mv-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: 0 14px 30px rgba(16, 38, 61, 0.08);
}

.eca-mv-card h4 {
  color: #10263d;
}

.eca-mv-card p {
  margin-bottom: 0;
  color: #5b6472;
  line-height: 1.75;
}

.eca-mv-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.eca-mv-icon.mission {
  background: #14293E;
}

.eca-mv-icon.vision {
  background: #14293E;
}

@media (max-width: 991px) {
  .eca-mv-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .eca-section-heading h2 {
    font-size: 28px;
    text-align: start;
  }

  .eca-section-heading p {
    font-size: 14px;
   
  }

  .eca-mv-card {
    flex-direction: column;
    gap: 14px;
  }

  .eca-mv-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .eca-mv-badge {
    left: 14px;
    bottom: 14px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

.eca-services {
  background:
    radial-gradient(circle at top center, rgba(20, 41, 62, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.eca-services-shell {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: 0 22px 55px rgba(16, 38, 61, 0.08);
  backdrop-filter: blur(10px);
}

.eca-services .eca-section-kicker {
  background: rgba(20, 41, 62, 0.08);
  color: #14293e;
}

.eca-services h2 {
  color: #10263d;
  font-size: clamp(30px, 3vw, 44px);
}

.eca-services-lead {
  color: #5b6472;
  max-width: 640px;
  line-height: 1.8;
}

.eca-services-stats {
  display: grid;
  gap: 14px;
}

.eca-stat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 41, 62, 0.06), rgba(44, 72, 116, 0.03));
  border: 1px solid rgba(20, 41, 62, 0.08);
}

.eca-stat span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #14293e;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.eca-stat p {
  margin: 0;
  color: #3f4a5a;
  line-height: 1.6;
}

.eca-service-card {
  position: relative;
  height: 100%;
  padding: 26px 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: 0 14px 32px rgba(16, 38, 61, 0.06);
  text-align: left;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.eca-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 41, 62, 0.06), transparent 55%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.eca-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(16, 38, 61, 0.12);
  border-color: rgba(20, 41, 62, 0.18);
}

.eca-service-card:hover::before {
  opacity: 1;
}

.eca-service-card > * {
  position: relative;
  z-index: 1;
}

.eca-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, #14293e 0%, #2c4874 100%);
  box-shadow: 0 14px 24px rgba(20, 41, 62, 0.2);
}

.eca-service-card h5 {
  color: #10263d;
  font-weight: 700;
  margin-bottom: 10px;
}

.eca-service-card p {
  margin-bottom: 0;
  color: #5b6472;
  line-height: 1.75;
}

.eca-service-card-accent {
  background: linear-gradient(135deg, #14293e 0%, #2c4874 100%);
  border-color: transparent;
}

.eca-service-card-accent .eca-icon {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.eca-service-card-accent h5,
.eca-service-card-accent p {
  color: #fff;
}

@media (max-width: 991px) {
  .eca-services-shell {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 576px) {
  .eca-services-shell {
    padding: 18px;
  }

  .eca-services-stats {
    gap: 12px;
  }

  .eca-stat {
    padding: 14px;
  }

  .eca-stat span {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .eca-service-card {
    padding: 22px 18px 20px;
  }

  .eca-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    font-size: 22px;
  }
}
