/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
    scroll-behavior:smooth;
}

/* ROOT */
:root{
    --primary:#2563eb;
    --secondary:#1e40af;
    --dark:#0f172a;
    --light:#f8fafc;
    --text:#1e293b;
}

/* BODY */
body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    overflow-x:hidden;
    padding-top:180px;
}


/* CONTAINER */
section{
    padding:90px 10%;
}

/* BLUR EFFECT */
.blur-circle{
    position:fixed;
    width:400px;
    height:400px;
    background:rgba(37,99,235,0.15);
    filter:blur(120px);
    border-radius:50%;
    top:-100px;
    right:-100px;
    z-index:-1;
}

/* NAVBAR */
.header{
    width:100%;
    position:fixed;
    top:0;
    left:0;

    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);

    border-bottom:
    1px solid rgba(0,0,0,0.05);

    z-index:1000;
}

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

    padding:20px 10%;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:60px;
    height:60px;

    object-fit:contain;
}

.logo h2{
    font-size:2rem;
    line-height:1.2;

    color:#0f172a;
}

/* NAV LINKS */
.nav-links{
    display:flex;
    align-items:center;

    gap:40px;
}

/* BUTTON HUBUNGI */
.nav-btn{
    margin-left:30px;
}

.nav-links a{
    font-size:1.1rem;
    font-weight:500;

    color:#0f172a;

    transition:0.3s;
}

.nav-links a:hover{
    color:#2563eb;
}


/* RESPONSIVE */
@media(max-width:700px) {
    /*MENU*/
.floating-menu{
    position:fixed;
    bottom:30px;
    right:30px;
    z-index:999;
}

/* FLOATING BUTTON FIX */
#menu-btn{
    width:60px;
    height:60px;

    border:none;
    border-radius:18px;

    background:#0f172a;
    color:white;

    font-size:28px;

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

    cursor:pointer;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.2);
}

.support-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 20px;
    background:#facc15;
    color:#111;
    border-radius:14px;
    font-weight:600;
    transition:0.3s;
}

.support-btn:hover{
    transform:translateY(-3px);
}

.menu-content{
    position:absolute;
    bottom:80px;
    right:0;

    background:white;
    padding:15px;
    border-radius:20px;

    display:none;
    flex-direction:column;
    gap:10px;

    min-width:180px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.1);
}

.menu-content a{
    color:#0f172a;
    padding:10px;
    border-radius:12px;
    transition:0.3s;
}

.menu-content a:hover{
    background:#eff6ff;
    color:#2563eb;
}

.footer a{
    display:block;
    color:#cbd5e1;
    margin-top:10px;
}
}

/* RESPONSIVE */
@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        
        gap: 25px;
    }
    
    .nav-btn{
        margin-left:0;
    }

    .floating-menu{
        display:block;
    }

    .logo h2{
        font-size:1.7rem;
        text-align:center;
    }

}

/* SECTION */
section{
    padding:90px 10%;
}

/* ABOUT */
.about{
    position:relative;
}

/* CONTAINER */
.about-container{
    display:flex;
    flex-direction:column;
    gap:40px;
}

/* ABOUT TITLE */
.about-title{
    background:white;

    padding:45px;

    border-radius:30px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.about-title h2{
    font-size:2.7rem;
    color:var(--dark);

    margin-bottom:20px;
}

.about-title p{
    color:#64748b;

    line-height:1.9;

    margin-bottom:15px;
}

/* VISION & MISSION */
.vision-mission{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.vision,
.mission{
    background:white;

    padding:35px;

    border-radius:25px;

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

    transition:0.3s;
}

.vision:hover,
.mission:hover{
    transform:translateY(-8px);
}

.vision h3,
.mission h3{
    color:var(--primary);

    font-size:1.8rem;

    margin-bottom:20px;
}

.vision p{
    color:#64748b;

    line-height:1.8;
}

.mission ul{
    display:flex;
    flex-direction:column;

    gap:15px;
}

.mission li{
    color:#64748b;

    line-height:1.7;

    padding-left:15px;

    border-left:
    3px solid var(--primary);
}



/* SERVICES */
.services{
    background:white;

    padding:45px;

    border-radius:30px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.services h3{
    font-size:2rem;

    color:var(--dark);

    margin-bottom:30px;
}

.service-list{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;
}

.service-box{
    background:#eff6ff;

    padding:25px 20px;

    border-radius:20px;

    text-align:center;

    color:var(--primary);

    font-weight:600;

    transition:0.3s;
}

.service-box:hover{
    background:var(--primary);

    color:white;

    transform:translateY(-5px);
}

/* WHY US */
.why-us{
    background:var(--dark);

    padding:45px;

    border-radius:30px;

    color:white;
}

.why-us h3{
    font-size:2rem;

    margin-bottom:30px;
}

.why-us ul{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;
}

.why-us li{
    background:
    rgba(255,255,255,0.08);

    padding:20px;

    border-radius:18px;

    line-height:1.7;
}

/* CLOSING */
.closing{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    text-align:center;

    padding:55px 35px;

    border-radius:30px;

    box-shadow:
    0 10px 30px rgba(37,99,235,0.25);
}

.closing p{
    line-height:1.9;

    font-size:1.05rem;
}

/* FOOTER */
.footer{
    background:var(--dark);
    color:white;
    text-align:center;

    margin-top:100px;
}

.footer-container{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));
    text-align:center;
    gap:40px;

    padding:80px 10%;
}

/* LOGO */
.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    flex-direction: column;

    margin-bottom:20px;
}

.footer-logo img{
    width:45px;
}

.footer-logo h2{
    font-size:1.4rem;
}

/* TEXT */
.footer p{
    color:#94a3b8;
    line-height:1.8;
}

/* TITLE */
.footer h3{
    margin-bottom:20px;
    font-size:1.2rem;
}

/* LINKS */
.footer a{
    display:block;

    color:#cbd5e1;

    margin-bottom:14px;

    transition:0.3s;
    
    text-align:center;
}

.footer a:hover{
    color:white;
    transform:translateX(5px);
}

/* SUPPORT BUTTON */
.support-btn{
    display:inline-block;

    margin-top:15px;
    padding:12px 22px;

    background:#facc15;
    color:#111 !important;

    border-radius:14px;

    font-weight:600;
}

.support-btn:hover{
    transform:translateY(-3px) !important;
}

/* FOOTER BOTTOM */
.footer-bottom{
    border-top:
    1px solid rgba(255,255,255,0.08);

    text-align:center;

    padding:25px;
}

.footer-bottom p{
    color:#64748b;
    font-size:0.95rem;
}

/* MOBILE */
@media(max-width:900px){

    .floating-menu{
        display:block;

        position:fixed;

        bottom:25px;
        right:25px;

        z-index:9999;
    }

    #menu-btn{
        width:60px;
        height:60px;

        border:none;
        border-radius:18px;

        background:#0f172a;
        color:white;

        font-size:28px;

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

        cursor:pointer;
    }

}


/* RESPONSIVE */
@media(max-width:900px){

    section{
        padding:80px 8%;
    }

    .about-title h2{
        font-size:2.2rem;
    }

}

@media(max-width:600px){

    section{
        padding:70px 7%;
    }

    .about-title,
    .vision,
    .mission,
    .services,
    .why-us,
    .closing{
        padding:30px 25px;
    }

    .about-title h2{
        font-size:2rem;
    }

    .services h3,
    .why-us h3{
        font-size:1.7rem;
    }

}

/* DESKTOP */
@media(min-width:901px){

    .floating-menu{
        display:none;
    }

}
