/* =========================================
   LDF
========================================= */

.ldf-section{
    padding:120px 0 90px;
    background:#f5f9fc;
}

.ldf-hero{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.ldf-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#e8f5ff;
    color:#1698d5;
    padding:12px 22px;
    border-radius:100px;
    font-weight:700;
    margin-bottom:25px;
}

.ldf-hero h1{
    font-size:clamp(2.6rem,5vw,4.4rem);
    font-weight:800;
    color:#082c46;
    margin-bottom:20px;
    line-height:1.1;
}

.ldf-hero h1 span{
    color:#1da8ea;
}

.ldf-hero p{
    font-size:1.15rem;
    line-height:1.9;
    color:#617586;
}

.ldf-info-box{
    background:#fff;
    border-radius:32px;
    padding:50px;
    box-shadow:0 18px 40px rgba(0,0,0,.06);
    margin-bottom:70px;
}

.ldf-info-content h2{
    font-size:2rem;
    font-weight:800;
    color:#082c46;
    margin-bottom:20px;
}

.ldf-info-content p{
    color:#617586;
    line-height:1.9;
    margin:0;
}

.ldf-icon-box{
    width:140px;
    height:140px;
    margin:auto;
    border-radius:35px;
    background:linear-gradient(135deg,#1da8ea,#0c7fb6);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:3rem;
    box-shadow:0 20px 40px rgba(29,168,234,.3);
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title span{
    display:inline-block;
    color:#1da8ea;
    font-weight:700;
    margin-bottom:12px;
}

.section-title h2{
    font-size:2.4rem;
    font-weight:800;
    color:#082c46;
}

.ldf-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:#fff;
    border-radius:28px;
    padding:40px 25px;
    text-decoration:none;
    height:100%;
    transition:.35s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
    border:2px solid transparent;
}

.ldf-card:hover{
    transform:translateY(-8px);
    border-color:#1da8ea;
    box-shadow:0 22px 45px rgba(29,168,234,.18);
}

.ldf-card-icon{
    width:85px;
    height:85px;
    border-radius:24px;
    background:#eef8ff;
    color:#1da8ea;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin-bottom:25px;
}

.ldf-card h3{
    font-size:2rem;
    font-weight:800;
    color:#082c46;
    margin-bottom:10px;
}

.ldf-card p{
    color:#617586;
    margin-bottom:18px;
    line-height:1.7;
}

.ldf-card span{
    color:#1da8ea;
    font-weight:700;
}

.ldf-card.featured{
    background:linear-gradient(135deg,#1da8ea,#0d7eb4);
    color:#fff;
}

.ldf-card.featured h3,
.ldf-card.featured p,
.ldf-card.featured span{
    color:#fff;
}

.ldf-card.featured .ldf-card-icon{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.ldf-footer-message{
    margin-top:70px;
    text-align:center;
    background:linear-gradient(135deg,#082c46,#145987);
    padding:50px 30px;
    border-radius:35px;
    color:#fff;
}

.ldf-footer-message h2{
    font-size:2rem;
    font-weight:800;
    margin-bottom:15px;
}

.ldf-footer-message p{
    margin:0;
    color:rgba(255,255,255,.85);
    letter-spacing:.5px;
}

@media(max-width:991px){

    .ldf-section{
        padding:100px 0 70px;
    }

    .ldf-info-box{
        padding:35px 28px;
        text-align:center;
    }

    .ldf-info-content h2{
        font-size:1.7rem;
    }

    .ldf-icon-box{
        width:110px;
        height:110px;
        font-size:2.4rem;
    }

}

@media(max-width:575px){

    .ldf-card{
        padding:35px 20px;
    }

    .ldf-footer-message h2{
        font-size:1.5rem;
    }

}