/* =====================================================
   ASKA MANIA
   MAIN STYLESHEET
   Version : 1.0
===================================================== */

/* =====================================================
   GOOGLE FONT
===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;

    background:
    radial-gradient(circle at top right,#dbeeff 0%,transparent 35%),
    radial-gradient(circle at bottom left,#cde9ff 0%,transparent 35%),
    #f7fbff;

    color:#1e293b;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

    text-rendering:optimizeLegibility;
}

/* =====================================================
   ROOT COLOR
===================================================== */

:root{

    --primary:#0066ff;
    --primary-light:#4fc3ff;
    --secondary:#7dd3fc;

    --dark:#0f172a;
    --gray:#64748b;
    --light:#f8fbff;
    --white:#ffffff;

    --radius:25px;

    --shadow:
    0 10px 30px rgba(0,102,255,.08);

    --shadow-hover:
    0 25px 60px rgba(0,102,255,.18);

    --transition:.35s ease;

}

/* =====================================================
   DEFAULT
===================================================== */

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

ul{
    list-style:none;
}

section{
    position:relative;
}

::selection{
    background:var(--primary);
    color:#fff;
}

/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#edf5ff;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#0050d4;
}

/* =====================================================
   CONTAINER
===================================================== */

.container{

    width:100%;

    max-width:1300px;

    margin:auto;

    padding:0 20px;

}

/* =====================================================
   NAVBAR
===================================================== */
/* =====================================================
   MODERN NAVBAR
===================================================== */

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    background:rgba(255,255,255,.75);
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border-bottom:1px solid rgba(0,102,255,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s ease;

}

/* efek saat scroll nanti (opsional class JS) */
.navbar.scrolled{
    background:rgba(255,255,255,.92);
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.nav-container{

    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:16px 22px;

}

/* LOGO */
.logo{

    font-size:28px;
    font-weight:800;

    background:linear-gradient(135deg,#0066ff,#4fc3ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    letter-spacing:1px;

}

/* MENU */
.menu{

    display:flex;
    align-items:center;
    gap:28px;

}

.menu a{

    position:relative;

    font-weight:600;
    font-size:15px;

    color:#334155;

    transition:.3s;

}

/* underline animation */
.menu a::after{

    content:"";
    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:#0066ff;

    transition:.3s;

}

.menu a:hover{

    color:#0066ff;

}

.menu a:hover::after{

    width:100%;

}

/* WHATSAPP BUTTON */
.menu .btn{

    padding:10px 18px;
    border-radius:50px;

    background:linear-gradient(135deg,#0066ff,#4fc3ff);
    color:#fff !important;

    box-shadow:0 10px 25px rgba(0,102,255,.25);

    transition:.3s;

}

.menu .btn:hover{

    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,102,255,.35);

}

/* MOBILE */
@media(max-width:768px){

    .menu{
        display:none;
    }

}
/* =====================================================
   LOGO
===================================================== */

.logo{

    font-size:30px;

    font-weight:800;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* =====================================================
   MENU
===================================================== */

.menu{

    display:flex;

    align-items:center;

    gap:30px;

}

.menu a{

    position:relative;

    color:#334155;

    font-weight:600;

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.menu a:hover{

    color:var(--primary);

}

.menu a:hover::after{

    width:100%;

}
/* =====================================================
   HERO
===================================================== */

.hero{

    position:relative;

    overflow:hidden;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(
    135deg,
    #0066ff 0%,
    #3aa7ff 100%
    );

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-250px;
    right:-250px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    bottom:-180px;
    left:-180px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

}

.hero-container{

    position:relative;

    z-index:2;

    width:100%;

    max-width:1300px;

    margin:auto;

    padding:
    130px
    20px
    80px;

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    align-items:center;

    gap:70px;

}

/* =====================================================
   HERO TEXT
===================================================== */

.hero-text h1{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    color:#fff;

    margin-bottom:25px;

}

.hero-text h1 span{

    color:#dff3ff;

}

.hero-text p{

    font-size:18px;

    line-height:1.9;

    color:
    rgba(255,255,255,.92);

    margin-bottom:35px;

    max-width:620px;

}

/* =====================================================
   BUTTON
===================================================== */

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:
    15px
    35px;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

}

.btn-primary{

    background:#fff;

    color:#0066ff;

    box-shadow:
    0 15px 35px
    rgba(255,255,255,.25);

}

.btn-primary:hover{

    transform:
    translateY(-5px);

}

.btn-outline{

    margin-left:15px;

    border:
    2px solid
    rgba(255,255,255,.45);

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:#0066ff;

}

/* =====================================================
   HERO RIGHT
===================================================== */

.hero-logo{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:550px;

}

/* =====================================================
   LOGO CIRCLE
===================================================== */

.logo-circle{

    width:420px;
    height:420px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:

    linear-gradient(

    135deg,

    rgba(255,255,255,.25),

    rgba(255,255,255,.08)

    );

    backdrop-filter:blur(25px);

    border:

    1px solid

    rgba(255,255,255,.25);

    box-shadow:

    0 30px 70px

    rgba(0,0,0,.18);

    animation:
    floating
    4s ease-in-out infinite;

}

.logo-circle img{

    width:320px;

    max-width:85%;

    height:auto;

    object-fit:contain;

    filter:

    drop-shadow(

    0 15px 25px

    rgba(0,0,0,.18)

    );

}

/* =====================================================
   HERO BADGE
===================================================== */

.logo-badge{

    position:absolute;

    background:#fff;

    color:#0066ff;

    font-size:14px;

    font-weight:600;

    padding:
    12px
    18px;

    border-radius:50px;

    box-shadow:

    0 15px 35px

    rgba(0,0,0,.10);

}

.badge1{

    top:80px;

    left:0;

}

.badge2{

    top:170px;

    right:0;

}

.badge3{

    bottom:70px;

    left:40px;

}

/* =====================================================
   HERO CARD
===================================================== */

.hero-card{

    background:

    rgba(255,255,255,.95);

    backdrop-filter:

    blur(25px);

    border-radius:30px;

    padding:40px;

    border:

    1px solid

    rgba(255,255,255,.4);

    box-shadow:

    0 25px 60px

    rgba(0,0,0,.12);

}

.hero-card h3{

    color:#0066ff;

    margin-bottom:20px;

    font-size:24px;

}

.hero-card ul{

    list-style:none;

}

.hero-card li{

    padding:14px 0;

    border-bottom:

    1px solid #eef2f7;

}

.hero-card li:last-child{

    border:none;

}

/* =====================================================
   STATS
===================================================== */

.stats{

    position:relative;

    margin-top:-50px;

    z-index:10;

}

.stats-wrap{

    max-width:1200px;

    margin:auto;

    padding:0 20px;

    display:grid;

    grid-template-columns:

    repeat(4,1fr);

    gap:25px;

}

.stat{

    background:#fff;

    border-radius:25px;

    padding:35px;

    text-align:center;

    border:

    1px solid

    rgba(0,102,255,.08);

    box-shadow:

    var(--shadow);

    transition:.35s;

}

.stat:hover{

    transform:

    translateY(-8px);

    box-shadow:

    var(--shadow-hover);

}

.stat h2{

    font-size:42px;

    color:#0066ff;

    margin-bottom:8px;

}

.stat p{

    color:#64748b;

    font-size:15px;

}

/* =====================================================
   FLOATING
===================================================== */

@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}
/* ==========================================
   HOME SERVICES
========================================== */

.section{

    padding:100px 20px;

}

.section h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    color:#0f172a;

}

.apps{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.card{

    background:#fff;

    padding:40px 35px;

    border-radius:28px;

    border:1px solid rgba(0,102,255,.08);

    box-shadow:0 15px 35px rgba(0,102,255,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(90deg,#0066ff,#4fc3ff);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,102,255,.18);

}

.card h3{

    color:#0066ff;

    margin-bottom:18px;

    font-size:24px;

}

.card p{

    color:#64748b;

    line-height:1.8;

}
