/* ================================
   HOME DYNAMIC - Bimbel Bintang Cemerlang
   Tidak bentrok dengan tampilan.css
================================ */

.bc-home{
    width:100%;
    padding:50px 20px;
    background:linear-gradient(135deg,#ecfff1 0%,#d9ffd8 100%);
    border-radius:20px;
}

.bc-home .bc-container{
    max-width:1400px;
    margin:auto;
}

.bc-home .bc-badge{
    text-align:center;
    margin-bottom:25px;
}

.bc-home .bc-badge span{
    display:inline-block;
    background:#ffd54f;
    color:#004b8d;
    font-size:18px;
    font-weight:bold;
    padding:12px 28px;
    border-radius:50px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.bc-home .bc-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:35px;
    flex-wrap:wrap;
}

.bc-home .bc-keunggulan{
    width:280px;
}

.bc-home .bc-item{
    background:#fff;
    border-left:6px solid #00c853;
    padding:18px;
    margin-bottom:15px;
    border-radius:15px;
    font-size:16px;
    font-weight:600;
    color:#333;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.bc-home .bc-item:hover{
    transform:translateX(8px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.bc-home .bc-tengah{
    width:600px;
    text-align:center;
}

.bc-home .bc-gambar{
    width:100%;
    max-width:600px;
    height:auto;
}

.bc-home .bc-btn{
    display:inline-block;
    margin-top:20px;
    padding:18px 45px;
    background:#00c853;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:bold;
    border-radius:15px;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,200,83,.3);
}

.bc-home .bc-btn:hover{
    background:#00b248;
    transform:translateY(-3px);
}

@media(max-width:1200px){

    .bc-home .bc-wrap{
        flex-direction:column;
    }

    .bc-home .bc-keunggulan{
        width:100%;
        max-width:700px;
    }

    .bc-home .bc-tengah{
        width:100%;
    }

}

@media(max-width:768px){

    .bc-home{
        padding:30px 15px;
    }

    .bc-home .bc-badge span{
        font-size:16px;
    }

    .bc-home .bc-item{
        font-size:15px;
    }

    .bc-home .bc-btn{
        width:100%;
        font-size:18px;
    }

}