/*==================================================
  LANDING PAGE PREMIUM
  Bootstrap 5
  Author : ChatGPT
==================================================*/

/*==========================
  GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;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;

    overflow-x:hidden;

    background:#0f2027;

    color:#ffffff;

    line-height:1.7;

}

/*==========================
 ROOT VARIABLES
==========================*/

:root{

    --primary:#0d6efd;
    --secondary:#6610f2;

    --success:#198754;
    --danger:#dc3545;
    --warning:#ffc107;

    --light:#ffffff;
    --dark:#111827;

    --text:#f8fafc;

    --glass:rgba(255,255,255,.08);

    --glass2:rgba(255,255,255,.15);

    --shadow:0 15px 35px rgba(0,0,0,.30);

    --radius:20px;

    --transition:.4s ease;

}

/*==========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#06121b;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        180deg,
        #0d6efd,
        #6610f2
    );

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0d6efd;

}

/*==========================
ANIMATED BACKGROUND
==========================*/

body{

    background:linear-gradient(
        -45deg,
        #0F2027,
        #203A43,
        #2C5364,
        #0d6efd,
        #6610f2
    );

    background-size:500% 500%;

    animation:bgAnimation 15s ease infinite;

}

@keyframes bgAnimation{

0%{

background-position:0% 50%;

}

25%{

background-position:50% 100%;

}

50%{

background-position:100% 50%;

}

75%{

background-position:50% 0%;

}

100%{

background-position:0% 50%;

}

}

/*==========================
BACKGROUND OVERLAY
==========================*/

body::before{

content:"";

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:

radial-gradient(circle at top right,
rgba(255,255,255,.12),
transparent 40%),

radial-gradient(circle at bottom left,
rgba(13,110,253,.20),
transparent 35%),

radial-gradient(circle at center,
rgba(102,16,242,.15),
transparent 60%);

pointer-events:none;

z-index:-1;

}

/*==========================
SECTION
==========================*/

section{

padding:100px 0;

position:relative;

}

/*==========================
NAVBAR
==========================*/

.navbar{

transition:.5s;

padding:18px 0;

background:transparent;

}

.navbar.scrolled{

background:rgba(10,20,40,.85);

backdrop-filter:blur(20px);

box-shadow:0 5px 25px rgba(0,0,0,.35);

padding:12px 0;

}

.navbar-brand{

display:flex;

align-items:center;

font-size:24px;

font-weight:700;

color:#fff !important;

}

.navbar-brand img{

height:48px;

margin-right:12px;

}

.navbar-nav .nav-link{

color:#fff;

font-weight:500;

margin-left:15px;

position:relative;

transition:.3s;

}

.navbar-nav .nav-link:hover{

color:#fff;

}

.navbar-nav .nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:#fff;

transition:.3s;

}

.navbar-nav .nav-link:hover::after{

width:100%;

}

/*==========================
BUTTON
==========================*/

.btn-primary{

background:linear-gradient(
45deg,
#0d6efd,
#6610f2
);

border:none;

border-radius:50px;

padding:14px 35px;

font-weight:600;

box-shadow:0 10px 30px rgba(13,110,253,.4);

transition:.4s;

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(13,110,253,.6);

}

/*==========================
HERO
==========================*/

.hero{

min-height:100vh;

display:flex;

align-items:center;

position:relative;

overflow:hidden;

}

.hero h1{

font-size:65px;

font-weight:800;

line-height:1.2;

margin-bottom:25px;

}

.hero p{

font-size:20px;

opacity:.9;

margin-bottom:35px;

max-width:650px;

}

.hero-buttons .btn{

margin-right:15px;

margin-top:10px;

}

/*==========================
FLOATING CIRCLE
==========================*/

.circle{

position:absolute;

border-radius:50%;

filter:blur(80px);

opacity:.35;

animation:floating 10s infinite alternate;

}

.circle.one{

width:300px;
height:300px;

background:#0d6efd;

top:-100px;
right:-80px;

}

.circle.two{

width:250px;
height:250px;

background:#6610f2;

bottom:-100px;
left:-50px;

}

@keyframes floating{

0%{

transform:translateY(0px);

}

100%{

transform:translateY(50px);

}

}

/*==========================
CAROUSEL
==========================*/

.carousel{

border-radius:0px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.carousel-item img{

height:600px;

object-fit:cover;

}

.carousel-caption{

background:rgba(0,0,0,.35);

backdrop-filter:blur(8px);

padding:30px;

border-radius:20px;

bottom:60px;

}

.carousel-caption h2{

font-size:45px;

font-weight:700;

}

.carousel-caption p{

font-size:18px;

}

/*==========================
GLASS EFFECT
==========================*/

.glass{

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(20px);

-webkit-backdrop-filter:blur(20px);

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.35);

transition:.4s;

}

.glass:hover{

transform:translateY(-8px);

background:rgba(255,255,255,.12);

box-shadow:0 25px 50px rgba(0,0,0,.45);

}

/*==========================
TEXT GRADIENT
==========================*/

.text-gradient{

background:linear-gradient(
90deg,
#6ea8fe,
#8b5cf6,
#38bdf8
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

/*==========================
UTILITY
==========================*/

.shadow-xl{

box-shadow:0 20px 50px rgba(0,0,0,.40);

}

.rounded-xl{

border-radius:25px;

}

.py-120{

padding-top:120px;
padding-bottom:120px;

}

.mt-40{

margin-top:40px;

}

/*==================================================
=           APPLICATION CARD SECTION
==================================================*/

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.7rem;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    color:rgba(255,255,255,.75);
    max-width:700px;
    margin:auto;
}

.app-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:25px;

    padding:35px;

    transition:.4s;

    height:100%;

    cursor:pointer;

}

.app-card::before{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-70px;

    right:-70px;

    transition:.5s;

}

.app-card:hover::before{

    transform:scale(1.8);

}

.app-card:hover{

    transform:translateY(-12px);

    border-color:rgba(255,255,255,.30);

    box-shadow:

        0 20px 40px rgba(0,0,0,.35),

        0 0 25px rgba(13,110,253,.35);

}

.app-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    background:linear-gradient(135deg,#0d6efd,#6610f2);

    color:#fff;

    margin-bottom:25px;

    transition:.4s;

}

.app-card:hover .app-icon{

    transform:rotate(15deg) scale(1.12);

}

.app-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.app-card p{

    color:rgba(255,255,255,.78);

    font-size:.95rem;

    margin-bottom:20px;

}

.app-link{

    color:#fff;

    font-weight:600;

    text-decoration:none;

}

.app-link i{

    margin-left:8px;

    transition:.3s;

}

.app-link:hover i{

    transform:translateX(6px);

}


/*==================================================
=               BUTTON PREMIUM
==================================================*/

.btn-premium{

    background:linear-gradient(135deg,#0d6efd,#6610f2);

    color:#fff;

    padding:14px 34px;

    border-radius:50px;

    border:none;

    font-weight:600;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.btn-premium:hover{

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(13,110,253,.45);

}

.btn-premium::after{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    left:0;

    top:0;

    background:rgba(255,255,255,.18);

    transition:.4s;

}

.btn-premium:hover::after{

    width:100%;

}

.btn-outline-light{

    border-radius:50px;

    padding:14px 34px;

}


/*==================================================
=               STATISTIC
==================================================*/

.statistics{

    position:relative;

}

.stat-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:40px 25px;

    transition:.4s;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.stat-icon{

    font-size:45px;

    color:#5ea4ff;

    margin-bottom:18px;

}

.stat-number{

    font-size:3rem;

    font-weight:700;

    margin-bottom:5px;

}

.stat-text{

    color:rgba(255,255,255,.75);

}


/*==================================================
=               HOVER EFFECT
==================================================*/

.hover-scale{

    transition:.35s;

}

.hover-scale:hover{

    transform:scale(1.04);

}

.hover-lift{

    transition:.4s;

}

.hover-lift:hover{

    transform:translateY(-10px);

}

.hover-glow:hover{

    box-shadow:

    0 0 25px rgba(13,110,253,.35),

    0 0 50px rgba(102,16,242,.25);

}

.icon-hover{

    transition:.35s;

}

.icon-hover:hover{

    transform:rotate(15deg) scale(1.2);

    color:#5ea4ff;

}


/*==================================================
=                   FOOTER
==================================================*/

footer{

    position:relative;

    padding:70px 0 20px;

    margin-top:100px;

    background:rgba(0,0,0,.25);

    backdrop-filter:blur(18px);

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-brand{

    font-size:28px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-text{

    color:rgba(255,255,255,.75);

    margin-bottom:25px;

}

.footer-title{

    font-weight:600;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:8px;

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.social-links a:hover{

    transform:translateY(-6px);

    background:#0d6efd;

}

.footer-bottom{

    margin-top:60px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:rgba(255,255,255,.65);

}


/*==================================================
=               RESPONSIVE
==================================================*/

@media(max-width:1200px){

.hero h1{

font-size:54px;

}

.carousel-item img{

height:500px;

}

}

@media(max-width:992px){

.navbar{

padding:15px;

}

.hero{

text-align:center;

padding-top:120px;

}

.hero h1{

font-size:44px;

}

.hero p{

margin:auto auto 30px;

}

.hero-buttons{

justify-content:center;

}

.carousel{

margin-top:40px;

}

.carousel-item img{

height:420px;

}

.section-title h2{

font-size:2.2rem;

}

.stat-number{

font-size:2.4rem;

}

}

@media(max-width:768px){

.hero{

min-height:auto;

padding:120px 0 80px;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:16px;

}

.section{

padding:70px 0;

}

.carousel-item img{

height:300px;

}

.carousel-caption{

bottom:20px;

padding:15px;

}

.carousel-caption h2{

font-size:24px;

}

.carousel-caption p{

display:none;

}

.app-card{

padding:25px;

}

.app-icon{

width:70px;

height:70px;

font-size:30px;

}

.footer-brand{

font-size:22px;

}

.social-links{

justify-content:center;

}

}

@media(max-width:576px){

.hero h1{

font-size:30px;

}

.section-title h2{

font-size:1.8rem;

}

.btn-premium,

.btn-primary,

.btn-outline-light{

width:100%;

margin-bottom:12px;

}

.stat-number{

font-size:2rem;

}

.carousel-item img{

height:240px;

}

.navbar-brand{

font-size:20px;

}

.navbar-brand img{

height:40px;

}

footer{

text-align:center;

}

.footer-links{

margin-bottom:30px;

}

}

/*==================================================
=           BAGIAN 2C - PREMIUM EFFECT
==================================================*/


/*==================================================
=           LOADER
==================================================*/

#preloader{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:#0F2027;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:.5s;

}

.loader{

    width:70px;

    height:70px;

    border-radius:50%;

    border:6px solid rgba(255,255,255,.15);

    border-top:6px solid var(--primary);

    animation:loaderRotate .8s linear infinite;

}

@keyframes loaderRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

.loaded{

    opacity:0;

    visibility:hidden;

}



/*==================================================
=          FLOATING SHAPES
==================================================*/

.shape{

    position:absolute;

    border-radius:50%;

    filter:blur(30px);

    opacity:.25;

    animation:float 10s ease-in-out infinite alternate;

}

.shape-1{

    width:220px;

    height:220px;

    background:#0d6efd;

    top:10%;

    left:-100px;

}

.shape-2{

    width:170px;

    height:170px;

    background:#6610f2;

    right:-70px;

    top:40%;

}

.shape-3{

    width:250px;

    height:250px;

    background:#0dcaf0;

    bottom:-120px;

    left:35%;

}

@keyframes float{

    0%{

        transform:translateY(0) rotate(0deg);

    }

    100%{

        transform:translateY(-50px) rotate(25deg);

    }

}



/*==================================================
=           FADE ANIMATION
==================================================*/

.fade-up{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



.fade-left{

    animation:fadeLeft .9s ease both;

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}



.fade-right{

    animation:fadeRight .9s ease both;

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}



.zoom-in{

    animation:zoomIn .7s ease;

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.8);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}



/*==================================================
=           PULSE
==================================================*/

.pulse{

    animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.05);

}

100%{

transform:scale(1);

}

}



/*==================================================
=           ROTATE
==================================================*/

.rotate:hover{

    transform:rotate(8deg);

}



/*==================================================
=           SHADOW
==================================================*/

.shadow-primary{

    box-shadow:

    0 15px 40px rgba(13,110,253,.35);

}

.shadow-secondary{

    box-shadow:

    0 15px 40px rgba(102,16,242,.35);

}



/*==================================================
=           RIPPLE EFFECT
==================================================*/

.ripple{

    position:relative;

    overflow:hidden;

}

.ripple::before{

    content:"";

    position:absolute;

    width:0;

    height:0;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    transform:translate(-50%,-50%);

    transition:.7s;

}

.ripple:hover::before{

    width:500px;

    height:500px;

}



/*==================================================
=           DARK MODE
==================================================*/

body.dark{

    background:#05070b;

    color:#fff;

}

body.dark .navbar{

    background:rgba(5,8,15,.85);

}

body.dark .glass,

body.dark .app-card,

body.dark .stat-card{

    background:rgba(20,20,30,.75);

    border-color:rgba(255,255,255,.08);

}

body.dark footer{

    background:#030508;

}

body.dark .btn-premium{

    background:linear-gradient(

        45deg,

        #2563eb,

        #7c3aed

    );

}



/*==================================================
=           GLASS EXTRA
==================================================*/

.glass-light{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    border-radius:25px;

    border:1px solid rgba(255,255,255,.18);

}

.glass-dark{

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(18px);

}



/*==================================================
=           BORDER GRADIENT
==================================================*/

.border-gradient{

    position:relative;

}

.border-gradient::before{

content:"";

position:absolute;

inset:-2px;

background:linear-gradient(

45deg,

#0d6efd,

#6610f2,

#00d4ff,

#0d6efd

);

border-radius:inherit;

z-index:-1;

background-size:300%;

animation:borderMove 8s linear infinite;

}

@keyframes borderMove{

0%{

background-position:0%;

}

100%{

background-position:300%;

}

}



/*==================================================
=           BACK TO TOP
==================================================*/

.back-to-top{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

border-radius:50%;

background:linear-gradient(

45deg,

#0d6efd,

#6610f2

);

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:22px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.4s;

z-index:999;

}

.back-to-top.show{

opacity:1;

visibility:visible;

}

.back-to-top:hover{

transform:translateY(-6px);

}



/*==================================================
=           UTILITIES
==================================================*/

.text-white-75{

color:rgba(255,255,255,.75);

}

.text-white-50{

color:rgba(255,255,255,.50);

}

.bg-glass{

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

}

.radius-10{

border-radius:10px;

}

.radius-15{

border-radius:15px;

}

.radius-20{

border-radius:20px;

}

.radius-25{

border-radius:25px;

}

.radius-30{

border-radius:30px;

}

.fw-600{

font-weight:600;

}

.fw-700{

font-weight:700;

}

.fw-800{

font-weight:800;

}

.mt-100{

margin-top:100px;

}

.mb-100{

margin-bottom:100px;

}

.py-100{

padding-top:100px;

padding-bottom:100px;

}

.opacity-75{

opacity:.75;

}

.opacity-50{

opacity:.5;

}

.transition{

transition:.35s;

}

.cursor{

cursor:pointer;

}

.z-1{

z-index:1;

position:relative;

}

.z-2{

z-index:2;

position:relative;

}

.overflow-hidden{

overflow:hidden;

}

