/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0F172A;
    color:white;
}

/* ================= NAVBAR ================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 80px;

    position:sticky;
    top:0;

    background:#111827;
    z-index:1000;
}

.navbar h2{
    font-size:30px;
    color:#3B82F6;
}

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu a{
    color:white;
    text-decoration:none;
    transition:.3s;
    font-size:18px;
}

.menu a:hover{
    color:#60A5FA;
}

/* ================= HERO ================= */

.hero{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:70px;

    min-height:100vh;

    padding:80px;
}

.Logo{
    width:220px;
    height:220px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid white;

    transition:.4s;
}

.Logo:hover{
    transform:scale(1.08);
}

.Pembuka{
    max-width:600px;
}

.Pembuka h1{
    font-size:55px;
    margin-bottom:10px;
}

.Pembuka h2{
    color:#3B82F6;
    margin-bottom:20px;
}

.Pembuka p{
    line-height:1.8;
    color:#d1d5db;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    text-decoration:none;
    color:white;

    background:#2563EB;

    padding:15px 35px;

    border-radius:30px;

    transition:.3s;
}

.btn:hover{
    background:#1D4ED8;
    transform:scale(1.05);
}

/* ================= SECTION ================= */

section{
    padding:90px 10%;
}

section h1{
    text-align:center;
    font-size:45px;
    margin-bottom:60px;
}

/* ================= SERVICES ================= */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:#1E293B;

    padding:30px;

    border-radius:20px;

    text-align:center;

    transition:.3s;

}

.card:hover{

    transform:translateY(-10px);

    background:#2563EB;

}

.card h2{

    margin-bottom:20px;

}

.card p{

    color:#ddd;

}

.card h3{

    margin-top:15px;

    color:#FFD700;

}

/* ================= PORTFOLIO ================= */

.gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));

    gap:20px;

}

.gallery img{

    width:100%;

    border-radius:15px;

    transition:.4s;

}

.gallery img:hover{

    transform:scale(1.05);

}

/* ================= WHY ================= */

.kelebihan{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.kelebihan div{

    background:#1E293B;

    padding:30px;

    border-radius:15px;

    text-align:center;

    transition:.3s;

}

.kelebihan div:hover{

    background:#2563EB;

}

/* ================= TESTIMONI ================= */

.review{

    max-width:700px;

    margin:auto;

    background:#1E293B;

    padding:40px;

    border-radius:20px;

    text-align:center;

    line-height:1.8;

}

/* ================= CONTACT ================= */

#contact{

    text-align:center;

}

#contact p{

    margin:15px 0;

    font-size:20px;

}

/* ================= FOOTER ================= */

footer{

    background:#111827;

    text-align:center;

    padding:40px;

}

footer h2{

    color:#3B82F6;

    margin-bottom:10px;

}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.navbar{

flex-direction:column;

gap:20px;

padding:20px;

}

.menu{

flex-direction:column;

text-align:center;

}

.hero{

flex-direction:column;

text-align:center;

padding:50px 20px;

}

.Pembuka h1{

font-size:38px;

}

.Logo{

width:180px;

height:180px;

}

}