.keyword-transition {
    width: 100%;
    overflow: hidden;
    background: #0D1B2A;
    padding: 4rem 0;
    position: relative;
}

.keyword-slider {
    display: flex;
    animation: slideKeywords 30s linear infinite;
    white-space: nowrap;
}

.keyword {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    padding: 0 2rem;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #FFA500;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.keyword.filled {
    color: #FFA500;
    -webkit-text-stroke: 0;
}

.keyword-icon-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.keyword-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(74%) saturate(1750%) hue-rotate(360deg) brightness(103%) contrast(106%);
}

.keyword-dot {
    width: 6px;
    height: 6px;
    background-color: #FFA500;
    border-radius: 50%;
}

@media screen and (max-width: 991.98px){
    .keyword-transition{
        margin-top: 5rem;
        margin-bottom: 2rem;
    }

        .keyword-transition::before {
            background: linear-gradient(to right, #0d1b2a75 30%, transparent)!important;
        }
        .keyword-transition::after {
            background: linear-gradient(to left, #0d1b2a85 30%, transparent) !important;
        }
    .keyword{
        padding: 0 1rem;
        font-size: 2rem;
    }
}

@keyframes slideKeywords {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.keyword-transition::before,
.keyword-transition::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}

.keyword-transition::before {
    left: 0;
    background: linear-gradient(to right, #0D1B2A 30%, transparent);
}

.keyword-transition::after {
    right: 0;
    background: linear-gradient(to left, #0D1B2A 30%, transparent);
}

/* Slogan Blm� Stilleri */
.ay-slogan-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ay-slogan-icon {
    font-size: 3.5rem;
    color: #3ecb10;
    margin-bottom: 1rem;
}

.ay-slogan-section {
    position: relative;
    background-image: url('/images/13.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0 auto;
    margin-top: 4rem;
    margin-bottom: 4rem;
    transition: all 0.3s ease-out;
    transform-origin: center center;
    padding: 100px 0;
    color: white;
    text-align: center;
    height: 400px!important;
}

.ay-slogan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(13 27 42 / 65%);
}

.ay-slogan-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.ay-slogan-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ay-slogan-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ay-btn-light {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid transparent;
}

    .ay-btn-light:hover {
        background-color: transparent;
        color: white;
        border: 2px solid white;
    }

/* Medya B�l�m� Stilleri */
.ay-separator {
    height: 4px;
    width: 80px;
    background-color: var(--secondary-color);
    margin: 20px 0 50px;
}

.ay-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.ay-media-card {
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, var(--secondary-color), #ffb84d);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 400px;
}

    .ay-media-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.ay-media-icon {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.5s ease;
}

    .ay-media-icon i {
        box-shadow: 1px 1px 12px 1px #bfbfbf;
        border-radius: 20%;
        padding: 1rem;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        transition: 0.3s ease;
        background: #fff;
        color: orange;
    }
    .ay-media-card:hover .ay-media-icon i {
        transform: rotateX(15deg) rotateY(-15deg) rotateZ(15deg);
        box-shadow: 2px 2px 15px 2px #8f8f8f;
    }
    @keyframes iconFloat {
        0% {
            transform: rotateX(15deg) rotateY(-15deg) rotateZ(15deg);
        }
        50% {
            transform: rotateX(15deg) rotateY(-15deg) rotateZ(30deg);
        }
        100% {
            transform: rotateX(15deg) rotateY(-15deg) rotateZ(15deg);
        }
    }

.ay-media-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ay-media-text {
    margin-bottom: 25px;
    color: #555;
}

@media screen and (max-width: 991.98px){
    .ay-media-card{
        height: auto;
        padding: 4rem;
    }
    .ay-media-icon{
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .ay-slogan-section {
        width: 90%;
        height: 250px;
    }
    
    .ay-slogan-title {
        font-size: 2rem;
    }
    
    .ay-slogan-text {
        font-size: 1rem;
    }
}

.counter-bg-1{
    background-image: url(../images/corporate/fabrika.png);
    background-size: cover;
    background-position: center;
}
.counter-bg-2 {
    background-image: url(../images/corporate/yumurta.webp);
    background-size: cover;
    background-position: center;
}
.counter-bg-3 {
    background-image: url(../images/corporate/yarka.jpg);
    background-size: cover;
    background-position: center;
}
.counter-bg-4 {
    background-image: url(../images/corporate/gunes.png);
    background-size: cover;
    background-position: center;
}
.ay-counter-overlay {
    height: 100%;
    width: 100%;
    background: rgb(13 27 42 / 35%);
    padding: 2rem;
    transition: 0.5s ease;
}

.ay-counter-item:hover .ay-counter-overlay {
    background: rgb(13 27 42 / 15%);
}

.ay-counter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0D1B2A, #1B3045);
    color: white;
    margin: 4rem 0;
}

.ay-counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ay-counter-item {
    text-align: center;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ay-counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ay-counter-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.ay-counter-icon i {
    background: rgba(255, 165, 0, 0.1);
    padding: 1.5rem;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.ay-counter-item:hover .ay-counter-icon i {
    transform: rotateY(360deg);
}

.ay-counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.counter-suffix {
    font-size: 1.5rem;
    opacity: 0.8;
}

.ay-counter-title {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .ay-counter-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .ay-counter-number {
        font-size: 2.5rem;
    }
    
    .counter-suffix {
        font-size: 1.2rem;
    }
}