CSS* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: #f8fafc;
  color: #333;
}

.container { 
  max-width: 3000px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s;
  background: linear-gradient(135deg, #479815, #eaab0e, #e2da2d);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.logo {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(10deg, #479815, #eaab0e, #e2da2d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}
.nav-menu a:hover { color: #667eea; }
.navbar.scrolled .nav-menu a { color: #333; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 30px; height: 3px;
  background: white;
  transition: 0.3s;
}
.navbar.scrolled .hamburger span { background: #333; }

/* Hero */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}
#particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}
.hero-content {
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero h1 span {
  display: block;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.4rem; margin-bottom: 40px; opacity: 0.9; }
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: white;
  color: #333;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Section */
.section { padding: 100px 0; }
.bg-light { background: #f1f5f9; }
.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  position: relative;
}
.section-title::after {
  content: '';
  width: 100px;
  height: 4px;
  background: #667eea;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  max-width: 80rem;
  margin: 0 auto ;
}
.stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.stat h3 {
  font-size: 3rem;
  color: #667eea;
}
.stat span { display: block; font-size: 0.9rem; color: #666; }

.fade {
  animation-name: fade;
  animation-duration: 2.0s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.about-slider-wrapper {
  position: relative;
  max-width: 80rem;
  margin: 0 auto ;
}

.about-slider {
  display: flex;
  aspect-ratio: 16 / 9;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
  border-radius: 0.5rem;
  overflow: auto;
}

.about-slide{
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
}

.about-slider-nav {
  margin-top: -30px;
  display: flex;
  column-gap: 1rem;
  bottom: 4.25rem;
  left: 50%;
  transform: translateX(50%);
  z-index: 1;
}

.about-slider-nav a {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.75;
  transition: opacity ease 250ms;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.4s;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.service-card i {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: white;
  padding: 80px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer h3 { color: #667eea; margin-bottom: 20px; }
.footer p { opacity: 0.8; line-height: 1.8; }
.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 80px; right: -100%;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    width: 100%;
    text-align: center;
    transition: 0.4s;
    padding: 40px 0;
  }
  .nav-menu.active { right: 0; }
  .nav-menu a { color: #333; font-size: 1.2rem; padding: 15px; }
  .hero h1 { font-size: 3rem; }
  .about-grid, .footer-grid { grid-template-columns: 1fr; }
}

.icon-style {
    height: 80px;
    width: 80px;
}

.slider-wrapper {
  position: relative;
  max-width: 80rem;
  margin: 0 auto ;
}

.slider {
  display: flex;
  aspect-ratio: 16 / 9;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
  border-radius: 0.5rem;
  overflow: hidden;
}

.slider img{
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
}

.slider-nav {
  display: flex;
  column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.slider-nav a {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.75;
  transition: opacity ease 250ms;
}

.slider-nav a:hover {
  opacity: 1;
}

.slider-nav a:hover {
  opacity: 1;
}

/* karir */
.karir { max-width:800px; margin:30px auto; background:white; padding:20px; border-radius:8px; box-shadow:0 2px 8px rgba(0,0,0,0.1); }
h2 { margin-top:0; }
ul { line-height:1.7; }
.apply-box { margin-top:20px; background:#f0f4ff; padding:15px; border-left:4px solid #0a3d62; }

.header-posisi h1 {
  color: #479815;
}

.karir-menu {
  display: flex; 
  list-style: none;
  margin-left: 10px;
  text-decoration: none;
}