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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#050816;
  color:white;
  overflow-x:hidden;
}

/* Background */

.bg-animation{
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(0,140,255,.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,90,255,.16), transparent 35%);
  z-index:-3;
}

.glow{
  position:fixed;
  border-radius:50%;
  filter:blur(120px);
  z-index:-2;
}

.glow-1{
  width:400px;
  height:400px;
  background:#0077ff;
  top:-100px;
  left:-100px;
  opacity:.18;
}

.glow-2{
  width:350px;
  height:350px;
  background:#00bbff;
  bottom:-100px;
  right:-100px;
  opacity:.14;
}

/* Navbar */

.navbar{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  padding:18px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(12px);
  background:rgba(5,8,22,.45);
  border-bottom:1px solid rgba(255,255,255,.06);
  z-index:1000;
}

.logo{
  font-family:'Orbitron', sans-serif;
  font-size:1.2rem;
  letter-spacing:2px;
}

nav{
  display:flex;
  gap:24px;
}

nav a{
  text-decoration:none;
  color:white;
  font-size:.95rem;
  opacity:.8;
  transition:.3s;
}

nav a:hover{
  opacity:1;
  color:#4da3ff;
}

/* Hero */

.hero{
  min-height:100vh;
  padding:120px 8% 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.hero-content{
  flex:1;
}

.mini-title{
  color:#4da3ff;
  margin-bottom:14px;
  letter-spacing:2px;
  font-size:.9rem;
}

.hero h1{
  font-size:5rem;
  line-height:.95;
  margin-bottom:20px;
  font-weight:700;
}

.hero h1 span{
  color:#4da3ff;
}

.hero-text{
  max-width:550px;
  font-size:1.05rem;
  line-height:1.6;
  opacity:.82;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:16px;
}

.btn-primary,
.btn-secondary{
  padding:14px 24px;
  border-radius:14px;
  text-decoration:none;
  transition:.35s;
  font-weight:600;
}

.btn-primary{
  background:#0077ff;
  color:white;
  box-shadow:0 0 25px rgba(0,119,255,.4);
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.15);
  color:white;
  background:rgba(255,255,255,.04);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.08);
}

.hero-image{
  flex:1;
}

.hero-image img{
  width:100%;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}

/* Ticker */

.ticker{
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:16px 0;
  white-space:nowrap;
}

.ticker-track{
  display:inline-block;
  animation:ticker 30s linear infinite;
  color:#4da3ff;
  font-weight:600;
  letter-spacing:2px;
}

@keyframes ticker{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}

/* Sections */

.about{
  padding:95px 8% 45px;
}

.gallery-section{
  padding:45px 8% 95px;
}

.stats,
.cta{
  padding:95px 8%;
}

.section-title{
  margin-bottom:45px;
}

.section-title p{
  color:#4da3ff;
  margin-bottom:8px;
  letter-spacing:2px;
}

.section-title h2{
  font-size:3rem;
}

/* Cards */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:24px;
}

.card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:32px;
  border-radius:24px;
  backdrop-filter:blur(10px);
  transition:.35s;
}

.card:hover{
  transform:translateY(-8px);
  border-color:#0077ff;
}

.card h3{
  margin-bottom:14px;
  font-size:1.4rem;
}

.card p{
  opacity:.75;
  line-height:1.65;
}

/* Gallery */

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.gallery-item{
  overflow:hidden;
  border-radius:24px;
  cursor:pointer;
  position:relative;
}

.gallery-item img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:.5s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

/* Stats */

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.stat-box{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:40px;
  border-radius:24px;
  text-align:center;
}

.stat-box h2{
  font-size:3rem;
  color:#4da3ff;
  margin-bottom:8px;
}

/* CTA */

.cta{
  text-align:center;
}

.cta h2{
  font-size:4rem;
  margin-bottom:18px;
}

.cta p{
  opacity:.75;
  margin-bottom:30px;
  line-height:1.6;
}

/* Footer */

footer{
  padding:32px 8%;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  opacity:.7;
}

/* Lightbox */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:2000;
}

.lightbox img{
  max-width:85%;
  max-height:85%;
  border-radius:20px;
}

.close-lightbox{
  position:absolute;
  top:24px;
  right:34px;
  font-size:3rem;
  cursor:pointer;
}

/* WhatsApp */

.whatsapp-float{
  position:fixed;
  bottom:22px;
  right:22px;
  background:#25D366;
  color:white;
  padding:14px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 25px rgba(37,211,102,.4);
  z-index:1500;
}

/* Reveal Animation */

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

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

/* Responsive */

@media(max-width:950px){

  .hero{
    flex-direction:column;
    text-align:center;
    gap:40px;
    padding:110px 8% 55px;
  }

  .hero-text{
    margin:auto auto 30px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero h1{
    font-size:3.5rem;
  }

  .cta h2{
    font-size:2.5rem;
  }

  nav{
    display:none;
  }

}