.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid rgba(var(--primary-color-rgb), 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-image {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--primary-color-rgb), 0.3));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.hero-image::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, rgba(var(--primary-color-rgb), 0.5), transparent);
  z-index: -1;
  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-image:hover .profile-image {
  transform: scale(1.05);
}
.about-image {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--primary-color-rgb), 0.3));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.about-image::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, rgba(var(--primary-color-rgb), 0.5), transparent);
  z-index: -1;
  animation: rotate 12s linear infinite reverse;
}
.dark-theme .profile-image {
  border-color: rgba(var(--primary-color-rgb), 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.dark-theme .hero-image,
.dark-theme .about-image {
  background: linear-gradient(145deg, rgba(var(--primary-color-rgb), 0.2), rgba(var(--primary-color-rgb), 0.4));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .hero-image {
    width: 250px;
    height: 250px;
    margin-top: 20px;
  }
  .about-image {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .hero-image {
    width: 200px;
    height: 200px;
  }
  .about-image {
    width: 180px;
    height: 180px;
  }
}
