.coknet-graphic {
    max-width: 200px;
}

:root {
    --ana-font-ailesi: 'Inter', sans-serif;
    --baslik-font-ailesi: 'Gotham Narrow', sans-serif;
    --bs-font-sans-serif: var(--ana-font-ailesi) !important;
    --bs-body-font-family: var(--ana-font-ailesi) !important;
}

body {
    font-family: var(--ana-font-ailesi) !important;
}

/* ============================================
   FONT FAMİLY TANIMLARI
   ============================================ */

@font-face {
    font-family: 'Gotham Narrow';
    src: url('../fonts/gotham/Gotham Narrow Extra Light.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Narrow';
    src: url('../fonts/gotham/Gotham Narrow Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Narrow';
    src: url('../fonts/gotham/Gotham Narrow Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Narrow';
    src: url('../fonts/gotham/Gotham Narrow Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Narrow';
    src: url('../fonts/gotham/Gotham Narrow Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Utility class: font-display */
.font-display {
    font-family: 'Gotham Narrow', sans-serif !important;
    font-weight: 700;
}

/* Utility class: font-sans */
.font-sans {
    font-family: var(--ana-font-ailesi) !important;
}



.tv-hero-section {
    background-color: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.blur-blob-1,
.blur-blob-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.blur-blob-1 {
    top: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background-color: rgba(59, 130, 246, 0.3);
}

.blur-blob-2 {
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background-color: rgba(30, 58, 138, 0.4);
}

.tv-content {
    position: relative;
    z-index: 50;
}

.featured-video-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.featured-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.featured-video-card:hover .featured-video-image {
    transform: scale(1.05);
    opacity: 0.7;
}

.play-btn-circle {
    width: 5rem;
    height: 5rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    transform: scale(1);
}

.featured-video-card:hover .play-btn-circle {
    background-color: #004aad;
    transform: scale(1.1);
}

.video-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.next-videos-container {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-list-scroll {
    overflow-y: auto;
    flex-grow: 1;
    max-height: 400px;
    padding-right: 5px;
}

.video-list-scroll::-webkit-scrollbar {
    width: 5px;
}

.video-list-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.kesteledeger {
    height: 150px;
    width: 200px;
}

.video-list-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.video-list-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    text-decoration: none;
}

.video-list-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.video-list-item:hover h4 {
    color: #4da3ff !important;
}

.small-thumb {
    width: 120px;
    height: 70px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-list-item:hover .small-thumb img {
    transform: scale(1.1);
}

.small-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.video-list-item:hover .small-thumb-overlay {
    opacity: 1;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.custom-hover-card {
    display: block;
    position: relative;
    overflow: hidden;
}

.custom-hover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.custom-hover-card:hover .custom-hover-overlay {
    opacity: 1;
}

.custom-hover-card:hover img {
    transform: scale(1.1);
}

.custom-play-btn {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.custom-hover-card:hover .custom-play-btn {
    transform: scale(1);
}

h1,
.h1,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: var(--baslik-font-ailesi) !important;
    font-weight: 900;
}

h2,
h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--baslik-font-ailesi) !important;
    font-weight: 700;
}

/* Başlık içeren yaygın class'lar */
.card-title,
.modal-title,
.page-title,
.section-title,
.widget-title,
.post-title,
.entry-title,
.sidebar-title,
.nav-title {
    font-family: var(--baslik-font-ailesi) !important;
    font-weight: 700;
}

.hata-icon-6 {
    top: -9%;
    left: -6%
}

.hata-icon-22 {
    bottom: 9%;
    right: -22%
}

.z-index-1 {
    z-index: 1 !important;
}

.text-black {
    color: #000 !important;
}

.img-contain {
    max-height: 455px !important;
    object-fit: contain;
}

.position-lg-sticky {
    top: 8rem;
}

.svg-icon-ex {
    width: 2.6rem;
    height: 2.6rem;
}

.icon-svg-orange {
    fill: rgb(255, 149, 0);
}

.icon-svg-green {
    fill: rgb(16, 185, 129);
}

.icon-svg-purple {
    fill: rgb(139, 92, 246)
}

.icon-svg-soft-green {
    fill: rgb(29, 181, 190);
}

.icon-svg-red {
    fill: rgb(239, 68, 68);
}

.icon-svg-primary {
    fill: rgb(99, 102, 241)
}

.navbar-expand-lg.transparent.fixed .navbar-nav .dropdown:not(.dropdown-submenu):not(.language-select)>.dropdown-menu {
    margin-top: 0;
}

.breadcrumb li::after {
    content: ">";
    margin: 0 0.5rem;
}

.breadcrumb li:last-child::after {
    content: "";
}

.navbar-border-bottom {
    border-bottom: 1px solid #e5e7eb;
}

.cok-bg-yellow {
    background: -webkit-linear-gradient(to right, #ffefba, #ffffff);
    background: linear-gradient(to right, #ffefba, #ffffff);
}

.about-img {
    height: 20px;
}

.image-wrapper.purple {
    &:before {
        opacity: .4;
        background: linear-gradient(120deg, #000000 50%, #332487 100%);
    }

    .container {
        z-index: 2;
    }

}

#bg-top {
    &::before {
        background: transparent;
    }

    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
}

.about-graphic {
    width: 100px;
    height: 100px !important;
}

.rectangle {
    position: relative;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.level {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.employee-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    min-width: 280px;
    max-width: 320px;
}

.employee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.employee-card.ceo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.employee-card.ceo:hover {
    transform: scale(1.08) translateY(-8px);
}

.employee-card.manager {
    border-left: 4px solid #e74c3c;
}

.employee-card.developer {
    border-left: 4px solid #3498db;
}

.employee-card.designer {
    border-left: 4px solid #9b59b6;
}

.employee-card.marketing {
    border-left: 4px solid #f39c12;
}

.employee-card.finance {
    border-left: 4px solid #27ae60;
}

.employee-card.teacher {
    border-left: 4px solid #2c3e50;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.employee-card.ceo .avatar {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.name {
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
}

.employee-card.ceo .name {
    color: white;
}

.position {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
}

.employee-card.ceo .position {
    color: rgba(255, 255, 255, 0.9);
}


.connection-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #3498db, #2980b9);
    margin: 0 auto;
    position: relative;
}

.connection-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.department-label {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.cursor-pointer {
    cursor: pointer;
}

.h-250px {
    height: 250px !important;
}

#langSelect {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    max-height: 300px;
    overflow: hidden auto;
    margin-top: 0 !important;
    scrollbar-color: #000 #f8f9f9;
    scrollbar-width: thin;
    border-radius: 0;
}

@keyframes spin {
    100% {
        transform: rotate(1turn)
    }
}

@media (min-width: 991px) {
    .level.level-flex {
        flex-wrap: nowrap;
    }

    #langSelect {
        display: grid !important;
    }

    .desk-h-250px {
        height: 250px !important;
    }
}

@media (max-width: 768px) {

    #langSelect.show {
        display: grid;
    }

    .navbar-brand.w-100,
    .navbar-other.w-100 {
        width: auto !important;
        flex-basis: auto !important;
        flex-grow: 0 !important;
    }

    .navbar-brand img {
        max-width: 130px !important;
    }

    .move-child {
        justify-content: center;
    }


    .header h1 {
        font-size: 2rem;
    }

    .level {
        gap: 20px;
    }

    .employee-card {
        min-width: 250px;
        max-width: 280px;
        padding: 20px;
    }

    .employee-card.ceo {
        transform: none;
    }

    .employee-card.ceo:hover {
        transform: translateY(-8px);
    }
}



@media (max-width: 480px) {
    .employee-card {
        min-width: 100%;
        max-width: 100%;
    }

    .level {
        flex-direction: column;
        align-items: center;
    }

    .navbar-brand img {
        max-width: 190px !important;
        width: auto !important;
        height: auto !important;
    }

    /* Sadece ana slider (hero) içindeki logo */
    .swiper-hero .video-content img,
    .swiper-hero .swiper-slide img,
    .video-content h1 img {
        max-width: 240px !important;
        width: auto !important;
        height: auto !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .swiper-hero .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .swiper-hero h1,
    .swiper-hero h2 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
    }

    .swiper-hero p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
    }

    .video-wrapper .video-content .container {
        padding-left: 0px !important;
        padding-right: 80px !important;
        margin-left: -20px !important;
    }

    .video-content p,
    .video-content .yazi,
    .rotator-zoom {
        font-size: 1.1rem !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }

    /* Yatay kaydırmayı önle */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .container {
        max-width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Benzer projeler resim yüksekliği mobilde */
    .swiper-container.blog figure {
        height: 140px !important;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
    position: fixed;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    padding: 5px;
}

.page-footer a {
    margin-left: 4px;
}

@media (min-width: 991px) {
    .fs-md-14 {
        font-size: 14px;
    }

    .home-feature {
        height: 415px;
    }
}

.bg-sidebar-dark {
    background-color: #0f172a;
}

:root {
    --bs-primary: #004aad;
    --bs-primary-rgb: 0, 74, 173;
}

.text-primary {
    color: #4da3ff !important;
}

.bg-primary {
    background-color: #004aad !important;
}

.btn-primary {
    background-color: #004aad !important;
    border-color: #004aad !important;
}

.bullet-soft-primary span {
    color: #0d9488 !important;
    background-color: rgb(13 148 136 / 0.1) !important;
}

.bg-soft-primary {
    background-color: rgb(13 148 136 / 0.1) !important;
}

.border-primary {
    border-color: #0d9488 !important;
}

.iletisim-formu input:not([type="checkbox"]):focus,
.iletisim-formu input[type="text"]:focus,
.iletisim-formu input[type="email"]:focus,
.iletisim-formu #name:focus,
.iletisim-formu #email:focus,
.iletisim-formu select:focus,
.iletisim-formu textarea:focus,
.iletisim-formu #message:focus,
.iletisim-formu input.focus\:ring-primary:focus,
.iletisim-formu select.focus\:ring-primary:focus,
.iletisim-formu textarea.focus\:ring-primary:focus {
    --tw-ring-color: #0d9488 !important;
    --tw-ring-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
    --tw-ring-offset-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #0d9488, 0 0 10px rgba(13, 148, 136, 0.35) !important;
    border-color: #0d9488 !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.iletisim-formu {
    min-height: 402px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.iletisim-formu.iletisim-formu--kisa {
    height: auto;
}

.iletisim-formu input:not([type="checkbox"]),
.iletisim-formu select,
.iletisim-formu textarea {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    width: calc(100% - 30px) !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    border-radius: 10px !important;
    margin-top: 4px !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.iletisim-formu input:not([type="checkbox"]),
.iletisim-formu select {
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
}

.iletisim-formu label:not(.select-none) {
    font-weight: 700 !important;
    color: #1e2228 !important;
    margin-left: 15px !important;
    margin-top: 4px !important;
    display: inline-block;
}

.iletisim-formu .flex-col.md\:flex-row.items-center.justify-between {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.iletisim-formu #kvkk {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    height: 20px !important;
    width: 20px !important;
    margin: 0 !important;
    flex-shrink: 0;
    cursor: pointer;
    vertical-align: middle;
    border: 2px solid #0d9488 !important;
    border-radius: 6px !important;
    background-color: transparent;
    position: relative;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.iletisim-formu #kvkk:checked {
    background-color: #0d9488 !important;
}

.iletisim-formu #kvkk:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 11px;
    position: absolute;
}

.iletisim-formu .select-none {
    color: #959ca9 !important;
    /* bs-gray-500 */
    line-height: normal !important;
    display: flex;
    align-items: center;
}

[data-bs-theme="dark"] .iletisim-formu label:not(.select-none),
.dark .iletisim-formu label:not(.select-none) {
    color: #fefefe !important;
    /* bs-gray-100 */
}

[data-bs-theme="dark"] .iletisim-formu .select-none,
.dark .iletisim-formu .select-none {
    color: #aab0bc !important;
    /* bs-gray-400 */
}

[data-bs-theme="dark"] .iletisim-formu,
.dark .iletisim-formu {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="dark"] .iletisim-formu input,
[data-bs-theme="dark"] .iletisim-formu select,
[data-bs-theme="dark"] .iletisim-formu textarea,
.dark .iletisim-formu input,
.dark .iletisim-formu select,
.dark .iletisim-formu textarea {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="dark"] .iletisim-formu input:not([type="checkbox"]):focus,
[data-bs-theme="dark"] .iletisim-formu input[type="text"]:focus,
[data-bs-theme="dark"] .iletisim-formu input[type="email"]:focus,
[data-bs-theme="dark"] .iletisim-formu #name:focus,
[data-bs-theme="dark"] .iletisim-formu #email:focus,
[data-bs-theme="dark"] .iletisim-formu select:focus,
[data-bs-theme="dark"] .iletisim-formu textarea:focus,
[data-bs-theme="dark"] .iletisim-formu #message:focus,
.dark .iletisim-formu input:not([type="checkbox"]):focus,
.dark .iletisim-formu input[type="text"]:focus,
.dark .iletisim-formu input[type="email"]:focus,
.dark .iletisim-formu #name:focus,
.dark .iletisim-formu #email:focus,
.dark .iletisim-formu select:focus,
.dark .iletisim-formu textarea:focus,
.dark .iletisim-formu #message:focus {
    --tw-ring-color: #0d9488 !important;
    --tw-ring-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
    --tw-ring-offset-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
    box-shadow: 0 0 0 1px #0d9488, 0 0 10px rgba(13, 148, 136, 0.45) !important;
    border-color: #0d9488 !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

a.text-hover-primary:hover {
    color: #0d9488 !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background-color: #475569;
}

.writing-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background-color: #475569;
}

.writing-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.search-modal {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-modal.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.search-modal.active {
    opacity: 1;
    transform: translateY(0);
}

.masonry-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

/* Shadow sınıfları */
.shadow-lg {
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 0.2), 0 8px 10px -6px rgb(0 0 0 / 0.15) !important;
}

.shadow-2xl {
    box-shadow: 0 35px 60px -15px rgb(0 0 0 / 0.4) !important;
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 35px 60px -15px rgb(0 0 0 / 0.4) !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background-color: #475569;
}

.swiper-container:not(.swiper-hero) .swiper-button-next,
.swiper-container:not(.swiper-hero) .swiper-button-prev {
    position: absolute !important;
    top: 38% !important;
    bottom: auto !important;
    z-index: 100 !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
}

@media (min-width: 1024px) {
    .lg\:text-4xl {
        font-size: 1.80rem !important;
    }
}

.proje-card-content {
    padding: 1rem 1.25rem !important;
}

.proje-card-content p.mb-4 {
    margin-bottom: 0.75rem !important;
}

.proje-card-content .pt-3 {
    padding-top: 0.75rem !important;
}

._df_thumb {
    position: relative;
}

._df_thumb:hover::after,
._df_thumb:hover::before,
._df_thumb:hover span,
._df_thumb:hover .df-thumb-overlay,
._df_thumb:hover .df-thumb-text {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.bulten-form-group {
    position: relative;
    display: flex;
}

.bulten-form-group input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: none !important;
    color: #fff !important;
    height: 52px !important;
    font-size: 0.8rem;
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
    padding: 1.3rem 0.75rem 0.3rem 0.75rem !important;
    transition: border-color 0.2s ease;
}

.bulten-form-group input::placeholder {
    color: transparent !important;
}

/* Autofill state support */
.bulten-form-group input:-webkit-autofill,
.bulten-form-group input:-webkit-autofill:hover,
.bulten-form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #21262e inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.bulten-form-group label {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
}

.bulten-form-group input:focus~label,
.bulten-form-group input:not(:placeholder-shown)~label,
.bulten-form-group input:-webkit-autofill~label {
    top: 0.3rem;
    transform: translateY(0);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
}

.bulten-form-group input:focus {
    outline: none !important;
    border-color: #3f78e0 !important;
    box-shadow: 0 0 0 2px rgba(63, 120, 224, 0.3) !important;
    border-right: none !important;
}

#eBultenButtonFooter {
    height: 52px !important;
    padding: 0 20px !important;
    background-color: #3f78e0 !important;
    border: 1px solid #3f78e0 !important;
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    font-weight: 500;
}

._df_thumb:hover .df-thumb-bg,
._df_thumb:hover .df-thumb-label {
    display: none !important;
}

/* jsFlip hover preview modal/overlay içindeki sağ taraftaki boşluğu kaldır */
.df_modal,
.df-modal,
.df_overlay,
.df-overlay,
[class*="df-modal"],
[class*="df-overlay"],
[class*="df-preview"],
[class*="df-popup"] {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

/* jsFlip preview container içindeki sağ boşluk */
.df_modal .df_container,
.df-modal .df-container,
[class*="df-container"],
[class*="df-wrapper"] {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

/* jsFlip'in sağ tarafta eklediği text/label elementleri */
.df_modal .df_label,
.df-modal .df-label,
[class*="df-label"],
[class*="df-text"] {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
}

/* ============================================
   BASIN BÜLTENLERİ: Sabit resim boyutları
   ============================================ */
.basin-bulten-image {
    height: 14rem !important;
    /* 224px - yüksekliği arttırdık */
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Genişliği azalt - projelerimiz sayfası gibi */
.col-md-6 article {
    max-width: 100% !important;
}

.basin-bulten-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

@media (min-width: 768px) {
    .basin-bulten-image {
        height: 13rem !important;
        /* 208px - tablet için */
    }
}

@media (max-width: 767px) {
    .sosyal-medya-konteynir {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .sosyal-medya-kart-yeni {
        max-width: 400px;
        margin: 0 auto;
    }

    .yayinlar-konteynir {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 0 !important;
        justify-content: flex-start !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .yayinlar-konteynir::-webkit-scrollbar {
        display: none;
    }

    .yayinlar-konteynir a._df_thumb {
        flex: 0 0 55% !important;
        width: 55% !important;
        scroll-snap-align: center !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
        transform: scale(0.85);
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .yayinlar-konteynir a._df_thumb img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
    }
}

/* Basın bültenleri içerik aralıklarını azalt */
.col-md-6 article .post-header {
    margin-top: 0 !important;
}

.col-md-6 article .post-header .h3 {
    margin-top: 0 !important;
    margin-bottom: 0.25rem !important;
}

.col-md-6 article .post-content {
    margin-top: 0 !important;
    margin-bottom: 0.25rem !important;
}

.col-md-6 article .post-content p {
    margin-bottom: 0.25rem !important;
    font-size: 0.875rem !important;
    /* 14px - font size küçültüldü */
    line-height: 1.5 !important;
}

.col-md-6 article .post-footer {
    margin-top: 0 !important;
}

.col-md-6 article .post-meta {
    margin-bottom: 0 !important;
    font-size: 0.75rem !important;
    /* 12px - tarih font size */
}

.navbar-light .navbar-brand .logo-light {
    display: none !important;
}

.navbar-light .navbar-brand .logo-dark {
    display: inline-block !important;
}

.navbar-dark .navbar-brand .logo-dark {
    display: none !important;
}

.navbar-dark .navbar-brand .logo-light {
    display: inline-block !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.proje-wrapper.animate {
    animation: fadeInUp 0.4s ease-out forwards;
}

.proje-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .proje-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .proje-grid {
        grid-template-columns: 1fr;
    }
}

.proje-karti {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0;
    text-decoration: none;
    aspect-ratio: 3/2;
}

.proje-karti .proje-resim-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.proje-karti .proje-resim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.proje-resim-logo-bg {
    background-color: #ffffff;
}

.proje-karti .proje-resim.proje-resim-logo {
    object-fit: contain;
    padding: 2rem;
}

/* Normal durum - karartma */
.proje-karti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Hover durumu - yeşilimsi/teal overlay */
.proje-karti::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.75) 0%, rgba(0, 58, 137, 0.7) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.proje-karti:hover::after {
    opacity: 1;
}

.proje-karti:hover::before {
    opacity: 0;
}

.proje-karti:hover .proje-resim {
    transform: scale(1.1);
    filter: grayscale(30%);
}

/* Başlık ve içerik alanı */
.proje-icerik {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.proje-baslik {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
    max-width: 85%;
    font-family: 'Inter', sans-serif !important;
}

/* Ok ikonu */
.proje-ok {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Kart Wrapper (Dış boşluk için) */
.proje-wrapper {
    position: relative;
    padding: 15px;
    transition: all 0.3s ease;
}

/* Dekoratif Çizgiler - Genel */
.p-border {
    position: absolute;
    background-color: #e2e8f0;
    /* Gri renk - Pasif durum */
    transition: all 0.4s ease;
    z-index: 0;
}

/* Hover durumunda çizgiler yeşil (Sitenin ana rengi) */
.proje-wrapper:hover .p-border {
    background-color: #004aad;
}

/* Üst çizgi: Sağdan sola, %85 genişlik */
.p-border-top {
    top: 0;
    right: 0;
    width: 85%;
    height: 2px;
}

/* Sağ çizgi: Üstten aşağı, %85 yükseklik */
.p-border-right {
    top: 0;
    right: 0;
    width: 2px;
    height: 85%;
}

/* Alt çizgi: Soldan sağa, %85 genişlik */
.p-border-bottom {
    bottom: 0;
    left: 0;
    width: 85%;
    height: 2px;
}

/* Sol çizgi: Alttan yukarı, %85 yükseklik */
.p-border-left {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 85%;
    transition: all 0.4s ease, height 0.4s ease;
}

/* Hover efektleri - İçerik etkileşimi */
.proje-wrapper:hover .proje-baslik {
    color: #ebb25e;
    /* Logodaki turuncu tonu */
    transition: color 0.3s ease;
}

.proje-wrapper:hover .proje-ok {
    background-color: #ffffff;
    color: #ebb25e;
    /* Ok ikonu da turuncu */
    border-color: #ffffff;
    transform: translateX(5px);
}

.proje-wrapper:hover .proje-karti::after {
    opacity: 1;
}

.proje-pin {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 20;
    background: #ebb25e;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(45deg);
    border: 2px solid #ffffff;
}

.proje-wrapper:hover .proje-pin {
    transform: rotate(0deg) scale(1.15);
    background: #004aad;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* ============================================
   KESTEL STİLİ HEADER VE FİLTRE
   ============================================ */
.content-wrapper {
    background-color: #f8fafc;
}

.page-header {
    background-color: #004aad;
    padding: 1.15rem 0 !important;
    color: #333;
    border-bottom: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.page-header:before {
    background: url(../images/photos/bg-pattern-01.png) left top repeat;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.2;
}

.page-header-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-item a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.2s;
    opacity: 0.9;
}

.breadcrumb-item a:hover {
    color: #fff;
    opacity: 1;
}

.list-share-links {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.list-share-links li span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.list-share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.list-share-links a:hover {
    background-color: #fff;
    color: #004aad !important;
    transform: translateY(-2px);
}

.list-share-links a img {
    width: 14px;
    height: auto;
    filter: invert(1);
}

.list-share-links a:hover img {
    filter: invert(34%) sepia(93%) saturate(1985%) hue-rotate(164deg) brightness(93%) contrast(101%);
}

.section-light {
    background-color: #f0f0f0;
    padding: 3.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
    margin-top: 0 !important;
}

.section-light .form-control {
    height: 40px;
    line-height: 40px;
    font-size: 0.8rem;
    font-weight: 400;
    border-radius: 0;
    border: none;
    background-color: #fff;
    padding: 0 0.75rem;
}

.section-light .form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background-color: #fff;
}

header.wrapper,
header.wrapper nav.navbar,
.content-wrapper header.wrapper,
nav.navbar.navbar-stick {
    background: linear-gradient(to right, #001a3d 0%, #004aad 100%) !important;
    background-image: linear-gradient(to right, #001a3d 0%, #004aad 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
}

header.wrapper .navbar-nav .nav-link,
header.wrapper .navbar-other .nav-link,
header.wrapper .navbar-other .dropdown-toggle,
header.wrapper .navbar-other .nav-item span,
.navbar-stick .nav-link,
.navbar-stick .navbar-other .nav-link,
.navbar-stick .dropdown-toggle,
.navbar-stick .nav-item span {
    color: #ffffff !important;
    font-weight: 500 !important;
}

header.wrapper .navbar-nav .nav-link:hover,
.navbar-stick .nav-link:hover {
    color: #ffb74d !important;
}

header.wrapper .navbar-brand .logo-dark,
.navbar-stick .navbar-brand .logo-dark {
    display: none !important;
    max-width: 190px;
    margin-right: 60px;
}

header.wrapper .navbar-brand .logo-light,
.navbar-stick .navbar-brand .logo-light {
    display: inline-block !important;
    max-width: 190px;
    margin-right: 60px;
}

header.wrapper .hamburger span,
header.wrapper .hamburger:before,
header.wrapper .hamburger:after,
.navbar-stick .hamburger span,
.navbar-stick .navbar-other .hamburger:before,
.navbar-stick .navbar-other .hamburger:after,
.navbar-stick .hamburger:before,
.navbar-stick .hamburger:after {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.baskan-mesaj-scroll {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
}

.baskan-mesaj-scroll::-webkit-scrollbar {
    width: 5px;
}

.baskan-mesaj-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.baskan-mesaj-scroll::-webkit-scrollbar-thumb {
    background: #004aad;
    border-radius: 10px;
}

.baskan-mesaj-scroll::-webkit-scrollbar-thumb:hover {
    background: #003780;
}

.dark .baskan-mesaj-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.dark .baskan-mesaj-scroll::-webkit-scrollbar-thumb {
    background: #004aad;
}