body {
  font-family: "Poppins", sans-serif;
}

/* Animated Background */
.bg-animated {
  background: linear-gradient(-45deg, #0a0a0a, #1a0033, #000000, #2a004d);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Neon Glow */
.glow-neon {
  box-shadow:
    0 0 25px rgba(34, 211, 238, 0.6),
    0 0 40px rgba(168, 85, 247, 0.4);
}

.glow-neon:hover {
  box-shadow:
    0 0 35px rgba(34, 211, 238, 0.9),
    0 0 50px rgba(168, 85, 247, 0.6);
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(165, 243, 252, 0.15);
  backdrop-filter: blur(16px);
}

/* Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(165, 243, 252, 0.1);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: #67e8f9;
  box-shadow: 0 20px 40px rgba(103, 232, 249, 0.15);
}

.service-card .icon {
  font-size: 42px;
  margin-bottom: 1.5rem;
  transition: transform 0.4s;
}

.service-card:hover .icon {
  transform: scale(1.2) rotate(8deg);
}

/* Portfolio Cards */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover img {
  transform: scale(1.12);
}

.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  transform: translateY(60%);
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-content {
  transform: translateY(0);
}

/* Input Fields */
.input-field {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(165, 243, 252, 0.2);
  border-radius: 14px;
  color: white;
  transition: all 0.3s;
}

.input-field:focus {
  outline: none;
  border-color: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
  animation-delay: 2s;
}

/* Navbar Scroll */
.nav-scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
}
