*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#fff;
  color:#111;
  padding-top:80px;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 60px;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(10px);
  transition:0.3s;
  z-index:1000;
}

.navbar.scrolled{
  background:rgba(255,255,255,0.95);
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  width:40px;
}

.nav-links{
  display:flex;
}

.nav-links a{
  text-decoration:none;
  margin-left:30px;
  color:#111;
  font-weight:500;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:#000;
  left:0;
  bottom:-6px;
  transition:0.3s;
}

.nav-links a:hover::after{
  width:100%;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px 20px;
  background:linear-gradient(to bottom,#ffffff,#f8fafc);
}

.hero h1{
  font-size:48px;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
}

/* BUTTON */
.buttons{
  display:flex;
  gap:20px;
  margin-top:30px;
}

.btn{
  padding:14px 28px;
  border-radius:999px;
  border:2px solid #111;
  background:transparent;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.btn.primary{
  background:#111;
  color:#fff;
}

.btn:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.btn.secondary:hover{
  background:#111;
  color:#fff;
}

/* SECTION */
section{
  padding:120px 60px;
  text-align:center;
}

.section-title{
  font-size:36px;
}

.section-text{
  max-width:700px;
  margin:20px auto;
}

/* VISI MISI */
.vm-row{
  display:flex;
  align-items:center;
  gap:60px;
  margin-top:80px;
}

.vm-row.reverse{
  flex-direction:row-reverse;
}

.vm-media{
  width:200px;
  height:200px;
  padding:10px;
  border-radius:50%;
  background:#f3f4f6;
}

.vm-media video{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:0.8s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* FOOTER */
footer{
  padding:30px;
  text-align:center;
  background:#f5f5f5;
}

/* 🔥 SLIDER AMAN */
.slider-inline{
  margin-top:40px;
  display:flex;
  gap:10px;
  overflow-x:auto;
  max-width:90%;
}

.slider-inline div{
  min-width:200px;
  background:#f5f5f5;
  padding:10px;
  border-radius:8px;
}

/* RESPONSIVE */
@media(max-width:768px){

  .vm-row{
    flex-direction:column;
    text-align:center;
  }

  .vm-row.reverse{
    flex-direction:column;
  }

  section{
    padding:80px 20px;
  }

  .hero h1{
    font-size:28px;
  }

  .vm-text{
    margin-top:20px;
  }
}
