/* ===== RESET (fix borders & spacing) ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: Poppins, sans-serif;
  background: #0b1d2a;
  color: #fff;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px; /* fixed side gap issue */
}

.logo {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  color: #00c2ff;
}

.navbar ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.navbar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: #00c2ff;
}

.cta {
  background: #00c2ff;
  padding: 8px 16px;
  border-radius: 20px;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
/*  padding-top: 80px;*/

}

/* VIDEO */
.bg-video {
  position: absolute;
  top: -2px; /* 👈 tiny shift fix */
  left: 0;
  width: 100%;
  height: calc(100% + 4px); /* 👈 prevents gaps */
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.65) blur(1px);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.75)
  );
}

/* HERO CONTENT */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.overlay h2,
.overlay p {
  text-shadow: 0 4px 25px rgba(0,0,0,0.9);
}

.btn {
  background: #00c2ff;
  padding: 12px 24px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
.animate {
  opacity: 0;
  transform: translateY(40px);
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

.delay { transition-delay: 0.3s; }
.delay2 { transition-delay: 0.6s; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 20px;
  text-align: center;
}

.dark {
  background: #06131d;
}

.stats {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background: #06131d;
}

/* ===== GRID ===== */
.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  padding: 20px;
  border-radius: 15px;
}

.glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

/* ===== FORM ===== */
.form input,
.form textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin: 5px;
}

button {
  background: #00c2ff;
  border: none;
  padding: 10px;
  color: white;
  cursor: pointer;
}

/* ===== WHATSAPP ===== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #06131d;
}
