:root {
    --primary-color: #0D1B2A;
    --secondary-color: #FFA500;
    --tertiary-color: #FFFFFF;
    --text-color: #333333;
    --light-bg-color: #f5f5f5;
    --border-color: #dddddd;
    --footer-bg: #0D1B2A;
    --footer-text: #f5f5f5;
    --header-height: 80px;
    --font-primary: 'Source Sans Pro', sans-serif;
    --font-secondary: 'Merriweather', serif;
    --font-headings: 'SpecialGothic', cursive;
    --font-slogan: 'Caveat', cursive;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --box-shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --box-shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@font-face {
    font-family: "SpecialGothic";
    src: url(../fonts/Prompt-Regular.ttf);
    font-display: swap;
}

::selection {
    background: color(--primary-color);
    color: var(--secondary-color);
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 20% 50%, rgba(255, 165, 0, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(13, 27, 42, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(255, 165, 0, 0.02) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

    body::after {
        content: '';
        position: fixed;
        top: 10%;
        right: -5%;
        width: 300px;
        height: 300px;
        background: linear-gradient(45deg, rgba(255, 165, 0, 0.05), rgba(13, 27, 42, 0.03));
        border-radius: 50%;
        transform: rotate(45deg);
        pointer-events: none;
        z-index: -1;
        animation: floatShape 20s ease-in-out infinite;
    }

@keyframes floatShape {
    0%, 100% {
        transform: rotate(45deg) translateY(0px);
    }

    50% {
        transform: rotate(45deg) translateY(-20px);
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateX(30px) rotate(120deg);
    }

    66% {
        transform: translateX(-20px) rotate(240deg);
    }
}

@keyframes floatShape3 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

/* Header ve Navbar Stilleri */
/*Ay Navbar Custom logo*/
.ay-navbar-center-custom {
    position: absolute;
    z-index: 12;
    width: 250px;
    object-fit: cover;
    top: 10px;
    border-radius: 50%;
}

.ay-navbar-link-custom {
    width: 100%;
    display: flex;
    height: 150px;
    border-radius: 50%;
}

.ay-navbar-logo-custom {
    position: absolute;
    object-fit: cover;
    width: 250px;
    display: flex;
    height: 100%;
    height: 160px;
    padding: 0.2rem;
    left: 0px;
    transition: 0.3s ease;
    padding: 0.1rem;
    background: #fff;
    box-shadow: 1px 1px 12px 1px #12121269;
    border-radius: 10px;
}

.ay-navbar-fixed .ay-navbar-logo-custom {
    top: -10px;
}

.ay-navbar-fixed .ay-nav-link {
    color: var(--primary-color);
}

header {
    position: absolute;
    display: flex;
    width: 100%;
    z-index: 12;
    background: #2b2a2aa3;
}

.ay-navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    height: var(--header-height);
    width: 100%;
}

.ay-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.ay-navbar-left, .ay-navbar-right {
    flex: 1;
}

.ay-navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ay-logo-container {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.ay-navbar-nav {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .ay-navbar-nav.right {
        justify-content: flex-end;
    }

.ay-nav-item {
    position: relative;
}

.ay-nav-link {
    color: var(--tertiary-color);
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin: 1rem;
    font-size: 24px;
}

    .ay-nav-link::before {
        clear: both;
        z-index: 12;
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 10px solid var(--secondary-color);
        transition: 0.3s ease;
    }

    .ay-nav-link:hover::before {
        transform: translateY(-50%) rotate(90deg);
    }

    .ay-nav-link:hover, .ay-nav-link:focus {
        color: var(--secondary-color);
    }

.ay-nav-item.active .ay-nav-link {
    color: var(--secondary-color);
}

@media screen and (max-width: 991.98px) {
    .ay-navbar-center-custom {
        width: 150px;
        height: 150px;
        left: 33%;
    }

    .ay-navbar-logo-custom {
        width: 150px;
        height: 105px;
        margin-top: 1.5rem;
    }
}


/* Dropdown Stilleri */
.ay-dropdown {
    position: relative;
}

.ay-dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--tertiary-color);
    min-width: 200px;
    box-shadow: var(--box-shadow-medium);
    z-index: 100;
    border-radius: 8px;
    padding: 10px 0;
    top: 80%;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.ay-dropdown:hover .ay-dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.ay-dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

    .ay-dropdown-item:hover {
        background-color: rgba(13, 27, 42, 0.05);
        color: var(--secondary-color);
        border-left: 3px solid var(--secondary-color);
        padding-left: 18px;
    }

/* Banner ve Swiper Stilleri */
.ay-banner {
    position: relative;
    height: 800px;
    overflow: hidden;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    background: transparent;
}

.bannerSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.ay-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ay-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(13, 27, 42, 0.2);
    color: var(--tertiary-color);
    padding: 20px;
    text-align: center;
    z-index: 2;
    padding-top: 100px;
}

.ay-banner::after {
    background: white !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--secondary-color) !important;
    background-color: rgba(255, 255, 255, 0.2);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

    .swiper-button-next:hover, .swiper-button-prev:hover {
        background-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 18px !important;
    }

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--tertiary-color);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    opacity: 1;
}

.ay-banner-title {
    font-family: var(--font-headings);
    font-size: 4.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    font-weight: 600;
}

.ay-banner-subtitle {
    font-family: var(--font-slogan);
    font-size: 3rem;
    margin-bottom: 30px;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.ay-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--secondary-color), #ffb84d);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

    .ay-btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: all 0.6s ease;
        z-index: -1;
    }

    .ay-btn:hover {
        background: linear-gradient(135deg, #ffb84d, var(--secondary-color));
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 165, 0, 0.4);
    }

        .ay-btn:hover:before {
            left: 100%;
        }

    .ay-btn:active {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    }

/* Outline Buton */
.ay-btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

    .ay-btn-outline:hover {
        background-color: var(--secondary-color);
        color: white;
    }

/* Ana İçerik Stilleri */
.ay-media-section {
    padding: 60px 0 120px;
    background-color: var(--tertiary-color);
    border-radius: 8px;
    background-image: url(../images/patterns/pattern-12.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    background-attachment: fixed;
}

.ay-section {
    padding: 120px 0 140px;
    background-color: var(--tertiary-color);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .ay-section::before {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, rgba(13, 27, 42, 0.03), rgba(255, 165, 0, 0.02));
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        animation: floatShape2 25s ease-in-out infinite;
        pointer-events: none;
    }

    .ay-section::after {
        content: '';
        position: absolute;
        top: 20%;
        right: -30px;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(255, 165, 0, 0.04), transparent);
        border-radius: 50%;
        animation: floatShape3 15s ease-in-out infinite;
        pointer-events: none;
    }

.ay-section-title {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: left;
    position: relative;
    letter-spacing: 1px;
    font-weight: 700;
    padding-left: 0;
}

    .ay-section-title::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 0;
        width: 120px;
        height: 12px;
        z-index: 2;
        background: linear-gradient(90deg, var(--secondary-color), rgb(255 165 0));
        border-radius: 2px;
    }

    .ay-section-title:after {
        display: none;
    }

.ay-section-subtitle {
    margin-bottom: 50px;
}

.ay-section-subtitle-text {
}

.ay-about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.ay-about-text {
    flex: 1;
    min-width: 300px;
}

@media screen and (max-width: 991.98px) {
    .about-entry-section {
        padding-bottom: 6rem !important;
    }
}

.about-egg {
    position: absolute;
    top: 0;
    right: 100%;
    width: 300px !important;
    top: 60%;
    z-index: 1;
}

.ay-about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.absolute-image {
    width: 400px !important;
    position: absolute;
    z-index: 2;
    bottom: -30px;
    right: 10px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 1px 1px 13px 3px #0d21396b;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateX(4deg) rotateY(-38deg) rotate(6deg);
}

.ay-about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Sektörler Bölümü */
.ay-sectors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media screen and (max-width: 991.98px) {
    .ay-sectors-container {
        display: flex;
        flex-direction: column;
    }
}

.ay-sector-card {
    background-color: var(--tertiary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(255, 165, 0, 0.1);
}

    .ay-sector-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 165, 0, 0.02), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .ay-sector-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-color: rgba(255, 165, 0, 0.2);
    }

        .ay-sector-card:hover::before {
            opacity: 1;
        }

.card-two {
    top: 20%;
    position: relative;
}

.card-three {
    top: 30%;
}

.card-four {
    top: 20%;
    position: relative;
}

.ay-sector-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ay-sector-content {
    padding: 20px;
}

.ay-sector-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.ay-sector-description {
    color: #666;
    margin-bottom: 20px;
}

/* Medya Galerisi */
.ay-gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.ay-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

.ay-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ay-gallery-item:hover .ay-gallery-image {
    transform: scale(1.05);
}

.ay-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 27, 42, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ay-gallery-item:hover .ay-gallery-overlay {
    opacity: 1;
}

.ay-gallery-icon {
    color: white;
    font-size: 2rem;
}

/* İletişim Formu */
.ay-contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.ay-contact-info {
    flex: 1;
    min-width: 300px;
}

.ay-contact-form {
    flex: 2;
    min-width: 300px;
}

.ay-info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.ay-info-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.ay-info-content h5 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.ay-info-content p {
    margin: 0;
    color: #666;
}

.ay-form-group {
    margin-bottom: 20px;
}

.ay-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

    .ay-form-control:focus {
        outline: none;
        border-color: var(--secondary-color);
    }

.ay-form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

textarea.ay-form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer Stilleri */
.ay-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
    background-image: url(../images/patterns/pattern-13.png);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 991.98px) {
    .ay-footer {
        background-size: auto;
    }
}

.ay-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.ay-footer-column {
    flex: 1;
    min-width: 200px;
}

.ay-footer-logo {
    margin-bottom: 20px;
    max-width: 250px;
    border: 2px solid #fff;
    border-radius: 10px;
    transition: 0.3s ease;
}

    .ay-footer-logo:hover {
        transform: translateY(-5px);
    }

.ay-footer-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--tertiary-color);
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
}

    .ay-footer-title:after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background-color: var(--secondary-color);
        margin-top: 10px;
    }

.ay-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ay-footer-link {
    margin-bottom: 10px;
}

    .ay-footer-link a {
        color: var(--tertiary-color);
        opacity: 0.8;
        text-decoration: none;
        transition: opacity 0.3s;
    }

        .ay-footer-link a:hover {
            opacity: 1;
            color: var(--secondary-color);
        }

.ay-footer-text {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

.ay-social-icons {
    display: flex;
    gap: 15px;
}

.ay-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    color: var(--tertiary-color);
    text-decoration: none;
}

    .ay-social-icon:hover {
        background-color: var(--secondary-color);
    }

.ay-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ay-copyright {
    opacity: 0.7;
}

/* Animasyonlar */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991.98px) {
    .ay-banner {
        height: 650px;
    }

    .ay-banner-title {
        font-size: 4.5rem;
    }

    .ay-banner-subtitle {
        font-size: 3rem;
        text-align: center;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ay-section-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

        .ay-section-title::before {
            width: 120px;
            top: 90%;
            height: 3px;
        }

    body::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .ay-navbar-left, .ay-navbar-right {
        display: none;
    }

    .ay-navbar-center {
        flex: 1;
    }

    .ay-banner {
        height: 550px;
    }

    .ay-banner-title {
        font-size: 3rem;
    }

    .ay-banner-subtitle {
        font-size: 2rem;
    }

    .ay-section {
        padding: 40px 0;
    }

    .ay-section-title {
        font-size: 1.8rem;
        text-align: center;
    }

        .ay-section-title::before {
            left: 50%;
            transform: translateX(-50%);
        }

    .ay-footer-content {
        gap: 30px;
    }

    .ay-breadcrumb-title {
        font-size: 2.2rem;
        text-align: center;
    }

        .ay-breadcrumb-title::before {
            left: 50%;
        }

    .ay-sector-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Mobil Menü */
.ay-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.ay-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--tertiary-color);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.ay-mobile-menu.ay-show {
    right: 0;
}

@media screen and (max-width: 768px){
    .ay-mobile-menu-toggle {
        position: absolute;
        right: 5%;
    }
    .ay-navbar-center {
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .ay-navbar-logo-custom {
        margin: auto;
        position: inherit;
    }
    .ay-navbar-center-custom{
        position: inherit;
        margin-top: 2rem;
    }
}

/* Mobil menü overlay */

.ay-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    animation: slideInDown 0.5s ease-out;
}

.ay-mobile-menu-logo {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.ay-mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.ay-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.ay-mobile-nav-item {
    margin-bottom: 15px;
}

.ay-mobile-nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
}

.ay-mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.ay-mobile-dropdown-toggle:hover {
    color: var(--secondary-color);
}

.ay-mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.ay-mobile-dropdown-toggle.ay-active i {
    transform: rotate(45deg);
}

.ay-mobile-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    margin: 10px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease-in-out;
    opacity: 0;
}

.ay-mobile-dropdown-menu.ay-show {
    max-height: 500px;
    opacity: 1;
}

.ay-mobile-dropdown-item {
    margin-bottom: 10px;
}

.ay-mobile-dropdown-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
    border-left: 3px solid transparent;
}

.ay-mobile-dropdown-link:hover {
    color: var(--secondary-color);
    padding-left: 10px;
    border-left-color: var(--secondary-color);
}

.ay-mobile-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* .ay-show sınıfı artık mobil menü için özel olarak tanımlandı */

@media (max-width: 768px) {
    .ay-mobile-menu-toggle {
        display: block;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-90deg);
    }

    100% {
        opacity: 1;
        transform: rotate(0);
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        transform: translateX(0);
    }
}

/* Loading Animation */
.ay-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tertiary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    flex-direction: column;
}

    .ay-preloader.loaded {
        opacity: 0;
        visibility: hidden;
    }

.ay-spinner {
    width: 80px;
    height: 80px;
    position: relative;
}

    .ay-spinner:before, .ay-spinner:after {
        content: "";
        position: absolute;
        border-radius: 50%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 4px solid transparent;
        border-top-color: var(--secondary-color);
        animation: spinner 1.5s linear infinite;
    }

    .ay-spinner:before {
        z-index: 100;
    }

    .ay-spinner:after {
        border: 4px solid transparent;
        border-bottom-color: var(--primary-color);
        animation: spinner 2s linear infinite;
    }

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ay-loading-inner-image {
    width: 50px;
    position: relative;
    top: 65px;
}
/* Breadcrumb Styles */
.ay-breadcrumb-container {
    background-image: url('../images/default-breadcrumb.webp');
    background-size: cover;
    background-position: center;
    padding: 180px 0 60px;
    position: relative;
    box-shadow: var(--box-shadow-medium);
    overflow: hidden;
}

    .ay-breadcrumb-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.6));
    }

    .ay-breadcrumb-container::after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 165, 0, 0.1), transparent);
        border-radius: 50%;
        animation: floatShape3 20s ease-in-out infinite;
    }

.ay-breadcrumb-overlay {
    display: none;
}

.ay-breadcrumb-title {
    font-family: var(--font-headings);
    color: var(--tertiary-color);
    font-size: 2.8rem;
    margin: 20px 0 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    text-align: left;
}

    .ay-breadcrumb-title::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary-color), rgba(255, 165, 0, 0.6));
        border-radius: 2px;
    }

.ay-breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ay-breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--tertiary-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-right: 5px;
    transition: opacity var(--transition-fast);
}

    .ay-breadcrumb-item:last-child {
        opacity: 1;
        font-weight: 600;
    }

    .ay-breadcrumb-item a {
        color: var(--tertiary-color);
        text-decoration: none;
        transition: color var(--transition-fast);
    }

        .ay-breadcrumb-item a:hover {
            color: var(--secondary-color);
            opacity: 1;
        }

.ay-breadcrumb-divider {
    color: var(--tertiary-color);
    margin: 0 5px;
    opacity: 0.6;
}

/* Hata Sayfaları Stilleri */
.ay-error-container {
    text-align: center;
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.ay-error-code {
    font-family: var(--font-headings);
    font-size: 8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.ay-error-message {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.ay-error-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.ay-error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

    .ay-error-actions .ay-btn {
        min-width: 200px;
    }

@media (max-width: 767px) {
    .ay-error-code {
        font-size: 6rem;
    }

    .ay-error-message {
        font-size: 1.5rem;
    }

    .ay-error-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Fixed Navbar ve Back to Top */
.ay-navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.5s forwards;
    box-shadow: var(--box-shadow-medium);
    z-index: 1000;
    background-color: var(--tertiary-color);
}

@media screen and (max-width: 991.98px)
{
    .ay-navbar-fixed .ay-mobile-menu-toggle {
        color: #193467;
        transition: 0.3s ease;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.ay-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 99;
    box-shadow: var(--box-shadow-medium);
}

    .ay-back-to-top:hover {
        background-color: var(--secondary-color);
        transform: translateY(-5px);
    }

    .ay-back-to-top.show {
        opacity: 1;
        visibility: visible;
    }


.ay-btn-outline {
    display: inline-block;
    padding: 8px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .ay-btn-outline:hover {
        background-color: var(--primary-color);
        color: white;
    }

/* CTA Bölümü Stilleri */
.ay-cta-section {
    margin-top: 60px;
    margin-bottom: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.ay-cta-section-wrapper {
    padding: 70px 0px;
}

.ay-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.ay-cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.ay-cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ay-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .ay-cta-buttons .ay-btn-outline {
        border-color: #0D1B2A;
    }

        .ay-cta-buttons .ay-btn-outline:hover {
            background-color: white;
            color: var(--primary-color);
        }

@media (max-width: 768px) {
    .ay-slogan-title {
        font-size: 2rem;
    }

    .ay-slogan-text {
        font-size: 1.1rem;
    }

    .ay-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.footer-absolute-image {
    position: absolute;
    right: 0;
    width: 300px;
    bottom: 400px;
}

@media screen and (max-width: 991.98px) {
    .footer-absolute-image {
        position: absolute;
        right: 0;
        width: 300px;
        bottom: 400px;
        bottom: 10%;
    }
}


.x-alert {
    width: 500px;
    top: 9rem;
    right: 5rem;
    position: fixed !important;
    z-index: 999;
    padding: .95rem 1.45rem !important;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63
}

#cookieWrapper, .cookie-consent-container {
    z-index: 1000;
    background-color: #fff;
    position: fixed
}

.alert-text {
    width: 95%;
    display: flex
}

.x-alert-success {
    background-color: #326211;
    color: #fff;
    animation: 1s successFade
}

.x-alert-danger {
    background-color: #ffe2e5;
    color: #5f0b0be0
}

.x-alert-warning {
    background-color: #ffcc29;
    color: #3b331d
}

.x-alert-info {
    background-color: #baebf3;
    color: #0c5460
}

.x-alert-detail {
    background-color: #cce5ff;
    color: #004085
}

.x-alert-close {
    cursor: pointer;
    transition: .3s;
    outline: 0;
    color: #111;
    padding: 0 .7rem;
    background-color: #fff;
    font-size: 24px;
    border: none;
    position: absolute;
    top: .4rem;
    right: .4rem;
    width: 38px
}

    .x-alert-close:hover {
        background-color: #ff1616f2;
        color: #fff
    }

    .x-alert-close:focus {
        outline: #d5d1d1 solid 1px
    }

@keyframes successFade {
    from {
        opacity: .5
    }

    to {
        opacity: 1
    }
}