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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Segoe UI",sans-serif;
  background:#f7f8fa;
  color:#222;
  line-height:1.7;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  background:rgba(5,15,30,.92);
  backdrop-filter:blur(12px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  z-index:1000;
}

.logo{
  color:white;
  font-size:1.5rem;
  font-weight:700;
}

.navbar nav a{
  color:white;
  text-decoration:none;
  margin-left:30px;
  transition:.3s;
}

.navbar nav a:hover{
  color:#d4af37;
}

/* HERO */

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:
  linear-gradient(
      rgba(5,15,30,.78),
      rgba(5,15,30,.78)
  ),
  url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1600");
  background-size:cover;
  background-position:center;
  color:white;
  padding:0 8%;
}

.hero-content{
  max-width:900px;
}

.hero-tag{
  color:#d4af37;
  letter-spacing:3px;
  margin-bottom:20px;
  font-weight:700;
}

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

.hero h2{
  color:#d4af37;
  margin-bottom:30px;
}

.hero-description{
  font-size:1.25rem;
  color:#ddd;
  margin-bottom:50px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* BUTTON */

.button{
  display:inline-block;
  background:#d4af37;
  color:white;
  text-decoration:none;
  padding:16px 34px;
  border-radius:8px;
  font-weight:bold;
  transition:.3s;
}

.button:hover{
  transform:translateY(-5px);
}

.secondary{
  background:transparent;
  border:2px solid #d4af37;
}

/* SECTIONS */

section{
  padding:100px 8%;
}

section h2{
  font-size:2.3rem;
  margin-bottom:35px;
  color:#071728;
}

/* STATS */

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

.stat{
  background:white;
  padding:50px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stat h3{
  color:#d4af37;
  font-size:3rem;
}

/* CARDS */

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

.cards div{
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  transition:.3s;
}

.cards div:hover{
  transform:translateY(-10px);
}

/* FOOTER */

footer{
  background:#071728;
  color:white;
  text-align:center;
  padding:40px;
}

/* ANIMATION */

.hidden{
  opacity:0;
  transform:translateY(60px);
  transition:all 1s;
}

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

/* MOBILE */

@media(max-width:900px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .navbar nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
  }

  .navbar nav a{
    margin:0;
  }

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

  .hero-description{
    font-size:1rem;
  }
}

.stat-word {
  font-size: 2.6rem !important;
  white-space: nowrap;
}

@media(max-width:900px){
  .stat-word {
    font-size: 2.3rem !important;
  }
}
