
/* =====================================================
   Landing Home CSS
   Khusus index.php
   Tidak mengubah style.css
   ===================================================== */

.landing-page{
    background:#eef4fb;
}

.lkm-header{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid #e8eef7;
    position:sticky;
    top:0;
    z-index:1000;
}

.lkm-header h3{
    font-size:1.35rem;
    font-weight:700;
    color:#0F3D91;
    margin:0;
}

.lkm-header small{
    color:#5d6b82;
}

.carousel{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.carousel-item{
    height:560px;
}

.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1);
    transition:transform 8s linear;
}

.carousel-item.active img{
    transform:scale(1.08);
}

.carousel-caption{
    left:40px;
    right:40px;
    bottom:40px;
    text-align:left;
    background:linear-gradient(transparent,rgba(0,0,0,.65));
    padding:30px;
    border-radius:20px;
}

.carousel-caption h2{
    font-size:2.2rem;
    font-weight:700;
}

.carousel-caption p{
    font-size:1.05rem;
}

.landing-page .card{
    border:none;
    border-radius:20px;
    transition:.35s;
    color:#2b2b2b;
}

.landing-page .card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,61,145,.18)!important;
    background:#0F3D91;
    color:#fff;
}

.landing-page .card i{
    width:64px;
    height:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e9f2ff;
    color:#0F3D91;
    font-size:1.8rem;
    transition:.3s;
}

.landing-page .card:hover i{
    background:#fff;
}

.landing-page .card small{
    color:#6c757d;
}

.landing-page .card:hover small{
    color:#dce8ff;
}

section h3{
    color:#0F3D91;
    font-weight:700;
}

.card-img-top{
    height:210px;
    object-fit:cover;
}

footer{
    background:#0b2447!important;
}

@media (max-width:991.98px){

    .carousel-item{
        height:380px;
    }

    .carousel-caption{
        left:20px;
        right:20px;
        bottom:20px;
        padding:20px;
    }

    .lkm-header .d-flex{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .lkm-header .btn{
        width:100%;
    }

}

@media (max-width:576px){

    .carousel-item{
        height:250px;
    }

    .carousel-caption h2{
        font-size:1.4rem;
    }

    .carousel-caption p{
        font-size:.9rem;
    }

    .landing-page .card{
        padding:1rem!important;
    }

    .landing-page .card i{
        width:52px;
        height:52px;
        font-size:1.4rem;
    }
}
/*=====================
    LANDING BACKGROUND
======================*/

body.landing-page{

    background:
    radial-gradient(circle at top left,
        rgba(13,110,253,.10) 0%,
        transparent 35%),

    radial-gradient(circle at top right,
        rgba(30,136,229,.08) 0%,
        transparent 30%),

    radial-gradient(circle at bottom right,
        rgba(13,110,253,.10) 0%,
        transparent 35%),

    linear-gradient(
        180deg,
        #fdfefe 0%,
        #eef5ff 50%,
        #f7fbff 100%
    );

    background-attachment:fixed;

}
body.landing-page::before{

    content:"";

    position:fixed;

    top:-150px;
    right:-150px;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(13,110,253,.08);

    filter:blur(90px);

    z-index:-1;

}

body.landing-page::after{

    content:"";

    position:fixed;

    bottom:-180px;
    left:-180px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(30,136,229,.08);

    filter:blur(100px);

    z-index:-1;

}
/*==================================================
  LANDING CONTENT BACKGROUND
==================================================*/

.lkm-home{

    position:relative;

    background:linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef5ff 50%,
        #f9fbff 100%
    );

    border-radius:30px;

    padding:25px;

    overflow:hidden;

}
.lkm-home::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    top:-120px;
    right:-100px;

    border-radius:50%;

    background:rgba(13,110,253,.06);

    filter:blur(80px);

}

.lkm-home::after{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    bottom:-80px;
    left:-100px;

    border-radius:50%;

    background:rgba(30,136,229,.06);

    filter:blur(80px);

}
