/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(-45deg, #0f172a, #1e293b, #3b82f6, #9333ea);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  position: relative;
}

/* underline animation */
.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  text-align: center;
  padding: 140px 20px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #3b82f6, #9333ea, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: fadeIn 1s ease;
}

.hero p {
  opacity: 0.8;
  margin-bottom: 20px;
}

/* BUTTON */
.primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(59,130,246,0.5);
}

/* SERVICES */
.services {
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 12px;
  width: 260px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.03);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* TRUST */
.trust {
  padding: 60px 20px;
  text-align: center;
}
.showcase {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
}
/* CTA */
.cta {
  padding: 80px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: rgba(255,255,255,0.05);
}@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}.showcase {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 60px 20px;
}

.showcase img {
  width: 280px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.showcase img:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}.showcase video {
  width: 250px;        /* controls size */
  max-width: 100%;     /* keeps it responsive */
  border-radius: 12px;
  transition: 0.3s ease;
}
