/* hero section image fade style */
.fade {
  transition: opacity 1s ease-in-out;
}

/* why chose us animation */
.fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.show {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) scale(1) !important;
}


/* treatment */
.fadetreatment {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 2.5s ease, transform 2.5s ease;
}
.fadetreatment.active {
  opacity: 1;
  transform: scale(1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-scaleIn {
  animation: scaleIn 0.3s ease-out;
}


/* custom google fonts */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* ===== SOFTWARE WATERFALL EFFECT ===== */
.code-rain {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 90%, rgba(6,171,212,0.15)),
    repeating-linear-gradient(
      90deg,
      rgba(6,171,212,0.12) 0px,
      rgba(6,171,212,0.12) 1px,
      transparent 1px,
      transparent 80px
    );
  animation: rainMove 6s linear infinite;
  opacity: 0.6;
}

@keyframes rainMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 600px;
  }
}

/* ===== FLOATING GLOW PARTICLES ===== */
.glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,171,212,0.35), transparent 70%);
  filter: blur(60px);
  animation: floatGlow 8s ease-in-out infinite;
}

.glow.one { top: -100px; left: -100px; }
.glow.two { bottom: -120px; right: -120px; animation-delay: 3s; }

@keyframes floatGlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}

/* ===== HERO PREMIUM ANIMATION ===== */

.hero-animate {
  opacity: 0;
  transform: translateY(60px);
}

.hero-waterfall {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 85%, rgba(6,171,212,0.15)),
    repeating-linear-gradient(
      90deg,
      rgba(6,171,212,0.18) 0px,
      rgba(6,171,212,0.18) 1px,
      transparent 1px,
      transparent 90px
    );
  animation: waterfall 6s linear infinite;
  opacity: 0.6;
}

@keyframes waterfall {
  from { background-position: 0 0; }
  to { background-position: 0 800px; }
}
/* HERO BACKGROUND WATERFALL */
.hero-bg {
  background:
    radial-gradient(circle at 20% 30%, #06abd420, transparent 40%),
    radial-gradient(circle at 80% 70%, #06abd430, transparent 45%);
  animation: bgMove 18s linear infinite;
}

@keyframes bgMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}

/* LEFT CONTENT ANIMATION */
.hero-left > * {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-left > *:nth-child(1) { animation-delay: 0.2s; }
.hero-left > *:nth-child(2) { animation-delay: 0.4s; }
.hero-left > *:nth-child(3) { animation-delay: 0.6s; }
.hero-left > *:nth-child(4) { animation-delay: 0.8s; }
.hero-left > *:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BADGE */
.badge {
  display: inline-block;
  color: #06abd4;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

/* TITLE */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 16px;
}

.hero-title span {
  color: #06abd4;
}

/* DESCRIPTION */
.hero-desc {
  color: #cbd5e1;
  margin-top: 20px;
  max-width: 520px;
}

/* TYPING */
.typing-text {
  color: #06abd4;
  letter-spacing: 4px;
  margin-top: 14px;
  min-height: 24px;
}

/* BUTTONS */
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #06abd4;
  color: #0d0d2b;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid #06abd450;
  padding: 14px 28px;
  border-radius: 999px;
}

/* RIGHT IMAGE */
.hero-right {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-right img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.image-glow {
  position: absolute;
  inset: 0;
  background: #06abd4;
  filter: blur(80px);
  opacity: 0.25;
  z-index: 1;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.ui-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid #3b3b6b;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.ui-btn span {
  border: 1px solid #3b3b6b;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0.7;
}

.ui-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.ui-btn.blue {
  border-color: #4f7cff;
}

.ui-btn.blue span {
  border-color: #4f7cff;
}
.gold-btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 999px;
  color: #ffd700;
  border: 2px solid #ffd700;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  background: transparent;
  transition: all 0.4s ease;
  position: relative;
}

/* REAL VISIBLE CHANGE */
.gold-btn:hover {
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #0d0d2b;
  box-shadow: 
    0 0 15px #ffd700,
    0 0 40px rgba(255, 215, 0, 0.6);
  transform: scale(1.08);
}
.neon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  border: 1.5px solid;
  text-decoration: none;
}

/* GOLD BUTTON */
.neon-gold {
  color: #ffd700;
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255,215,0,0.2);
}

.neon-gold:hover {
  background: #ffd700;
  color: #0d0d2b;
  box-shadow: 0 0 25px #ffd700;
}

/* BLUE BUTTON */
.neon-blue {
  color: #4cc9f0;
  border-color: #4cc9f0;
  box-shadow: 0 0 10px rgba(76,201,240,0.2);
}

.neon-blue:hover {
  background: #4cc9f0;
  color: #0d0d2b;
  box-shadow: 0 0 25px #4cc9f0;
}
/* ===== TECH STACK SLIDER ===== */

.tech-slider {
  animation: tech-slide 35s linear infinite;
}

.tech-card {
  min-width: 220px;
  height: 210px;
  background: rgba(20, 20, 58, 0.9);
  border: 1px solid rgba(6,171,212,.5);
  border-radius: 28px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-weight: 600;
  letter-spacing: .14em;
  transition: all .5s ease;
  animation: float 4s ease-in-out infinite;
}

.tech-card i {
  font-size: 60px;
  color: #06abd4;
}

.tech-card:hover {
  transform: translateY(-16px) scale(1.07);
  box-shadow: 0 0 40px #06abd4;
  border-color: #06abd4;
}

/* Animations */
@keyframes tech-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Glow blob */
@keyframes blob {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-60px) scale(1.1); }
  66% { transform: translate(-30px,30px) scale(.9); }
}

.animate-blob {
  animation: blob 8s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

/* Mobile */
@media (max-width: 768px) {
  .tech-card {
    min-width: 180px;
    height: 180px;
  }
}
/* TEAM SECTION FORCE COLORS */
.team-cyan {
  color: #06abd4 !important;
}

.team-white {
  color: #ffffff !important;
}
