*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    color:#2d3748;

}

/*================ NAVBAR ================*/

.navbar{

    background:#ffffff;
    box-shadow:0 5px 20px rgba(0,0,0,.06);

}

.navbar-brand img{

    width:60px;

}

.nav-link{

    font-weight:500;
    margin-left:10px;

}

.nav-link:hover{

    color:#0d6efd;

}

/*================ HERO ================*/

.hero{

    position: relative;

    overflow: hidden;

    height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 0 90px;

    background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.90)),
    url("../img/bg-blue.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* Overlay */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(13,110,253,.08),
    transparent 40%),

    radial-gradient(circle at bottom left,
    rgba(13,110,253,.08),
    transparent 35%);

    z-index:1;

}

.hero .container{

    position:relative;

    z-index:2;

}

/* Badge */

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    background:#eaf4ff;

    color:#0d6efd;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:20px;

}

/* Judul */

.hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.2;

    color:#17345f;

    margin-bottom:25px;

}

/* Deskripsi */

.hero p{

    font-size:20px;

    line-height:36px;

    color:#5f6772;

    margin-bottom:35px;

}

/* Tombol */

.hero .btn{

    padding:13px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.hero .btn-primary{

    box-shadow:0 10px 30px rgba(13,110,253,.25);

}

.hero .btn:hover{

    transform:translateY(-3px);

}

/* Statistik */

.hero h2{

    font-size:40px;

    font-weight:700;

    color:#0d6efd;

}

.hero .col-4 p{

    font-size:15px;

    color:#6c757d;

    margin-top:5px;

}

/* Gambar */

.hero-image{

    max-width:700px;

    display:block;

    margin:auto;

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.18));

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/*================ USER HERO ================*/

.hero-user{

    min-height: auto;

    padding: 110px 0 70px;

}

.hero-user h1{

    font-size: 52px;

}

/*==================================================
TENTANG
==================================================*/

#tentang{

    padding:100px 0;

    background:#ffffff;

}

#tentang h2{

    font-size:42px;

    color:#1f2d3d;

}

#tentang p{

    line-height:30px;

}

/* Card */

.feature-box{

    background:#ffffff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-10px);

}

.icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:30px;

    margin-bottom:20px;

}

.feature-box h5{

    font-weight:700;

    margin-bottom:15px;

}

.feature-box p{

    color:#666;

    font-size:15px;

    line-height:28px;

}

/*==========================
PENYAKIT
==========================*/

.penyakit{

padding:50px 0;
background:#f7fbff;

}

.section-title{

color:#0d6efd;
font-weight:700;
text-transform:uppercase;
letter-spacing:2px;

}

.disease-card{

background:#fff;
padding:35px;
border-radius:20px;
height:100%;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;

}

.disease-card:hover{

transform:translateY(-10px);

}

.disease-icon{

width:75px;
height:75px;
border-radius:20px;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
color:#fff;
margin-bottom:25px;

}

.disease-card h4{

font-weight:700;
margin-bottom:20px;

}

.disease-card ul{

padding-left:20px;
margin-top:20px;

}

.disease-card li{

margin-bottom:10px;

}

/*==========================
WORKFLOW
==========================*/

.workflow{

padding:50px 0;

}

.step-box{

background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:relative;
height:100%;
transition:.3s;

}

.step-box:hover{

transform:translateY(-8px);

}

.step-box i{

font-size:55px;
color:#0d6efd;
margin:20px 0;

}

.step-number{

position:absolute;
top:-18px;
left:50%;
transform:translateX(-50%);
width:45px;
height:45px;
background:#0d6efd;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-weight:bold;

}

/*==========================
FOOTER
==========================*/

.footer{

padding:30px 0 20px;

background:#0d6efd;

color:#ffffff;

}

.footer h4,
.footer h5{

color:#ffffff;

}

.footer p{

color:#e7e7e7;

line-height:30px;

}

.footer-link{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-link li{
    line-height:28px;
    color:#fff;
}

.footer-link strong{

    color:#fff;
    font-size:15px;
}


.footer-link a{

color:#ffffff;
text-decoration:none;

transition:.3s;

}

.footer-link a:hover{

padding-left:10px;

}

.footer hr{

border-color:rgba(255,255,255,.2);

margin:35px 0 20px;

}
/* ===========================
   COPYRIGHT
=========================== */

.copyright{
    background:#ffffff;
    color:#495057;
    text-align:center;
    padding:15px;
    font-size:15px;
    border-top:1px solid #e9ecef;
}

.copyright strong{
    color:#0d6efd;
}

/*================ BUTTON ================*/

.btn{

    border-radius:50px;

    padding:12px 30px;

}

/*================ RESPONSIVE ================*/

@media (max-width:991px){

.hero{
    min-height:auto;
    padding:130px 0 80px;
    text-align:center;
}
.hero h1{
    font-size:44px;
}
.hero p{
    font-size:18px;
    line-height:32px;
}
.hero-image{
    max-width:400px;
    margin-top:45px;
}

.hero .btn{
    margin-bottom:10px;
}

.hero h2{
    font-size:34px;
}
#tentang{
    text-align:center;
}
.feature-box{
    margin-top:20px;
}
}

@media (max-width:767px){
.hero{
    padding:110px 0 60px;
}
.hero-badge{
    font-size:13px;
    padding:8px 14px;
}
.hero h1{
    font-size:34px;
}
.hero p{
    font-size:16px;
    line-height:29px;
}

.hero-image{
    max-width:280px;
    margin-top:35px;
}

.hero h2{
    font-size:28px;
}

.hero .col-4{
    margin-top:20px;
}

.hero .col-4 p{
    font-size:14px;
}

.navbar-brand h5{
    font-size:18px;
}

#tentang h2{
    font-size:30px;
}
.icon{
    margin:auto auto 20px;
}

}