/* Custom Fonts */
body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #00d4ff 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient Button */
.gradient-btn {
  background: linear-gradient(135deg, #00d4ff 0%, #a855f7 50%, #ec4899 100%);
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gradient-btn::before {
  content: "→";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #00d4ff 100%);*/
  transition: left 0.5s ease;
}

.gradient-btn:hover::before {
  left: 0;
}

.gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Navbar Scroll Effect */
#navbar {
  background: transparent;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

/* Animated Background Orbs */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.gradient-orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #00d4ff, #a855f7);
  top: -250px;
  left: -250px;
  animation-delay: 0s;
}

.gradient-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  bottom: -200px;
  right: -200px;
  animation-delay: 5s;
}

.gradient-orb-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #00d4ff, #ec4899);
  top: 50%;
  right: -175px;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

/* Grid Pattern */
.grid-pattern {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Hero Content Animation */
.hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(0, 212, 255, 0.5);
  border-radius: 20px;
  position: relative;
  animation: bounce 2s infinite;
}

.scroll-indicator-dot {
  width: 6px;
  height: 6px;
  background: #00d4ff;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

/* Stats Counter */
.stat-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #a855f7);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Process Cards */
.process-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00d4ff, #a855f7, #ec4899);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.process-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

/* Portfolio Cards */
.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .gradient-orb {
    filter: blur(60px);
  }

  .gradient-orb-1 {
    width: 300px;
    height: 300px;
  }

  .gradient-orb-2 {
    width: 250px;
    height: 250px;
  }

  .gradient-orb-3 {
    width: 200px;
    height: 200px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: white;
}
