html {
  scroll-behavior: smooth;
}

/* ===== BODY ===== */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #0b0f1a;
  color: #fff;

  padding-top: 90px; /* 🔥 FIX NAVBAR OVERLAP */
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 30px;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

/* LOGO */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  width: 45px;
  border-radius: 50%;
}

/* NAV LINKS */
nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #00c6ff;
}

/* TEAM BUTTON */
.team-btn {
  border: 1px solid #00c6ff;
  padding: 6px 14px;
  border-radius: 20px;
}

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

.hero h1 {
  font-size: 48px;
  line-height: 1.3;
  text-shadow: 0 0 20px rgba(0,198,255,0.3);
}

.hero p {
  margin-top: 15px;
  color: #ccc;
}

/* ===== SECTIONS ===== */
.services,
.projects,
.contact,
.metrics,
.cta {
  text-align: center;
  padding: 60px 20px;
}

/* ===== SERVICES GRID ===== */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #1f2937;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  width: 250px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0,198,255,0.3);
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 20px;
}

.portfolio-card {
  background: #1f2937;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0,198,255,0.3);
}

/* ===== METRICS ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 20px;
}

.metrics h2 {
  font-size: 32px;
  color: #00c6ff;
}

/* ===== CTA ===== */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #00c6ff;
  color: #000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0,255,100,0.4);
  font-weight: bold;
}

/* ===== BACKGROUND ANIMATION ===== */
#bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .hero h1{
    font-size:32px;
  }

  nav{
    font-size:12px;
  }
}