
         /* --- UPDATED: ULTRA-COMPACT MODERN REGISTER BUTTON --- */
        .fixed-register-btn {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            
            /* Sleek Red Tab Look */
            background-color: red;
            color: white;
            
            /* Ultra Compact Size */
            padding: 15px 6px; 
            
            /* Vertical Orientation */
            writing-mode: vertical-rl;
            text-orientation: mixed;
            
            /* Typography: Small but spaced out for elegance */
            font-size: 11px; 
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            
            /* Modern Styling */
            border-radius: 4px 0 0 4px;
            box-shadow: -2px 0 8px rgba(0,0,0,0.1);
            z-index: 9999;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            opacity: 0.9;
        }

        .fixed-register-btn:hover {
            opacity: 1;
            padding: 20px 8px; /* Subtle expansion */
            background-color: var(--dark-blue);
            box-shadow: -4px 0 12px rgba(230, 37, 37, 0.2);
            right: 0; /* Ensures it stays anchored */
        }

        /* --- HEADER TOP --- */
        .header-top {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .social-icons a {
            margin-right: 15px;
            color: var(--white);
        }

        .contact-info span {
            margin-left: 20px;
        }



        /* --- PARTNERS SECTION --- */
        /* --- NEW: Fast Sliding Partner Cards --- */
.partners-section-fast {
    background-color: #f8f9fa; /* Light gray background */
    padding: 60px 0;
    overflow: hidden; /* Hides the scrollbar */
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Fade effect on edges to look seamless */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px; /* Space between cards */
    width: max-content;
    /* Speed: 12s is very fast. Increase number to slow down. */
    animation: scroll-fast 12s linear infinite; 
}

/* Pause animation on hover so users can click/view */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-fast {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); } /* Moves half track width */
}

/* The Card Design */
.partner-card {
    width: 220px; /* Fixed width to fit ~5 on standard desktop */
    height: 140px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(6, 16, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    border-color: var(--accent-red);
}

/* Animated Logo Design */
.partner-card img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
    /* Continuous Pulse Animation */
    animation: logo-pulse 3s ease-in-out infinite;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    animation: none; /* Stop pulse on hover for clarity */
    transform: scale(1.1);
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

/* End of Partners Section */
