/* ==========================================================
   KOSKU WEBSITE
   Premium Style v2.0
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* ==========================================================
   ROOT COLOR
========================================================== */

:root{

    --primary:#5B4BFF;
    --secondary:#7C3AED;
    --success:#10B981;
    --warning:#F59E0B;
    --danger:#EF4444;

    --dark:#1E293B;
    --text:#475569;
    --light:#F8FAFC;

    --white:#FFFFFF;

}


/* ==========================================================
   RESET
========================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

    font-family:'Poppins',sans-serif;

}

html{

    scroll-behavior:smooth;

}

body{

    background:linear-gradient(180deg,#f8faff,#eef2ff);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}


/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(180deg,#5B4BFF,#7C3AED);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#4F46E5;

}


/* ==========================================================
   LINK
========================================================== */

a{

    text-decoration:none;

    transition:.3s;

}

a:hover{

    text-decoration:none;

}


/* ==========================================================
   SECTION
========================================================== */

section{

    padding:90px 0;

}


/* ==========================================================
   CONTAINER
========================================================== */

.container{

    position:relative;

    z-index:2;

}


/* ==========================================================
   NAVBAR
========================================================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

}

.navbar.scrolled{

    padding:8px 0;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}


/* ==========================================================
   BRAND
========================================================== */

.navbar-brand{

    font-size:30px;

    font-weight:800;

    color:var(--primary)!important;

    letter-spacing:.5px;

}

.navbar-brand span{

    color:var(--secondary);

}


/* ==========================================================
   MENU
========================================================== */

.navbar-nav{

    align-items:center;

    gap:10px;

}

.navbar-nav .nav-link{

    color:#555;

    font-weight:500;

    padding:10px 18px !important;

    border-radius:30px;

    transition:.35s;

}

.navbar-nav .nav-link:hover{

    color:white;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

}

.navbar-nav .active{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:white!important;

}


/* ==========================================================
   LOGIN BUTTON
========================================================== */

.btn-login{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:white;

    padding:12px 28px;

    border-radius:50px;

    font-weight:600;

    box-shadow:0 12px 30px rgba(91,75,255,.30);

    transition:.35s;

}

.btn-login:hover{

    color:white;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(91,75,255,.40);

}


/* ==========================================================
   HERO SECTION
========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding-top:120px;

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(91,75,255,.08);

    top:-180px;

    right:-120px;

    filter:blur(20px);

}

.hero::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(124,58,237,.08);

    bottom:-120px;

    left:-100px;

    filter:blur(20px);

}


/* ==========================================================
   HERO TEXT
========================================================== */

.hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.2;

    color:var(--dark);

    margin-bottom:25px;

}

.hero h1 span{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    -webkit-background-clip:text;
    background-clip: text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    font-size:18px;

    color:#64748B;

    margin-bottom:35px;

    max-width:560px;

}


/* ==========================================================
   HERO BUTTON
========================================================== */

.hero-btn{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary-custom{

    padding:15px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:white;

    font-weight:600;

    box-shadow:0 15px 35px rgba(91,75,255,.30);

    transition:.35s;

}

.btn-primary-custom:hover{

    color:white;

    transform:translateY(-4px);

    box-shadow:0 22px 40px rgba(91,75,255,.40);

}

.btn-outline-custom{

    padding:15px 34px;

    border-radius:50px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:600;

    background:white;

    transition:.35s;

}

.btn-outline-custom:hover{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:white;

    border-color:transparent;

}


/* ==========================================================
   HERO IMAGE
========================================================== */

.hero-image{

    position:relative;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    animation:floatImage 5s ease-in-out infinite;

}


/* ==========================================================
   FLOATING CARD
========================================================== */

.float-card{

    position:absolute;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    border-radius:22px;

    padding:18px 22px;

    box-shadow:0 18px 40px rgba(0,0,0,.10);

    animation:floating 4s ease-in-out infinite;

}

.float-card i{

    font-size:28px;

    color:var(--primary);

    margin-right:10px;

}

.float-card h5{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:var(--dark);

}

.float-card small{

    color:#64748B;

}

.float-top{

    top:20px;

    left:-20px;

}

.float-bottom{

    bottom:25px;

    right:-10px;

}


/* ==========================================================
   HERO STATISTIC
========================================================== */

.hero-stat{

    display:flex;

    gap:35px;

    margin-top:45px;

    flex-wrap:wrap;

}

.hero-stat .item h2{

    margin:0;

    font-size:34px;

    font-weight:700;

    color:var(--primary);

}

.hero-stat .item span{

    color:#64748B;

    font-size:15px;

}


/* ==========================================================
   ANIMATION
========================================================== */

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes floating{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ==========================================================
   FEATURES SECTION
========================================================== */

.features{

    position:relative;

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    font-weight:800;

    color:var(--dark);

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#64748B;

    font-size:17px;

}


/* ==========================================================
   FEATURE CARD
========================================================== */

.feature-card{

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    border-radius:28px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.6);

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    height:100%;

    overflow:hidden;

    position:relative;

}

.feature-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}


/* ==========================================================
   FEATURE ICON
========================================================== */

.feature-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    color:#fff;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    box-shadow:0 15px 35px rgba(91,75,255,.25);

    transition:.35s;

}

.feature-card:hover .feature-icon{

    transform:rotateY(180deg);

}


/* ==========================================================
   FEATURE TEXT
========================================================== */

.feature-card h4{

    font-size:23px;

    font-weight:700;

    color:var(--dark);

    margin-bottom:15px;

}

.feature-card p{

    color:#64748B;

    font-size:15px;

    margin:0;

}


/* ==========================================================
   STATISTIC SECTION
========================================================== */

.statistics{

    padding:90px 0;

}

.stat-card{

    background:#fff;

    border-radius:25px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card i{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#fff;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

}

.stat-card h2{

    font-size:42px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:10px;

}

.stat-card span{

    color:#64748B;

    font-size:16px;

}


/* ==========================================================
   GLASS CARD
========================================================== */

.glass-card{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    border-radius:25px;

    border:1px solid rgba(255,255,255,.6);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}


/* ==========================================================
   ANIMATION
========================================================== */

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ==========================================================
   FOOTER
========================================================== */

.footer{

    position:relative;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    padding:70px 0 25px;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-150px;

    right:-100px;

}

.footer::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-100px;

    left:-80px;

}

.footer h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

}

.footer p{

    color:rgba(255,255,255,.85);

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:rgba(255,255,255,.85);

    transition:.3s;

}

.footer ul li a:hover{

    color:#fff;

    padding-left:8px;

}

.footer hr{

    border-color:rgba(255,255,255,.2);

    margin:35px 0 20px;

}

.footer-bottom{

    text-align:center;

    color:rgba(255,255,255,.8);

    font-size:15px;

}


/* ==========================================================
   SOCIAL ICON
========================================================== */

.social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:20px;

    transition:.35s;

}

.social a:hover{

    background:#fff;

    color:var(--primary);

    transform:translateY(-6px);

}


/* ==========================================================
   BACK TO TOP
========================================================== */

#toTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    font-size:22px;

    display:none;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    box-shadow:0 18px 35px rgba(91,75,255,.35);

    transition:.35s;

    z-index:999;

}

#toTop:hover{

    transform:translateY(-6px);

}


/* ==========================================================
   IMAGE
========================================================== */

img{

    max-width:100%;

    height:auto;

}


/* ==========================================================
   UTILITIES
========================================================== */

.rounded-xl{

    border-radius:25px;

}

.shadow-soft{

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.bg-gradient{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

}

.text-gradient{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    -webkit-background-clip:text;
    background-clip: text;

    -webkit-text-fill-color:transparent;

}


/* ==========================================================
   RESPONSIVE TABLET
========================================================== */

@media (max-width:991px){

    .hero{

        text-align:center;

        padding-top:150px;

    }

    .hero h1{

        font-size:46px;

    }

    .hero p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-btn{

        justify-content:center;

    }

    .hero-stat{

        justify-content:center;

    }

    .hero-image{

        margin-top:50px;

    }

    .float-card{

        display:none;

    }

}


/* ==========================================================
   RESPONSIVE MOBILE
========================================================== */

@media (max-width:768px){

    section{

        padding:70px 0;

    }

    .navbar-brand{

        font-size:24px;

    }

    .hero{

        min-height:auto;

    }

    .hero h1{

        font-size:36px;

    }

    .hero p{

        font-size:16px;

    }

    .section-title h2{

        font-size:32px;

    }

    .feature-card{

        padding:30px 20px;

    }

    .stat-card{

        margin-bottom:25px;

    }

    .footer{

        text-align:center;

    }

    .social{

        justify-content:center;

    }

}


/* ==========================================================
   RESPONSIVE MOBILE KECIL
========================================================== */

@media (max-width:576px){

    .hero h1{

        font-size:30px;

    }

    .btn-login,

    .btn-primary-custom,

    .btn-outline-custom{

        width:100%;

        text-align:center;

    }

    .hero-btn{

        flex-direction:column;

    }

    .hero-stat{

        flex-direction:column;

        gap:20px;

        text-align:center;

    }

    .feature-icon{

        width:75px;

        height:75px;

        font-size:30px;

    }

    .stat-card h2{

        font-size:34px;

    }

}