/* Tailwind CSS custom scrollbar */
.scrollbar-thumb-blue {
    scrollbar-color: #00355E transparent;
    scrollbar-width: thin;
}

.scrollbar-thumb-blue::-webkit-scrollbar {
    width: 8px;
}

.scrollbar-thumb-blue::-webkit-scrollbar-thumb {
    background-color: #00355E;
    border-radius: 4px;
}

/* Banner */
.hero-section {
    color: white;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section .content {
    z-index: 1;
    position: relative;
}

.hero-section .globe {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.8;
}

@media (min-width: 769px) {
    .hero-section .globe-container {
        position: absolute;
        width: 100%;
        height: 800px;
        overflow: visible;
        right: -30%;
        bottom: -80%;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .hero-section .globe-container {
        position: absolute;
        overflow: visible;
        width: 800px;
        height: 1100px;
        /* top: 200px; */
        right: -100%;
        bottom: -130%;
    }

    .hero-section .content {
        padding: 0 20px;
    }

    .hero-section {
        padding: 100px 0px 200px 0px;
    }
}

/* Hover tetap merah jika border merah */
.input.border-red-500:hover,
.select2-selection--multiple.border-red-500:hover,
.select2-selection--single.border-red-500:hover,
.tagify__input.border-red-500:hover {
    border-color: #ef4444;
    /* Tetap merah saat hover */
}