﻿
/* Header genel stilleri */
.header-transparent {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header body'yi daha ince yap */
.header-body {
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Header container yüksekliğini azalt */
.header-container {
    min-height: 50px;
}

/* Logo boyutunu küçült */
.header-logo img {
    width: 65px;
    height: 32px;
}

/* Nav link'lerini küçük harf ve ince yap */
.header-nav-main .nav-link {
    text-transform: lowercase;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 12px;
}

/* Dropdown menüyü de küçük harf yap */
.header-nav-main .dropdown-menu .dropdown-item {
    text-transform: lowercase;
    font-size: 12px;
    padding: 6px 15px;
}

/* Hamburger menü butonunu küçült */
.header-btn-collapse-nav {
    padding: 5px 8px;
    font-size: 14px;
}

/* Mobil görünüm için medya sorguları */
@media (max-width: 991px) {
    .header-nav-main .nav-link {
        font-size: 14px;
        padding: 10px 15px;
    }
}




.typing-animation {
    display: inline-block;
}

    .typing-animation span {
        opacity: 0;
        animation: typing 12s infinite;
        position: absolute;
        left: 0;
    }

        .typing-animation span:nth-child(1) {
            animation-delay: 0s;
        }

        .typing-animation span:nth-child(2) {
            animation-delay: 4s;
        }

        .typing-animation span:nth-child(3) {
            animation-delay: 8s;
        }

@keyframes typing {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(0);
    }

    40% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}
.logo-carousel-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 150px;
}

    .logo-item img {
        max-height: 60px;
        width: auto;
        opacity: 0.7;
    }

    .logo-item:hover img {
        filter: grayscale(0%) !important;
        opacity: 1;
        transform: scale(1.1);
    }

.carousel-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}

.left-overlay {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.right-overlay {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .logo-group {
        gap: 40px;
    }

    .logo-item {
        min-width: 120px;
    }

        .logo-item img {
            max-height: 50px;
        }

    .carousel-overlay {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .logo-group {
        gap: 30px;
    }

    .logo-item {
        min-width: 100px;
    }

        .logo-item img {
            max-height: 40px;
        }
}
