* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    font-size: 1rem;
    color: #393D46;
    overflow-x: clip;
    min-height: 100vh;
    background-color: #fdfdfd;
    --header-height: 176px;
    --header-height-default: 176px;
    --header-height-scrolled: 100px;
    --sticky-header-offset: 176px;
    width: 100%;
    max-width: 100%;
    position: relative;
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

::selection {
    background: #0077bf;
    color: #fff;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

.content-platform-link .content-link-icon {
    display: inline-block;
    margin-right: 6px;
    font-size: 0.9em;
    line-height: 1;
    vertical-align: baseline;
    text-decoration: none;
    color: inherit;
}

.content-platform-link .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-style: normal;
    font-weight: 400;
}

.content-platform-link .fa-regular {
    font-family: "Font Awesome 6 Free" !important;
    font-style: normal;
    font-weight: 400;
}

.content-platform-link .fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-style: normal;
    font-weight: 900;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

a {
    text-decoration: none !important;
    color: inherit;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

header li,
footer li {
    list-style: none;
}

footer {
    margin-top: auto;
}

.navbar-nav {
    gap: 2.35rem;
}

@media (max-width: 1800px) {
    .navbar-nav {
        gap: 1.2rem;
    }
}

@media (max-width: 1700px) {
    .navbar-nav {
        gap: 0;
    }
}

/* HEADER STICKY */

header {
    position: sticky;
    top: 0;
    z-index: 1100;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    transition: none;
}

body:has(header.scrolled) {
    --header-height: var(--header-height-scrolled);
}

/* NAVBAR */

.main-navbar {
    transition: padding 0.35s ease, box-shadow 0.35s ease;
    padding: 20px 0;
    background: #FDFDFD;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* LOGO */

.logo-box img {
    display: block;
    max-height: 120px;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: max-height 0.35s ease;
    will-change: max-height;
    padding: .5rem 0;
}

/* TOPBAR */

.topbar {
    transition: height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
}

.topbar {
    position: relative;
    z-index: 1100;
}

    .topbar .dropdown-menu {
        z-index: 1200;
    }

.nav-wrapper {
    z-index: 1000;
}

/* SCROLLED STATE */

header.scrolled .topbar {
    height: 0;
    padding: 0;
    opacity: 0;
}

header.scrolled .main-navbar {
    padding: 0;
    box-shadow: var(--bs-box-shadow-sm) !important;
}

header.scrolled .logo-box img {
    max-height: 100px !important;
}

@media (max-width: 991px) {
    body {
        --header-height: 176px;
        --header-height-default: 176px;
        --header-height-scrolled: 100px;
    }
}

@media (max-width: 768px) {
    body {
        --header-height: 136px;
        --header-height-default: 136px;
        --header-height-scrolled: 100px;
    }
}

@media (max-width: 575px) {
    body {
        --header-height: 80px;
        --header-height-default: 80px;
        --header-height-scrolled: 100px;
    }
}

@media (max-width: 568px) {
    body {
        --header-height-scrolled: 80px;
    }
}

/* TOP BAR */

.topbar {
    background: #0077bf;
    padding: 6px 0;
    font-size: 1rem;
    z-index: 100;
    position: relative;
    height: 56px;
    display: flex;
    align-items: center;
}

    .topbar a {
        color: white;
        text-decoration: none;
    }

    .topbar i {
        font-size: 14px;
    }

.divider {
    width: 1px;
    height: 14px;
    background: #ffffff;
    display: inline-block;
}

/* NAVBAR */

.header {
    position: relative;
}

/* NAV BAR BACKGROUND */


/* MENU */

.navbar .nav-link {
    color: #272727;
    font-weight: 500;
    margin: 0 10px;
    font-size: 1.125rem;
    width: fit-content;
}

header .nav-link:hover {
    color: #4fb3ff !important;
}

/* DONATE BUTTON */

.donate-btn {
    background: #1f86c8;
    color: #fff !important;
    padding: 15px 25px !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    font-size: 1.25rem;
    display: inline-block;
    width: fit-content;
}

    .donate-btn:hover {
        background: #146ca3;
    }

.header-search-item {
    display: flex;
    align-items: center;
    margin-left: 0.4rem;
}

.site-search-form {
    display: flex;
    align-items: stretch;
    width: 249px;
    max-width: 100%;
    min-height: 42px;
    border: 1px solid #d9e4ec;
    background: #fff;
}

    .site-search-form input {
        width: 100%;
        min-width: 0;
        border: 0;
        outline: 0;
        padding: 0 0.75rem;
        color: #393d46;
        font-size: 0.9rem;
        background: transparent;
    }

        .site-search-form input::placeholder {
            color: #6d747d;
        }

    .site-search-form button {
        width: 42px;
        flex: 0 0 42px;
        border: 0;
        background: #0077bf;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.25s ease;
    }

        .site-search-form button:hover {
            background: #146ca3;
        }

.mobile-site-search {
    width: auto;
    margin: 1rem 0.5rem 0.5rem;
    border-color: rgba(255, 255, 255, 0.35);
}

    .mobile-site-search button {
        background: #1f86c8;
    }



@media (max-width: 991px) {

    .dropdown-submenu .dropdown-menu {
        left: 0;
        top: 0;
        margin-left: 15px;
    }
}
/* LOGO BOX */

.logo-box {
    background-color: white;
    border-radius: 4px;
    z-index: 99;
}

/* NAV WRAPPER */

.dropdown-menu.two-columns {
    column-count: 2;
    column-gap: 1rem;
    background-color: #152542;
}


@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .main-navbar .dropdown-menu {
        display: none;
    }
}

#mobileMenu {
    width: 300px;
    background: #152542c4;
    color: white;
    position: fixed !important;
    top: 0 !important;
    bottom: auto !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

#mobileMenu .offcanvas-header {
    flex: 0 0 auto;
}

#mobileMenu .offcanvas-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
}

@media (max-width: 1565px) {
    .navbar-collapse {
        max-width: 1100px !important;
    }

        .navbar-collapse .navbar-nav .nav-link {
            font-size: 0.9375rem;
        }
}

@media (min-width: 1366px) and (max-width: 1450px) {
    .header-menu-toggle {
        display: none !important;
    }

    .navbar-expand-xl .header-desktop-nav {
        display: flex !important;
        flex: 1 1 auto;
        min-width: 0;
        max-width: none !important;
        padding: 0 0 0 0.75rem !important;
    }

    .main-navbar {
        padding: 12px 0;
    }

        .main-navbar > .col-11,
        .topbar > .col-11 {
            width: calc(100% - 100px);
            max-width: none;
            gap: 1rem;
        }

            .main-navbar > .col-11 > .d-flex:first-child {
                flex: 0 0 auto;
            }

        .main-navbar .navbar-nav {
            gap: 0.15rem;
            flex-wrap: nowrap;
            align-items: center;
            white-space: nowrap;
        }

    .navbar .nav-link {
        margin: 0 0.2rem;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        font-size: 0.84rem;
    }

    .navbar .nav-item {
        flex: 0 1 auto;
        min-width: 0;
    }

    .logo-box img {
        max-height: 92px;
        padding: 0.25rem 0;
    }

    .donate-btn {
        padding: 11px 14px !important;
        font-size: 0.96rem;
    }

    .navbar .donate-btn.nav-link {
        margin-left: 0.6rem !important;
    }

    .site-search-form {
        width: 155px;
        min-height: 38px;
    }

        .site-search-form input {
            font-size: 0.82rem;
            padding: 0 0.55rem;
        }

        .site-search-form button {
            width: 38px;
            flex-basis: 38px;
        }
}

.dropdown-item {
    color: #ffffff !important;
}

    .dropdown-item:focus,
    .dropdown-item:hover {
        background-color: #0077bf;
    }

@media(min-width:1400px) {
    header li > a::after {
        content: "";
        display: block;
        margin: auto;
        height: 3px;
        width: 0;
        background: transparent;
        transition: all 0.3s;
    }

    header .dropdown-menu a::after {
        display: none;
    }

    header li > a:hover::after,
    header li > a.active::after {
        width: 50%;
        background: #0077bf;
    }

    .dropdown-submenu .dropdown-menu {
        display: none;
        top: 0;
        left: 100%;
        background-color: #152542;
    }

    .dropdown-submenu > .dropdown-menu {
        display: none !important;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
    }

    .dropdown-submenu {
        position: relative;
        background-color: #152542;
        color: #fff;
    }

    .multi-dropdown {
        background-color: #152542;
        color: #fff;
    }
}

.menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0077bf;
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

    .menu-icon:hover {
        background: rgba(255, 255, 255, 0.18);
    }

.btn-close {
    filter: brightness(0) saturate(100%) invert(99%) sepia(15%) saturate(138%) hue-rotate(48deg) brightness(114%) contrast(100%);
}

.hero-slider {
    position: relative;
}

    .hero-slider img {
        max-height: 750px;
        object-fit: cover;
    }

/* TEXT */

.hero-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 20px;
}

    .hero-content h1 {
        font-size: 60px;
        font-weight: 700;
        line-height: 1.2;
        text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }

.lang-toggle {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .lang-toggle::after {
        margin-left: 4px;
    }

/* dropdown görÃ¼nÃ¼mÃ¼ */

.lang-dropdown .dropdown-menu {
    background: white;
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
}

.lang-dropdown .dropdown-item {
    font-size: 1rem;
    padding: 6px 12px;
    color: black !important;
}

    .lang-dropdown .dropdown-item:hover {
        background: #f5f5f5;
    }

    .lang-dropdown .dropdown-item::after {
        content: none;
    }

.topbar {
    position: relative;
    z-index: 5000;
}

.lang-dropdown {
    position: relative;
    z-index: 5100;
}

    .lang-dropdown .dropdown-menu {
        z-index: 5200;
    }

.hero-slider img {
    height: 600px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

    .hero-content .h1 {
        font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
        font-weight: 700;
    }

/* BOX AREA */
.hero-box {
    padding: 50px 35px;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

/* Eğer kutu link ise */
.hero-box-link {
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    overflow: hidden;
}

    .hero-box-link:hover {
        text-decoration: none;
        color: inherit;
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
        filter: brightness(1.04);
        z-index: 2;
    }

    .hero-box-link .box-icon {
        transition: transform .25s ease, border-color .25s ease;
    }


.hero-box a:hover {
    opacity: 0.8;
}

.hero-boxes h2 {
    font-size: 1.5rem;
    min-height: 39px;
    margin-bottom: 1rem;
}

.hero-box.dark {
    background: #222;
    color: #fff;
}

.hero-boxes .row {
    align-items: flex-start;
}

.hero-box.light {
    background: #f1f1f1;
    color: #333;
}

.hero-box.blue {
    background: #2a6f9e;
    color: #fff;
    margin-top: -30px;
    min-height: 460px;
    z-index: 5;
}

.hero-box p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-icon {
    width: min(190px, 72%);
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto 22px;
    padding: 10px;
    background: #fff;
    border: none;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.sea-section {
    padding: 7rem .5rem;
}

.sea-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sea-content h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: #393d47;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.sea-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #393d47;
    margin-bottom: 1.5rem;
}

.sea-link {
    font-size: 1rem;
    color: #0077bf;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05rem;
}

    .sea-link:hover {
        color: #122038;
    }

.sea-image {
    position: relative;
}

    .sea-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* BADGE */

/* MOBILE */

@media (max-width: 768px) {
    .sea-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sea-content h2 {
        font-size: 2rem;
    }
}

.vakif-banner {
    background: #122038;
    padding: 3rem 1rem;
}

.vakif-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/*  */

.vakif-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

    .vakif-title img {
        width: 32px;
        height: auto;
    }

    .vakif-title h2 {
        font-size: 1.75rem;
        color: #ffffff;
        font-weight: 600;
        letter-spacing: 0.03rem;
    }

.vakif-summary {
    font-size: 1.125rem;
    color: #ffffff;
    opacity: 1;
    margin: 0.3rem 0;
    font-weight: 300;
}

.works {
    padding: 5rem 0;
}

.works-title {
    text-align: center;
    font-size: 2.25rem;
    color: #393d47;
    margin-bottom: 3rem;
    font-weight: 700;
}

.work-item {
    display: flex;
    justify-content: center;
    background: #fff;
    height: 100%;
    padding: 2rem 1rem;
    text-align: center;
    align-items: center;
    font-size: 1.125rem;
    color: #393d47;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.25s ease;
}

    .work-item::after {
        content: "";
        position: absolute;
        bottom: -14px;
        left: 10%;
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 14px solid #fff;
        filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.12));
        z-index: 2;
    }

    .work-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
        color: #0077bf;
        font-weight: 600;
    }

    .work-item:hover {
        color: #0077bf;
        font-weight: 600;
    }

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

    .video-thumb img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 95%;
        height: 95%;
        object-fit: cover;
        transform: translate(-50%, -50%);
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .play-button img {
        width: 100%;
    }

.video-thumb:hover .play-button img {
    filter: invert(1);
}

.video-section {
    padding: 5rem 0;
}

.video-title {
    text-align: center;
    font-size: 1.25rem;
    color: #393d47;
    font-weight: 700;
    margin-bottom: 3rem;
}

.goals {
    margin-top: 5rem;
}

/* SOL IMAGE */

.goals-image {
    min-height: 32rem;
    position: relative;
}

.goals-overlay {
    position: absolute;
    top: 5rem;
    left: 3rem;
    color: white;
}

    .goals-overlay h2 {
        font-size: clamp(2rem, 2.8vw, 3.25rem);
        line-height: 1.2;
        font-weight: 700;
        width: 80%;
    }

/* SAÄž ALAN */

.goals-content {
    background: #f6f6f6;
    padding: 4rem 3rem;
}

/* item */

.goal-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
}

.goal-icon {
    width: 4.2rem;
    height: 4.2rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

    .goal-icon img {
        width: 2.5rem;
    }

.goal-text h4 {
    font-size: 1.875rem;
    color: #272727;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.goal-text {
    flex: 1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d9d9d9;
}

    .goal-text p {
        font-size: 1rem;
        color: #666;
        margin: 0;
    }

.books {
    padding: 5rem 0;
    background: #FDFDFD;
}

.books-title {
    text-align: center;
    font-size: 2.25rem;
    color: #393d47;
    font-weight: 700;
    margin-bottom: 3rem;
}

.books-slider {
    position: relative;
    padding: 0 3rem;
}
/* kart */

.book-card {
    text-decoration: none;
    display: block;
    text-align: center;
}

.book-image {
    background: white;
    padding: 0.6rem;
    border-radius: 0.6rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

    .book-image img {
        width: 100%;
        border-radius: 0.4rem;
        display: block;
    }

.book-card:hover .book-image {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.book-title {
    margin-top: 1rem;
    font-size: 1rem;
    color: #393d47;
    line-height: 1.4;
}
/* oklar */

.swiper-button-prev,
.swiper-button-next {
    background: none !important;
    box-shadow: none !important;
    color: #bfc3c7 !important;
}

.swiper-button-prev,
.swiper-button-next {
    width: 4rem !important;
    height: 4rem !important;
    border-radius: 50%;
    top: 55%;
    transform: translateY(-50%);
    color: #393d47;
}

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
    }

.books .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -15px) !important;
    right: auto;
}

.books .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -15px) !important;
    left: auto;
}

.news {
    background: #f5f5f5;
}

.news-title {
    text-align: center;
    font-size: 2.25rem;
    color: #393d47;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* kart */

.news-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

    .news-card:hover .news-more {
        color: #0077bf;
    }

    .news-card h3, .news-card h2 {
        font-size: 1.25rem;
        color: #393d47;
        margin-bottom: 1rem;
    }

    .news-card p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* devam */

.news-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #393d47;
    text-decoration: none;
}

    .news-more img {
        width: 2rem;
        height: 2rem;
        background: #eeeeee;
        border-radius: 50%;
        padding: 0.4rem;
        object-fit: contain;
    }

.news .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -65px) !important;
}

.news .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -65px) !important;
}

.partners {
    padding: 5rem 0;
}

.partner-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: 0.3s;
}

    .partner-item img {
        max-width: 100%;
        max-height: 4rem;
        object-fit: contain;
        transition: 0.3s;
    }

    .partner-item:hover img {
        transform: scale(1.05);
    }


.projects .swiper-wrapper {
    padding: 0 0 4rem 0;
}

.projects-title {
    text-align: center;
    font-size: 2.25rem;
    color: #393d47;
    font-weight: 700;
    margin-bottom: 3rem;
}

.project-card {
    position: relative;
    border-radius: 0.5rem;
    height: 100%;
    display: inline-block;
}

.project-image {
    min-height: 400px;
    border: solid 1px #ebebeb;
    padding: 10px;
    background-color: #fff;
}

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.project-content {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 85%;
    padding: 1.25rem;
    text-align: center;
    border-radius: 0.4rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.project-card:hover h3, .project-card:hover h2 {
    color: #0077bf;
}

.project-card:hover .span-link {
    color: #0077bf;
}

.project-content h3, .project-content h2 {
    font-size: 1.5rem !important;
    color: #272727;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-content p {
    font-size: 1rem;
    color: #272727;
    margin-bottom: 0.75rem;
}

.project-content .span-link {
    font-size: 0.875rem;
    color: #272727;
    font-weight: 600;
    text-decoration: underline !important;
}

.projects-slider {
    padding-bottom: 60px;
}

.swiper-slide {
    overflow: visible;
}

.project-prev,
.project-next {
    color: #999;
}

    .project-prev:after,
    .project-next:after {
        font-size: 20px;
    }

.projects .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -75px) !important;
}

.projects .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -75px) !important;
}

.footer {
    background: #122038;
    color: #fff;
    font-size: 1rem;
}

footer a:hover {
    color: #0077bf !important;
}

.footer-donation {
    background: #e9e9e9;
    color: #333;
    padding: 1.5rem;
    width: 260px;
    font-size: 0.875rem;
    border-top: 8px solid #0077bf;
    text-align: center;
}

    .footer-donation a {
        display: block;
        color: #0077bf;
        margin: 10px 0;
        font-weight: 600;
        text-decoration: none;
    }

    .footer-donation p {
        margin-bottom: 6px;
    }

/* menÃ¼ */

.footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

    .footer-title::after {
        content: "";
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        margin-top: 6px;
    }

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
}

    .footer-menu a:hover {
        color: #fff;
    }

/* about */

.footer-about {
    max-width: 260px;
}

    .footer-about img {
        margin-bottom: 10px;
        max-width:60%;
    }

    .footer-about p {
        font-size: 1rem;
        color: #ccc;
    }

/* contact */

.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 5px;
    color: #ddd;
    font-size: 1rem;
}

/* alt bar */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    font-size: 0.8rem;
}

    .footer-bottom .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #ccc;
    }

.footer-menu {
    max-width: 350px;
    margin: 0 auto; /* komple blok ortalanÄ±r */
}

    .footer-menu ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
    }

.footer-social {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

    .footer-social a {
        color: #ffffff;
        font-size: 14px;
        transition: 0.3s;
    }

        .footer-social a:hover {
            color: #0077bf;
            transform: translateY(-2px);
        }

.select-dropdown {
    display: none;
    position: absolute;
    background: #fff;
    z-index: 999;
}

    .select-dropdown.active {
        display: block;
    }

.monthly-book {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    background: #FDFDFD;
    padding: 25px;
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 10rem;
    margin-top: 5rem;
}

/* Görsel */
.monthly-book__image {
    width: 180px;
    border-radius: 12px;
    object-fit: cover;
}

/* İçerik */
.monthly-book__title {
    color: #393D47;
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.monthly-book__subtitle {
    color: #393D47;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.monthly-book__text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.monthly-book__link {
    color: #0077BF;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .monthly-book__link img {
        width: 18px;
    }

.monthly-book {
    transition: all 0.3s ease;
}

    .monthly-book:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

.monthly-book__image {
    transition: transform 0.3s ease;
}

.monthly-book:hover .monthly-book__image {
    transform: scale(1.05);
}


.monthly-book__link {
    transition: all 0.25s ease;
}

.monthly-book:hover .monthly-book__link {
    gap: 12px;
    color: #005fa3;
}

.monthly-book__link img {
    transition: transform 0.25s ease;
}

.monthly-book:hover .monthly-book__link img {
    transform: translateX(4px);
}

.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

    .dropdown-submenu > a span:first-child {
        flex: 1;
        min-width: 0;
    }

.sub-menu .sub-menu {
    max-height: 550px;
    overflow-y: auto;
    overflow-x: hidden;
}

    .sub-menu .sub-menu .dropdown-item {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-width: 400px;
        width: 400px;
        white-space: normal !important;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: normal;
        overflow-wrap: normal;
        word-wrap: normal;
        -webkit-hyphens: none;
        -ms-hyphens: none;
        hyphens: none;
    }

/* Public sayfalardaki ortak metin ve CKEditor içerik alanları. */
:where(
    body > main,
    .award-content,
    .book-content,
    .rich-text-content,
    .text-side,
    .about-content,
    .board-content,
    .board-list,
    .info-card,
    .accordion-body,
    .donation-info,
    .bank-info,
    .goal-text,
    .goals-title,
    .news-card,
    .hero-box,
    .sea-content,
    .vakif-content,
    .monthly-book__content,
    .hero-content,
    .video-section,
    #brands .text,
    .footer-donation,
    .footer-contact,
    .cookie-policy-content,
    .search-summary,
    .contact-item .content
) {
    word-break: normal;
    overflow-wrap: normal;
    word-wrap: normal;
    white-space: normal;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

/* Yalnızca doğal olarak bölünemeyen URL, e-posta ve dosya adları taşabilir. */
:where(
    body > main,
    .award-content,
    .book-content,
    .rich-text-content,
    .text-side,
    .about-content,
    .board-content,
    .board-list,
    .info-card,
    .accordion-body,
    .donation-info,
    .bank-info,
    .news-card,
    .hero-box,
    .sea-content,
    .vakif-content,
    .monthly-book__content,
    .hero-content,
    .video-section,
    #brands .text,
    .footer-donation,
    .cookie-policy-content
) :where(a[href^="http://"], a[href^="https://"], a[href^="mailto:"], a[download]),
.contact-item .content a[href^="mailto:"],
.footer-contact a[href^="mailto:"],
.file-gallery a,
.download-btn,
.book-link[download],
.doc-card[download] {
    word-break: normal;
    word-wrap: normal;
    overflow-wrap: anywhere;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

.info-card {
    overflow-x: auto;
}

    .info-card table {
        min-width: 600px;
        width: 100% !important;
        border-collapse: collapse;
    }

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider,
.hero-boxes,
.sea-section,
.vakif-banner,
.works,
.news,
.goals,
.books,
.monthly-book,
.projects,
.partners,
.footer {
    max-width: 100%;
    overflow-x: clip;
}

    .hero-slider .carousel-item {
        height: 650px;
        position: relative;
        overflow: hidden;
    }

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
    opacity: 0;
    transition: transform 7s ease-out, opacity .65s ease;
    will-change: transform, opacity;
}

.carousel-item.active .hero-bg {
    transform: scale(1.15);
}

.hero-media-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(118deg, #06172c 0%, #0b3453 52%, #075679 100%);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity .65s ease;
    will-change: opacity;
}

.hero-media-wrapper.is-ready .hero-video,
.hero-media-wrapper.is-ready .hero-bg {
    opacity: 1;
}

.hero-media-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
    background: linear-gradient(118deg, #06172c 0%, #0b3453 52%, #075679 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity .45s ease .18s, visibility 0s linear .63s;
}

.hero-media-wrapper.is-ready .hero-media-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-media-loader-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 24%,
        rgba(122, 208, 232, .035) 39%,
        rgba(196, 236, 246, .09) 49%,
        rgba(122, 208, 232, .035) 59%,
        transparent 74%
    );
    transform: translateX(-100%);
    animation: hero-media-shimmer 4.8s ease-in-out infinite;
    pointer-events: none;
}

.hero-media-loader-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(72vw, 260px);
    color: rgba(255, 255, 255, .82);
    text-align: center;
}

.hero-slider .hero-media-loader-logo {
    width: clamp(145px, 18vw, 220px);
    height: auto;
    max-height: 112px;
    object-fit: contain;
    opacity: .96;
}

.hero-media-waves {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 90px;
    margin: 22px 0 15px;
}

.hero-media-waves span {
    display: block;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(130, 218, 239, .92),
        transparent
    );
    transform-origin: center;
    animation: hero-media-wave 2.4s ease-in-out infinite;
}

.hero-media-waves span:nth-child(1) {
    width: 62px;
}

.hero-media-waves span:nth-child(2) {
    width: 88px;
    animation-delay: -.8s;
}

.hero-media-waves span:nth-child(3) {
    width: 48px;
    animation-delay: -1.6s;
}

.hero-media-loading-text {
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: .055em;
}

.hero-media-wrapper.is-error .hero-video,
.hero-media-wrapper.is-error .hero-bg {
    display: none;
}

.hero-media-wrapper.is-error .hero-media-loader {
    opacity: 1;
    visibility: visible;
    transition: none;
}

.hero-media-wrapper.is-error .hero-media-loader-shimmer {
    opacity: 0;
    animation: none;
}

.hero-media-wrapper.is-error .hero-media-waves span {
    animation: none;
    opacity: .45;
}

.hero-media-wrapper.is-error .hero-media-loading-text {
    display: none;
}

@keyframes hero-media-shimmer {
    0% {
        transform: translateX(-100%);
    }

    55%,
    100% {
        transform: translateX(100%);
    }
}

@keyframes hero-media-wave {
    0%,
    100% {
        opacity: .35;
        transform: scaleX(.78) translateX(-3px);
    }

    50% {
        opacity: .95;
        transform: scaleX(1) translateX(3px);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 20px;
    text-align: center;
    transform: translate(-50%, calc(-50% + 60px));
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.19,1,.22,1);
    transition-delay: .7s;
}

.carousel-item.active .hero-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 24px;
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,.75);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    background: rgba(0,0,0,.25);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

    .hero-link:hover {
        color: #111;
        border-color: #fff;
        background: #fff;
    }

.carousel-control-prev,
.carousel-control-next {
    z-index: 5;
}

@media(max-width:498px) {
    .hero-slider .carousel-item {
        height: 275px;
    }

    .hero-title {
        font-size: 20px;
        letter-spacing: 0;
    }

    .hero-link {
        margin-top: 18px;
        font-size: 15px;
    }

    .hero-media-loader {
        padding: 18px;
    }

    .hero-slider .hero-media-loader-logo {
        width: 132px;
        max-height: 68px;
    }

    .hero-media-waves {
        margin: 15px 0 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video,
    .hero-bg,
    .hero-media-loader {
        transition-duration: .01ms;
        transition-delay: 0s;
    }

    .hero-media-loader-shimmer {
        display: none;
        animation: none;
    }

    .hero-media-waves span {
        animation: none;
        opacity: .65;
        transform: none;
    }
}
