*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#333;
    line-height:1.6;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#08111f;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:999;
}

.logo a{
    text-decoration:none;
    color:white;
    font-size:32px;
    font-weight:bold;
}

.logo span{
    color:#38bdf8;
}

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu a{
    text-decoration:none;
    color:white;
    font-weight:bold;
    transition:.3s;
    position:relative;
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#38bdf8;
    transition:.3s;
}

.menu a:hover{
    color:#38bdf8;
}

.menu a:hover::after{
    width:100%;
}


.atas{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:0 20px;
}

.atas1{
    max-width:800px;
}

.atas h1{
    font-size:58px;
    margin-bottom:25px;
}

.atas p{
    font-size:22px;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    background:#38bdf8;
    color:white;
    text-decoration:none;
    padding:16px 40px;
    border-radius:40px;
    font-size:18px;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-5px);
    background:#0ea5e9;
    box-shadow:0 12px 25px rgba(56,189,248,.4);
}

section{
    padding:90px 8%;
}

.judul{
    text-align:center;
    font-size:38px;
    margin-bottom:60px;
    color:#08111f;
}



.statistik{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
    background:#08111f;
    color:white;
}

.stat{
    text-align:center;
}

.stat h2{
    font-size:48px;
    color:#38bdf8;
    margin-bottom:10px;
}

.stat p{
    font-size:18px;
}



.card-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 35px rgba(0,0,0,.18);
}

.card i{
    font-size:55px;
    color:#38bdf8;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
    color:#08111f;
}

.card p{
    color:#666;
}



.paket{
    background:#eef7ff;
}

.paket-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:20px;
}

.paket-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.paket-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.paket-card h3{
    font-size:28px;
    color:#08111f;
    margin-bottom:15px;
}

.paket-card h1{
    color:#0ea5e9;
    font-size:42px;
    margin-bottom:10px;
}

.paket-card p{
    color:#666;
    margin-bottom:20px;
}

.paket-card ul{
    list-style:none;
    margin:25px 0;
}

.paket-card ul li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

.paket-card a{
    display:inline-block;
    margin-top:25px;
    background:#38bdf8;
    color:white;
    text-decoration:none;
    padding:13px 30px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.paket-card a:hover{
    background:#0284c7;
    transform:scale(1.05);
}



.populer{
    transform:scale(1.05);
    border:3px solid #38bdf8;
}

.populer:hover{
    transform:scale(1.08);
}

.label{
    position:absolute;
    top:18px;
    right:-38px;
    background:#f59e0b;
    color:white;
    padding:8px 45px;
    font-size:13px;
    font-weight:bold;
    transform:rotate(45deg);
    box-shadow:0 4px 10px rgba(0,0,0,.2);
}



#keunggulan{
    background:white;
}

.unggulan{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.unggulan div{
    background:#08111f;
    color:white;
    text-align:center;
    padding:40px 20px;
    border-radius:18px;
    transition:.4s;
}

.unggulan div:hover{
    background:#0ea5e9;
    transform:translateY(-10px);
}

.unggulan i{
    font-size:55px;
    margin-bottom:20px;
}

.unggulan h3{
    font-size:22px;
}



#registrasi{
    background:#eef7ff;
}

.form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form input,
.form textarea,
.form select{

    width:100%;
    padding:16px;
    border:1px solid #d6d6d6;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.form input:focus,
.form textarea:focus,
.form select:focus{

    border-color:#38bdf8;
    box-shadow:0 0 10px rgba(56,189,248,.3);

}

.form textarea{
    resize:none;
}

.form button{

    background:#38bdf8;
    color:white;
    border:none;
    padding:16px;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
    font-weight:bold;
    transition:.3s;

}

.form button:hover{

    background:#0284c7;
    transform:translateY(-3px);

}



.testimoni{
    background:#ffffff;
}

.testi-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:20px;
}

.testi{
    background:white;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.testi:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.testi p{
    margin:20px 0;
    color:#555;
    line-height:1.8;
}

.testi h4{
    color:#0ea5e9;
    font-size:18px;
}



#Kontak{
    background:#eef7ff;
    text-align: center;
}



footer{
    background:#08111f;
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer h2{
    font-size:35px;
    margin-bottom:15px;
}

footer span{
    color:#38bdf8;
}

footer p{
    color:#cbd5e1;
    margin:10px 0;
}

.sosmed{
    margin:25px 0;
}

.sosmed i{
    width:50px;
    height:50px;
    line-height:50px;
    text-align:center;
    border-radius:50%;
    background:#1e293b;
    font-size:22px;
    margin:0 8px;
    cursor:pointer;
    transition:.3s;
}

.sosmed i:hover{
    background:#38bdf8;
    color:white;
    transform:translateY(-8px);
}



::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:#38bdf8;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#0284c7;
}



.card,
.paket-card,
.testi,
.unggulan div{
    animation:muncul 1s ease;
}

@keyframes muncul{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}



@media(max-width:992px){

.hero h1{
    font-size:46px;
}

.hero p{
    font-size:18px;
}

.menu{
    gap:20px;
}

}



@media(max-width:768px){

.navbar{

    flex-direction:column;
    padding:20px;

}

.logo{

    margin-bottom:15px;

}

.menu{

    flex-wrap:wrap;
    justify-content:center;
    gap:15px;

}

.hero{

    padding-top:120px;

}

.hero h1{

    font-size:35px;

}

.hero p{

    font-size:16px;

}

.btn{

    padding:14px 30px;

}

.judul{

    font-size:30px;

}

.stat h2{

    font-size:38px;

}

.card{

    padding:25px;

}

.paket-card{

    padding:25px;

}

.form{

    width:100%;

}

}



@media(max-width:480px){

.hero h1{

    font-size:28px;

}

.hero p{

    font-size:15px;

}

.logo a{

    font-size:28px;

}

.menu{

    gap:10px;

}

.menu a{

    font-size:14px;

}

footer h2{

    font-size:28px;

}

.sosmed i{

    width:45px;
    height:45px;
    line-height:45px;
    font-size:18px;

}

}