*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

html, body{
    overflow-x:hidden;
}

body{
    margin:0;
    font-family:Arial, sans-serif;
}

/* HEADER */
.header{
    background-color:#254b8f;
    color:white;
    padding:15px;
}

.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-sekolah{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-sekolah a{
    text-decoration:none;
    color:white;
}

.logo-sekolah img{
    width:50px;
    height:50px;
}

#menu-toggle{
    display:none;
}

.menu-icon{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:white;
}

/* MENU */
.nav ul{
    list-style:none;
    display:flex;
    gap:20px;
    margin:0;
}

.nav a{
    text-decoration:none;
    color:white;
    font-weight:bold;
}

.nav a:hover{
    color:#f1c40f;
}

.login-btn{
    background:#f1c40f;
    color:#2c3e50 !important;
    padding:8px 15px;
    border-radius:20px;
    transition:0.3s;
}

.login-btn:hover{
    background:#ffd700;
    transform:scale(1.05);
}

.nav ul li:last-child{
    margin-left:10px;
}

/* RUNNING INFO */
.running-info{
    display:flex;
    align-items:center;
    background:#001b8f;
    color:white;
    height:45px;
    overflow:hidden;
    font-weight:bold;
}

.info-label{
    background:#ffd400;
    color:#000;
    padding:12px 18px;
    white-space:nowrap;
}

.running-info marquee{
    flex:1;
    font-size:16px;
}

.info-date{
    background:#ffd400;
    color:#000;
    padding:12px 18px;
    white-space:nowrap;
}

/* HERO */
.hero{
    position:relative;
    height:500px;
    overflow:hidden;
}

.slider{
    display:flex;
    width:100%;
    height:100%;
    animation:slide 15s infinite;
}

.slide{
    width:100%;
    height:100%;
    flex:0 0 100%;
    background-size:cover;
    background-position:center;
}

.slide:nth-child(1){
    background-image:url('../images/background.jpg');
}

.slide:nth-child(2){
    background-image:url('../images/background2.jpg');
}

.slide:nth-child(3){
    background-image:url('../images/sekolah.jpg');
}

@keyframes slide{
    0%{ transform:translateX(0); }
    30%{ transform:translateX(0); }
    35%{ transform:translateX(-100%); }
    65%{ transform:translateX(-100%); }
    70%{ transform:translateX(-200%); }
    100%{ transform:translateX(-200%); }
}

.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    color:white;
    text-align:center;
    z-index:2;
}

/* BERITA TERBARU */
.berita{
    background:#fff;
    padding:60px 40px 140px;
}

.berita h2{
    max-width:1300px;
    margin:0 auto 40px;
    text-align:left;
    font-size:42px;
    color:#001b8f;
}

.cards{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:35px;
}

.card-pengumuman{
    width:100%;
}

.gambar-pengumuman{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.isi-pengumuman{
    padding-top:18px;
    text-align:left;
}

.isi-pengumuman small{
    display:block;
    color:#666;
    margin-bottom:12px;
    font-size:15px;
}

.isi-pengumuman h3{
    color:#001b8f;
    font-size:24px;
    line-height:1.4;
    margin-bottom:10px;
}

.isi-pengumuman p{
    color:#222;
    font-size:16px;
    line-height:1.6;
}

/* LOKASI / MAP */
.kontak{
    background:#0a81dc;
    padding:60px 40px;
    color:white;
}

.judul{
    text-align:center;
    margin-bottom:35px;
}

.kontak-wrapper{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:60px;
    max-width:1200px;
    margin:auto;
}

.info{
    width:450px;
    background:transparent;
    box-shadow:none;
    color:white;
}

.info h3{
    margin-bottom:20px;
    border-bottom:2px solid rgba(255,255,255,.3);
    padding-bottom:10px;
}

.info-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    background:rgba(255,255,255,.12);
    padding:12px;
    border-radius:10px;
    transition:0.3s;
}

.info-item:hover{
    transform:translateX(5px);
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.info-item p{
    margin:0;
    color:white;
    font-size:14px;
}

.icon{
    font-size:20px;
    background:#007BFF;
    color:white;
    padding:8px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.map{
    width:420px;
    height:300px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.35);
}

.map iframe{
    width:100%;
    height:100%;
    border:0;
}

/* FOOTER */
.footer{
    background:#002147;
    color:white;
    padding:40px 20px 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.footer-col h3{
    margin-bottom:15px;
}

.footer-col p{
    line-height:1.6;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    text-decoration:none;
    color:white;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#f1c40f;
}

.footer .sosial-media{
    display:flex;
    gap:15px;
}

.footer .sosial-media img{
    width:35px;
    padding:8px;
    background:rgba(255,255,255,0.1);
    border-radius:50%;
    transition:0.3s;
}

.footer .sosial-media img:hover{
    transform:scale(1.2);
    background:#f1c40f;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    font-size:14px;
    opacity:0.7;
}

/* RESPONSIVE TABLET */
@media(max-width:992px){
    .top-header{
        padding:10px;
    }

    .nav ul{
        gap:15px;
    }

    .logo-sekolah h1{
        font-size:18px;
    }

    .cards{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* RESPONSIVE HP */
@media(max-width:576px){
    .menu-icon{
        display:block;
        position:absolute;
        right:20px;
        top:20px;
        font-size:28px;
        cursor:pointer;
        color:white;
    }

    .top-header{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .logo-sekolah{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .logo-sekolah img{
        width:55px;
        height:55px;
    }

    .logo-sekolah h1{
        font-size:16px;
    }

    .nav ul{
        display:none;
        flex-direction:column;
        width:100%;
        background:#254b8f;
        margin-top:10px;
    }

    #menu-toggle:checked ~ .nav ul{
        display:flex;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .berita{
        padding:50px 20px 100px;
    }

    .berita h2{
        font-size:32px;
    }

    .kontak-wrapper{
        flex-direction:column;
    }

    .info,
    .map{
        width:100%;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer .sosial-media{
        justify-content:center;
        flex-wrap:wrap;
    }
}
/* ================= DATA SEKOLAH + MAP ================= */

.lokasi-section{
    background-color:#469fda;
    padding:70px 40px;
    color:white;
}

.lokasi-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
}

.data-sekolah{
    width:430px;
}

.data-sekolah h2{
    margin-bottom:25px;
    color:white;
}

.data-sekolah table{
    width:100%;
    border-collapse:collapse;
}

.data-sekolah td{
    border:1px solid rgba(255,255,255,.8);
    padding:10px 15px;
    color:white;
    font-size:16px;
}

.map-kecil{
    width:420px;
    height:300px;
    overflow:hidden;
}

.map-kecil iframe{
    width:100%;
    height:100%;
    border:0;
}

@media(max-width:768px){
    .lokasi-container{
        flex-direction:column;
    }

    .data-sekolah,
    .map-kecil{
        width:100%;
    }
}

/* ================= TOP BAR ================= */

.top-bar{

    background:#001b8f;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    padding:12px 20px;

    font-weight:bold;

    flex-wrap:wrap;
}

.jam-box,
.kontak-top{

    display:flex;

    align-items:center;

    gap:10px;

    background:#0a1fa8;

    padding:8px 18px;

    border-radius:30px;
}

@media(max-width:768px){

    .top-bar{

        flex-direction:column;

        gap:15px;
    }
}

/* ===== DROPDOWN PROFIL UTAMA ===== */

.nav .dropdown-profil {
    position: relative;
}

/* menu utama Profil */
.nav .dropdown-profil > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* panah dropdown */
.panah-dropdown {
    font-size: 10px;
    line-height: 1;
}

/* kotak dropdown */
.nav .dropdown-profil .dropdown-menu-profil {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;

    width: 340px;
    background: #ffffff;

    padding: 0 !important;
    margin: 0 !important;

    list-style: none !important;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 99999;

    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch !important;
}

/* muncul saat hover */
.nav .dropdown-profil:hover .dropdown-menu-profil {
    display: flex !important;
}

/* setiap baris dropdown */
.nav .dropdown-profil .dropdown-menu-profil li {
    display: block !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* link dropdown */
.nav .dropdown-profil .dropdown-menu-profil li a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;

    padding: 15px 26px !important;

    background: #ffffff !important;
    color: #000000 !important;

    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: left !important;
    text-decoration: none !important;

    white-space: nowrap !important;
}

/* hover biru penuh */
.nav .dropdown-profil .dropdown-menu-profil li a:hover {
    background: #254b8f !important;
    color: #ffffff !important;
}
/* ===== WARNA HEADER UTAMA SEPERTI ADMIN ===== */

.header,
.top-header {
    background: #254b8f !important;
}

/* tulisan menu */
.nav ul li a {
    color: #ffffff !important;
}

/* judul SMA YAPIM MEDAN */
.logo-sekolah h1 {
    color: #ffffff !important;
}

/* tombol login tetap kuning */
.login-btn {
    background: #ffcc00 !important;
    color: #12315f !important;
    border-radius: 25px;
    padding: 10px 22px;
    font-weight: bold;
}

/* hover menu */
.nav ul li a:hover {
    color: #ffcc00 !important;
}

/* login hover */
.login-btn:hover {
    background: #ffffff !important;
    color: #254b8f !important;
}

/* ===== ISI SEJARAH RAPI DAN JUSTIFY ===== */

.isi-sejarah {
    max-width: 1050px;
    margin: 25px auto;
    padding: 0 25px;
}

.isi-sejarah p {
    text-align: justify;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 18px;
    text-indent: 35px;
}


/* ===== ICON SOSIAL MEDIA MELAYANG ===== */

.social-share {
    position: fixed;
    top: 180px;
    left: 35px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 24px;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    border: 6px solid white;

    transition: 0.3s;
}

.share-icon:hover {
    transform: scale(1.08);
}

.share-main {
    background: #00a912;
}

.facebook {
    background: #1877f2;
}

.twitter {
    background: #111111;
}

.whatsapp {
    background: #25d366;
}

.telegram {
    background: #40aee2;
}

.instagram {
    background: #e4405f;
}

.youtube {
    background: #ff0000;
}

@media (max-width: 768px) {
    .social-share {
        display: none;
    }
}

/* ===== HALAMAN PROFIL SEKOLAH ===== */

.halaman-profil {
    background: #f4f7fb;
    padding: 50px 20px;
    min-height: 80vh;
}

.profil-container {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    padding: 35px 45px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.profil-container h1 {
    text-align: center;
    color: #254b8f;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 800;
}

.profil-container h2 {
    color: #254b8f;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 12px;
    border-left: 6px solid #ffcc00;
    padding-left: 12px;
}

.tabel-profil {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 10px;
}

.tabel-profil tr {
    border-bottom: 1px solid #e5e5e5;
}

.tabel-profil tr:nth-child(odd) {
    background: #f8faff;
}

.tabel-profil td {
    padding: 14px 18px;
    font-size: 17px;
    color: #222;
}

.tabel-profil td:first-child {
    width: 230px;
    font-weight: 700;
    color: #254b8f;
}

.profil-container p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #222;
}

.profil-container ul {
    padding-left: 25px;
    margin-top: 10px;
}

.profil-container ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #222;
}

.btn-kembali {
    display: inline-block;
    margin-top: 30px;
    background: #254b8f;
    color: #ffffff !important;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-kembali:hover {
    background: #ffcc00;
    color: #254b8f !important;
}

/* Responsif HP */
@media (max-width: 768px) {
    .profil-container {
        padding: 25px 20px;
    }

    .profil-container h1 {
        font-size: 28px;
    }

    .tabel-profil td {
        display: block;
        width: 100%;
        padding: 10px 14px;
    }

    .tabel-profil td:first-child {
        width: 100%;
        background: #254b8f;
        color: white;
    }
}

/* ===== HALAMAN SAMBUTAN KEPALA SEKOLAH ===== */

.sambutan-box {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    margin-top: 25px;
}

.foto-kepsek {
    width: 260px;
    flex-shrink: 0;
    text-align: center;
    background: #f4f7fb;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.foto-kepsek img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    background: #ddd;
}

.foto-kepsek h3 {
    margin-top: 15px;
    margin-bottom: 5px;
    color: #254b8f;
    font-size: 20px;
}

.foto-kepsek p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.isi-sambutan {
    flex: 1;
}

.isi-sambutan p {
    text-align: justify;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 14px;
    text-indent: 35px;
}

.isi-sambutan p:first-child {
    text-indent: 0;
    font-weight: 600;
}

.ttd-kepsek {
    margin-top: 25px;
    text-align: right;
    color: #111;
}

.ttd-kepsek strong {
    display: block;
    font-size: 19px;
    color: #254b8f;
}

.ttd-kepsek span {
    display: block;
    font-weight: 700;
    font-size: 16px;
}

/* Responsif HP */
@media (max-width: 768px) {
    .sambutan-box {
        flex-direction: column;
    }

    .foto-kepsek {
        width: 100%;
    }

    .foto-kepsek img {
        height: 260px;
    }

    .isi-sambutan p {
        font-size: 16px;
        text-indent: 25px;
    }

    .ttd-kepsek {
        text-align: left;
    }
}

/* ===== HALAMAN DATA GURU PUBLIK ===== */

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.tabel-data-guru {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.tabel-data-guru th {
    background: #254b8f;
    color: #ffffff;
    padding: 14px 12px;
    text-align: center;
    font-size: 15px;
}

.tabel-data-guru td {
    padding: 13px 12px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
    color: #222;
}

.tabel-data-guru tr:nth-child(even) {
    background: #f7f9ff;
}

.tabel-data-guru tr:hover {
    background: #eef3ff;
}

.tabel-data-guru td:first-child {
    text-align: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tabel-data-guru {
        min-width: 850px;
    }
}

/* ===== HALAMAN JADWAL PELAJARAN PUBLIK ===== */

.tabel-jadwal-publik {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.tabel-jadwal-publik th {
    background: #254b8f;
    color: #ffffff;
    padding: 14px 12px;
    text-align: center;
    font-size: 15px;
}

.tabel-jadwal-publik td {
    padding: 13px 12px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
    color: #222;
    text-align: center;
}

.tabel-jadwal-publik tr:nth-child(even) {
    background: #f7f9ff;
}

.tabel-jadwal-publik tr:hover {
    background: #eef3ff;
}

.tabel-jadwal-publik td:first-child {
    font-weight: bold;
}

.libur-text {
    color: red !important;
    font-weight: bold;
    text-align: center !important;
    background: #fff3f3;
}

@media (max-width: 768px) {
    .tabel-jadwal-publik {
        min-width: 900px;
    }
}
/* ===== LEBARKAN HALAMAN DATA GURU ===== */

.profil-container {
    max-width: 1400px;

}
/* khusus halaman data guru */
.tabel-data-guru {
    width: 100%;
}

/* supaya kolom tabel lebih lega */
.tabel-data-guru th,
.tabel-data-guru td {
    padding: 16px 18px;
    font-size: 16px;
}

/* ===== RAPIKAN TABEL DATA GURU ===== */

.tabel-data-guru {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.tabel-data-guru th,
.tabel-data-guru td {
    padding: 16px 14px;
    vertical-align: middle;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

.tabel-data-guru th {
    font-size: 16px;
    font-weight: 800;
}

.tabel-data-guru td {
    font-size: 16px;
}

/* Atur lebar tiap kolom */
.tabel-data-guru th:nth-child(1),
.tabel-data-guru td:nth-child(1) {
    width: 60px;
}

.tabel-data-guru th:nth-child(2),
.tabel-data-guru td:nth-child(2) {
    width: 220px;
    text-align: left;
}

.tabel-data-guru th:nth-child(3),
.tabel-data-guru td:nth-child(3) {
    width: 190px;
    text-align: left;
}

.tabel-data-guru th:nth-child(4),
.tabel-data-guru td:nth-child(4) {
    width: 140px;
}

.tabel-data-guru th:nth-child(5),
.tabel-data-guru td:nth-child(5) {
    width: 140px;
}

.tabel-data-guru th:nth-child(6),
.tabel-data-guru td:nth-child(6) {
    width: 150px;
}

.tabel-data-guru th:nth-child(7),
.tabel-data-guru td:nth-child(7) {
    width: 120px;
}

.tabel-data-guru th:nth-child(8),
.tabel-data-guru td:nth-child(8) {
    width: 170px;
    text-align: left;
}

/* ===== FORM BUKU TAMU PUBLIK ===== */

.form-tamu {
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #254b8f;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #cfd6e4;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #254b8f;
    box-shadow: 0 0 0 3px rgba(37, 75, 143, 0.15);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
.user-btn{
    background:#28a745;
    margin-left:10px;
}

.user-btn:hover{
    background:#218838;
}
.link-berita{
    text-decoration:none;
    color:black;
    display:block;
}

.link-berita:hover .judul-item-berita{
    color:#0d47a1;
    transition:0.3s;
}

.gambar-berita{
    width:100%;
    border-radius:10px;
}

.card-berita{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.link-berita{
    text-decoration:none;
    color:inherit;
    display:block;
}

.link-berita:hover h3{
    color:#0d47a1;
}

/* ===== PERBAIKAN DROPDOWN MENU HEADER ===== */

.nav ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:28px;
}

.nav ul li{
    position:relative;
}

.nav ul li a{
    text-decoration:none;
    color:#111;
    font-weight:700;
}

.dropdown-menu{
    display:none !important;
    position:absolute;
    top:100%;
    left:0;
    background:white;
    min-width:240px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    border-radius:8px;
    padding:10px 0;
    z-index:999;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
    color:#111;
    white-space:nowrap;
}

.dropdown-menu li a:hover{
    background:#f2f5fb;
    color:#004aad;
}

.dropdown:hover .dropdown-menu{
    display:block !important;
}
/* ===== DATA GURU BERANDA ===== */

.data-guru-beranda{
    padding:70px 8%;
    background:#f4f7fb;
}

.judul-data-guru{
    text-align:center;
    margin-bottom:45px;
}

.judul-data-guru h2{
    font-size:42px;
    color:#003f9e;
    font-weight:800;
    margin-bottom:10px;
}

.judul-data-guru p{
    font-size:18px;
    color:#555;
}

.guru-beranda-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:28px;
}

.guru-beranda-card{
    background:white;
    border-radius:18px;
    padding:28px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:0.3s;
}

.guru-beranda-card:hover{
    transform:translateY(-7px);
    box-shadow:0 15px 35px rgba(0,0,0,0.18);
}

.guru-beranda-icon{
    width:65px;
    height:65px;
    background:#003f9e;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 18px;
}

.guru-beranda-card h3{
    font-size:22px;
    color:#003f9e;
    font-weight:800;
    margin-bottom:15px;
}

.guru-beranda-card p{
    color:#444;
    font-size:16px;
    line-height:1.6;
    margin-bottom:10px;
}

.btn-semua-guru{
    text-align:center;
    margin-top:40px;
}

.btn-semua-guru a{
    background:#003f9e;
    color:white;
    padding:13px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    display:inline-block;
}

.btn-semua-guru a:hover{
    background:#002b70;
}

.data-kosong{
    text-align:center;
    color:#777;
    font-size:18px;
}