@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', Arial, sans-serif;
}

body{
    background:#fff;
    color:#0b2b5c;
}

/* NAVBAR */
.navbar{
    background:white;
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 70px;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:99;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-area img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.logo-area h2{
    color:#0055cc;
    font-size:24px;
    font-weight:800;
}

.logo-area p{
    font-size:13px;
    color:#456;
    margin:0;
}

.menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.menu a{
    text-decoration:none;
    color:#0b2b5c;
    font-weight:700;
    transition:.3s;
    padding:33px 0;
}

.menu a:hover,
.menu a.active{
    color:#0055cc;
    border-bottom:3px solid #0055cc;
}

.login-btn{
    background:#0055cc;
    color:white!important;
    padding:14px 25px!important;
    border-radius:13px;
    border-bottom:none!important;
}

/* HOME HERO */
.hero{
    min-height:420px;
    background:linear-gradient(110deg,#f8fcff 0%,#f4faff 55%,#dceeff 100%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:55px 90px;
    position:relative;
    overflow:hidden;
}

.hero::after{
    content:"";
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:#cfe5fb;
    right:-90px;
    top:-60px;
    opacity:.75;
}

.hero-left{
    width:48%;
    position:relative;
    z-index:2;
}

.badge{
    display:inline-block;
    background:#e5f1ff;
    color:#0052c8;
    padding:8px 16px;
    border-radius:18px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
}

.hero-left h1{
    font-size:48px;
    color:#0047a8;
    font-weight:800;
    margin-bottom:12px;
}

.line,
.yellow-line,
.section-line{
    width:70px;
    height:5px;
    background:#ffc400;
    border-radius:5px;
    margin-bottom:25px;
}

.hero-left p{
    font-size:16px;
    line-height:1.8;
    color:#233b5e;
    max-width:560px;
    margin-bottom:28px;
}

.feedback-btn{
    display:inline-block;
    background:#0055cc;
    color:white;
    text-decoration:none;
    padding:16px 27px;
    border-radius:10px;
    font-size:15px;
    font-weight:700;
    box-shadow:0 12px 25px rgba(0,85,204,.28);
}

.hero-image{
    width:45%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
}

.logo-box{
    width:330px;
    height:330px;
    background:transparent;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:none;
    border:none;
}

.logo-box img{
    width:330px;
    height:330px;
    object-fit:contain;
}

.plus{
    position:absolute;
    font-size:52px;
    color:#b6d9ff;
    font-weight:800;
    z-index:1;
}

.p1{left:52%;top:110px;}
.p2{left:48%;top:250px;}
.p3{right:16%;top:250px;}

/* FITUR HOME */
.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:35px 45px;
    background:#fff;
}

.feature-card{
    background:#fff;
    border:1px solid #d9e9ff;
    border-radius:14px;
    min-height:105px;
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    box-shadow:0 5px 18px rgba(0,70,150,.05);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(0,85,204,.14);
}

.icon-box{
    width:50px;
    height:50px;
    border-radius:13px;
    background:#eef6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:27px;
}

.feature-card h3{
    font-size:16px;
    color:#003e9e;
    font-weight:800;
    margin-bottom:4px;
}

.feature-card p{
    font-size:12px;
    color:#17355b;
    line-height:1.5;
    margin:0;
}

/* HALAMAN LAIN */
.page-section{
    min-height:calc(100vh - 90px);
    padding:70px 90px;
    background:linear-gradient(135deg,#f8fcff,#eaf5ff);
    position:relative;
    overflow:hidden;
}

.page-section::after{
    content:"";
    position:absolute;
    right:-120px;
    top:80px;
    width:420px;
    height:420px;
    background:#d6eaff;
    border-radius:50%;
    z-index:0;
}

.content{
    position:relative;
    z-index:2;
}

.section-title{
    font-size:38px;
    color:#0047a8;
    margin-bottom:15px;
    font-weight:800;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card,
.info-card{
    background:white;
    padding:28px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,85,204,.10);
    transition:.3s;
    border:1px solid #d9e9ff;
}

.card:hover,
.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 35px rgba(0,85,204,.18);
}

.card h3,
.info-card h5{
    color:#0047a8;
    margin-bottom:12px;
    font-weight:800;
}

.card p,
.info-card p{
    line-height:1.7;
    color:#334155;
}

.image-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.image-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,85,204,.12);
    transition:.3s;
}

.image-card:hover{
    transform:scale(1.02);
}

.image-card img{
    width:100%;
    height:330px;
    object-fit:cover;
}

.image-card .text{
    padding:22px;
}

/* KONTAK */
.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:40px;
}

.contact-hover{
    background:white;
    border-radius:18px;
    padding:28px;
    box-shadow:0 10px 25px rgba(0,85,204,.10);
    transition:.3s;
    cursor:pointer;
    border:1px solid #d9e9ff;
}

.contact-hover:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,85,204,.20);
}

.contact-hover h5{
    color:#0047a8;
    font-weight:700;
}

.contact-hover p{
    color:#0b2b5c;
}

.map-box{
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,85,204,.12);
}

iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:16px;
}

/* FOOTER SAMA SEPERTI HOME */
.footer{
    background:#0057d8;
    color:white;
    text-align:center;
    padding:10px 10px;
    margin-top:0;
}

.footer h4,
.footer h5,
.footer p{
    margin:0;
    line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:900px){
    .navbar{
        padding:0 25px;
    }

    .menu{
        display:none;
    }

    .hero{
        flex-direction:column;
        padding:40px 25px;
        text-align:center;
    }

    .hero-left,
    .hero-image{
        width:100%;
    }

    .line,
    .yellow-line,
    .section-line{
        margin:12px auto 25px;
    }

    .features,
    .card-grid,
    .image-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .page-section{
        padding:40px 25px;
    }

    .logo-box,
    .logo-box img{
        width:260px;
        height:260px;
    }
}
.login-header{
    text-align:center;
    margin-bottom:25px;
}

.logo-login{
    width:90px;
    margin-bottom:15px;
}

.login-header h1{
    font-size:42px;
    color:#003c97;
    font-weight:800;
    margin-bottom:10px;
}

.line{
    width:70px;
    height:5px;
    background:#0057d8;
    margin:auto;
    border-radius:20px;
}
/* BACKGROUND HALAMAN TENTANG KAMI */

.tentang-section{
    background:linear-gradient(110deg,#f8fcff 0%,#f4faff 55%,#dceeff 100%);
    padding:70px 0;
    min-height:calc(100vh - 90px);
    position:relative;
    overflow:hidden;
}

.tentang-section::after{
    content:"";
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:#cfe5fb;
    right:-90px;
    top:-60px;
    opacity:.75;
    z-index:0;
}

.tentang-section .container{
    position:relative;
    z-index:2;
}
.layanan-click{
    cursor:pointer;
}

.layanan-click:hover{
    transform:translateY(-10px);
}
.service-card{
    text-decoration:none;
    padding:30px;
    border-radius:20px;
    color:#0b2b5c;
    box-shadow:0 12px 28px rgba(0,85,204,.12);
    transition:.3s;
    border:1px solid #d9e9ff;
    display:block;
}

.service-card:hover{
    transform:translateY(-10px);
    text-decoration:none;
}

.service-blue{
    background:linear-gradient(135deg,#ffffff,#e8f3ff);
}

.service-green{
    background:linear-gradient(135deg,#ffffff,#e9fff5);
}

.service-purple{
    background:linear-gradient(135deg,#ffffff,#f3ecff);
}
.service-card{
    background:white;
    min-height:145px;
    padding:28px;
    border-radius:18px;
    border:1px solid #d9e9ff;
    box-shadow:0 10px 25px rgba(0,85,204,.10);
    transition:.3s;
    text-decoration:none;
    color:#0b2b5c;
    display:block;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,85,204,.20);
    color:#0b2b5c;
}

.service-card h3{
    color:#0047a8;
    font-weight:800;
    margin-top:12px;
    margin-bottom:10px;
}

.service-card p{
    color:#0b2b5c;
    margin:0;
    text-decoration:none;
}

.service-card .icon-box{
    margin-bottom:8px;
}
