/* .gradient-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.gradient-card:hover {
  transform: translateY(-6px);
}

.card-top {
  background: linear-gradient(135deg, #ecc2a0, #c3eeff);
  height: 100px;
  position: relative;
}

.icon-container {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.icon-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.gradient-card .card-body {
  padding: 50px 20px 20px 20px;
  text-align: center;
}

.gradient-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
}

.gradient-card p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}

 */




.gradient-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}

.gradient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom, #c3eeff4e, #f3f5f65b);

}

.icon-container {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.icon-container img {
  width: 100%;
  max-width: 80px;
  height: auto;
  border-radius: 10px;
}

.card-body h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 800;
  text-align: center;
}

.card-body p {
  text-align: center;
  color: var(--gray);
}







.icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.service-box p{
  color: var(--gray);
}


@media (max-width: 767px) {
  .solution-card {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
    .hero-image img {
        position: relative;
        right: 60px;
        height: 700px;
    }
}

