/* index.php - Homepage specific styles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.pulse-online {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--ac);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(var(--ac-rgb), 0.4);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--ac-rgb), 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(var(--ac-rgb), 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--ac-rgb), 0); }
}

/* ─── Partner Marquee Slider ─── */
.partners-section {
    padding: 4rem 0 2rem;
    overflow: hidden;
    position: relative;
}

.partners-section .section-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 2.5rem;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 4.5rem; /* Increased gap to prevent overlap */
    width: max-content;
    animation: marqueeSlide 35s linear infinite; /* Slightly slower for better readability */
    padding: 15px 0; /* Vertical padding for hover lift effect */
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track.static-center {
    animation: none;
    justify-content: center;
    width: 100%;
}

@keyframes marqueeSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
    flex-shrink: 0;
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ac);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--ac-glow);
}

.partner-item .partner-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-item .partner-icon i {
    width: 18px;
    height: 18px;
}

.partner-item .partner-name {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.partner-item:hover .partner-name {
    color: rgba(255, 255, 255, 0.9);
}

