.about-modern {
  background: #f9fafb;
}

/* Floating shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.shape-1 {
  width: 200px;
  height: 200px;
  background: #ff6b6b;
  top: 10%;
  left: 5%;
}
.shape-2 {
  width: 250px;
  height: 250px;
  background: #4dabf7;
  bottom: 10%;
  right: 5%;
}

/* Image */
.about-img-wrapper {
  position: relative;
}
.main-img {
  border-radius: 20px;
  transition: 0.5s;
}
.main-img:hover {
  transform: scale(1.05);
}

/* Floating card */
.floating-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  animation: float 3s ease-in-out infinite;
}
.floating-card h4 {
  color: #ff4d4d;
  margin: 0;
}

/* Feature box */
.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s;
}
.feature-box i {
  color: #ff4d4d;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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