*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Poppins", sans-serif;
}

body{
  background:#0f1218;
  color:white;
  overflow-x:hidden;
  background-image: url("img/GambarGaruda-removebg-preview.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 500px; 

}

header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 18px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15,18,24,0.9);
  z-index: 1000;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
}

nav a{
  margin-left:22px;
  color:#fff;
  text-decoration:none;
  font-size:20px;
  position:relative;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#ff3b3b;
  transition:.3s;
}

nav a.active::after{
  width:100%;
}

.hero{
  height:400px;
  background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url("img/panitia-sembilan-bpupki_169.jpeg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
  margin-top:70px;
}

.hero h1{
  font-size:52px;
  color:#e8d7b6;
  margin-bottom:15px;
  animation: slideDown 1s ease;
}

.hero p{
  max-width:700px;
  color:#e8d7b6;
  font-weight:600;
  font-size: 22px;
}

.icon-wrapper{
  display:flex;
  justify-content:center;
  margin-top:-60px;
  position:relative;
  opacity: 0;
  z-index:2;
}

.icon-circle{
  width:200px;
  height:200px;
  background:#e01919;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:6px solid #f4b000;
}

.icon-circle img{
  width:100%;

}
.section{
  padding:80px 10%;
}

.section h2{
  text-align:center;
  font-size:30px;
  margin-bottom:40px;
  color:#e8d7b6;
}

.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap:50px;
  align-items:center;
  margin-bottom:80px;
}

.card{
  background: rgba(255,255,255,0.05);
  padding:30px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.4s;
}

.card:hover{
  transform:translateY(-8px);
}

.card h3{
  margin-bottom:15px;
  color:#e63946;
  font-size: 25px;
}

.card p{
  line-height:1.6;
  font-size: 20px;
}

.image-box img{
  width:100%;
  border-radius:16px;
  transition:0.4s;
}

.image-box img:hover{
  transform:scale(1.05);
}

.quote-box{
  text-align:center;
  margin:80px 0;
  font-style:italic;
  font-size:25px;
  color:#e8d7b6;
}

.quote-box span{
  display:block;
  margin-top:15px;
  font-style:normal;
  font-weight:600;
  color:#e63946;
}

footer{
  text-align:center;
  padding:30px;
  background:#0b0d12;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:14px;
  color:#aaa;
}

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

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

@keyframes slideDown{
  from{
    opacity:0;
    transform:translateY(-80px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.btn-wrapper{
  display: flex;
  justify-content: center;
  gap: 20px;   
  margin: 80px 0;
  flex-wrap: wrap;
  margin-top: -50px; 
}

.btn-infografis{
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  background: #e63946;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(230,57,70,0.4);
}


.btn-infografis:hover{
  background: #ff4d5a;
  transform: translateY(-3px);
}



@media(max-width:768px){
  header{
    padding:15px 20px;
  }
  nav{
    display:none;
  }
  .hero h1{
    font-size:32px;
  }
}
