* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	font-family: "Poppins", sans-serif;
	color: #333;
    overflow-x: hidden;
}

[data-aos] {
    transition-timing-function: ease-in-out !important;
}
header { 
	position: fixed;
	top: 0; 
	left: 0;
	width: 100%; 
	background-color: white; 
	transition: background-color 0.5s ease, box-shadow 0.7s ease; 
	z-index: 1000; 
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
} 
 
header.scrolled { 
	background-color: #ff6600; 
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); 
	color: white;
	z-index: 10000; 
}   

/* Saat header discroll: ubah warna teks utama jadi putih */
header.scrolled .logo-text,
header.scrolled nav a,
header.scrolled .dropbtn,
header.scrolled .fa-chevron-down {
	color: white !important;
}

header.scrolled nav a:hover,
header.scrolled .dropbtn:hover {
	color: black !important;
}

header.scrolled .auth-section .login-link {
    color: white !important;
}

header.scrolled .auth-section .login-link:hover {
    color: black !important;
   
}
	
.header-content { 
	display: flex; 
	justify-content: space-between; 
	align-items: center; 
	max-width: 1200px; 
	margin: auto; 
	padding: 10px 20px; 
	width: 100%; 
} 

.logo { 
	display: flex; 
	align-items: center; 
} 

.logo img { 
	border-radius: 50%; 
	margin-right: 10px; 
} 

.logo-text { 
	font-size: 20px; 
} 

nav { 
	display: flex; 
	gap: 20px; 
	align-items: center; 
} 

nav a { 
	text-decoration: none; 
	font-family: "Poppins", sans-serif; 
	font-weight: 600; 
	color: black; 
	padding: 10px 15px; 
	position: relative; 
	transition: color 0.3s ease; 
} 

nav a:hover { 
	color: #ff6600; 
} 

/* Tombol utama dropdown */
.dropbtn {
	background: none;
	border: none;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: black;
	cursor: pointer;
	padding: 10px 15px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.dropbtn:hover {
	color: #ff6600;
}

/* Container dropdown */
.dropdown {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

/* ====== ISI DROPDOWN (tetap hitam walau discroll) ====== */
.dropdown-content { 
	display: none;
	position: absolute;
	top: 120%;
	left: 50%;                    
	transform: translateX(-50%);   
	background-color: white;
	min-width: 180px;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.8);
	border-radius: 10px;
	padding: 8px 0;
	z-index: 1000;
	text-align: center;      
} 

/* Pastikan warna isi dropdown tetap hitam */
header.scrolled .dropdown-content a,
.dropdown-content a { 
	display: block;
	padding: 10px 15px;
	color: black !important;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease, background-color 0.3s ease; 
}

/* Garis bawah animasi */
.dropdown-content a::after {
	content: "";
	display: block;
	width: 55%;
	height: 2px;
	position: absolute;
	transform: scaleX(0);
	transition: 0.2s linear;
	bottom: 4px;
	left: 25%;
	border-bottom: 2px solid #ff6600;
}

.dropdown-content a:hover {
	color: #ff6600 !important;
	background-color: #f5f5f5;
}

.dropdown-content a:hover::after {
	transform: scaleX(1.5);
}

/* Panah toggle */
.dropdown-toggle {
	transition: transform 0.3s, color 0.3s;
	display: inline-block;
}

/* Saat dropdown terbuka */
.dropdown.open .dropdown-toggle {
	transform: rotate(180deg);
	color: #ff6600;
}

/* Tampilkan isi dropdown hanya jika open */
.dropdown.open .dropdown-content {
	display: block;
}
		

/* auth section container */
.auth-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* foto profil biar bulat */
.navbar-foto {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}

/* efek hover pada foto */
.dropbtn-profil:hover .navbar-foto {
    border: 2px solid #ff6600;
}

.auth-section .login-link {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: black;
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s ease;
}

.auth-section .login-link::after {
    content: "";
    display: block;
    width: 55%;
    height: 2px;
    position: absolute;
    transform: scaleX(0);
    transition: 0.2s linear;
    bottom: 4px;
    left: 25%;
    border-bottom: 2px solid #ff6600;
}

.auth-section .login-link:hover {
    color: #ff6600;
}

.auth-section .login-link:hover::after {
    transform: scaleX(1.5);
}

.auth-section .dropdown-content{
	text-decoration: none;
}


/* Dropdown profil container */
.dropdown-profil {
    position: relative;
    display: inline-block;
}

/* Isi dropdown profil */
.dropdown-content-profil {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
	transform: translateX(-50%);
    background-color: white;
    min-width: 180px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 8px 0;
    z-index: 1000;
    text-align: left;
}

/* Link di dalam dropdown profil */
.dropdown-content-profil a {
    display: block;
    padding: 10px 15px;
	text-align: center;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Garis orange bawah */
.dropdown-content-profil a::after {
    content: "";
    display: block;
    width: 55%;
    height: 2px;
    position: absolute;
    transform: scaleX(0);
    transition: 0.2s linear;
    bottom: 4px;
    left: 25%;
    border-bottom: 2px solid #ff6600;
}

/* Hover efek */
.dropdown-content-profil a:hover {
    color: #ff6600;
    background-color: #f5f5f5;
}

.dropdown-content-profil a:hover::after {
    transform: scaleX(1.5);
}

/* Tampilkan menu saat hover di foto profil */
.dropdown-profil:hover .dropdown-content-profil {
    display: block;
}

/* Hero Section */
.hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	margin-top: 90px;
	padding-top: 20px;
	gap: 20px; /* jarak antar elemen kiri-kanan */
}

/* Kiri */
.hero-left {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 50%; /* biar proporsional */
	height: 500px;
}

.hero-left img {
	max-width: 100%;
	margin-right: 97px;
	height: auto;
	object-fit: contain;
}

/* Kanan */
.hero-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 50%;
	height: 500px;
}

.hero-right img {
	max-width: 100%;
	margin-top: 40px;
	height: auto;
	object-fit: contain;
}

/* Berita Acara */
.berita {
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.berita-container {
    position: relative;
    width: 90%;       
    max-width: 600px; 
    margin: 0 auto;    
    overflow: hidden;  
    padding: 10px 0; 
    background-color: #ff6600; 
    border-radius: 15px;
    text-align: center;
    padding-bottom: 30px;
}

.berita-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: white; 
}

.berita-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}


.berita-item {
    flex: 0 0 100%;      
    display: flex;
    justify-content: center;
    align-items: center; 
    box-sizing: border-box;
}

.berita-card {
    width: 70%;         
    max-width: 700px;    
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

.berita-card .image {
    height: 250px;
    background-size: cover;    
    background-position: center; 
    background-repeat: no-repeat;
}

.berita-card .teks {
    font-size: 0.9rem; /* teks sedikit lebih kecil */
    max-height: 100px; /* biar nggak terlalu tinggi */
    padding: 10px;
    overflow-y: auto;
}

/* Tombol navigasi */
.berita .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    z-index: 20;
}

.berita .nav:hover{
    background: rgba(0,0,0,0.8);
}

.berita .nav.prev { left: 40px; }
.berita .nav.next { right: 40px; }


/* Features */
.features {
	text-align: center;
	padding: 50px 5%;
	background: #fff;
}
.features h2 {
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.features h3 {
	margin-top: 5px;
	margin-bottom: 10px;
}
.features p {
	color: #333;
	margin-bottom: 40px;
}
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}
.feature-item {
	padding: 15px;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); 
	background-color: white;
	color: #333;
	transition: transform 0.2s;
}
.feature-item:hover {
	transform: translateY(-10px);
	background-color: #ff6600;
	color: white;
}
.feature-item:hover p{
	color: white;
}
.feature-item img{
	margin-top: 20px;
}

/* Section Sambutan */
.sambutan {
	display: flex;
	justify-content: space-between; /* ini bikin kiri-kanan mepet */
	align-items: center;
	padding: 10px;
}

.sambutan-kiri {
	flex: 1;
	padding: 0 5%;
	margin-bottom: 90px;
}

.sambutan-text h3 {
	margin: 0;
	font-size: 1rem;
	color: gray;
}

.sambutan-text h2 {
	margin: 5px 0 25px;
	font-size: 2rem;
}

.sambutan-text p {
	font-size: 15px;
	margin-bottom: 40px;
	text-align: justify;
}
.sambutan-img {
	display: flex;
	justify-content: flex-end; /* dorong ke kanan */
}

.sambutan-img img {
	max-width: 100%;
	height: auto;
}

/* Section Pendaftaran */
.spmb-section {
	background: #e7e1bf4a;
	padding: 60px 5%;
}

.spmb-container {
	display: flex;                 /* aktifkan flex */
	align-items: center;           /* vertikal rata tengah */
	justify-content: space-between;/* space rata */
	gap: 20px;
	flex-wrap: nowrap;             /* biar tetap sejajar kiri-tengah-kanan */
	text-align: center;
}

/* Gambar kiri & kanan */
.spmb-img {
	flex: 0 0 120px;   /* gambar fixed 120px */
	display: flex;
	justify-content: center;
	align-items: center;
}
.spmb-img img {
	width: 200px;;
	height: 250px;
}

/* Teks di tengah */
.spmb-text {
	flex: 1;               /* ambil sisa ruang */
	max-width: 700px;
	text-align: center;
	padding: 0 15px;
}
.spmb-text h2 {
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 12px;
}
.spmb-text p {
	margin-bottom: 14px;
	font-size: 1rem;
}
.spmb-text ol {
	text-align: left;
	margin: 20px auto;
	max-width: 500px;
}
.spmb-text ol li {
	margin-bottom: 12px;
}

/* Tombol Daftar */
.btn-daftar {
	display: inline-block;
	background: #ff6600;
	color: white;
	padding: 12px 30px;
	border-radius: 25px;
	margin-top: 20px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.btn-daftar:hover {
	background: #e69500;
	transform: translateY(-4px);
}

/* Informasi (pengumuman) */
.pengumuman {
    padding: 40px;
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.pengumuman .subjudul {
    color: #ff6600;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* Grid layout */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
    justify-content: center;
}

/* Container slider */
.slider-container-info {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: auto;
    max-width: 1100px;  /* biar ada batas tengah */
}

/* Track slider */
#slider-info {
    display: flex;
    transition: transform 0.5s ease;
}

/* Item wrapper */
.info-item {
    flex: 0 0 calc(100% / 3);   /* 3 item per layar */
    box-sizing: border-box;
    padding: 0 15px;          
}

/* Card */
.card-pengumuman {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;   
}

/* Judul */
.card-pengumuman h4 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
    color: black;
}

/* Isi */
.card-pengumuman p.isi-info {
    font-size: 14px;
    color: #333;
    line-height: 1.5em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-height: 110px;
    overflow: hidden;
    flex-grow: 1;
}

/* Footer */
.card-footer {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #eee;
    padding-top: 10px;
}

.card-footer a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 500;
}

.informasi-none {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;   
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #555;
}

/* Tombol navigasi */
.nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 28px;
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}
.nav.prev { left: 5px; }
.nav.next { right: 5px; }

/* Section Fasilitas */
.fasilitas {
	background-color: #ff6600;
	padding: 60px 5%;
	text-align: center;
	color: white;
	margin-top: 20px;
}

.fasilitas h2 {
	font-size: 1.5rem;
	margin-bottom: 50px;
	font-weight: bold;
}

.slider-container {
	position: relative;
	overflow: hidden;
	max-width: 900px;
	margin: auto;
}

.slider {
	display: flex;
	transition: transform 0.5s ease;
	gap: 10px;
}

.fasilitas-item {
	width: 190px;
	height: 276px;
	border-radius: 20px;
	background: white;
	flex-shrink: 0;
	margin: 0 10px;
	overflow: hidden;
	padding: 0;
}

.image-wrapper {
	overflow: hidden; /* potong radius di atas saja */
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.image {
	height: 235px;
	background-size: cover;
	background-position: center;
	border-radius: 0; /* bawah tetap lurus */
}

.fasilitas-item p {
	padding: 10px;
	margin: 0;
	font-weight: bold;
	font-size: 0.9rem;
	color: black;
}

/* Tombol Navigasi */
.nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	 background: rgba(0,0,0,0.8);
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 50%;
	z-index: 10;
}

.nav.prev {
	left: 10px;
}
.nav.next {
	right: 10px;
}

.nav:hover {
	background: rgba(0,0,0,0.8);
}

/* Statistik siswa */
.container-statistik {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 10px;
  transition: transform 0.2s;
  gap: 20px; 
}

.card-statistik {
  margin-top: 40px;
  margin-bottom: 30px;
  background-color: #ff6600;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  width: 200px; 
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  color: white;
  transition: transform 0.3s;
}

.container-statistik .card-statistik:hover {
  transform: translateY(-5px);
  background-color: orangered;
}

.card-statistik h2 {
  font-size: 48px;
  margin: 0;
}

.card-statistik p {
  font-size: 20px;
  margin-top: 10px;
  color: white;
}

.map {
	display: flex;
	justify-content: center;
	margin: 10px 0;
}

iframe {
	border: 0;
	width: 800px;
	height: 300px;
	margin-bottom: 60px;
}

/* Footer*/
.footer {
	background: #0c1a2b;
	color: white;
	font-family: Arial, sans-serif;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	gap: 7rem;
	padding: 5rem;
	flex-wrap: wrap;
}

.footer-col {
	flex: 1 1 250px;
}

.footer-logo {
	display: flex;
	width: 300px;
	margin-bottom: 0.5rem;
}
.footer-logo h4 {
	font-weight: 800;
	text-align: left;
	margin-left: 16px;
	margin-top: 10px;
}

.footer h4 {
	margin-bottom: 18px;
	font-size: 1rem;
	margin-top: 20px;
	margin-left: 15px;
}
.footer h4:hover {
	color: #ff6600;
}

.footer p {
	font-size: 0.9rem;
	line-height: 1.4;
	text-align: justify;
}
.footer-social {
	display: flex;
}
.footer-social img {
	margin-top: 20px;
	width: 20px;
	margin-left: 15px;
}
.footer-social .instagram img {
	margin-top: 20px;
	width: 20px;
	margin-left: 15px;
	transition: transform 0.3s ease;
}

.footer-social .instagram:hover img {
	transform: scale(1.3);
}
.footer-social .facebook img {
	margin-top: 20px;
	width: 20px;
	margin-left: 15px;
	transition: transform 0.3s ease;
}

.footer-social .facebook:hover img {
	transform: scale(1.3);
}
.footer-social .youtube img {
	margin-top: 20px;
	width: 25px;
	margin-left: 15px;
	height: 20px;
	transition: transform 0.3s ease;
}

.footer-social .youtube:hover img {
	transform: scale(1.5);
}
.footer-social .whatsapp img {
	margin-top: 20px;
	width: 20px;
	margin-left: 15px;
	transition: transform 0.3s ease;
}

.footer-social .whatsapp:hover img {
	transform: scale(1.5);
}
.footer-social .tiktok img {
	margin-top: 20px;
	width: 20px;
	margin-left: 15px;
	transition: transform 0.3s ease;
}

.footer-social .tiktok:hover img {
	transform: scale(1.5);
}
.footer-col .fa-solid {
	font-size: 16px;
	margin-right: 15px;
	margin-top: 10px;
}
.footer-col p {
	margin-left: 15px;
	text-align: justify;
}
.footer-col p:hover {
	color: #ff6600;
}

.footer-bottom {
	background: #07111e;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.8rem 2rem;
	flex-wrap: wrap;
	font-size: 0.85rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/* Tablet */
@media (max-width: 768px) {
    #navbarMenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; 
    right: 20px; 
    background: white;
    width: 220px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.9);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2000;
	  max-height: 80vh;        /* ✅ batas tinggi menu */
        overflow-y: auto; 
         overflow-x: hidden; /* matikan scroll kanan–kiri */
        
}
    #navbarMenu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
	display: flex;
}

 /* Scrollbar style opsional (untuk Chrome, Edge, Safari) */
    #navbarMenu::-webkit-scrollbar {
        width: 6px;
    }
    #navbarMenu::-webkit-scrollbar-thumb {
        background: #444;
        border-radius: 3px;
    }
    #navbarMenu::-webkit-scrollbar-thumb:hover {
        background: #666;
    }

    #navbarMenu a,
#navbarMenu .dropbtn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 16px;
    color: black;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
}

/* Bars icon animasi jadi X */
.menu-toggle {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-left: auto;
  margin-right: 20px;
  z-index: 2100; /* biar di atas menu */
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #000; /* warna bars */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animasi saat aktif */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

    #navbarMenu a:hover,
    #navbarMenu .dropbtn:hover {

        color: #ff6600;
    }

    /* Panah di kanan */
    .dropdown-toggle {
        font-size: 14px;
        color: #ccc;
        margin-left: 5px;
        transition: transform 0.3s;
    }

    .dropdown.open .dropdown-toggle {
        transform: rotate(180deg);
        color: #ff6600;
    }

    
    #navbarMenu .dropdown-content {
        display: none;
        flex-direction: column;
        margin-top: 5px;
		background: white;

    }

    #navbarMenu .dropdown-content a {
        padding: 10px 15px;
        font-size: 15px;
        font-weight: 400;
		text-align: center;
        color: black;
	
    }

    #navbarMenu .dropdown-content a:hover {
        color: #ff6600;
    }

    /* Show dropdown */
    #navbarMenu .dropdown.open .dropdown-content {
        display: flex;
    }

   

    .header-content {
        justify-content: space-between;
    }

	/* Profil */
	.dropdown-content-profil {
    left: 10%;
	transform: translateX(-50%);
    min-width: 115px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.6);
	padding: 0;
    
}

	/* Hero Section */
	.hero {
		gap: 10px;
		margin-top: 0;
		min-height: auto;
	}

	.hero-left,
	.hero-right {
		height: 470px;
		max-width: 50%; 
		display: flex;
		align-items: center;
		justify-content: center;
		
	}

	.hero-left img{
		width: 100%;
		margin-right: 10px;
		height: 100%;    /* bikin gambar lebih tinggi */
		object-fit: cover;


	}
	.hero-right img {
		width: 100%;  
		height: 100%;    /* bikin gambar lebih tinggi */
		object-fit: cover;  /* supaya tidak ketarik */

	}
	
	/* Features Section */
	.features {
		padding: 37px 20px;
	}
	.features h2 {
		font-size: 1.5rem; /* lebih kecil */
	}
	.features p {
		font-size: 0.9rem;
		margin-bottom: 30px;
		
	}
	.feature-grid {
		 grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* otomatis isi kolom */
		 
		

	}
	.feature-item {
		padding: 10px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); 
		max-width: 220px;
		margin: 0 auto;
		margin-bottom: 10px;
		background-color: white;
		
		
		
	}
	.feature-item h3 {
		font-size: 1rem;
	}
	.feature-item p {
		font-size: 0.85rem;
		color: #333;
	}
	.feature-item img {
		width: 70px; 
		height: auto;
	}

	.feature-item:hover {
	transform: translateY(-10px);
	background-color: #ff6600;
	color: white; 
	}

	.feature-item:hover p{
		color: white;
	}
	
	/* Sambutan Section */
	.sambutan {
		flex-direction: row; 
		gap: 20px;           
		padding: 20px;
		margin-top: 40px;
	}

	.sambutan-kiri {
		padding: 0 10px;
		margin-bottom: 40px; 
	}

	.sambutan-text h3 {
		font-size: 0.9rem;
	}

	.sambutan-text h2 {
		font-size: 1.5rem; 
		margin-bottom: 15px;
	}

	.sambutan-text p {
		font-size: 0.9rem;
		margin-bottom: 20px;
	}

	.sambutan-img {
		flex: 1;
		display: flex;
		justify-content: center; 
		align-items: center;
	}

	.sambutan-img img {
		max-width: 100%;  
		height: 400px;
	}


	/* Pendaftaran */
	
	.spmb-container {
		gap: 20px;
		padding: 20px;
	}

	.spmb-img img {
		max-width: 150px; 
		
	}

	.spmb-text {
		max-width: 100%;
	}

	.spmb-text h2 {
		font-size: 1.2rem;
		margin-bottom: 10px;
	}

	.spmb-text p {
		font-size: 0.9rem;
		margin-bottom: 12px;
	}

	.spmb-text ol {
		max-width: 100%;
		padding-left: 15px;
	}

	.spmb-text ol li {
		font-size: 0.9rem;
		margin-bottom: 10px;
	}

	.btn-daftar {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	/* Map */
	.map {
		display: flex;
		justify-content: center;
		margin: 10px 0;
	}

	iframe {
		border: 0;
		width: 600px;
		height: 300px;
		margin-bottom: 60px;
	}

	/* Statistik */
	.card-statistik {
    flex: 1 1 calc(33.333% - 20px); /* tetap 3 kolom */
    max-width: calc(33.333% - 20px);
    width: auto;
    padding: 20px;
  }

  .card-statistik h2 {
    font-size: 36px;
  }

  .card-statistik p {
    font-size: 16px;
  }

   .swal-custom-popup {
                width: 320px !important;
                font-size: 14px;
            }
            .swal-custom-title {
                font-size: 18px;
            }
            .swal-custom-text {
                font-size: 13px;
            }

}

/* Mobile */
@media (max-width: 480px) {
    .header-content {
        padding: 8px 12px;
    }

    /* Logo */
    .logo img {
        width: 60px;
        height: 50px;
        margin-right: 6px;
    }
    .logo-text {
        font-size: 16px;    
    }

    /* Navbar menu */
    #navbarMenu {
        width: 170px;  
        right: 8px;
        padding: 10px;
        border-radius: 8px;
        font-size: 14px;
        background: white !important;
    }

    #navbarMenu a,
    #navbarMenu .dropbtn {
        padding: 8px;
        font-size: 14px;
        color: black !important;
    }

    #navbarMenu .dropdown-content {
        display: none;
        flex-direction: column;
        margin-top: 5px;
		background: white;

    }

    #navbarMenu .dropdown-content a {
        padding: 8px;
        font-size: 13px;
        color: black !important;
    }

     #navbarMenu a:hover,
    #navbarMenu .dropbtn:hover {

        color: #ff6600 !important;
    }

      #navbarMenu .fa-chevron-down,
    #navbarMenu .dropdown-toggle i,
    #navbarMenu i {
        color: black !important;
    }

    
    #navbarMenu .fa-chevron-down:hover,
    #navbarMenu .dropdown-toggle i:hover,
    #navbarMenu i:hover {
        color: #ff6600 !important;
    }

    /* Hamburger icon */
    .menu-toggle {
        width: 24px;
        height: 18px;
        margin-right: 12px;
    }
    .menu-toggle span {
        height: 2px;          
    }

    /* Animasi saat aktif */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }



    /* Dropdown arrow */
    .dropdown-toggle {
        font-size: 12px;
    }

    

    /* Profil */
    .auth-section {
        gap: 8px; 
    }

    .navbar-foto {
		margin-top: 7px;
        width: 35px;
        height: 35px;
    }

    .auth-section .login-link {
        font-size: 14px;
        padding: 6px 10px;
    }

    /* Dropdown profil */
    .dropdown-content-profil {
        min-width: 100px;
        font-size: 13px;
        left: 5%;
	    transform: translateX(-60%);
    }

    .dropdown-content-profil a {
        padding: 8px;
        font-size: 13px;
    }

	    .hero {
        flex-direction: column;   
        gap: 15px;
        margin-top: 0;            
        padding: 0;               
        
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
        height: auto;
    }

    .hero-left img,
    .hero-right img {
        width: 100%;
        height: auto;
        object-fit: cover;        
        margin: 0;
        display: block;          
    }

    
    .hero-left img {
        max-height: 380px;        
        
    }

    .hero-right img {
        max-height: 320px;
    }

    

	 .features {
        margin-top: 60px;
        padding: 20px 10px;       
        text-align: center;
    }

    .features h2 {
        font-size: 1.1rem;        
        margin-bottom: 8px;
    }

    .features p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;                             
    }

    .feature-item {
        max-width: 100%; 
        padding: 8px;
        margin: 0 auto;
        border-radius: 8px;
    }

    .feature-item h3 {
        font-size: 0.85rem;  
        margin: 5px 0;
    }

    .feature-item p {
        font-size: 0.7rem;       
        line-height: 1.2;
    }

    .feature-item img {
        width: 45px;              
        height: auto;
        margin-bottom: 6px;
    }

	.sambutan {
        flex-direction: column;  
        gap: 15px;
        padding: 15px;
        margin-top: 20px;
        text-align: center;       
    }

    .sambutan-kiri {
        padding: 0;
        margin-bottom: 10px;
    }

    .sambutan-text h3 {
        font-size: 0.8rem;        
        margin-bottom: 5px;
    }

    .sambutan-text h2 {
        font-size: 1.2rem;       
        margin-bottom: 30px;
    }

    .sambutan-text p {
        font-size: 0.8rem;        
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .sambutan-img {
        flex: unset;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .sambutan-img img {
        max-width: 100%;          
        height: auto;
        max-height: 250px;     
        object-fit: contain;
    }

	.spmb-section {
        padding: 30px 15px;  
    }

    .spmb-container {
        flex-direction: column;  
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    /* Gambar atas-bawah */
    .spmb-img {
        flex: unset;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .spmb-img img {
        max-width: 120px;  
        height: auto;
    }

    /* Teks */
    .spmb-text {
        max-width: 100%;
        padding: 0 5px;
    }
    .spmb-text h2 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .spmb-text p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    .spmb-text ol {
        max-width: 100%;
        padding-left: 18px;
        text-align: left;   
    }
    .spmb-text ol li {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    /* Tombol */
    .btn-daftar {
        padding: 8px 18px;
        font-size: 0.8rem;
        margin-top: 15px;
        border-radius: 20px;
    }

	.pengumuman {
        padding: 15px 10px;
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .pengumuman .subjudul {
        font-size: 20px;
        margin-bottom: 20px;
    }

    

    #slider-info {
        gap: 12px; 
        padding: 0 10px; 
    }

    
    .info-item {
        flex: 0 0 85%;  
        max-width: 300px;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    /* card */
    .card-pengumuman {
        width: 100%; 
        margin: auto;
        height: 270px;
    }
    .card-pengumuman h4 {
        font-size: 15px;
        margin-bottom: 10px;
        text-align: center;
    }

    .card-pengumuman p.isi-info {
        font-size: 13px;
        line-height: 1.4em;
        overflow: hidden;
    }

    .card-footer {
        font-size: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 8px;
        margin-top: 10px;
    }

    .card-footer .views {
        color: #666;
        font-size: 12px;
    }

    .card-footer a {
        font-size: 12px;
        font-weight: 500;
        color: #d32f2f;
    }

    /* Tombol navigasi */
    .nav {
        font-size: 20px;
        padding: 5px 8px;
        top: 50%;
    }
    .nav.prev { left: 5px; }
    .nav.next { right: 5px; }

	.fasilitas {
        padding: 40px 5%;
        margin-top: 15px;
    }

    .fasilitas h2 {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .slider-container {
        max-width: 100%;
        padding: 0 15px; 
    }

    .slider {
        gap: 8px;
    }

    .fasilitas-item {
        width: 150px;  
        height: 220px;
        margin: 0 6px;
        border-radius: 15px;
    }

    .image {
        height: 170px;  
    }

    .fasilitas-item p {
        font-size: 0.8rem;
        padding: 8px;
    }


    .nav {
        font-size: 18px;
        padding: 5px 8px;
    }

    .nav.prev {
        left: 5px;
    }
    .nav.next {
        right: 5px;
    }

	/* Map */
	.map {
		display: flex;
		justify-content: center;
		margin: 10px 0;
	}

	iframe {
		border: 0;
		width: 340px;
		height: 200px;
		margin-bottom: 60px;
	}

     .swal-custom-popup {
                width: 260px !important;
                font-size: 13px;
                padding: 1em !important;
            }
            .swal-custom-title {
                font-size: 16px;
            }
            .swal-custom-text {
                font-size: 12px;
            }

    .footer-top {
    display: flex;
    justify-content: center;
    padding: 1rem 1rem;
    margin: 0 auto;
    flex-wrap: wrap;        
    gap: 3rem;              
    max-width: 1200px;      
}

.footer-col {
    flex: 1 1 250px;       
    margin: 0 auto;
    text-align: left;
}

    
    .footer-col p {
        text-align: justify;
    }

    .footer-logo {
        display: flex;
        align-items: center; 
        justify-content: flex-start;
         margin: 0 0 10px 0;
    }

    .footer-logo img {
        width: 80px; 
        margin-right: 8px; 
        margin-top: 3px;   
    }

    .footer-logo h4 {
        text-align: left;  
        margin: 0;
        line-height: 1.2; 
        font-size: 1rem;  
    }

    .footer-bottom { 
       margin-top: 20px;
    }
}