.header-card {
    left: 0;
    margin-top: -120px;
    overflow: hidden;
}

.hero {
    /* margin-top: -90px; */
}
.footer-bar-5 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.footer-bar-5 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.footer-bar-5 a span {
    font-size: 11px;
    margin-top: 5px;
    color: #666;
    transition: color 0.3s ease;
}

.footer-bar-5 a.active-nav span {
    color: #4a90e2;
}

.footer-bar-5 a i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* CTA Button khusus untuk Kartu Pasien */
.cta-button {
    position: relative;
    top: -20px;
    z-index: 10;
}

.cta-button a {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.cta-button a:hover,
.cta-button a:active {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.cta-button i {
    font-size: 32px !important;
    color: white !important;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button span {
    display: none;
}

/* Animasi pulse untuk menarik perhatian */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

.cta-button.pulse a {
    animation: pulse 2s infinite;
}

/* Styling untuk item layanan lainnya */
.layanan-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.layanan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
@media (max-width: 576px) {
    .header-card {
        left: 0;
        right: 0;
        margin-top: -150px;
    }
}
