.section-title .title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
  text-transform: capitalize;
}

.feature-wrap {
  background: linear-gradient(145deg, #0b1e6f 0%, #102d91 50%, #1b47d6 100%);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  will-change: transform, box-shadow;
}

.feature-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.1),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-wrap:hover::before {
  opacity: 1;
}

.feature-wrap:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #1a49e0 0%, #1131a7 50%, #071b64 100%);
  box-shadow: 0 18px 40px rgba(40, 105, 255, 0.4);
}

.xb-item--feature-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #437dfc, #1536b2 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 0 25px rgba(52, 122, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  flex-shrink: 0;
  z-index: 1;
}

.feature-wrap:hover .xb-item--feature-icon {
  transform: scale(1.08);
  background: radial-gradient(circle at 70% 70%, #1b47d6, #3a6ff7 90%);
  box-shadow: 0 0 35px rgba(100, 155, 255, 0.9);
}

.xb-item--holder {
  color: #ffffff;
  z-index: 1;
  position: relative;
}

.xb-item--title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.xb-item--content {
  font-size: 1rem;
  line-height: 1.6;
  color: #c8d3ff;
}

/* === Responsive Fixes === */
@media (max-width: 768px) {
  .col-lg-4,
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .feature-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
    padding: 40px 24px;
    margin: 0 12px 25px 12px; 
    border-radius: 16px;
  }

  .xb-item--holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .xb-item--title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 18px 0 12px 0; 
    text-align: center;
  }

  .xb-item--content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c8d3ff;
    max-width: 92%;
    margin: 0 auto 25px auto;
    text-align: center;
  }

  .xb-item--feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-top: 10px; /* ✅ pulled closer to content */
    margin-bottom: 15px;
  }

  .section-title .title {
    font-size: 2rem;
    text-align: center;
  }

  .container {
    padding-left: 15px !important; /* ✅ slight side breathing room */
    padding-right: 15px !important;
  }
}
