/* Bilgin Büro Makinaları - Custom Styles */

/* Global Styles */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

/* Ambient Background Light */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 15% 50%, rgba(0, 220, 130, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(15, 23, 42, 0.05), transparent 25%);
    pointer-events: none;
}

/* Glassmorphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.glass-card-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #00dc82 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-dark {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Brand Slider */
.slider-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
    width: 100%;
}

.slider-container::before,
.slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.slider-track {
    display: inline-flex;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: all 0.4s ease;
    opacity: 0.5;
    filter: grayscale(100%);
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.15);
}

.brand-item img {
    max-height: 100%;
    width: auto;
}

.text-logo {
    font-weight: 900;
    font-size: 22px;
    color: #475569;
    letter-spacing: 2px;
    font-family: 'Arial Black', sans-serif;
    border: 2px solid #cbd5e1;
    padding: 4px 12px;
    border-radius: 6px;
}