.features {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: -61px 20px;
  flex-wrap: wrap;
  margin-top: -66px;
}
.feature-box {
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
}
.container .read {
  width: 1400px;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.icon-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  animation: float 4s ease-in-out infinite;
}

.icon-circle img {
  width: 60px;
  z-index: 2;
}

.icon-circle::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 3px dashed #ff7a18;
  animation: spin 10s linear infinite;
}

.feature-box h3 {
  margin-top: 20px;
  font-size: 22px;
  color: #333;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Rotating dashed border */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .features {
    gap: 40px;
  }

  .icon-circle {
    width: 110px;
    height: 110px;
  }

  .icon-circle img {
    width: 45px;
  }
}
