/* Elevate Business Section - Reference Based Design */

.elevate-section {
  padding: 50px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.elevate-header {
  text-align: center;
  margin-bottom: 70px;
}

.elevate-header h2 {
  font-size: 3.2rem; /* Match original custom.css heading size */
  font-weight: 700;
  color: #1d2026;
  margin-bottom: 20px;
}

.elevate-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Item Layout */
.elevate-feature-item {
  margin-bottom: 50px;
  transition: transform 0.3s ease;
}

.elevate-feature-item:hover {
  transform: translateY(-5px);
}

.elevate-feature-item .icon-wrap {
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.elevate-feature-item h5 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1d2026;
  margin-bottom: 12px;
  text-align: center;
}

.elevate-feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  text-align: center;
}

/* Specific alignments for 3-column desktop */
@media (min-width: 992px) {
  .feature-left {
    text-align: right;
  }

  .feature-right {
    text-align: left;
  }
}

/* Center Image Styles */
.elevate-img-center {
  position: relative;
  /* padding: 30px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.elevate-img-center::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -40%);
  width: 90%;
  height: 90%;s
  /* background-color: rgba(23, 92, 255, 0.1);  */
  z-index: 0;
  border-radius: 4px;
}

.elevate-img-center img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  /* filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1)); */
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .elevate-header h2 {
    font-size: 2.1rem;
  }

  .elevate-feature-item {
    text-align: center;
    margin-bottom: 40px;
  }

  .elevate-img-center {
    margin-bottom: 40px;
  }

  .elevate-img-center::before {
    transform: translate(-50%, -50%);
  }
}
