*{
    font-family: 'Poppins', sans-serif;
}

body{
    background: #0f172a;
    color: white;
    overflow-x: hidden;
}

/* NAVBAR */
.custom-nav{
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

/* HERO */
.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-title{
    font-size: 4rem;
    font-weight: 700;
}

.hero-title span{
    color: #38bdf8;
}

.hero-text{
    color: rgba(255,255,255,0.7);
    margin: 25px 0;
}

.hero-img{
    width: 320px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
}

.btn-main{
    background: linear-gradient(45deg,#38bdf8,#9333ea);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
}

/* SECTION */
.section-space{
    padding: 100px 0;
}

.section-title{
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2{
    font-weight: 700;
}

/* CARD */
.glass-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: .3s;
    color: #fff; /* 🔥 penting supaya semua teks default putih */
}

.glass-card:hover{
    transform: translateY(-8px);
    border: 1px solid rgba(56,189,248,0.4);
}

.icon-big{
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: 15px;
}

/* 🔥 FIX POSISI BIAR TIDAK PUDAR */
.glass-card h6{
    color: #ffffff;
    font-weight: 600;
    opacity: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* perusahaan biar lebih tegas */
.glass-card h4{
    color: #ffffff;
    font-weight: 700;
}

/* TIMELINE */

.timeline{
     border-left: 3px solid #38bdf8;
    padding-left: 25px;

    width: fit-content;   /* ukur sesuai isi */
    margin: 0 auto;       /* 🔥 pusatkan */

}

.timeline-item{
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before{
    content: "";
    width: 18px;
    height: 18px;
    background: #38bdf8;
    border-radius: 50%;
    position: absolute;
    left: -31px;
    top: 5px;
}

/* PROGRESS */
.progress{
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
}

.progress-bar{
    background: linear-gradient(45deg,#38bdf8,#9333ea);
}

/* FOOTER */
.footer{
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
}

@media(max-width:768px){

    .hero{
        text-align: center;
    }

    .hero-title{
        font-size: 2.5rem;
    }

    .hero-img{
        margin-top: 40px;
        width: 250px;
    }

}
.about-info {
    width: 100%;
}

.info-row {
    display: grid;
    grid-template-columns: 120px 20px 1fr;
    padding: 6px 0;
}

.label {
    font-weight: 600;
}

.colon {
    text-align: center;
}

.value {
    word-break: break-word;
}