.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-cyan-blue);
  box-shadow: var(--glow-cyan);
  position: relative;
  overflow: visible;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: var(--gradient-cyan-blue);
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }

  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

.service-icon i {
  font-size: 28px;
  color: var(--text-white);
}



/* Hero section with development elements */
.hero-dev-element {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  z-index: 0;
}

.dev-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-cyan-blue);
  box-shadow: var(--glow-cyan);
  opacity: 0.8;
}

.dev-circle-1 {
  width: 100px;
  height: 100px;
  top: 0;
  right: 0;
  animation: float 6s ease-in-out infinite;
}

.dev-circle-2 {
  width: 60px;
  height: 60px;
  top: 120px;
  right: 80px;
  animation: float 4s ease-in-out infinite 1s;
}

.dev-circle-3 {
  width: 40px;
  height: 40px;
  top: 200px;
  right: 30px;
  animation: float 5s ease-in-out infinite 0.5s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.dev-code {
  position: absolute;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  line-height: 1.4;
  z-index: -1;
}

.dev-code-1 {
  top: 30px;
  right: 120px;
  transform: rotate(-10deg);
}

.dev-code-2 {
  top: 150px;
  right: 20px;
  transform: rotate(5deg);
}

/* Social media icons alignment */
.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  justify-content: flex-start;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--gradient-cyan-blue);
  transform: translateY(-3px);
}

/* WhatsApp button styling */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 25px;
  background: #25D366;
  color: var(--text-white);
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  margin-bottom: var(--spacing-lg);
}

.whatsapp-btn i {
  margin-right: var(--spacing-sm);
  font-size: 1.2rem;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}