*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


body{
    background:#f8fafc;
    color:#1e293b;
    overflow-x:hidden;
}


/* ================= HEADER ================= */

header{

    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;

    padding-top:20px;

}



nav{

    width:92%;
    margin:auto;

    padding:18px 30px;

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

    background:rgba(255,255,255,.9);

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    backdrop-filter:blur(15px);

}



/* Logo */

.logo{
    flex:0 0 auto;
}

.logo-title{
    font-size:18px;
    font-weight:800;
    color:#1d4ed8;
    line-height:1;
}

.logo-title span{
    color:#4cb8ff;
}

.logo-subtitle{
    font-size:12px;
    font-weight:700;
    color:#1d4ed8;
    margin-top:8px;
}


.menu-toggle{
    display:none;
    font-size:34px;
    cursor:pointer;
    color:#1847b8;
}

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    nav{
        flex-wrap:wrap;
    }

    nav ul{

        position:absolute;
        top:100%;
        left:0;
        right:0;

        display:none;
        flex-direction:column;

        background:#fff;
        margin-top:10px;
        padding:20px;

        border-radius:0 0 20px 20px;

        box-shadow:0 10px 20px rgba(0,0,0,.1);

        gap:18px;

        z-index:999;
    }

    nav ul.active{
        display:flex;
    }

    nav ul li{
        width:100%;
    }

    nav ul li a{
        display:block;
        width:100%;
        text-align:center;
        padding:10px;
    }

    .btn{
        display:block;
        text-align:center;
    }

}

/* MENU */

nav ul{

    display:flex;

    align-items:center;

    gap:25px;

    list-style:none;

}


nav ul li a{

    text-decoration:none;

    color:#334155;

    font-size:12px;

    font-weight:500;

    transition:.3s;

    position:relative;

    white-space:nowrap;

}



nav ul li a::after{

    content:"";

    position:absolute;

    bottom:-8px;
    left:0;

    width:0;
    height:3px;

    background:#2563eb;

    border-radius:10px;

    transition:.3s;

}



nav ul li a:hover{

    color:#2563eb;

}



nav ul li a:hover::after{

    width:100%;

}





/* BUTTON */

.btn{

    padding:12px 28px;

    border:none;

    border-radius:30px;

    background:

    linear-gradient(
    135deg,
    #2563eb,
    #38bdf8
    );

    color:white;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}



.btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 20px rgba(37,99,235,.3);

}





/* ================= HERO ================= */


.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-around;

    padding:
    140px 8% 80px;

    background:
    linear-gradient(
    135deg,
    #eff6ff,
    #ffffff
    );

}



.hero-text{

    max-width:600px;

    animation:slide 1s ease;

}



.hero h1{

    font-size:60px;

    line-height:1.15;

    font-weight:800;

}



.hero h1 span{

    color:#2563eb;

}



.hero p{

    margin:25px 0;

    color:#64748b;

    font-size:18px;

    line-height:1.8;

}




/* BUTTON HERO */

.primary,
.secondary{

    padding:15px 35px;

    border-radius:50px;

    font-size:16px;

    transition:.3s;

}


.primary{

    background:#2563eb;

    color:white;

    border:none;

}



.primary:hover{

    transform:translateY(-5px);

}



.secondary{

    margin-left:15px;

    border:2px solid #2563eb;

    background:white;

    color:#2563eb;

}



.secondary:hover{

    background:#2563eb;

    color:white;

}





/* HERO IMAGE */


.hero-image{

    position:relative;

}



.circle{

    width:380px;

    height:380px;

    background:

    linear-gradient(
    135deg,
    #2563eb,
    #38bdf8
    );

    border-radius:50%;

    animation:float 4s infinite;

    box-shadow:

    0 30px 60px rgba(37,99,235,.25);

}



.book{

    position:absolute;

    top:110px;

    left:120px;

    font-size:120px;

    animation:float 3s infinite;

}





/* ================= SERVICE ================= */


.services{

    padding:90px 8%;

    text-align:center;

}



.services h2{

    font-size:40px;

    color:#0f172a;

}



.cards{

    margin-top:50px;

    display:flex;

    gap:30px;

    justify-content:center;

    flex-wrap:wrap;

}




.card{

    background:white;

    padding:35px;

    width:300px;

    border-radius:25px;

    box-shadow:

    0 20px 40px rgba(0,0,0,.08);

    transition:.4s;

}



.card:hover{

    transform:translateY(-15px);

    box-shadow:

    0 25px 50px rgba(0,0,0,.15);

}




.icon{

    font-size:55px;

}



.card h3{

    margin:20px 0;

    color:#2563eb;

}





/* ================= ABOUT ================= */


.about{

    padding:100px 10%;

    background:

    linear-gradient(
    135deg,
    #2563eb,
    #1e40af
    );

    color:white;

    text-align:center;

}



.about h2{

    font-size:40px;

    margin-bottom:20px;

}





/* FOOTER */


footer{

    padding:40px;

    text-align:center;

    background:#0f172a;

    color:white;

}




/* ================= ANIMATION ================= */


@keyframes float{

    0%,100%{

        transform:translateY(0);

    }


    50%{

        transform:translateY(-20px);

    }

}



@keyframes slide{


from{

    opacity:0;

    transform:translateX(-50px);

}


to{

    opacity:1;

    transform:translateX(0);

}


}




/* ================= RESPONSIVE ================= */


@media(max-width:1200px){


nav ul{

    gap:15px;

}


nav ul li a{

    font-size:12px;

}


}



@media(max-width:900px){


nav{

    padding:15px 20px;

}


nav ul{

    display:none;

}


.hero{

    flex-direction:column;

    text-align:center;

}



.hero h1{

    font-size:42px;

}



.hero-image{

    margin-top:50px;

}



.circle{

    width:280px;

    height:280px;

}



.book{

    top:80px;

    left:80px;

    font-size:90px;

}



.cards{

    flex-direction:column;

    align-items:center;

}


.secondary{

    margin-left:0;

    margin-top:15px;

}


}

/* ===================================
   HALAMAN SK PUSLAKA
   (Tidak mengganggu Home)
=================================== */


.sk-page{

    min-height:100vh;

    padding:150px 8% 80px;

    background:#f8fafc;

}



.sk-container{

    max-width:1200px;

    margin:auto;

    text-align:center;

}



/* JUDUL */

.sk-title{

    font-size:42px;

    font-weight:700;

    color:#1e3a8a;

    margin-bottom:15px;

    animation:skFade .8s ease;

}




/* DESKRIPSI */

.sk-description{

    font-size:18px;

    color:#64748b;

    line-height:1.7;

    max-width:650px;

    margin:0 auto 40px;

}



/* BOX PDF */

.sk-pdf-box{

    background:white;

    padding:25px;

    border-radius:25px;


    box-shadow:

    0 20px 50px rgba(0,0,0,.1);


    overflow:hidden;

}



/* PDF VIEWER */

.sk-pdf-box iframe{

    width:100%;

    height:750px;

    border:none;

    border-radius:15px;

}




/* ANIMASI */

@keyframes skFade{

    from{

        opacity:0;

        transform:translateY(30px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}




/* RESPONSIVE */

@media(max-width:900px){


.sk-page{

    padding:120px 5% 50px;

}



.sk-title{

    font-size:32px;

}



.sk-pdf-box{

    padding:15px;

}



.sk-pdf-box iframe{

    height:600px;

}


}

/* ==========================================
   TRACER STUDY PAGE
   CSS KHUSUS (Tidak Mengganggu HOME)
========================================== */


.tracer-page{

    min-height:100vh;

    padding:150px 8% 80px;

    background:#f8fafc;

}



.tracer-container{

    max-width:1200px;

    margin:auto;

    text-align:center;

}



/* JUDUL */

.tracer-title{

    font-size:42px;

    font-weight:700;

    color:#1e3a8a;

    margin-bottom:20px;

    animation:tracerFade .8s ease;

}




/* DESKRIPSI */

.tracer-description{

    max-width:750px;

    margin:0 auto 45px;

    font-size:18px;

    line-height:1.8;

    color:#64748b;

}




/* BOX GOOGLE FORM */

.tracer-form{

    background:white;

    padding:25px;

    border-radius:30px;


    box-shadow:

    0 20px 50px rgba(0,0,0,.10);


    overflow:hidden;

    

    animation:tracerUp 1s ease;

}



/* GOOGLE FORM */

.tracer-form iframe{

    width:100%;

    height:900px;

    border:none;

    border-radius:20px;

    display:block;

}





/* ANIMASI KHUSUS */

@keyframes tracerFade{


from{

    opacity:0;

    transform:translateY(-30px);

}


to{

    opacity:1;

    transform:translateY(0);

}


}



@keyframes tracerUp{


from{

    opacity:0;

    transform:translateY(40px);

}


to{

    opacity:1;

    transform:translateY(0);

}


}





/* RESPONSIVE */

@media(max-width:900px){


.tracer-page{

    padding:120px 5% 60px;

}



.tracer-title{

    font-size:32px;

}



.tracer-description{

    font-size:15px;

}



.tracer-form{

    padding:10px;

    border-radius:20px;

}



.tracer-form iframe{

    height:800px;

}


}

/* =====================================
   GALERI PUSLAKA
   CSS KHUSUS
===================================== */


.galeri-section{

    min-height:100vh;

    padding:150px 8% 80px;

    background:#f8fafc;

}



.galeri-container{

    max-width:1200px;

    margin:auto;

    text-align:center;

}



.galeri-title{

    font-size:40px;

    color:#1e3a8a;

    margin-bottom:15px;

}



.galeri-desc{

    color:#64748b;

    max-width:700px;

    margin:auto;

    line-height:1.7;

}





/* GRID FOTO */


.galeri-grid{

    margin-top:45px;

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:20px;

}



.galeri-item{

    height:180px;

    border-radius:20px;

    overflow:hidden;

    background:white;

    box-shadow:

    0 15px 30px rgba(0,0,0,.08);

    transition:.4s;

}



.galeri-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}



.galeri-item:hover{

    transform:translateY(-10px);

}



.galeri-item:hover img{

    transform:scale(1.1);

}





/* BUTTON */


.galeri-button{


display:inline-block;


margin-top:45px;


padding:15px 35px;


border-radius:50px;


background:#2563eb;


color:white;


text-decoration:none;


font-weight:600;


transition:.3s;


}



.galeri-button:hover{


background:#1d4ed8;


transform:translateY(-5px);


}





@media(max-width:1000px){


.galeri-grid{

grid-template-columns:
repeat(3,1fr);

}


}




@media(max-width:600px){


.galeri-grid{

grid-template-columns:
repeat(2,1fr);

}



.galeri-item{

height:150px;

}


}

/* =====================================
   INFORMASI LOKER PUSLAKA
   CSS KHUSUS
===================================== */


.loker-section{

    min-height:100vh;

    padding:150px 8% 80px;

    background:#f8fafc;

}



.loker-container{

    max-width:1200px;

    margin:auto;

    text-align:center;

}



.loker-title{

    font-size:40px;

    color:#1e3a8a;

    margin-bottom:15px;

}



.loker-description{

    color:#64748b;

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:1.7;

}




/* GRID LOKER */


.loker-grid{


margin-top:50px;


display:grid;


grid-template-columns:
repeat(3,1fr);


gap:30px;


}




/* CARD */


.loker-card{


background:white;


border-radius:25px;


overflow:hidden;


box-shadow:

0 20px 40px rgba(0,0,0,.1);


transition:.4s;


text-align:left;


}




.loker-card:hover{


transform:translateY(-12px);


box-shadow:

0 25px 50px rgba(0,0,0,.15);


}




/* GAMBAR BESAR */


.loker-card img{


width:100%;


height:280px;


object-fit:cover;


}




/* ISI */


.loker-content{


padding:25px;


}



.loker-content h3{


color:#2563eb;


font-size:22px;


margin-bottom:15px;


}



.loker-content p{


color:#334155;


margin-bottom:10px;


font-size:16px;


}



.loker-content span{


color:#64748b;


font-size:15px;


}





/* BUTTON */


.loker-button{


display:inline-block;


margin-top:45px;


padding:15px 40px;


background:#2563eb;


color:white;


border-radius:50px;


text-decoration:none;


font-weight:600;


transition:.3s;


}



.loker-button:hover{


background:#1d4ed8;


transform:translateY(-5px);


}





/* RESPONSIVE */


@media(max-width:1000px){


.loker-grid{


grid-template-columns:
repeat(2,1fr);


}


}



@media(max-width:600px){


.loker-grid{


grid-template-columns:
1fr;


}


.loker-card img{


height:230px;


}


}



.hero{
    display:flex;
    flex-direction:column; /* tulisan di atas, gambar di bawah */
    align-items:center;
    text-align:center;
    padding:160px 40px;
}

.hero-text{
    max-width:800px;
}

.hero-image{
    margin-top:40px;
}

.hero-img{
    width:100%;
    max-width:650px;
    height:auto;
}

@media (max-width:768px){

    .hero{
        padding:160px 40px;
        text-align:center;
    }

    .hero-text h1{
        font-size:34px;
        line-height:1.2;
    }

    .hero-text p{
        font-size:18px;
        line-height:1.8;
    }

    .hero-button{

        display:flex;
        flex-direction:column;
        gap:15px;
        align-items:center;
        width:100%;
        margin-top:25px;

    }

    .hero-button a{

        width:100%;
        max-width:320px;
        padding:14px 20px;
        border-radius:40px;
        text-align:center;
        text-decoration:none;
        font-size:17px;
        box-sizing:border-box;

    }

    .hero-image{

        margin-top:35px;

    }

    .hero-img{

        width:100%;
        max-width:360px;
        height:auto;

    }

}


/*=============================
    HALAMAN ALUMNI
=============================*/
.alumni-section{

    /*min-height:100vh;*/

    padding:30px 8% 20px;

    /*background:#f8fafc;*/

}

.alumni-container{
    width:95%;
    max-width:1250px;
    margin:50px auto;
    padding:25px;
}

.alumni-title{
    font-size:32px;
    font-weight:700;
    color:#1d3557;
    text-align:center;
    margin-bottom:30px;
    position:relative;
}

.alumni-title::after{
    content:"";
    width:90px;
    height:4px;
    background:#0d6efd;
    display:block;
    margin:12px auto 0;
    border-radius:30px;
}

.alumni-table-wrapper{
    background:#fff;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    overflow-x:auto;
    overflow-y:hidden;
}

.alumni-table{
    width:100%;
    border-collapse:collapse;
    min-width:900px;
}

.alumni-table thead{
    background:linear-gradient(90deg,#0d6efd,#2b7cff);
}

.alumni-table thead th{
    color:#fff;
    padding:18px 15px;
    text-align:center;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
}

.alumni-table tbody td{
    padding:16px 15px;
    border-bottom:1px solid #ececec;
    font-size:14px;
    color:#444;
    transition:.3s;
}

.alumni-table tbody tr:nth-child(even){
    background:#fafafa;
}

.alumni-table tbody tr:hover{
    background:#edf5ff;
}

.alumni-table tbody td:first-child{
    width:60px;
    text-align:left;
    font-weight:bold;
}

.alumni-table tbody td:nth-child(2){
    font-weight:600;
    color:#1d3557;
}

.alumni-table tbody td:nth-child(3),
.alumni-table tbody td:nth-child(6),
.alumni-table tbody td:nth-child(7){
    text-align:left;
    white-space:nowrap;
}

.alumni-table tbody td:nth-child(5){
    line-height:1.6;
}

/*==================================
    MOBILE LIST ALUMNI
==================================*/

/*==================================
    MOBILE LIST ALUMNI
==================================*/

@media screen and (max-width:768px){

 .alumni-table tr{
        width:100%;
        margin:20px auto;
        text-align:left;
    }
.alumni-section{
    padding:160px 30px;
}

.alumni-container{
    width:100%;
    margin:0;
    padding:0;
}

.alumni-title{
    font-size:26px;
    margin-bottom:25px;
}

.alumni-table-wrapper{
    background:transparent;
    box-shadow:none;
    overflow:visible;
    border-radius:0;
}

/* Hilangkan bentuk tabel */

.alumni-table{
    min-width:100%;
    width:100%;
    border-collapse:unset;
}

.alumni-table thead{
    display:none;
}

.alumni-table,
.alumni-table tbody,
.alumni-table tr,
.alumni-table td{
    display:block;
    width:100%;
}

/* Card */

.alumni-table tr{

    background:#fff;
    border-radius:15px;
    padding:18px;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    margin:20px auto;  

}

/* Hilangkan nomor */

.alumni-table td:first-child{
    display:none;
}

/* Nama Alumni */

.alumni-table td:nth-child(2){

    font-size:20px;
    font-weight:700;
    color:#2563eb;

    border-bottom:1px solid #e5e7eb;

    padding-bottom:12px;
    margin-bottom:12px;

}

/* Semua data */

.alumni-table td{
    text-align:left;
    border:none;
    padding:7px 0;
    color:#444;
    font-size:15px;
    text-align:left;
    white-space:normal;

}

/* Label */

.alumni-table td:nth-child(3)::before{
    content:"Negara";
}

.alumni-table td:nth-child(4)::before{
    content:"Tempat Bekerja";
}

.alumni-table td:nth-child(5)::before{
    content:"Seleksi & Pelatihan";
}

.alumni-table td:nth-child(6)::before{
    content:"Keberangkatan";
}

.alumni-table td:nth-child(7)::before{
    content:"Tahun Kembali";
}

/* Style Label */

.alumni-table td:nth-child(n+3)::before{

    display:block;

    font-size:13px;
    font-weight:600;

    color:#6b7280;

    margin-bottom:3px;

}

}