/* ================= NAVBAR CUSTOM ================= */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 20px;
  background: linear-gradient(90deg, #0f4fb5, #0a2e6d);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-family: 'Inter', sans-serif;
  border-radius: 0;
}

/* Container Flex */
.header-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.brand-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-modern img { height: 45px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-size: 18px; font-weight: 700; color: #fff; }
.brand-sub { font-size: 12px; color: rgba(255,255,255,0.8); }

/* MENU DESKTOP & DROPDOWN */
.menu-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-modern .nav-link,
.navbar-custom .dropdown-item {
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

/* Hover menonjol desktop */
.menu-modern .nav-link.hovered {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 2;
}
.menu-modern .nav-link.dimmed {
  transform: scale(0.9);
  opacity: 0.6;
  pointer-events: none;
}

/* Dropdown menu */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  background: #0f4fb5 !important;
  border-radius: 8px !important;
  padding: 8px 0 !important;
  min-width: 180px;
  transition: all 0.25s ease;
}

.dropdown-item {
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 6px;
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.1) !important;
}

/* Caret icon */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 4px;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  transition: transform 0.25s ease;
}

/* LOGIN BUTTON */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 25px;
  background: #fff;
  color: #0d6efd;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-login:hover {
  background: #e6f0ff;
  transform: translateY(-1px);
}

.btn-login i { font-size: 16px; }

/* TOGGLE MOBILE */
.navbar-toggler {
  display: none;
  font-size: 28px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 992px) {
  .navbar-toggler { display: block; }

  .nav-right {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 0;
    width: 250px;
    background: linear-gradient(90deg, #0f4fb5, #0a2e6d);
    border-radius: 12px;
    gap: 5px;
    transition: max-height 0.35s ease, padding 0.35s ease;
    z-index: 999;
  }

  .nav-right.active { max-height: 1000px; padding: 10px 0; }

  .menu-modern { flex-direction: column; width: 100%; text-align: left; }

  .menu-modern .nav-link {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.25s ease, transform 0.2s ease;
    
  }

  /* efek aktif saat disentuh */
  .menu-modern .nav-link.active-touch {
    background: rgba(255,255,255,0.1);
    transform: translateX(3px);
  }

  /* dropdown mobile */
  .dropdown-menu {
    position: relative !important;
    top: 0;
    left: 0;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0;
  }

  .nav-item.dropdown.active .dropdown-menu { max-height: 500px; }

  /* panah ▼ di mobile */
  .nav-item.dropdown > .nav-link::after {
    content: "\25BC"; 
    transition: transform 0.3s ease;
    font-size: 8px; 
    margin-left: 5px;
  }

  .nav-item.dropdown.active > .nav-link::after {
    transform: rotate(180deg); 
  }

  .dropdown-item { padding-left: 30px; }

  .btn-login { margin: 5px 16px; padding: 8px 16px; font-size: 14px; }
}

/* ================= DESKTOP ================= */
@media (min-width: 993px) {
  .nav-right { flex-direction: row !important; overflow: visible !important; }
  .menu-modern { flex-direction: row !important; }
  .menu-modern .nav-link {
  display: flex;
  align-items: center;
  height: 38px; /* samakan tinggi semua menu */
}
}
/* ================= HERO ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
margin:0;
overflow-x:hidden;
}
.row{
margin-left:0;
margin-right:0;
}
.hero-section {
  min-height: 95vh;
  position: relative;
  overflow: visible;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY + BLUR */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: -1;
}

/* konten di atas */
.hero-text-container,
.hero-img {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {

  /* default (desktop) */
.hero-video {
  position: absolute;
  top: 15px;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2); /* zoom sedikit */
  z-index: -2;
}

}
/* ================= MOBILE HERO ================= */
@media (max-width: 768px) {

  /* HERO VIDEO tetap */
  .hero-video {
    display: block;
    transform: scale(1.2);
    transform-origin: center;
    object-position: center;
  }

  /* HERO TEXT CONTAINER */
  .hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  /* Nama Universitas */
  .hero-institution {
    font-size: 24px; /* lebih kecil dari desktop */
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    margin-left: 0;
  }

  /* Tagline */
  .hero-tagline {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.5px;
  }

  /* Tombol */
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .hero-buttons .btn-ios {
    width: 80%;
    justify-content: center;
    font-size: 14px;
    padding: 10px 0;
  }
}
/* supaya konten tetap di atas blur */
.hero-section .container {
  position:relative;
  z-index:2;
  max-width:1200px;
  padding: 40px 20px; /* kasih ruang dalam */
}

/* Jarak antara judul dan tombol */
.hero-title {
  text-align: left;
  margin-bottom: 20px; /* jarak ke bawah */
}

/* TAGLINE */
.hero-tagline {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8; /* lebih lega */
  color: #ffffff;
  letter-spacing: 1px;
}

/* BUTTON BASE */
.hero-buttons .btn-ios {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* jarak antara teks dan icon */
  font-size: 14px;
  padding: 10px 20px; /* lebih proporsional */
  border-radius: 999px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Tombol utama putih */
.hero-buttons .btn-primary.btn-ios {
  background: linear-gradient(90deg, #075fed, #0f4096);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-buttons .btn-primary.btn-ios:hover {
  background-color: #f2f2f2;
  transform: translateY(-1px);
}

/* Tombol outline putih */
.hero-buttons .btn-outline-light.btn-ios {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
}

.hero-buttons .btn-outline-light.btn-ios:hover {
  background-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* ICON STYLING */
.hero-buttons .btn-ios i {
  font-size: 16px;
  display: inline-block;
}

/* glass box (opsional) */
.hero-box {
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding:30px;
  border-radius:14px;
}
/* STIA AMUNTAI lebih dominan */
.hero-institution {
  font-family: 'Playfair Display', serif; /* ganti font untuk lebih dominan */
  font-size: 50px; /* lebih besar */
  font-weight: 1000; /* ekstra tebal */
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 2px; /* lebih lebar untuk kesan premium */
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  
  display: block; 
  margin-left: auto; /* tetap ke kanan */
}
/* ================= SECTION TITLES ================= */
.section-title {
  font-size:36px;
  font-weight:700;
  margin-bottom:12px;
}

.section-subtitle {
  color:#666;
  font-size:16px;
  margin-bottom:40px;
}

/* SECTION */
.fakultas-section {
  padding: 120px 0 80px;
  background: linear-gradient(90deg, #0f4fb5, #0a2e6d);
  position: relative;
  overflow: hidden;
}

/* LEFT INFO */
.info-left .info-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}
.info-left .info-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.info-item i {
  font-size: 22px;
  color: #ffd700;
}
.info-item:hover {
  transform: translateX(5px);
  opacity: 0.95;
}

/* BUTTON */
.btn-ios-white {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ios-white:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px) scale(1.05);
}

/* ================= RIGHT CONTAINER ================= */
.info-right {
  display: flex;
  justify-content: center;
}

/* ================= FLYER WRAPPER ================= */
.flyer-stack {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: auto;
  cursor: pointer;
  perspective: 1200px; /* untuk efek 3D */
  will-change: transform;
}

/* ================= FLYER CARD BASE ================= */
.flyer-card {
  position: absolute;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  will-change: transform, filter;
}

.flyer-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* ================= CARD DEPAN ================= */
.flyer-front {
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transform: translateY(0) rotate(0deg) scale(1);
}

/* ================= CARD BELAKANG ================= */
.flyer-back {
  top: 20px;
  left: 40px; /* posisi ke kanan */
  z-index: 1;
  transform: rotate(5deg) scale(0.95);
  filter: blur(4px) brightness(0.8);
  opacity: 0.85;
}

/* ================= HOVER EFFECT ================= */
.flyer-stack:hover .flyer-front {
  transform: translateY(-15px) rotate(-2deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.flyer-stack:hover .flyer-back {
  transform: translate(60px, 25px) rotate(8deg) scale(0.92);
  filter: blur(6px) brightness(0.9);
}



/* ================= OPTIONAL: AOS ANIMATION ================= */
[data-aos] {
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* Hero Stats Wrapper */
  .hero-stats-wrapper {
    bottom: -80px; /* tetap floating */
    padding: 0 10px;
    margin-top: 20px; /* naikkan lebih dekat ke section atas */
  }

  .stat-item {
    flex: 1 1 calc(50% - 10px);
    padding: 15px 8px; /* lebih compact */
  }

  .stat-icon {
    font-size: 28px;
  }

  .stat-item h3 {
    font-size: 22px;
  }

  .stat-item p {
    font-size: 11px;
  }
  .fakultas-section {
    padding: 20px 0px 0px; /* lebih compact di mobile */
  }
  /* ================= MOBILE Papan Informasi ================= */
  .info-left {
    text-align: center;
    padding: 0 15px;
    margin-bottom: 20px; /* kurangi jarak bawah */
    margin-top: 15px;    /* tambah jarak atas lebih dekat ke section sebelumnya */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .info-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .info-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }

  .info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
  }

  .btn-ios-white {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 25px;
  }

  /* Flyer Stack */
  .info-right {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }

  .flyer-stack {
    max-width: 220px;
    width: 100%;
  }

  .flyer-back {
    top: 12px;
    left: 25px;
    transform: rotate(4deg) scale(0.95);
  }

  .flyer-stack:hover .flyer-front {
    transform: translateY(-6px) rotate(-1deg) scale(1.01);
  }

  .flyer-stack:hover .flyer-back {
    transform: translate(35px, 15px) rotate(6deg) scale(0.92);
  }
}

/* ================= HERO STATS CARD ================= */

/* WRAPPER posisi tetap */
.hero-stats-wrapper {
  position: absolute;
  bottom: -60px; /* sedikit lebih dekat ke hero */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  padding: 0 15px;
  z-index: 5;
}

/* GRID jadi 4 card */
.stats-card .row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* lebih rapat */
}

/* ================= STAT ITEM CARD ================= */
.stat-item {
  flex: 1 1 calc(25% - 15px); /* 4 kolom di desktop */
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 18px 12px; /* lebih kecil */
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* hover efek card */
.stat-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* ICON LEBIH HIDUP */
.stat-icon {
  font-size: 32px; /* lebih kecil */
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff, #cfe3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  animation: floatIcon 3s ease-in-out infinite;
}

/* hover ikon */
.stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(6deg);
}

/* ANIMASI FLOAT ICON */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ANGKA BOLD */
.stat-item h3 {
  font-size: 26px; /* lebih kecil */
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

/* TEXT ITEM */
.stat-item p {
  font-size: 11px; /* lebih kecil */
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ================= RESPONSIVE MOBILE ================= */
@media (max-width: 768px) {

  /* wrapper mengikuti flow halaman */
  .hero-stats-wrapper {
    position: relative; 
    top: 20px;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    margin: 15px auto 0;
    padding: 0 10px;
  }

  /* satu kolom per baris */
  .stat-item {
    flex: 1 1 100%;
    margin-bottom: 8px;
    padding: 12px 8px;
  }

  .stat-icon {
    font-size: 24px;
  }

  .stat-item h3 {
    font-size: 20px;
  }

  .stat-item p {
    font-size: 10px;
  }
}
/* ================= BERITA ================= */

.berita-section{
padding:80px 0;
}

.news-card{
background:white;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.news-content{
padding:20px;
}
/* tombol download iOS-style */
.btn-ios-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 25px;
  background: rgba(255,255,255,0.15); /* translucent putih */
  color: #fff; /* putih untuk kontras */
  text-decoration: none; /* hilangkan underline */
  backdrop-filter: blur(10px); /* efek glass */
  transition: all 0.25s ease;
}

.btn-ios-download i {
  font-size: 14px;
}

/* hover efek ala iOS */
.btn-ios-download:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
/* ================= WHY SECTION ================= */
.why-section {
  padding: 50px 0;
  background: #f8f9fb;
}

/* IMAGE */
.why-img img {
  width: 100%;
  display: block;
  right: 5px!important;
}

/* TEXT */
.why-content {
  padding-left: 30px;
}

.why-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #0a2e6d;
}

.why-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

/* LIST */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* WHY LIST - grid 2x2 desktop */
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* card style iOS */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 20px;
  border-radius: 18px;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

/* icon bulat */
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #0d6efd, #0a2e6d);
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;

  box-shadow: 0 4px 10px rgba(13,110,253,0.3);
}

/* text wrapper */
.why-text {
  display: flex;
  flex-direction: column;
}

/* judul card */
.why-title-card {
  font-weight: 700;
  font-size: 16px;
  color: #0a2e6d;
  margin-bottom: 4px;
}

/* deskripsi card */
.why-desc-card {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

/* hover efek ala iOS */
.why-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.why-item:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

/* RESPONSIVE MOBILE - 1 kolom */
@media (max-width: 768px) {
  .why-list {
    grid-template-columns: 1fr;
  }

  .why-item {
    flex-direction: row;
    align-items: center;
    padding: 14px 16px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .why-content {
    padding-left: 0;
    text-align: center;
    margin-top: 20px;
  }

  .why-title {
    font-size: 24px;
  }

  .why-subtitle {
    font-size: 14px;
  }

  .why-item {
    justify-content: center;
    font-size: 13px;
  }

}
/* FOOTER TAGLINE */
.why-footer-tagline {
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #0d6efd; /* bisa diganti sesuai warna branding */
  letter-spacing: 1px;
  line-height: 1.4;
  background: linear-gradient(90deg, rgba(13,110,253,0.1), rgba(13,110,253,0.05));
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-block;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .why-footer-tagline {
    font-size: 16px;
    padding: 10px 15px;
    margin-top: 20px;
  }
    .testimonial-section {
    padding: 30px 0; /* lebih rapat atas-bawah */
  }
}
/* ================= TESTIMONIAL SLIDER ================= */
.testimonial-section {
  padding: 50px 0;
  background: #f8f9fb;
  text-align: center;
  position: relative;
}
.testimonial-title {
  font-size: 34px;
  font-weight: 800;
  color: #0a2e6d;
  margin-bottom: 10px;
}

.testimonial-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Slider container */
.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: visible; /* biarkan avatar keluar container */
  height: 350px; /* tinggi fix agar slide tidak tumpuk */
}

/* Testimonial item */
.testimonial-item {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 60px 35px 30px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Slides */
.testimonial-slide {
  position: absolute;
  top: 50px; /* beri jarak atas agar avatar tidak kena container */
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8) translateX(0);
  filter: blur(4px);
  transition: all 0.5s ease;
  z-index: 1;
}

/* Slide aktif di tengah */
.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateX(0);
  filter: blur(0);
  z-index: 10;
}

/* Slide kiri */
.testimonial-slide.prev {
  opacity: 0.5;
  transform: scale(0.8) translateX(-120%);
  filter: blur(4px);
  z-index: 5;
}

/* Slide kanan */
.testimonial-slide.next {
  opacity: 0.5;
  transform: scale(0.8) translateX(120%);
  filter: blur(4px);
  z-index: 5;
}

/* Avatar floating */
.testimonial-avatar {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 3px solid #fff;
  overflow: hidden;
  z-index: 10;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text */
.testimonial-quote {
  font-size: 17px;
  font-style: italic;
  color: #222;
  margin-top: 60px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-name {
  font-size: 16px;
  color: #0d6efd;
  font-weight: 700;
}

.testimonial-position {
  font-size: 13px;
  color: #555;
}

/* Navigation buttons */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 20;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  opacity: 1;
}

.testimonial-prev {
  left: -50px;
}

.testimonial-next {
  right: -50px;
}

/* Responsive */
@media(max-width: 600px){
  .testimonial-item { padding: 30px 20px 20px; }
  .testimonial-avatar { width: 80px; height: 80px; top: -40px; }
  .testimonial-quote { font-size: 15px; margin-top: 50px; }
  .testimonial-prev { left: -20px; }
  .testimonial-next { right: -20px; }
}
/* ================= PROGRAM STUDI ================= */
.program-section {
  padding:10px 0;
  background: #f5f6fa;
  text-align: center;
}

.program-title {
  font-size: 34px;
  font-weight: 800;
  color: #0a2e6d;
  position: relative;
  display: inline-block;
}

/* underline custom */
.program-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
  margin: 10px auto 0;
  border-radius: 10px;
}

.program-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

/* Layout: kiri + kanan */
.program-layout {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Kiri: Gambar ilustrasi */
.program-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.program-left .program-main-img {
  max-width: 100%;
}

/* Kanan: daftar card program studi */
.program-right {
  flex: 1;
  min-width: 300px;
  display: grid;
  gap: 20px;
}

/* ================= CARD ================= */
.program-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ICON */
.program-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f3f5;
}

.program-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.program-info {
  flex: 1;
  text-align: left;
}

.program-name {
  font-size: 18px;
  font-weight: 700;
  color: #0a2e6d;
}

.program-level {
  display: inline-block;
  font-size: 13px;
  color: #0d6efd;
  margin-bottom: 8px;
  font-weight: 600;
}

.program-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* ================= BUTTON ================= */
.program-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* tombol utama */
.btn-detail {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-detail:hover {
  background: #0b5ed7;
}

/* tombol secondary */
.btn-download {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: #eef3ff;
  color: #0d6efd;
  text-decoration: none;
  transition: 0.3s;
}

.btn-download:hover {
  background: #dbe6ff;
}

/* ================= LAYOUT ================= */
.program-right {
  display: grid;
  gap: 20px;
}
.program-name i {
  color: #0d6efd;
  margin-right: 6px;
  font-size: 16px;
}

/* BUTTON ICON */
.program-actions a i {
  margin-right: 5px;
}

/* Hover icon halus */
.program-card:hover .program-icon {
  transform: scale(1.05);
  transition: 0.3s;
}
/* TAGLINE */
.program-tagline {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #0a2e6d;
  text-align: center;
  position: relative;
}

/* garis dekoratif ala figma */
.program-tagline::before {
  content: "";
  width: 60px;
  height: 3px;
  background: #0d6efd;
  display: block;
  margin: 0 auto 12px;
  border-radius: 10px;
}

/* efek subtle gradient text (opsional premium) */
.program-tagline {
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .program-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .program-info {
    text-align: center;
  }

  .program-actions {
    justify-content: center;
  }
}

/* Responsive */
@media(max-width: 768px){
  .program-layout {
    flex-direction: column;
    align-items: center;
  }

  .program-right {
    width: 100%;
  }
}
.berita-section {
  padding: 50px 0;
  background: linear-gradient(90deg, #0f4fb5, #0a2e6d);
  color: #fff; /* default text putih */
}

/* Premium title */
.section-title.premium {
  font-weight: 900;
  font-size: 36px;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.section-title.premium::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  background: #ffdd59; /* kontras dengan biru */
  left: 25%;
  bottom: -10px;
  border-radius: 2px;
}

.section-subtitle {
  color: #e0e0e0;
  font-size: 16px;
  margin-bottom: 40px;
}

/* LAYOUT */
.berita-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* CARD UMUM */
.news-card {
  background: rgba(255,255,255,0.1); /* transparan agar tetap kelihatan gradasi */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
  color: #fff; /* teks putih */
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* IMAGE */
.news-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* BADGE */
.news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffdd59; /* kuning kontras */
  color: #0a2e6d;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* CONTENT */
.news-content {
  padding: 20px;
}

.news-meta {
  font-size: 12px;
  color: #dcdcdc;
  margin-bottom: 10px;
}

.news-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.news-desc {
  font-size: 14px;
  color: #e0e0e0;
}

.btn-news {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  background: #ffdd59;
  color: #0a2e6d;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-news:hover {
  background: #ffd633;
  color: #0a2e6d;
}

/* FEATURED CARD */
.featured .news-image img {
  height: 320px;
}

.featured .news-title {
  font-size: 22px;
}

/* RIGHT LIST */
.berita-right {
  display: grid;
  gap: 20px;
}

/* SMALL CARD */
.news-card.small {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px;
  background: rgba(255,255,255,0.08);
}

.news-card.small .news-image img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
}

.news-card.small .news-content {
  padding: 0;
}

.small-btn {
  font-size: 12px;
  padding: 4px 10px;
  background: #ffdd59;
  color: #0a2e6d;
  border-radius: 12px;
}

.small-btn:hover {
  background: #ffd633;
}

/* FILTER & SEARCH */
.berita-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-buttons button {
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: #ffdd59;
  color: #0a2e6d;
}

.search-news input {
  padding: 6px 12px;
  border-radius: 20px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-news button {
  background: #ffdd59;
  border: none;
  color: #0a2e6d;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}

/* PAGINATION IOS */
.pagination-ios {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.pagination-ios a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination-ios a.active,
.pagination-ios a:hover {
  background: #ffdd59;
  color: #0a2e6d;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .berita-layout {
    grid-template-columns: 1fr;
  }

  .news-card.small {
    flex-direction: row;
  }
}