body {
    background-color: #f5f7ff;
    background-color: #f5f7ff;
    font-family: 'Poppins', sans-serif;
    /* Fallback/System font if needed */
}

.navbar-brand img {
    height: 50px;
}

.hero-section {
    /* tambahan untuk image */
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/back-profil.jpg"); */
    /* Set a specific height */
    /* height: 50%; */

    /* Position and center the image to scale nicely on all screens */
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    /* opacity: 0.3; */

    background: linear-gradient(135deg, #1F3BB3 0%, #4B49AC 100%);
    color: rgb(255, 255, 255);
    padding: 100px 0 150px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("{{ asset('assets/images/dashboard/people.png') }}");
    /* Fallback or texture */
    opacity: 0.1;
    background-size: cover;
}

.btn-light-custom {
    background: white;
    color: #4B49AC;
    border: none;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-light-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-container {
    margin-top: -60px;
    padding-bottom: 80px;
}

.stat-card {
    border-radius: 20px;
    border: none;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.list-group-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.list-group-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.avatar-sm {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

footer {
    background: #222;
    color: #aaa;
    padding: 50px 0;
}
