.feature-card {
  background: #ffffff;
  border: 1px solid #b5b5b5;
  border-radius: 12px;
  padding: 20px 18px;
  transition: all 0.3s ease;

  &:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
  }

  .feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #0b3a6f;
    margin-bottom: 10px;
  }

  .feature-text {
    font-size: 16px;
    color: #4a4b4c;
    line-height: 1.6;
    margin-bottom: 0;
  }

  img {
    height: 40px;
    object-fit: contain;
  }
}

.banner-hero {
  .banner-content {
    position: relative;

    .thebanner-contnt {
      position: absolute;
      top: 40%;
      left: 43%;
      width: 65%;
      transform: translate(-50%);

      p {

        font-size: clamp(0.5rem, 3vw, 1.6rem);
      }

      h2 {
        font-size: 36px;
        font-weight: 700;
        color: #043357 !important;
      }
    }
  }
}

/* Slider spacing */
.ndc-features-section {
  background: #0b3a5d;

  padding: 40px 0 40px;
  overflow: hidden;

  .profile-title {
    text-align: center;
    color: #fff;
    font-weight: 600;
    margin-bottom: 60px;
  }

  .profile-features-slider {
    .slick-slide {
      padding: 30px 16px;
    }

    .profile-card {
      /* background: #fff; */
      background: #ffffff2e;
      border-radius: 16px;
      padding: 30px 28px;
      height: 300px;
      cursor: pointer;
      box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
      position: relative;
      overflow: hidden;

      &:hover {
        .custom-card-bg {
          transform: scale(10);
          /* background-color: var(--accent-color); */
          background-color: #e2f2fe;
        }

        h5 {
          color: #0b3a5d;
        }

        p {
          color: #555;
        }
      }

      h5 {
        /* color: #0b3a5d; */
        color: #fff;
        font-size: 20px;
        height: 80px;
        font-weight: 600;
        margin-bottom: 14px;
        position: relative;
        z-index: 2;
      }

      p {
        font-size: 14px;
        line-height: 1.7;
        word-break: break-all;
        /* color: #555; */
        color: #fff;
        position: relative;
        z-index: 2;
      }

      .custom-card-bg {
        height: 128px;
        width: 128px;
        background-color: #e2f2fe;
        position: absolute;
        top: -75px;
        right: -75px;
        border-radius: 50%;
        z-index: 0;
        transition: all 0.5s ease;
      }
    }

  }

  /* Bottom indicator */
  .slider-indicator {
    width: 140px;
    height: 4px;
    background: rgba(255, 255, 255, .35);
    border-radius: 8px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
  }

  .indicator-bar {
    height: 100%;
    background: #fff;
    display: block;
    border-radius: 8px;
    transform: translateX(0);
  }
}

@media (max-width:576px) and (min-width:320px) {
  .ndc-features-section {
    & .profile-features-slider {
      .profile-card {
        height: 330px;

        h5 {
          /* color: #0b3a5d; */
          font-size: 20px;
          height: 80px;
          font-weight: 600;
          margin-bottom: 14px;
        }
      }
    }
  }
}