﻿:root {
    /* Brand */
    --ap-dark: #004e73;
    --ap-dark2: #003a55;
    --ap-dp: #FF5100;
    --ap-accent: #33bbed;
    --ap-white: #fffff;
    /* Hero tokens */
    --ap-heroText: #ffffff;
    --ap-heroMuted: rgba(255,255,255,.82);
    --ap-heroBorder: rgba(255,255,255,.22);
    /* Primary (brand-aligned) */
    --ap-primary: var(--ap-dark);
    --ap-primaryDark: #003a55; /* ap-dark’in koyusu */
    --ap-topbar-h: 46px; /* topbar yüksekliği */
    --ap-header-h: 84px; /* header yüksekliği (isteğe göre 76-90) */
    --ap-sticky-h: calc(var(--ap-topbar-h) + var(--ap-header-h));
}




/* HERO container */
section#hero.hero {
    padding: 0 !important;
    margin: 0 !important;
}
#hero.hero {
    position: relative;
    height: calc(100vh - var(--ap-sticky-h));
    overflow: hidden;
}
/* Carousel structure eşitle */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel .carousel-item {
    height: 100% !important;
}

/* Carousel item background image */
    #hero .carousel .carousel-item {
        min-height: 100vh;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transform: scale(1.02);
        transition: transform 6.5s ease;
        transform-origin: center center;
    }

    #hero .carousel .carousel-item.active {
        transform: scale(1.05);
    }

/* Premium overlay (brand tint) */
#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at 18% 18%, rgba(51,187,237,.18), transparent 45%), radial-gradient(circle at 82% 35%, rgba(51,187,237,.12), transparent 50%), linear-gradient(120deg, rgba(0,78,115,.88), rgba(0,78,115,.56) 55%, rgba(0,78,115,.82));
}

/* Info layer above carousel */
#hero .info {
    position: absolute;
    inset: 0;
    z-index: 3;
    /* merkezleme yerine yukarıdan hizala */
    align-items: flex-start; /* center -> flex-start */
    justify-content: center; /* yatayda/ana eksende ortala */

    text-align: center;
    /* üst boşluğu kontrollü ver */
    padding-top: 56px; /* 40-72 arası ince ayar */
}


    /* Hero üst boşluk (bootstrap spacing) öldür */
    #hero .info,
    #hero .info .container,
    #hero .info .container-fluid,
    #hero .carousel-container,
    #hero .carousel-content,
    #hero .carousel-caption {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

        /* İçeride pt-*, mt-* sınıfları varsa override */
        #hero .info [class*="pt-"],
        #hero .info [class*="mt-"],
        #hero .info [class*="py-"],
        #hero .info [class*="my-"] {
            margin-top: 0 !important;
            padding-top: 0 !important;
        }


/* Hero badge */
#hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--ap-heroBorder);
    background: rgba(255,255,255,.10);
    color: var(--ap-heroMuted);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .2px;
    margin-bottom: 14px;
}

    #hero .hero-badge i {
        font-size: 16px;
        opacity: .95;
    }

/* Heading + paragraph */
#hero h2 {
    color: var(--ap-heroText);
    font-weight: 900;
    letter-spacing: -0.7px;
    font-size: 44px;
    line-height: 1.1;
    margin: 0 0 12px;
    text-transform: none;
}

#hero p {
    color: var(--ap-heroMuted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto 22px;
    max-width: 640px;
}

/* Base button */
#hero .ap-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    transition: .15s ease;
    will-change: transform;
}

#hero .ap-btn-primary {
    background: var(--ap-primary);
    color: #fff;
    box-shadow: 0 14px 40px rgba(0,78,115,.25);
    border-color: #33bbed;
}

    #hero .ap-btn-primary:hover {
        background: #33bbed;
        transform: translateY(-2px);
    }

#hero .ap-btn-outline {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: var(--ap-heroBorder);
}

    #hero .ap-btn-outline:hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-2px);
    }

/* CTA GRID */
#hero .ap-cta-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 10px;
}

#hero .ap-cta-item {
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
}

#hero .ap-cta-grid .ap-btn {
    min-width: 220px;
}

/* Delivery Pilot card */
#hero .ap-delivery-card {
    min-width: 340px;
    justify-content: space-between;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    color: #fff;
    transition: all .2s ease;
}

    #hero .ap-delivery-card:hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-3px);
    }

#hero .ap-delivery-left {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(51,187,237,.18);
    border: 1px solid rgba(51,187,237,.28);
}

#hero .ap-delivery-mid {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
    margin-left: 12px;
    flex: 1;
}

#hero .ap-delivery-title {
    font-weight: 900;
    font-size: 15px;
    letter-spacing: .2px;
    color: var(--ap-dp);
}

#hero .ap-delivery-desc {
    font-size: 13px;
    color: rgba(255,255,255,.78);
    margin-top: 2px;
}

#hero .ap-delivery-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
}

/* Carousel controls */
#hero .carousel-control-prev,
#hero .carousel-control-next {
    z-index: 4;
    width: 56px;
}

#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
    background-image: none !important;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.10);
    border: 1px solid var(--ap-heroBorder);
    backdrop-filter: blur(6px);
}

    #hero .carousel-control-prev-icon::before {
        content: "\2039";
        font-size: 28px;
        color: #fff;
        line-height: 1;
        margin-top: -1px;
    }

    #hero .carousel-control-next-icon::before {
        content: "\203A";
        font-size: 28px;
        color: #fff;
        line-height: 1;
        margin-top: -1px;
    }

/* Responsive */
@media (max-width:991px) {
    #hero.hero,
    #hero .carousel .carousel-item {
        min-height: 64vh;
    }

    #hero h2 {
        font-size: 32px;
    }

    #hero p {
        font-size: 16px;
    }
}

@media (max-width:576px) {
    #hero.hero,
    #hero .carousel .carousel-item {
        min-height: 62vh;
    }

    #hero h2 {
        font-size: 28px;
    }

    #hero .ap-cta-grid {
        flex-direction: column;
        align-items: stretch;
    }

        #hero .ap-cta-grid .ap-btn,
        #hero .ap-delivery-card {
            width: 100%;
            min-width: 0;
        }
}


/* Anasayfa About Section -------------------------------------------------------------------- */

/* About (minimal premium) */
.about-us {
    padding: 80px 0;
    background: #fff;
}

    .about-us .about-wrap {
        align-items: center;
    }

    .about-us .about-visual {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 18px 50px rgba(0,0,0,.08);
    }

        .about-us .about-visual img {
            display: block;
            width: 100%;
            height: auto;
            transform: scale(1.02);
        }

        .about-us .about-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(0,78,115,.20), rgba(0,78,115,.06) 45%, rgba(0,78,115,.20));
            pointer-events: none;
        }

    .about-us .about-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(51,187,237,.14);
        color: var(--ap-dark);
        font-weight: 800;
        font-size: 13px;
        letter-spacing: .2px;
        margin-bottom: 14px;
    }

    .about-us .about-title {
        font-weight: 900;
        letter-spacing: -0.5px;
        font-size: 34px;
        line-height: 1.15;
        margin: 0 0 10px;
        color: var(--ap-dark);
    }

    .about-us .about-subtitle {
        font-weight: 800;
        font-size: 16px;
        color: rgba(0,78,115,.82);
        margin-bottom: 14px;
    }

    .about-us .about-text {
        color: rgba(0,78,115,.85);
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .about-us .about-metrics {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin: 18px 0 18px;
    }

    .about-us .metric {
        display: inline-flex;
        align-items: baseline;
        gap: 8px;
        padding: 10px 12px;
        border: 1px solid rgba(0,78,115,.12);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(0,0,0,.05);
    }

        .about-us .metric strong {
            font-size: 18px;
            font-weight: 900;
            color: var(--ap-dark);
        }

        .about-us .metric span {
            font-size: 13px;
            color: rgba(0,78,115,.75);
            font-weight: 800;
        }

    .about-us .about-values {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 16px;
    }

    .about-us .value-card {
        border: 1px solid rgba(0,78,115,.12);
        border-radius: 16px;
        background: #fff;
        padding: 14px 14px;
        box-shadow: 0 14px 34px rgba(0,0,0,.06);
        transition: transform .2s ease, box-shadow .2s ease;
        height: 100%;
    }

        .about-us .value-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 44px rgba(0,0,0,.08);
        }

        .about-us .value-card .icon {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(51,187,237,.16);
            color: var(--ap-dark);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .about-us .value-card h6 {
            margin: 0 0 6px;
            font-weight: 900;
            font-size: 14px;
            color: var(--ap-dark);
        }

        .about-us .value-card p {
            margin: 0;
            font-size: 13px;
            line-height: 1.55;
            color: rgba(0,78,115,.78);
        }

/* Responsive */
@media (max-width: 991px) {
    .about-us {
        padding: 60px 0;
    }

        .about-us .about-title {
            font-size: 28px;
        }

        .about-us .about-values {
            grid-template-columns: 1fr;
        }
}

/* Services (minimal premium) */
.services {
    padding: 70px 0;
    background: rgba(51,187,237,.08);
}

    .services .svc-card {
        border: 1px solid rgba(0,78,115,.12);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 16px 44px rgba(0,0,0,.06);
        transition: transform .2s ease, box-shadow .2s ease;
        height: 100%;
    }

        .services .svc-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 22px 60px rgba(0,0,0,.09);
        }

    .services .svc-body {
        padding: 28px;
    }

    .services .svc-top {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    .services .svc-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(51,187,237,.18);
        color: var(--ap-dark);
        font-size: 20px;
        flex: 0 0 auto;
    }

    .services .svc-title {
        margin: 0;
        font-weight: 900;
        letter-spacing: -.2px;
        font-size: 18px;
        color: var(--ap-dark);
    }

    .services .svc-text {
        color: rgba(0,78,115,.80);
        line-height: 1.65;
        margin: 10px 0 14px;
    }

    .services .svc-list {
        margin: 0 0 18px;
        padding-left: 18px;
        color: rgba(0,78,115,.78);
        font-size: 14px;
    }

        .services .svc-list li {
            margin: 6px 0;
        }

    .services .svc-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 900;
        border: 1px solid rgba(0,78,115,.14);
        color: var(--ap-dark);
        background: #fff;
        transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }

        .services .svc-btn:hover {
            background: rgba(51,187,237,.12);
            border-color: rgba(51,187,237,.55);
            transform: translateY(-2px);
        }

    .services .svc-btn--primary {
        background: var(--ap-dark);
        border-color: var(--ap-dark);
        color: #fff;
        box-shadow: 0 14px 40px rgba(0,78,115,.22);
    }

        .services .svc-btn--primary:hover {
            background: var(--ap-primaryDark);
        }

@media (max-width: 991px) {
    .services {
        padding: 56px 0;
    }
}

/* =========================
   SEARCH + TABS (Premium)
   ========================= */
.search {
    padding: 70px 0;
    background: #fff;
}

/* Search box area spacing */
#e-search {
    margin-top: 8px;
}

/* Tabs container */
.e-tabs {
    margin-top: 24px;
}

    /* Premium tab buttons */
    .e-tabs .nav-tabs {
        border-bottom: 0;
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

        .e-tabs .nav-tabs .nav-link {
            border: 1px solid rgba(0,78,115,.14);
            border-radius: 999px;
            padding: 12px 16px;
            font-weight: 900;
            color: var(--ap-dark);
            background: rgba(51,187,237,.10);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 10px 26px rgba(0,0,0,.05);
            transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
            width: auto !important;
            white-space: nowrap;
            flex: 0 0 auto;
        }

            .e-tabs .nav-tabs .nav-link i {
                font-size: 18px;
                opacity: .95;
                color: var(--ap-dark);
            }

            .e-tabs .nav-tabs .nav-link:hover {
                background: rgba(51,187,237,.18);
                border-color: rgba(51,187,237,.60);
                transform: translateY(-2px);
                box-shadow: 0 14px 34px rgba(0,0,0,.07);
            }

            .e-tabs .nav-tabs .nav-link.active {
                background: var(--ap-dark);
                border-color: var(--ap-dark);
                color: #fff;
                box-shadow: 0 14px 40px rgba(0,78,115,.20);
            }

                .e-tabs .nav-tabs .nav-link.active i {
                    color: var(--ap-accent);
                }

    /* Tab content spacing */
    .e-tabs .tab-pane {
        margin-top: 22px;
    }

    /* Section header inside tab */
    .e-tabs .tab-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 12px;
        margin-top: 10px;
        margin-bottom: 8px;
    }

        .e-tabs .tab-head h2 {
            margin: 0;
            font-weight: 900;
            letter-spacing: -0.4px;
            font-size: 24px;
            color: var(--ap-dark);
        }

        .e-tabs .tab-head p {
            margin: 0;
            color: rgba(0,78,115,.75);
            font-size: 14px;
            font-weight: 700;
        }

    /* Premium cards */
    .e-tabs .card {
        border: 1px solid rgba(0,78,115,.12);
        border-radius: 18px;
        box-shadow: 0 16px 44px rgba(0,0,0,.06);
        transition: transform .2s ease, box-shadow .2s ease;
        height: 100%;
        overflow: hidden;
        background: #fff;
    }

        .e-tabs .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 22px 60px rgba(0,0,0,.09);
        }

    .e-tabs .card-body {
        padding: 22px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .e-tabs .card-title {
        font-weight: 900;
        letter-spacing: -0.2px;
        color: var(--ap-dark);
        margin-bottom: 6px;
        line-height: 1.25;
        font-size: 16px;
    }

    .e-tabs .card-subtitle {
        font-weight: 900;
        color: var(--ap-accent);
        font-size: 12px;
        margin-bottom: 12px;
        opacity: .98;
    }

    .e-tabs .card-text {
        color: rgba(0,78,115,.82);
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 14px;
    }

    /* Link as premium button */
    .e-tabs .card-link {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 900;
        text-decoration: none;
        border-radius: 14px;
        padding: 10px 12px;
        border: 1px solid rgba(0,78,115,.14);
        color: var(--ap-dark);
        background: rgba(51,187,237,.08);
        transition: transform .15s ease, background .15s ease, border-color .15s ease;
        width: fit-content;
    }

        .e-tabs .card-link:hover {
            background: rgba(51,187,237,.16);
            border-color: rgba(51,187,237,.60);
            transform: translateY(-2px);
        }

        .e-tabs .card-link::after {
            content: "→";
            font-weight: 900;
        }

    /* "All trainings" CTA button */
    .e-tabs .search-cta {
        margin-top: 22px;
        text-align: center;
    }

    .e-tabs .search-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
        border-radius: 14px;
        font-weight: 900;
        text-decoration: none;
        border: 1px solid var(--ap-dark);
        background: var(--ap-dark);
        color: #fff;
        box-shadow: 0 14px 40px rgba(0,78,115,.18);
        transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }

        .e-tabs .search-btn:hover {
            background: var(--ap-primaryDark);
            border-color: var(--ap-primaryDark);
            transform: translateY(-2px);
        }

/* Mobile behavior */
@media (max-width: 768px) {
    .e-tabs .nav-tabs {
        flex-wrap: wrap !important;
    }

        .e-tabs .nav-tabs .nav-link {
            width: 100% !important;
            justify-content: center;
        }
}

/* Responsive */
@media (max-width: 991px) {
    .search {
        padding: 56px 0;
    }

    .e-tabs .tab-head h2 {
        font-size: 22px;
    }
}





.dp-band {
    padding: 34px 0;
    background: #fff;
}

.dp-wrap {
    position: relative;
    border-radius: 22px;
    padding: 22px 22px;
    border: 1px solid rgba(0,78,115,.14);
    background: radial-gradient(circle at 18% 18%, rgba(51,187,237,.20), transparent 45%), radial-gradient(circle at 86% 45%, rgba(51,187,237,.14), transparent 50%), linear-gradient(180deg, rgba(0,78,115,.06), rgba(0,78,115,.02));
    box-shadow: 0 18px 50px rgba(0,0,0,.06);
    overflow: hidden;
}

    /* subtle decorative line */
    .dp-wrap:before {
        content: "";
        position: absolute;
        inset: auto -20% 0 -20%;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(51,187,237,.95), transparent);
        opacity: .55;
    }

.dp-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.dp-left {
    min-width: 280px;
    flex: 1;
}

.dp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(51,187,237,.16);
    border: 1px solid rgba(51,187,237,.35);
    color: var(--ap-dark);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .2px;
    margin-bottom: 10px;
    color: var(--ap-dp);
}

.dp-title {
    margin: 0 0 6px;
    font-weight: 900;
    letter-spacing: -.5px;
    color: var(--ap-dark);
    font-size: 24px;
    line-height: 1.2;
}

    .dp-title span {
        color: var(--ap-dp);
    }

.dp-desc {
    margin: 0;
    color: rgba(0,78,115,.82);
    font-size: 15px;
    line-height: 1.65;
    max-width: 720px;
}

.dp-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.dp-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,78,115,.12);
    box-shadow: 0 10px 22px rgba(0,0,0,.05);
    color: var(--ap-dark);
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}

.dp-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--ap-accent);
    box-shadow: 0 0 0 4px rgba(51,187,237,.18);
}

.dp-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.dp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid rgba(0,78,115,.14);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.dp-btn-primary {
    background: var(--ap-dark);
    border-color: var(--ap-dark);
    color: #fff;
    box-shadow: 0 14px 40px rgba(0,78,115,.22);
}

    .dp-btn-primary:hover {
        background: var(--ap-dark2);
        border-color: var(--ap-dark2);
        transform: translateY(-2px);
        color: #fff;
    }

.dp-btn-ghost {
    background: rgba(51,187,237,.12);
    border-color: rgba(51,187,237,.40);
    color: var(--ap-dark);
}

    .dp-btn-ghost:hover {
        background: rgba(51,187,237,.18);
        border-color: rgba(51,187,237,.65);
        transform: translateY(-2px);
        color: var(--ap-dark);
    }

@media (max-width: 991px) {
    .dp-wrap {
        padding: 18px;
    }

    .dp-title {
        font-size: 22px;
    }

    .dp-right {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .dp-band {
        padding: 26px 0;
    }

    .dp-right {
        flex-direction: column;
        align-items: stretch;
    }

    .dp-btn {
        width: 100%;
    }
}


.home-contact {
    background: linear-gradient(135deg, #004e73, #003a55);
    color: #fff;
}

.ap-stat-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 22px;
    transition: all .2s ease;
}

    .ap-stat-box:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,0.12);
    }

    .ap-stat-box i {
        font-size: 26px;
        margin-bottom: 12px;
        display: inline-block;
        color: #33bbed;
    }

    .ap-stat-box h4 {
        font-weight: 800;
        margin-bottom: 8px;
        color: #fff;
    }

    .ap-stat-box p {
        font-size: 14px;
        opacity: .85;
        margin: 0;
    }

.ap-contact-card {
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}




.ap-references {
    background: #f8fafc;
}

.ap-section-title h2 {
    font-weight: 900;
    color: #004e73;
    margin-bottom: 10px;
}

.ap-section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: #6b7280;
}

.ap-carousel {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

    .ap-carousel .carousel-control-prev-icon,
    .ap-carousel .carousel-control-next-icon {
        filter: invert(1);
        opacity: .6;
    }

        .ap-carousel .carousel-control-prev-icon:hover,
        .ap-carousel .carousel-control-next-icon:hover {
            opacity: 1;
        }



/* Shell tek sticky */
.ap-sticky-shell {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: var(--ap-dark); /* arada 1px bile kalsa görünmesin */
}

/* Topbar + Header artık sticky değil (shell sticky) */
#topbar.ap-topbar,
#header.ap-header {
    position: relative !important;
    top: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--ap-dark);
}

/* TOPBAR */
#topbar.ap-topbar {
    height: var(--ap-topbar-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

    #topbar.ap-topbar .container {
        display: flex;
        align-items: center !important;
    }

    #topbar.ap-topbar .contact-info {
        display: flex;
        align-items: center;
        gap: 14px;
        color: rgba(255,255,255,.92);
    }

        #topbar.ap-topbar .contact-info i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            color: var(--ap-accent);
            margin-right: 6px;
        }

        #topbar.ap-topbar .contact-info a {
            color: rgba(255,255,255,.92);
            text-decoration: none;
            font-weight: 700;
            line-height: 1;
        }

            #topbar.ap-topbar .contact-info a:hover {
                color: #fff;
                text-decoration: underline;
                text-underline-offset: 3px;
            }

        #topbar.ap-topbar .contact-info .ap-sep {
            width: 1px;
            height: 14px;
            background: rgba(255,255,255,.22);
        }

    /* Social */
    #topbar.ap-topbar .social-links {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        #topbar.ap-topbar .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.12);
            color: rgba(255,255,255,.92);
            transition: .15s ease;
        }

            #topbar.ap-topbar .social-links a i {
                font-size: 16px;
                line-height: 1;
            }

            #topbar.ap-topbar .social-links a:hover {
                transform: translateY(-2px);
                background: rgba(51,187,237,.16);
                border-color: rgba(51,187,237,.35);
                color: #fff;
            }

/* HEADER */
#header.ap-header {
    height: var(--ap-header-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

    #header.ap-header .container {
        display: flex;
        align-items: center !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Logo */
    #header.ap-header .ap-logo {
        height: 66px;
        width: auto;
    }
    /* Logo dikey ortalama fix */
    #header.ap-header .logo {
        display: flex !important;
        align-items: center !important;
        height: var(--ap-header-h) !important; /* header yüksekliğiyle aynı */
    }

        #header.ap-header .logo img,
        #header.ap-header .ap-logo {
            display: block !important; /* baseline boşluğunu kaldırır */
            margin: 0 !important;
        }

    /* Çok az aşağı/ yukarı kayma varsa ince ayar */
    #header.ap-header .ap-logo {
        transform: translateY(-1px); /* gerekirse 0 veya -2 yap */
    }


    /* Navbar reset (tema margin/padding bırakmasın) */
    #header.ap-header .ap-navbar,
    #header.ap-header #navbar {
        padding: 0 !important;
        margin: 0 !important;
    }

        #header.ap-header #navbar ul {
            margin: 0 !important;
            padding: 0 !important;
        }

            /* Menü linkleri */
            #header.ap-header #navbar ul li a {
                color: rgba(255,255,255,.92) !important;
                font-weight: 800;
                letter-spacing: .2px;
                font-size: 13px;
                padding: 12px 12px !important;
                border-radius: 12px;
                transition: .15s ease;
            }

                #header.ap-header #navbar ul li a:hover {
                    color: #fff !important;
                    background: rgba(255,255,255,.08);
                }

                #header.ap-header #navbar ul li a.active {
                    color: #fff !important;
                    background: rgba(51,187,237,.18);
                    border: 1px solid rgba(51,187,237,.30);
                }

        /* Dropdown */
        #header.ap-header #navbar .dropdown > a i {
            color: rgba(255,255,255,.85) !important;
        }

        #header.ap-header #navbar .dropdown ul {
            border-radius: 16px;
            padding: 10px;
            border: 1px solid rgba(15,23,42,.14);
            box-shadow: 0 18px 50px rgba(0,0,0,.18);
        }

            #header.ap-header #navbar .dropdown ul li a {
                color: #0b1d3a !important;
                background: transparent;
                font-weight: 700;
                padding: 10px 12px !important;
                border-radius: 12px;
            }

                #header.ap-header #navbar .dropdown ul li a:hover {
                    background: rgba(0,78,115,.08);
                    color: var(--ap-heroText) !important;
                }

    /* Mobile toggle */
    #header.ap-header .mobile-nav-toggle {
        color: #fff !important;
    }

/* Boşluk kalıntısı temizliği */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Tema placeholder/spacer üretirse öldür */
.header-spacer,
.sticky-header-placeholder,
.header-placeholder,
.navbar-placeholder {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================= */
/*      ACADEMY CORPORATE FOOTER */
/* ============================= */

#academy-footer {
    background: #003a55;
    color: #cbd5e1;
    font-size: 14px;
}

    #academy-footer .academy-footer-top {
        padding: 70px 0 50px;
    }

    #academy-footer .academy-footer-title {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }

    #academy-footer .academy-footer-logo {
        max-width: 160px;
    }

    #academy-footer .academy-footer-description {
        opacity: 0.8;
        line-height: 1.6;
        max-width: 340px;
    }

    #academy-footer .academy-footer-links,
    #academy-footer .academy-footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #academy-footer .academy-footer-links li,
        #academy-footer .academy-footer-contact li {
            margin-bottom: 10px;
        }

    #academy-footer a {
        color: #cbd5e1;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        #academy-footer a:hover {
            color: #38bdf8;
        }

    #academy-footer .academy-footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #1e293b;
        border-radius: 50%;
        margin-right: 8px;
        color: #ffffff;
        transition: 0.3s ease;
    }

        #academy-footer .academy-footer-social a:hover {
            background: #38bdf8;
            color: #0f172a;
        }

    #academy-footer .academy-footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 20px 0;
        font-size: 13px;
        opacity: 0.8;
    }

    #academy-footer .academy-footer-policy a {
        color: #cbd5e1;
    }


/* ============================= */
/*       ACADEMY - CALENDAR      */
/* ============================= */

#academy-calendar.academy-calendar {
    background: #ffffff;
}
#academy-calendar {
    margin-top: -80px; /* #main offset kadar */
}

    #academy-calendar .academy-calendar-hero {
        padding-top: 170px; /* telafi */
    }
/* Hero */
#academy-calendar .academy-calendar-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #0b3a57 55%, #0f172a 100%);
    color: #fff;
    padding: 90px 0 60px;
    overflow: hidden;
}

#academy-calendar .academy-calendar-hero-inner {
    position: relative;
    z-index: 2;
}

#academy-calendar .academy-calendar-hero::before {
    content: "";
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle at 20% 20%, rgba(56,189,248,0.20), transparent 45%), radial-gradient(circle at 80% 30%, rgba(99,102,241,0.16), transparent 40%);
    filter: blur(2px);
    z-index: 1;
}

#academy-calendar .academy-calendar-hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
    z-index: 2;
}

#academy-calendar .academy-calendar-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
}

#academy-calendar .academy-calendar-title {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 12px;
    font-weight: 700;
    color: #fff !important;
}

#academy-calendar .academy-calendar-subtitle {
    margin: 0;
    opacity: 0.85;
    max-width: 620px;
}

/* Contact card */
#academy-calendar .academy-calendar-contactcard {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 18px 18px;
    backdrop-filter: blur(6px);
}

#academy-calendar .academy-calendar-contact-title {
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.95;
}

#academy-calendar .academy-calendar-contactlink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s ease;
    background: rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 10px;
}

    #academy-calendar .academy-calendar-contactlink i {
        font-size: 18px;
        opacity: 0.95;
    }

    #academy-calendar .academy-calendar-contactlink:hover {
        transform: translateY(-1px);
        background: rgba(56,189,248,0.18);
        border-color: rgba(56,189,248,0.30);
    }

#academy-calendar .academy-calendar-contactnote {
    opacity: 0.8;
    font-size: 13px;
    margin-top: 2px;
}

/* Content panel */
#academy-calendar .academy-calendar-content {
    padding: 35px 0 80px;
}

#academy-calendar .academy-calendar-panel {
    border: 1px solid #e6edf3;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

#academy-calendar .academy-calendar-panelhead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 22px;
    border-bottom: 1px solid #eef3f7;
    background: #fbfdff;
}

#academy-calendar .academy-calendar-paneltitle {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
}

#academy-calendar .academy-calendar-paneldesc {
    color: #475569;
    font-size: 13px;
}

#academy-calendar .academy-calendar-panelbody {
    padding: 18px 22px 24px;
}

#academy-calendar .academy-calendar-cta.btn.btn-primary {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    #academy-calendar .academy-calendar-title {
        font-size: 28px;
    }
}



/*SertifikaSorgula*/

.ap-cert-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}

#loadingBox {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
}

    #loadingBox::before {
        content: "";
        width: 18px;
        height: 18px;
        border: 2px solid rgba(0, 78, 115, 0.18);
        border-top-color: var(--ap-primary);
        border-radius: 50%;
        animation: apSpin .8s linear infinite;
        flex: 0 0 18px;
    }

#loadingText {
    font-weight: 600;
    color: #284050;
}


.ap-cert-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(0, 78, 115, 0.88), rgba(0, 58, 85, 0.88)), url('/Content/assets/img/academypeak-sertifika-sorgulama.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

    .ap-cert-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(51,187,237,.18), transparent 28%), radial-gradient(circle at bottom left, rgba(255,81,0,.10), transparent 24%);
        pointer-events: none;
    }

    .ap-cert-hero .container {
        position: relative;
        z-index: 2;
    }

    .ap-cert-hero h1 {
        color: var(--ap-heroText);
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: -.02em;
        margin-bottom: 14px;
    }

    .ap-cert-hero p {
        color: var(--ap-heroMuted);
        font-size: 1.02rem;
        max-width: 760px;
        margin: 0 auto 20px auto;
        line-height: 1.7;
    }

.ap-cert-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid var(--ap-heroBorder);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .ap-cert-breadcrumb a,
    .ap-cert-breadcrumb span {
        color: #fff;
        text-decoration: none;
        font-size: .92rem;
    }

    .ap-cert-breadcrumb .sep {
        opacity: .65;
    }

.ap-cert-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #f6f9fc 0%, #eef4f8 100%);
}

.ap-cert-card {
    background: #fff;
    border: 1px solid #e5edf5;
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(0, 78, 115, 0.08);
    height: 100%;
}

.ap-cert-search-card {
    padding: 42px;
}

.ap-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(51, 187, 237, 0.12);
    color: var(--ap-primary);
    border: 1px solid rgba(51, 187, 237, 0.22);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 18px;
}

.ap-cert-search-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #183140;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

    .ap-cert-search-card h2::after {
        content: "";
        display: block;
        width: 56px;
        height: 3px;
        margin-top: 10px;
        background: var(--ap-dp);
        border-radius: 99px;
    }

.ap-cert-search-card p {
    color: #5f7182;
    margin-bottom: 26px;
    line-height: 1.8;
    font-size: 1rem;
}

.ap-cert-form-wrap {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    border: 1px solid #e4edf4;
    border-radius: 18px;
    padding: 22px;
}

.ap-cert-label {
    display: block;
    text-align: left;
    font-size: .95rem;
    font-weight: 600;
    color: #20303f;
    margin-bottom: 10px;
}

.ap-cert-input-group {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.ap-cert-input {
    height: 56px;
    border-radius: 14px !important;
    border: 1px solid #d7e3ee;
    padding: 0 18px;
    width: 100%;
    font-size: 1rem;
    box-shadow: none !important;
}

    .ap-cert-input::placeholder {
        color: #97a6b3;
        letter-spacing: .3px;
    }

    .ap-cert-input:focus {
        border-color: var(--ap-accent);
        box-shadow: 0 0 0 0.2rem rgba(51, 187, 237, 0.15) !important;
    }

.ap-cert-btn {
    min-width: 60px;
    height: 56px;
    border: none;
    border-radius: 14px !important;
    background: linear-gradient(135deg, var(--ap-primary), var(--ap-primaryDark));
    color: #fff;
    transition: all .25s ease;
}

    .ap-cert-btn:hover {
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0, 78, 115, 0.25);
    }

.ap-cert-note {
    margin-top: 12px;
    text-align: left;
    color: #6a7c8c;
    font-size: .92rem;
    line-height: 1.6;
}

#sData {
    margin-top: 26px;
    text-align: left;
}

.ap-cert-side-card {
    padding: 34px 28px;
}

.ap-cert-side-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3342;
    margin-bottom: 20px;
}

.ap-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #edf2f7;
}

    .ap-feature-item:last-child {
        border-bottom: 0;
    }

.ap-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    background: rgba(51, 187, 237, 0.15);
    color: var(--ap-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: inset 0 0 0 1px rgba(51, 187, 237, 0.08);
}

.ap-feature-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #20303f;
    margin-bottom: 6px;
}

.ap-feature-text p {
    margin: 0;
    color: #647585;
    line-height: 1.7;
    font-size: .95rem;
}



/* Result */
.ap-cert-result-card {
    margin-top: 8px;
    background: #fff;
    border: 1px solid #e4edf4;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(0, 78, 115, 0.08);
}

.ap-cert-result-image-wrap {
    background: #f9fbfd;
    border: 1px solid #e5edf5;
    border-radius: 18px;
    padding: 12px;
    text-align: center;
}

.ap-cert-result-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(16, 38, 58, 0.08);
}

.ap-cert-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 163, 93, 0.10);
    color: #1f7a47;
    border: 1px solid rgba(31, 163, 93, 0.18);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.ap-cert-result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #20303f;
    margin-bottom: 18px;
}

.ap-cert-result-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ap-cert-result-item {
    padding: 14px 16px;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    background: #fbfdff;
}

    .ap-cert-result-item .label {
        display: block;
        font-size: .85rem;
        color: #738496;
        margin-bottom: 4px;
    }

    .ap-cert-result-item strong {
        display: block;
        color: #1b2d3a;
        font-size: 1rem;
        line-height: 1.5;
    }

.ap-cert-result-actions {
    margin-top: 20px;
}

.ap-cert-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}

    .ap-cert-download-btn:hover {
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(198, 40, 40, 0.20);
    }

.ap-cert-empty {
    background: #fff;
    border: 1px solid #e4edf4;
    border-radius: 16px;
    padding: 18px 20px;
    color: #425466;
    box-shadow: 0 10px 26px rgba(0, 78, 115, 0.06);
}

.ap-cert-empty-error {
    border-color: rgba(220,53,69,.18);
    background: #fff8f8;
    color: #a94442;
}

.ap-cert-modal-dialog {
    max-width: 600px;
    width: calc(100% - 32px);
    margin: 1.75rem auto;
    margin-top: 80px !important; /* 🔥 önemli */
}

.ap-cert-modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    background: #fff;
}

.ap-cert-modal-header {
    border-bottom: 1px solid #eef2f6;
    padding: 14px 18px;
}

    .ap-cert-modal-header .modal-title {
        font-weight: 700;
        color: #20303f;
        font-size: 1rem;
    }

.ap-cert-modal-body {
    padding: 16px;
    background: #f8fbfe;
    text-align: center;
}

.ap-cert-modal-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 72vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(16, 38, 58, 0.10);
}

@media (max-width: 767.98px) {
    .ap-cert-modal-dialog {
        max-width: calc(100% - 20px);
        margin: 10px auto;
    }

    .ap-cert-modal-body {
        padding: 10px;
    }

    .ap-cert-modal-image {
        max-height: 65vh;
    }
}

@media (max-width: 991.98px) {
    .ap-cert-section {
        padding: 54px 0;
    }

    .ap-cert-search-card,
    .ap-cert-side-card {
        padding: 28px 22px;
    }

    .ap-cert-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .ap-cert-hero {
        min-height: 270px;
        padding: 42px 0;
    }

        .ap-cert-hero h1 {
            font-size: 1.8rem;
        }

    .ap-cert-search-card h2 {
        font-size: 1.6rem;
    }

    .ap-cert-input-group {
        flex-direction: column;
    }

    .ap-cert-btn {
        width: 100%;
    }
}
@keyframes apSpin {
    to {
        transform: rotate(360deg);
    }
}


/*Search Eğitim*/
/* ICON */
.ap-search-icon {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    margin-left: 12px;
    cursor: pointer;
}

/* OVERLAY */
.ap-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
    .ap-search-overlay input {
        width: 100%;
        height: 72px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.18);
        outline: none;
        padding: 0 26px;
        font-size: 22px;
        background: rgba(255,255,255,0.96);
        color: #0f172a;
        box-shadow: 0 20px 50px rgba(0,0,0,0.22);
    }

        .ap-search-overlay input::placeholder {
            color: #94a3b8;
        }

    /* ACTIVE STATE */
    .ap-search-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* INPUT CONTAINER */
.ap-search-overlay-content {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

/* INPUT */
.ap-search-overlay input {
    width: 100%;
    height: 70px;
    border-radius: 14px;
    border: none;
    outline: none;
    padding: 0 25px;
    font-size: 22px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* CLOSE BUTTON */
.ap-search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.ap-search-live-wrap {
    position: relative;
    width: 100%;
}

.ap-search-live-wrap {
    position: relative;
    width: 100%;
}

.ap-search-results {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 16, 35, 0.28);
    overflow: hidden;
    display: none;
    max-height: 50vh!important;
    overflow-y: auto;
    padding: 8px;
}

    .ap-search-results.show {
        display: block;
    }

.ap-search-result-item {
    display: block;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 14px;
    transition: all .22s ease;
    margin-bottom: 6px;
    border: 1px solid transparent;
    background: #ffffff;
}

    .ap-search-result-item:last-child {
        margin-bottom: 0;
    }

    .ap-search-result-item:hover {
        background: #f8fbff;
        border-color: #d7e8f5;
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(0, 78, 115, 0.08);
    }

.ap-search-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.ap-search-result-title {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.ap-search-result-category {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
    color: #004e73;
    background: #eaf6fb;
    border: 1px solid #d7edf7;
    padding: 5px 9px;
    border-radius: 999px;
}

.ap-search-result-summary {
    font-size: 13px;
    line-height: 1.55;
    color: #475569;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ap-search-empty,
.ap-search-loading {
    padding: 18px 18px;
    font-size: 14px;
    color: #64748b;
    background: #fff;
    border-radius: 14px;
}

.ap-search-empty {
    text-align: center;
}

.ap-search-results::-webkit-scrollbar {
    width: 8px;
}

.ap-search-results::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

.ap-search-results::-webkit-scrollbar-track {
    background: transparent;
}

@media (max-width: 768px) {
    .ap-search-results {
        top: calc(100% + 10px);
        border-radius: 16px;
        padding: 6px;
    }

    .ap-search-result-item {
        padding: 12px 13px;
        border-radius: 12px;
    }

    .ap-search-result-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .ap-search-result-title {
        font-size: 15px;
    }

    .ap-search-result-summary {
        font-size: 12.5px;
    }
}

/*ana sayfa search*/
.ap-hero-search-trigger {
    width: 100%;
    max-width: 760px;
    min-height: 68px;
    margin: 28px auto 0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 16px 42px rgba(0, 19, 40, 0.18);
    cursor: pointer;
    transition: all .25s ease;
    backdrop-filter: blur(8px);
}

    .ap-hero-search-trigger:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 52px rgba(0, 19, 40, 0.24);
    }

.ap-hero-search-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eaf6fb;
    color: #004e73;
    font-size: 18px;
}

.ap-hero-search-text {
    flex: 1;
    color: #64748b;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}

.ap-hero-search-shortcut {
    padding: 9px 14px;
    border-radius: 999px;
    background: #004e73;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .ap-hero-search-trigger {
        max-width: 100%;
        min-height: 62px;
        padding: 10px 14px;
        border-radius: 16px;
        margin-top: 22px;
    }

    .ap-hero-search-text {
        font-size: 15px;
    }

    .ap-hero-search-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .ap-hero-search-shortcut {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .ap-hero-search-trigger {
        gap: 10px;
    }

    .ap-hero-search-shortcut {
        display: none;
    }

    .ap-hero-search-text {
        font-size: 14px;
    }
}
.ap-hero-search-trigger-inputlike {
    justify-content: flex-start;
}

/*Egitimler search*/

.ap-page-search-trigger {
    width: 100%;
    max-width: 760px;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid #dbe4ec;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    cursor: text;
    transition: all .2s ease;
}

    .ap-page-search-trigger:hover {
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
        transform: translateY(-1px);
    }

.ap-page-search-trigger-icon {
    color: #64748b;
    font-size: 18px;
    line-height: 1;
}

.ap-page-search-trigger-text {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.4;
}

.ap-page-search-wrap {
    margin-bottom: 28px;
}

.ap-page-search-box {
    position: relative;
    max-width: 760px;
    /* 🔥 ORTALAMAYI KALDIR */
    margin-left: 0;
    margin-right: 0;
}



/*Blog Anasayfa*/
.ap-blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ap-blog-label {
    font-size: 13px;
    font-weight: 800;
    color: #33bbed;
}

.ap-blog-date {
    font-size: 13px;
    font-weight: 600;
    color: #8a9aa5;
}
.ap-blog-page {
    padding: 70px 0;
    background: #f6f9fb;
}

.ap-blog-intro {
    max-width: 820px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

.ap-section-kicker {
    display: block;
    margin-bottom: 10px;
    color: #33bbed;
    font-weight: 800;
    letter-spacing: .04em;
}

.ap-blog-intro h1 {
    color: #004e73;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
}

.ap-blog-intro p {
    color: #667985;
    font-size: 17px;
    line-height: 1.7;
}

.ap-blog-featured {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(0, 78, 115, .12);
}

.ap-blog-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ap-blog-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #fff;
    border: 1px solid rgba(0, 78, 115, .08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 78, 115, .08);
    transition: all .25s ease;
}

    .ap-blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 42px rgba(0, 78, 115, .14);
    }

.ap-blog-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 230px;
    overflow: hidden;
    background: #eaf3f7;
}

    .ap-blog-img img {
        width: 100%;
        height: 100%;
        min-height: 230px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.ap-blog-card:hover .ap-blog-img img {
    transform: scale(1.05);
}

.ap-blog-content {
    padding: 24px;
}

    .ap-blog-content a {
        text-decoration: none;
    }

.ap-blog-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #33bbed;
    font-size: 13px;
    font-weight: 800;
}

.ap-blog-content h2 {
    color: #004e73;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 12px;
}

.ap-blog-content p {
    color: #60717c;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ap-read-more {
    color: #004e73;
    font-weight: 800;
}

.ap-blog-sidebar {
    position: sticky;
    top: 115px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ap-sidebar-card {
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(0, 78, 115, .08);
    box-shadow: 0 14px 36px rgba(0, 78, 115, .08);
}

.ap-cta-card {
    background: linear-gradient(145deg, #004e73, #006b97);
    color: #fff;
}

    .ap-cta-card span {
        color: #8ee6ff;
        font-weight: 800;
    }

    .ap-cta-card h3 {
        font-size: 26px;
        font-weight: 800;
        margin: 14px 0;
    }

    .ap-cta-card p {
        color: rgba(255, 255, 255, .86);
        line-height: 1.7;
    }

.ap-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    background: #33bbed;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.ap-sidebar-card h4 {
    color: #004e73;
    font-weight: 800;
    margin-bottom: 16px;
}

.ap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .ap-tags span {
        background: #eef8fb;
        color: #004e73;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 800;
    }

.ap-load-more-btn {
    border: none;
    background: #004e73;
    color: #fff;
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(0, 78, 115, .16);
    transition: all .25s ease;
}

    .ap-load-more-btn:hover {
        background: #33bbed;
        color: #00384f;
        transform: translateY(-2px);
    }

    .ap-load-more-btn:disabled {
        opacity: .65;
        cursor: not-allowed;
        transform: none;
    }

@media (max-width: 991px) {
    .ap-blog-page {
        padding: 50px 0;
    }

    .ap-blog-sidebar {
        position: static;
    }

    .ap-blog-card {
        grid-template-columns: 1fr;
    }

    .ap-blog-img,
    .ap-blog-img img {
        min-height: 240px;
    }

    .ap-blog-intro h1 {
        font-size: 30px;
    }
}

/*Blog Detay sayfası*/
.ap-blog-detail-page {
    background: #f6f9fb;
}

.ap-blog-detail-hero {
    padding: 70px 0 55px;
    background: linear-gradient(135deg, rgba(0,78,115,.95), rgba(0,118,168,.88)), url('/Content/assets/img/academypeak-blog.jpeg') center/cover no-repeat;
    color: #fff;
}

.ap-blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 34px;
    font-size: 14px;
    color: rgba(255,255,255,.78);
}

    .ap-blog-breadcrumb a {
        color: rgba(255,255,255,.88);
        text-decoration: none;
        font-weight: 700;
    }

    .ap-blog-breadcrumb strong {
        color: #fff;
        font-weight: 700;
    }

.ap-blog-detail-head {
    max-width: 920px;
}

.ap-blog-label {
    display: inline-block;
    color: #8ee6ff;
    font-weight: 800;
    margin-bottom: 14px;
}

.ap-blog-detail-head h1 {
    color: #fff;
    font-size: 44px;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 18px;
}

.ap-blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

    .ap-blog-detail-meta span,
    .ap-blog-detail-meta time {
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.16);
        padding: 8px 12px;
        border-radius: 999px;
    }

.ap-blog-detail-desc {
    max-width: 820px;
    color: rgba(255,255,255,.86);
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
}

.ap-blog-detail-body {
    padding: 55px 0;
}

.ap-blog-article {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(0,78,115,.08);
    box-shadow: 0 18px 45px rgba(0,78,115,.10);
}

.ap-blog-cover {
    aspect-ratio: 16 / 9;
    background: #eaf3f7;
    overflow: hidden;
}

    .ap-blog-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.ap-blog-content-detail {
    padding: 42px;
    color: #394b55;
    font-size: 17px;
    line-height: 1.85;
}

    .ap-blog-content-detail h2,
    .ap-blog-content-detail h3,
    .ap-blog-content-detail h4 {
        color: #004e73;
        font-weight: 850;
        margin-top: 34px;
        margin-bottom: 16px;
        line-height: 1.35;
    }

    .ap-blog-content-detail h2 {
        font-size: 28px;
    }

    .ap-blog-content-detail h3 {
        font-size: 23px;
    }

    .ap-blog-content-detail p {
        margin-bottom: 20px;
    }

    .ap-blog-content-detail a {
        color: #0076a8;
        font-weight: 700;
    }

    .ap-blog-content-detail img {
        max-width: 100%;
        height: auto;
        border-radius: 18px;
        margin: 24px 0;
    }

    .ap-blog-content-detail ul,
    .ap-blog-content-detail ol {
        padding-left: 22px;
        margin-bottom: 24px;
    }

    .ap-blog-content-detail li {
        margin-bottom: 10px;
    }

.ap-social-share {
    padding: 28px 42px 38px;
    border-top: 1px solid rgba(0,78,115,.08);
    text-align: center;
}

    .ap-social-share p {
        color: #004e73;
        font-size: 13px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 18px;
    }

.ap-share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

    .ap-share-buttons button {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: none;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all .25s ease;
    }

        .ap-share-buttons button:hover {
            transform: translateY(-3px);
        }

    .ap-share-buttons .facebook {
        background: #1877f2;
    }

    .ap-share-buttons .twitter {
        background: #111;
    }

    .ap-share-buttons .linkedin {
        background: #0a66c2;
    }

    .ap-share-buttons .whatsapp {
        background: #25d366;
    }

.ap-blog-detail-sidebar {
    position: sticky;
    top: 115px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ap-sidebar-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(0,78,115,.08);
    box-shadow: 0 14px 36px rgba(0,78,115,.08);
}

.ap-cta-card {
    background: linear-gradient(145deg, #004e73, #006b97);
    color: #fff;
}

    .ap-cta-card span {
        color: #8ee6ff;
        font-weight: 900;
    }

    .ap-cta-card h3 {
        color: #fff;
        font-size: 26px;
        font-weight: 900;
        margin: 14px 0;
        line-height: 1.3;
    }

    .ap-cta-card p {
        color: rgba(255,255,255,.86);
        line-height: 1.7;
    }

.ap-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    background: #33bbed;
    color: #00384f;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.ap-sidebar-card h4 {
    color: #004e73;
    font-weight: 900;
    margin-bottom: 16px;
}

.ap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .ap-tags span {
        background: #eef8fb;
        color: #004e73;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 800;
    }

.ap-contact-mini p {
    color: #60717c;
    line-height: 1.7;
}

.ap-contact-mini a {
    color: #004e73;
    font-weight: 900;
    text-decoration: none;
}

.ap-related-trainings {
    padding: 55px 0 75px;
    background: #fff;
}

.ap-section-head {
    max-width: 760px;
    margin: 0 auto 36px;
}

    .ap-section-head span {
        color: #33bbed;
        font-weight: 900;
    }

    .ap-section-head h2 {
        color: #004e73;
        font-size: 34px;
        font-weight: 900;
        margin: 10px 0;
    }

    .ap-section-head p {
        color: #60717c;
        font-size: 16px;
        line-height: 1.7;
    }

.ap-training-carousel {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,78,115,.10);
}

@media (max-width: 991px) {
    .ap-blog-detail-hero {
        padding: 50px 0 42px;
    }

    .ap-blog-detail-head h1 {
        font-size: 32px;
    }

    .ap-blog-detail-desc {
        font-size: 16px;
    }

    .ap-blog-detail-sidebar {
        position: static;
    }

    .ap-blog-content-detail {
        padding: 28px;
        font-size: 16px;
    }

    .ap-social-share {
        padding: 24px 28px 32px;
    }
}