/* Background */
.hero-bg {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: 50% 50%;
    transition: background-position 0.12s ease-out;
    position: relative;
}

/* CONTAINER LINGKARAN */
.circle-container {
    position: absolute;
    width: 520px;
    height: 520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Default circle */
.circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(88,86,216,0.65);
    backdrop-filter: blur(10px);
    border: 4px solid #2516b1;
    box-shadow: 0 8px 25px rgba(6, 38, 218, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.8s cubic-bezier(.19,1,.22,1),
        transform 0.8s cubic-bezier(.19,1,.22,1);
}

/* MAIN CIRCLE */
.main-circle {
    width: 210px;
    height: 210px;
    top: 135px;
    left: 135px;
    border-width: 5px;
    background: url('bg1.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 35px rgba(17, 52, 206, 0.65);
}

/* Orbit circle hidden state */
.orbit {
    opacity: 0;
    transform: scale(0.35);
}

/* Orbit positions */
.orbit1 { top: -10px; left: 150px; }
.orbit2 { top: 160px; left: -20px; }
.orbit3 { top: 160px; left: 320px; }

.orbit img {
    width: 60px;
}

.orbit span {
    margin-top: 15px;
    font-weight: bold;
    color: #0b5cb8;
    text-align: center;
    font-size: 14px;
}

/* Hover → orbit muncul */
.circle-container:hover .orbit {
    opacity: 1;
    transform: scale(1);
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.main-circle,
.orbit {
    animation: float 4s ease-in-out infinite;

    width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, #4db5ff 0%, #5ac8ff 100%);
        position: relative;
        text-align: center;
        padding-top: 80px;
        color: white;
        overflow: hidden;
    }

    .hero .map-bg {
		position:relative;
		background-size: cover;
		transition: background-position 0.12s ease-out;
        width: 100%%;
		transform: translateX(-50%);
        opacity: 0.4;
    }

    .hero h1 {
        font-size: 38px;
        font-weight: 600;
        color: #ffffff;
    }

    .badge-asn {
        background: #ffffff;
        padding: 4px 14px;
        border-radius: 50px;
        color: #d40000;
        font-weight: bold;
    }

    .badge-digital {
        background: #ffffff;
        padding: 4px 14px;
        border-radius: 50px;
        color: #007bff;
        font-weight: bold;
    }

    .hero h2 {
        margin-top: 0px;
        font-size: 22px;
        font-weight: 300;
    }

    .sub-badge {
        display: inline-block;
        margin-top: 20px;
        padding: 8px 22px;
        background: #ffffff;
        color: #0066d6;
        border-radius: 50px;
        font-size: 22px;
        font-weight: bold;
    }

    .logo-bkn {
        width: 250px;
        margin-top: 30px;
    }
/*backgroud*/
.map-gradient-advanced {
    position: relative;
    overflow: hidden;
	color: white;
    background: linear-gradient(135deg, #0a68ff 0%, #7b39ff 100%);
    border-radius: 0.5rem;
}

.map-gradient-advanced::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/map1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;          /* level transparansi peta */
    z-index: 0;
}

.map-gradient-advanced > * {
    position: relative;
    z-index: 1;
}

	