/* ============================
   LEFT SIDE STICKY BUTTONS
   ============================ */
   .sticky-left-buttons {
    position: fixed;
    left: 15px;
    bottom: 40px; /* BUTTONS AT END */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}

.sticky-btn {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: 0.25s ease;
}

/* Hover Animation */
.sticky-btn:hover {
    transform: scale(1.12);
}

/* CALL BUTTON */
.call-btn {
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    border: 2px solid #25D366;
    color: #25D366;
}

/* ============================
   RIGHT SIDE STICKY TAB
   ============================ */
.sticky-admission-button {
    position: fixed;
    right: -80px; 
    top: 50%;
    transform: rotate(-90deg);
    padding: 10px 20px;
    background: #0d6efd;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px 6px 0 0;
    font-size: 14px;
    z-index: 99999;
}

/* Hover Animation for Tab */
.sticky-admission-button:hover {
    background: #084298;
    transform: rotate(-90deg) scale(1.05);
}
