/* Sticky Admission Button - Only for Mobile */
.mobile-sticky-btn-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    /* Hidden by default */
}

.mobile-sticky-btn {
    width: 100% !important;
    justify-content: space-between !important;
    background-color: #4c79dc !important;
    /* Blue color from image */
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-sticky-btn:hover,
.mobile-sticky-btn:active {
    background-color: #3b5fb0 !important;
    color: #ffffff !important;
    transform: scale(0.98);
    text-decoration: none;
}

.mobile-sticky-btn p {
    margin: 0 !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.mobile-sticky-btn .btn-arrow {
    background-color: #ffffff !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 8px !important;
    margin-right: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Show only on mobile */
@media (max-width: 767px) {
    .mobile-sticky-btn-wrapper {
        display: block;
    }
}