/* ================== TEMA RENKLERİ ======================= */
/* #9E0000 genel kullandığım bordo renk */
:root {
    /* --primary-color: #2666c7;
    --primary-color-light: color-mix(in srgb, var(--primary-color) 10%, white); */
    --secondary-color: #2c3e50;
    /* Koyu Lacivert -Başlıklar için vb */
    --light-bg: #F8FAFC;
}

/* ================== GENEL AYARLAR & TYPOGRAPHY ======================= */
body {
    background-color: #F8FAFC;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.breadcrumb-text {
    color: var(--primary-color) !important;
}

.justify-text {
    text-align: justify;
}

.red-text {
    color: var(--primary-color);
}

/* ================== BUTONLAR ======================= */
.btn-primarycolor {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-primarycolor:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Pagination - Genel */
.page-link {
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 4px;
    border-radius: 8px !important;
    padding: 6px 12px;
    transition: all 0.2s ease;
}

.page-link:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background-color: white;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(158, 0, 0, 0.25);
}

.page-item.disabled .page-link {
    color: #d1d5db;
    background: transparent;
}

/* ================== HEADER & ÜST BİLGİ ALANI ======================== */
.logo {
    width: 70px;
    height: 70px;
}

.header-text {
    font-size: 20px;
    font-weight: bold;
    color: #0F172A;
}

.header-subtext {
    font-size: 15px;
    color: #64748B;
    max-width: 400px;
}

.navbar-links {
    font-size: 11px;
}

.navbar-links .dropdown-toggle {
    text-decoration: none !important;
}

/* Dil Değiştirme Menüsü */
.language-menu {
    min-width: auto !important;
    width: max-content;
    padding: 5px;
    text-align: center;
}

.language-menu .dropdown-item {
    font-size: 25px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

/* Hızlı İşlemler Dropdown (Masaüstü) */
.hizli-islemler-menu {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 5px 0;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hizli-islemler-menu .dropdown-item {
    font-size: 12px;
    color: #4b5563;
    font-weight: 500;
    padding: 6px 15px;
    transition: all 0.2s ease;
}

.hizli-islemler-menu .dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
    padding-left: 20px;
}

/* Arama Kutusu (Masaüstü) */
.search-container {
    display: flex;
    align-items: center;
}

.search-input {
    width: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    transition: all 0.5s ease;
    background: transparent;
}

.search-input.active {
    width: 100px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 20px;
    font-size: 12px;
}

.search-btn {
    border: none;
    background: transparent;
    font-size: 1.2rem;
}


/* =================== ANA MENÜ (NAVBAR) =========================== */
.overlay-menu-wrapper {
    position: absolute;
    width: 100%;
    z-index: 10;
}

.main-menu {
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .9) 0%, rgba(153, 205, 233, 0.1) 100%);
    padding: 10px 20px;
}

.main-menu .nav-link {
    color: #F9F9F9;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 400;
}

.main-menu .nav-link:hover {
    color: var(--primary-color);
}

.main-menu .nav-link.active {
    color: var(--primary-color);
}

.main-menu .dropdown-menu {
    background-color: #1a1a2a;
    border: none;
    margin-top: 0;
    padding: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 220px;
    overflow: visible;
}

.main-menu .nav-link.show {
    background-color: #1a1a2a;
    color: #fff !important;
    border-radius: 10px 10px 0 0;
}

.main-menu .dropdown-item {
    color: #b0b0b0;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.main-menu .dropdown-item:last-child {
    border-bottom: none;
}

.main-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    padding-left: 25px;
}

/* Alt Menü (Submenu) */
.main-menu .submenu {
    display: none;
    background-color: #1a1a2a;
    border: none;
    border-radius: 0 10px 10px 10px;
    padding: 0;
    min-width: 200px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.main-menu .submenu .dropdown-item {
    color: #b0b0b0;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-menu .submenu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.navbar-nav li:hover {
    text-decoration: underline;
}

.nav-item.dropdown:hover {
    text-decoration: none !important;
}

/* Dropdown Hover Animasyonları (Masaüstü İçin) */
@media (min-width: 992px) {
    .main-menu .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .main-menu .nav-item.dropdown:hover>.nav-link {
        background-color: #1a1a2a;
        color: #fff !important;
        border-radius: 10px 10px 0 0;
    }

    .main-menu .dropend:hover>.submenu {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
        margin-top: 0;
        margin-left: -2px;
        animation: fadeIn 0.3s ease;
    }
}

/* ==================== SLIDER ALANI ========================= */
.slider-item {
    height: calc(100vh - 80px);
}

.slider-img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-nav-btn {
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    transition: all 0.3s;
}

.slider-nav-btn:hover {
    background: #333;
    color: white;
}


/* ==================== İÇERİK BAŞLIKLARI ============================= */
.general-header {
    color: #2c3e50;
    font-weight: 700;
    font-size: 34px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.general-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}


/* ==================== ETKİNLİKLER (TIMELINE) ======================= */
.timeline-wrapper {
    border-left: 2px solid #e5e7eb;
    margin-left: 10px;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 20px;
    width: 18px;
    height: 18px;
    background-color: #d1d5db;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.timeline-item:hover::before {
    background-color: var(--primary-color);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.timeline-date {
    margin-bottom: 5px;
    font-weight: 500;
}

.timeline-text {
    font-weight: 600;
    color: #333;
}

.timeline-badge {
    margin-bottom: 6px;
    margin-left: 5px;
}

/* #etkinlikOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
} */

#etkinlikOverlay {
    position: absolute;
    inset: 0;               /* 🔥 top:0 left:0 right:0 bottom:0 */
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ÜST */
.overlay-top {
    position: absolute;
    top: 10px;
    left: 18px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Birim alanı kapsayıcıyı referans yap */
#overlayBirimContainer {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}


/* Üniversite */
#overlayUniversite {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
}

/* Birim adı */
#overlayBirim {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    display: inline-block;
    padding-right: 0px; /* overlayTip için boşluk */
}

/* 🔥 DİKEY ETKİNLİK TİPİ */
#overlayTip {
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    
    writing-mode: vertical-rl;   /* yukarıdan aşağı */
    text-orientation: mixed;

    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}

/* #overlayKategori {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    background: rgba(0,0,0,.6);
} */

/* ORTA */
.overlay-center {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 65%;
    line-height: 1.25;
    word-wrap: break-word;
}

#overlayBaslik {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,.6);
    margin-bottom: 20px;
}

/* ALT */
.overlay-bottom {
    position: absolute;
    bottom: 20px;
    left: 90px;
    font-size: 13px;
    text-align: left;
}

.overlay-bottom div {
    display: flex;              /* 🔥 */
    align-items: center;
    gap: 15px;                   /* ikon – yazı arası */
    margin-top: 10px;
    color: #000;
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
    justify-content: flex-start; /* 🔥 ORTA YOK */
}

#overlayKonusmaci {
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

#overlayKonusmaci::before {
    content: "👤";
}

#overlayYeri::before {
    content: "📍";
}

#overlayTarih::before {
    content: "📅";
}

#overlayUrl::before {
    content: "🔗 ";
     margin-right: 10px;
}

.position-relative {
    position: relative;
}


/* ===================== HABERLER (ANASAYFA KARTLARI) ============================= */
.haber-box {
    position: relative;
    width: 100%;
    margin-bottom: 150px;
}

.haber-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.haber-info {
    position: absolute;
    background-color: #fff;
    top: 55%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 85%;
    padding: 20px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    text-align: left;
}

.haber-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*Üssteki çalışmazsa ne olur ne olmaz*/
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.haber-message {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /*Üssteki çalışmazsa ne olur ne olmaz*/
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.haber-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.haber-link:hover {
    color: #333;
}

.haber-badge-overlay {
    position: absolute;
    top: 8px;
    right: 8px;   /* ✅ SAĞ ÜST */
    z-index: 3;

    padding: 4px 10px;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    border-radius: 6px;
    opacity: 0.75;
    pointer-events: auto;
    white-space: nowrap;
}

.haber-badge-overlay:hover {
    opacity: 1;
    transform: scale(1.05);
}

.haber-logo-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
}

.haber-logo-overlay img {
    width: 70px;
    height: auto;
    opacity: 0.65;

    background: rgba(255, 255, 255, 0.75);
    padding: 4px 6px;
    border-radius: 6px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.haber-logo-overlay:hover img {
    opacity: 1;               
    transform: scale(1.05);       
}

.haber-crop {
    width: 100%;
    height: 427px;
    overflow: hidden;
    border-radius: 8px;
}


/* ===================== SLOGAN ======================= */
.slogan-section-wrapper {
    background-color: #1a1a2a;
    position: relative;
    padding-bottom: 0;
}

.slogan-img-container {
    position: relative;
    width: 100%;
}

.slogan-img {
    margin-top: -80px;
    max-width: 100%;
    width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 10;
}

.slogan-quote {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 10px;
    padding-top: 40px;
}

.slogan-signature {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1.1rem;
}


/* ===================== SIDEBAR - SAĞ YAPIŞKAN MENÜ ==================== */
.sticky-rightbar {
    position: fixed;
    right: 20px;
    top: 45%;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rightbar-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #1a1a2a;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.rightbar-item::before {
    content: attr(data-title);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.rightbar-item::after {
    content: '';
    position: absolute;
    right: 54px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.rightbar-item:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.rightbar-item:hover::before,
.rightbar-item:hover::after {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* ==========================================================================
   İLETİŞİM SAYFASI
============================================================================= */

.map-container {
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 10px;
    border-radius: 12px;

    /* Yeni eklemeler */
    display: flex;           /* İçeriği flex ile hizala */
    justify-content: center; /* Yatayda ortala */
    align-items: center;     /* Dikeyde ortala (yükseklik varsa) */
    overflow: hidden;        /* iframe taşmasını önle */
}

.map-container iframe {
    width: 100%;            /* Container genişliğine uysun */
    height: 350px;          /* Sabit yükseklik, istenirse responsive yapabiliriz */
    border: 0;
    border-radius: 8px;
}

.contact-info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.card-header-custom {
    padding: 25px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    border-left: 4px solid var(--primary-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card-body-custom {
    padding: 25px;
    flex: 1;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-details-list li:last-child {
    margin-bottom: 0;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: color-mix(in srgb, var(--primary-color) 8%, transparent);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 18px;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    padding-top: 2px;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-text-content {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.info-text-content a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s;
}

.info-text-content a:hover {
    color: var(--primary-color);
}

/* Liste işaretlerini tamamen kaldır */
.contact-details-list,
.contact-details-list li {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

/* pseudo-elementlerden gelen okları engelle */
.contact-details-list li::before,
.contact-details-list li::after,
.contact-details-list li::marker,
.contact-details-list li a::before,
.contact-details-list li a::after {
    content: none !important;
    display: none !important;
}

/* ==========================================================================
   SİTE SORUMLUSU SAYFASI
============================================================================= */

.contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.contact-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--primary-color) 30%, transparent);
}

/* Kartın üst başlık kısmı */
.contact-card-header {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 25px;
    border-left: 4px solid var(--primary-color);
}

.contact-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-dept {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.contact-card-body {
    padding: 25px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.icon-box {
    width: 42px;
    height: 42px;
    background: color-mix(in srgb, var(--primary-color) 8%, transparent);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
    /* Mobilde daralınca ikon yamulmasın diye */
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.70rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-text a,
.info-text span {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.info-text a:hover {
    color: var(--primary-color);
}

/* Contact-card içindeki listelerde ok işaretlerini ve markerları iptal et */
.contact-card .contact-info-list,
.contact-card .contact-info-list li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

/* Tema / bootstrap / global css'ten gelen ::before / ::after markerları iptal et */
.contact-card .contact-info-list li::before,
.contact-card .contact-info-list li::after,
.contact-card .contact-info-list li::marker,
.contact-card .contact-info-list li a::before,
.contact-card .contact-info-list li a::after {
    content: none !important;
    display: none !important;
}

/* target="_blank" ikonlarını da iptal et (varsa) */
.contact-card .contact-info-list a[target="_blank"]::after {
    content: none !important;
}


/* ==========================================================================
   FOOTER ALANI
============================================================================= */
.site-footer {
    background-color: #161616;
    font-size: 0.8rem;
    color: #616161;
    background: url('../images/footer.png') repeat #2a2a2a;
    border-top: 3px solid var(--primary-color);
    background-position: bottom center;

    
}

.footer-logo {
    width: 100px;
    height: auto;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.footer-brand-text,
.footer-main-title {
    opacity: 0.5;
    color: #fff;
    transition: all 0.5s ease;

}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
}

.footer-brand-wrapper:hover .footer-logo {
    opacity: 0.8;
    transform: scale(1.05);
}

.footer-brand-wrapper:hover .footer-brand-text,
.footer-brand-wrapper:hover .footer-main-title {
    opacity: 1;
    color: #fff;
}

/* Linkler */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    font-weight: lighter;
}

/*Linklerin solundaki okların boyutu*/
.footer-links a i {
    font-size: 0.7rem;
    opacity: 0.7;
}

/*Hover olduğunda biraz sağa kayma efekti*/
.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/*Hover olduğunda yazıların solundaki okların rengi*/
.footer-links a:hover i {
    color: var(--primary-color);
}

/*İletişimdeki ikonların boyutu*/
.footer-contact i {
    font-size: 1.1rem;
}

.copyright-bar {
    background-color: #080808;
}

.store-badge img {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.store-badge:hover img {
    opacity: 1;
}


/* =================== RESPONSIVE AYARLARI ==================== */
.mobile-search-input {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    width: 100%;
    outline: none;
}

@media (max-width: 991px) {

    .header-text {
        font-size: 16px;
        margin-top: 10px;
        text-align: center;
    }

    .header-subtext {
        font-size: 13px;
        text-align: center;
        margin-bottom: 10px;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .dropend:hover .submenu {
        display: block;
        position: static;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        padding-left: 20px;
    }

    .submenu .dropdown-item {
        border-bottom: none;
    }

    .slogan-section-wrapper {
        text-align: center;
        padding-top: 50px;
    }

    .slogan-img {
        margin-top: 0;
        width: 200px;
        margin-bottom: 20px;
    }

    .slogan-section-wrapper .text-end {
        text-align: center !important;
    }

    .dropdown-menu {
        box-shadow: none;
    }

    .main-menu .nav-link.show {
        background-color: transparent;
        color: #96d7f4 !important;
    }

    .hizli-islemler-menu.mobile-quick-dropdown {
        position: static !important;
        transform: none !important;
        float: none !important;
        width: 100%;
        box-shadow: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 10px !important;
        display: none;
    }

    .hizli-islemler-menu.mobile-quick-dropdown.show {
        display: block;
    }

    .hizli-islemler-menu.mobile-quick-dropdown .dropdown-item {
        color: #666 !important;
        padding-left: 0 !important;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 13px;
        background-color: transparent !important;
    }
}

@media (max-width: 768px) {

    /* Sağ Menü Mobilde Küçült */
    .rightbar-item::before,
    .rightbar-item::after {
        display: none;
    }

    .sticky-rightbar {
        right: 10px;
        gap: 10px;
    }

    .rightbar-item {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


/* =================== OFFCANVAS ======================== */
.mobile-nav-links .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none !important;
    display: none;
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    border: none !important;
}

.mobile-nav-links .dropdown-menu.show {
    display: block !important;
}

.mobile-nav-links .dropdown-item {
    color: #ccc !important;
    white-space: normal !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 20px !important;
    padding-right: 15px !important;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-nav-links .dropdown-item:last-child {
    border-bottom: none;
}

.mobile-nav-links .dropdown-item:hover,
.mobile-nav-links .dropdown-item:focus {
    padding-left: 25px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}


/* ==================== ANİMASYONLAR ======================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 105;
    cursor: pointer;
}

.carousel-indicators button {
    pointer-events: none; 
    cursor: default;       
}

.boxed-slider-item {
    height: 450px;
}