/* Floating Admission Button */
.float-admission-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    background-color: #d3373b; /* Red matching your theme [cite: 10] */
    color: white;
    padding: 20px 10px;
    border-top-left-radius: 25px; /* Curve style */
    border-bottom-left-radius: 25px; /* Curve style */
    cursor: pointer;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.float-admission-btn:hover {
    background-color: #0099cc; /* Blue on hover [cite: 11] */
    right: -5px; /* Slight movement effect */
}

/* Vertical Text at 90 degrees */
.float-admission-btn span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

/* Light Animation (Top to Bottom) */
.float-admission-btn::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    animation: lightDrop 2s infinite;
}

@keyframes lightDrop {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .float-admission-btn {
        padding: 15px 8px;
    }
    .float-admission-btn span {
        font-size: 14px;
    }
}

.modal-backdrop {
    z-index: 1040 !important; /* Force Backdrop Behind */
}
.modal {
    z-index: 1050 !important; /* Force Form In Front */
}