/* Mobile Sticky Footer Logic */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    z-index: 50;
}

/* Hide the footer if the screen is a desktop or tablet (768px or wider) */
@media (min-width: 768px) {
    .mobile-sticky-footer {
        display: none !important;
    }
}

/* Hide scrollbar for the horizontal deck but keep functionality */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Infinite Shimmer Effect for Master CTA Button */
@keyframes sweep {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}
.shimmer-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -20%; width: 30%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: sweep 4s infinite;
}

/* Smooth Scroll & Perfect Bumper Offset for Anchor Links For BPT College Menubar */ 
html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px; 
}

/* Desktop Premium Ghost Tab Animations */
.nav-ghost-tab {
    position: relative;
    transition: all 0.3s ease;
}
.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #06b6d4; /* Brand Cyan */
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}
.nav-ghost-tab:hover .nav-indicator,
.nav-ghost-tab.active-tab .nav-indicator {
    width: 70%;
}
.nav-ghost-tab.active-tab {
    color: #0b1154 !important; /* Brand Navy */
    font-weight: 900;
}