/* =====================================================
   HERO PREMIUM
   SENTOSA POST
===================================================== */

.hero-section{

    margin:20px 0 35px;

}

.hero-banner{

    position:relative;

    width:100%;

    height:560px;

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.hero-banner img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:8s;

}

.hero-banner:hover img{

    transform:scale(1.08);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,24,38,.82) 0%,
        rgba(8,24,38,.55) 35%,
        rgba(10,77,140,.25) 70%,
        rgba(10,77,140,.08) 100%
    );

}

.hero-content{

    position:absolute;

    left:60px;

    top:50%;

    transform:translateY(-50%);

    max-width:620px;

    color:#fff;

    z-index:5;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    background:#e53935;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:20px;

    color:#fff;

}

.hero-content h1 span{

    color:#4ade80;

}

.hero-content p{

    font-size:20px;

    line-height:1.8;

    color:#eef3f8;

    margin-bottom:35px;

}

.hero-button{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-button .btn{

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

}

.hero-button .btn-success{

    background:#16a34a;

    border:none;

}

.hero-button .btn-success:hover{

    background:#15803d;

}

.hero-button .btn-outline-light{

    border:2px solid rgba(255,255,255,.85);

}

.hero-button .btn-outline-light:hover{

    background:#fff;

    color:#0A4D8C;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.hero-banner{

    height:450px;

}

.hero-content{

    left:35px;

    right:35px;

}

.hero-content h1{

    font-size:40px;

}

.hero-content p{

    font-size:17px;

}

}

@media(max-width:768px){

.hero-banner{

    height:420px;

}

.hero-content{

    left:25px;

    right:25px;

}

.hero-content h1{

    font-size:32px;

}

.hero-content p{

    font-size:15px;

}

.hero-button{

    flex-direction:column;

}

.hero-button .btn{

    width:100%;

}

}