* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 1000;
  transition: 0.3s ease;
}


.logo {
  height: 70px;
  width: auto;
}

.nav-container {
  background: transparent;
  border-radius: 50px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease;
}

.menu a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  background: white;
  color: #027dca;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline {
  background: transparent;
  border: 2px solid #027dca;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
}

/* NAVBAR SAAT SCROLL */
/* NAVBAR SAAT SCROLL */
.navbar.scrolled .nav-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .menu a {
  color: #027dca;
}

.navbar.scrolled .btn-primary {
  background: #027dca;
  color: white;
}

/* HAMBURGER */
.hamburger{
  display: none;
  width: 30px;
  cursor: pointer;
}

.hamburger span{
  display: block;
  height: 3px;
  background: white;
  margin: 6px 0;
  transition: 0.3s;
}

.navbar.scrolled .hamburger span{
  background: #027dca;
}

.search-icon{
  cursor: pointer;
  display: flex;
  align-items: center;
}

.navbar.scrolled .search-icon svg circle,
.navbar.scrolled .search-icon svg line{
  stroke: #027dca;
}

/* TABLET */
@media (max-width: 1024px){

  .navbar{
    padding: 20px 30px;
  }

  .menu a{
    font-size: 16px;
    margin: 0 10px;
  }

}

/* MOBILE */
@media (max-width: 768px){

  .nav-container{
    position: relative;
  }

  .menu{
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;

    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    gap: 20px;

    display: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-radius: 20px;
  }

  .menu a{
    color: #027dca;
    font-size: 18px;
  }

  .nav-right{
    display: none;
  }

  .hamburger{
    display: block;
  }

  .menu.active{
    display: flex;
  }

}


  /* HERO */
  .hero {
    height: 100vh;
    background: url('/assets/bg.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 80px;
    color: white;
  }

.overlay {
  position: absolute;
  inset: 0;   /* ini lebih aman daripada width/height 100% */
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 800px;
    z-index: 2;

}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* TABLET */
@media (max-width:1024px){
  .hero{
    height: 80vh; /* sebelumnya 100vh */
    padding: 0 50px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    gap: 20px;
    display: none;
    border-radius: 0 0 20px 20px;
  }

  .menu a {
    color: #027dca;
    font-size: 18px;
  }

  .menu.active {
    display: flex;
  }

  .nav-right {
    display: none; /* hide button di mobile */
  }

  .hamburger {
    display: block;
  }
}
/* SMALL MOBILE */
@media (max-width: 480px){

  .hero{
    height: 70vh;
    padding: 120px 20px 0 20px;
  }

  .hero h1{
    font-size: 28px;
  }

  .hero p{
    font-size: 16px;
  }

}


/* ============================= */
/* HELP SECTION */
/* ============================= */


.help-wrapper {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 100;
}

/* WIDGET POSITION */
.help-widget{
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 999;
}

/* BUTTON BULAT */
.help-toggle{
  width: 65px;
  height: 65px;
  background: #027dca;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.help-toggle:hover{
  transform: scale(1.1);
}

/* CARD */
.help-card{
  position: absolute;
  bottom: 80px;
  right: 0;

  background: #027dca;
  padding: 20px;
  border-radius: 20px;

  display: flex;
  flex-direction: column; /* penting */
  align-items: center;    /* center horizontal */
  text-align: center;     /* teks rata tengah */

  gap: 15px;

  width: 320px;
  color: white;

  box-shadow: 0 20px 40px rgba(0,0,0,0.25);

  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;

  transition: all 0.3s ease;
}
/* FOTO */
.help-card img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
}
/* TEXT */
.help-title{
  font-size: 14px;
  margin-bottom: 5px;
}

.help-phone{
  font-size: 8px;
  font-weight: 400;
}

/* SHOW */
.help-card.active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.help-whatsapp{
  display:inline-block;
  margin-top:10px;
  padding:10px 18px;
  background:#25D366;
  color:white;
  text-decoration:none;
  border-radius:25px;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
}

.help-whatsapp:hover{
  transform:scale(1.05);
}

/* ============================= */
/* SERVICES SECTION */
/* ============================= */


.services {
  padding: 100px 80px;
  background: #f5f5f5;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #027dca;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Background Text */
.section-title::before {
  content: "JASA";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #8dc63f;
  opacity: 0.3;
  z-index: -1;
  white-space: nowrap;
}

.cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch; /* Tetap pertahankan ini untuk menyamakan tinggi kartu di baris yang sama */
}

/* CARD */
.card {
  background: white;
  width: 480px; /* Lebar tetap yang diinginkan */
  min-height: 360px; /* Nilai min-height baru yang lebih rendah (Desktop) */
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: 0.3s ease;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

/* Card Media (Gambar) */
.card-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Content (Teks) */
.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Ingat: Jika konten paragraf sangat panjang, Anda mungkin perlu mengatur max-height dan overflow-y di sini */
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #027dca;
  font-size: 24px;
  font-weight: 700;
}

/* Optional: Deskripsi singkat */
.card-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}


/* HOVER */
.card:hover {
  transform: translateY(-8px);
}

.read-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #8dc63f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transform: translateY(100%);
  transition: 0.3s ease;
  pointer-events: none;
  opacity: 0;
}

.card:hover .read-more {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}

/* ============================= */
/* MEDIA QUERIES */
/* ============================= */

@media (max-width:1024px){
  .services{
    padding: 80px 40px;
  }

  .section-title::before{
    font-size: 70px;
    top: -45px;
  }
}

@media (max-width:768px){
  .services{
    padding: 60px 20px;
  }

  .section-title{
    font-size: 30px;
  }

  .section-title::before{
    font-size: 55px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .cards{
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .card{
    width: 380px; /* Lebar eksplisit untuk mobile */
    min-height: 300px; /* Nilai min-height baru yang lebih rendah (Mobile) */
    max-width: 100%;
  }

  .card-media{
    height: 180px;
  }

  .card-content h3{
    font-size: 24px;
  }

  .read-more{
    font-size: 14px;
  }
}

@media (max-width:480px){
  .section-title{
    font-size: 26px;
  }

  .section-title::before{
    font-size: 45px;
    top: -35px;
  }

  .card-content h3{
    font-size: 22px;
  }
  .card{
    width: 100%;
    max-width: none;
    min-height: auto; /* Tetap auto di layar sangat kecil agar responsif sepenuhnya */
  }
}

/* ============================= */
/* SECTION BIRU - KATEGORI PRODUK */
/* ============================= */

.blue-section {
  position: relative;
  background: #027dca; /* warna biru utama */
  padding: 150px 60px;
  overflow: hidden;
  color: white;
}

/* Overlay gambar transparan */
.blue-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/kategori.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
  opacity: 0.15;
}
/* Supaya konten di atas overlay */
.blue-section .section-content {
  position: relative;
  z-index: 2;
}

/* ============================= */
/* LAYOUT KIRI KANAN */
/* ============================= */

.manufacture-scope {
  display: flex;
  gap: 40px;
  align-items: center;
}

.scope-left {
  width: 30%;
  border-right: 2px solid rgba(255,255,255,0.4);
  padding-right: 20px;
}
.scope-left h3 {
  font-size: 40px;
  margin: 0;
  color: #ffffff;
  position: relative;
  font-weight: bold;
}

.scope-left h3::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  color: #c5d9a8;
  font-weight: bold;
  filter: blur(0.5px);
}

/* ============================= */
/* CARD DI KANAN */
/* ============================= */

.scope-right {
  width: 70%;
  display: flex;
  gap: 20px;
}

/* card sekarang berupa <a> */
.scope-card {
  flex: 1;
  display: block;              /* penting agar <a> jadi kotak */
  background: white;
  color: black;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;       /* hilangkan underline link */
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.scope-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* teks di bawah gambar */
.scope-card p {
  padding: 12px;
  margin: 0;
  transition: 0.3s;
  text-align: center;
}

/* hover cukup dari card, bukan dari p */
.scope-card:hover p {
  background: #8dc63f;
  color: white;
}

/* ============================= */
/* GAMBAR CARD */
/* ============================= */

.scope-card img {
  width: 100%;
  aspect-ratio: 1 / 1; /* bisa ubah: 16/9, 1/1, dll */
  object-fit: cover;
  display: block;
}
/* ============================= */
/* TEKS CARD */
/* ============================= */

.scope-card p {
  padding: 15px;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

/* ============================= */
/* RESPONSIVE MOBILE */
/* ============================= */

@media (max-width: 900px) {
  .manufacture-scope {
    flex-direction: column;
    align-items: flex-start;
  }

  .scope-left {
    width: 100%;
    border-right: none;
    margin-bottom: 20px;
  }

  .scope-right {
    width: 100%;
    flex-direction: column;
  }
}



/* ============================= */
/* ABOUT */
/* ============================= */.about {
  padding: 120px 190px;
  background: #f3f3f3;
}



.about-container {
  display: flex;
  align-items: center; /* sejajarkan vertikal */
  gap: 100px;
}
/* IMAGE WRAPPER */
.about-image {
  position: relative;
  width: 380px; /* sesuaikan */
    flex-shrink: 0;   /* ⬅️ ini kuncinya */

}

/* SHAPE WARNA BELAKANG */
.about-image::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  width: 100%;
  height: 70%;
  background: #e5e5e5; /* warna shape */
  border-top-right-radius: 94px;
  border-bottom-left-radius: 94px;
  z-index: 0;
}

/* GAMBAR */
.about-image img {
  width: 100%;
  height: 500px; /* ⬅️ bikin tinggi */
  object-fit: cover;
  border-top-right-radius: 120px;
  border-bottom-left-radius: 120px;
  position: relative;
  z-index: 1;
}

/* BADGE */
.badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #1274b8;
  color: white;
  padding: 25px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  z-index: 2;
}

.badge::before {
  content: "";
  position: absolute;
  inset: 6px; /* jarak stroke dari tepi */
  border: 2px solid white;
  border-radius: 14px;
  pointer-events: none;
}

/* TEXT */
.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0;
}

.label {
  color: #027dca;
  font-weight: 600;
}

.about-cards {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.about-card {
  border: 2px solid #8dc63f;
  border-radius: 18px;
  padding: 25px 30px;
  min-width: 260px;
}

.about-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #027dca;
}

.about-card span {
  font-size: 14px;
  color: #555;
}

.about-points {
  display: flex;
  gap: 60px;
  margin-top: 30px;
  margin-bottom: 30px;

  counter-reset: point; /* reset counter */
}

.points-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.point-item {
  position: relative;
  padding-left: 40px;
  font-size: 15px;
  font-weight: 700;
  color: #027dca;

  counter-increment: point; /* tambah angka */
}

.point-item::before {
  content: counter(point);
  position: absolute;
  left: 0;
  top: 0;

  width: 26px;
  height: 26px;
  border-radius: 50%;

  background: #8dc63f;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;
}

/* BUTTON WRAPPER */
.about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.outline-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 14px 30px;
  border: 2px solid #027dca;
  border-radius: 50px;

  text-decoration: none;
  color: #027dca;
  font-weight: 600;
  font-size: 16px;

  transition: all 0.3s ease;
}

/* Arrow */
.outline-btn .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.outline-btn:hover {
  background: #027dca;
  color: white;
}

.outline-btn:hover .arrow {
  transform: translate(4px, -4px);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {

  .about {
    padding: 80px 30px;
  }

  .about-container {
    flex-direction: column;   /* ⬅️ ubah jadi vertikal */
    gap: 60px;
  }

  .about-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-image img {
    height: 400px;
  }

  .badge {
    bottom: -20px;
    right: -20px;
    font-size: 22px;
    padding: 18px;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-points {
    flex-direction: column; /* ⬅️ list jadi turun */
    gap: 25px;
    align-items: center;
  }

  .points-column {
    align-items: flex-start;
  }

  .about-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .about-card {
    width: 100%;
    max-width: 320px;
  }

}



/* ============================= */
/* NEWS SECTION */
/* ============================= */
  
.clients {
  padding: 2.5rem 2rem;
  background: var(--bg-primary, #fff);
}

.clients-container {
  max-width: 1200px;
  margin: auto;
}

.clients-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.clients-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 4px;
}

.clients-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.clients-count {
  font-size: 13px;
  color: #aaa;
}

.clients-divider {
  height: 1px;
  background: #eee;
  margin-bottom: 1.5rem;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}


.clients-logo-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: border-color 0.2s;
}

.clients-logo-card:hover {
  border-color: #ccc;
}

.clients-logo-card img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.clients-logo-card:hover img {
  opacity: 1;
}

.clients-logo-name {
  font-size: 12px;
  color: #888;
  text-align: center;
}

@media (max-width: 768px) {
  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

  .clients-logo-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  @media (max-width: 480px) {
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================= */
/* NEWS SECTION */
/* ============================= */


.newsroom {
  padding: 80px 0;
  background: #f8f9fb;
}

.news-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.news-header {
  margin-bottom: 50px;
}

.news-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #8dc63f;
  font-weight: 600;
}

.news-header h2 {
  margin: 10px 0 20px;
  font-size: 42px;
  font-weight: 700;
  color: #027dca;
}

.news-buttons {
  display: flex;
  gap: 15px;
}

.btn-news {
  padding: 10px 24px;
  border: 2px solid #027dca;
  background: transparent;
  color: #027dca;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-news.active,
.btn-news:hover {
  background: #027dca;
  color: white;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 20px;
}

.news-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.news-item:hover img {
  transform: scale(1.05);
}

/* BESAR KIRI */
.news-item.large {
  grid-row: span 2;
}

/* Overlay Title */
.news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
}

.small-overlay {
  padding: 15px;
}

.small-overlay h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.small-overlay .news-date {
  font-size: 12px;
  opacity: 0.85;
  display: block;
}

.news-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

@media (max-width:1024px){

.news-container{
  padding: 0 30px;
}

.news-header h2{
  font-size: 34px;
}

.news-grid{
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.news-item.large{
  grid-column: span 2;
  grid-row: span 1;
  height: 300px;
}

.news-item.small{
  height: 180px;
}

}

@media (max-width:768px){

.newsroom{
  padding: 60px 0;
}

.news-container{
  padding: 0 20px;
}

.news-header{
  text-align: center;
}

.news-header h2{
  font-size: 28px;
}

.news-buttons{
  justify-content: center;
}

.news-grid{
  grid-template-columns: 1fr;
  gap: 15px;
}

.news-item.large{
  height: 220px;
}

.news-item.small{
  height: 180px;
}

.news-overlay h3{
  font-size: 18px;
}

.small-overlay h4{
  font-size: 14px;
}

}

@media (max-width:480px){

.news-header h2{
  font-size: 24px;
}

.btn-news{
  padding: 8px 18px;
  font-size: 14px;
}

.news-item.large{
  height: 200px;
}

.news-item.small{
  height: 160px;
}

}



/* ============================= */
/* SERTIFIKAT SECTION */
/* ============================= */

.certification-section {
  padding: 100px 0;
  background: #f5f7fa;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Judul */
.sertifikat {
  font-size: 32px;
  margin-bottom: 60px;
  color: #027dca;
  font-weight: 600;
}

/* Grid */
.certification-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Card */
.cert-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Logo */
.cert-card img {
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

/* Nama Sertifikat */
.cert-card h4 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* MODAL */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 40px;
  overflow: auto;
}

.image-box {
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

.nav-btn:hover {
  background: rgba(255,255,255,0.4);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Animasi */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* Responsive */
@media (max-width: 992px) {
  .certification-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================= */
/* FOOTER */
/* ============================= */
.footer {
  background: #027dca;
  color: white;
  padding-top: 80px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr 1.5fr; /* 5 kolom */
  gap: 40px;
  padding: 0 2rem 60px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  opacity: 0.8;
}

/* Tablet */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }

  .footer-col:first-child {
    grid-column: span 3;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col:first-child {
    grid-column: span 2;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .footer {
    padding-top: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 1.25rem 50px;
  }

  .footer-col:first-child {
    grid-column: span 1;
  }

  .footer-logo {
    height: 60px;
  }

  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .footer-bottom {
    padding: 16px 1.25rem;
    font-size: 12px;
  }

}