:root {
    --primary-color: #FFB800;
    --secondary-color: #FFA000;
    --dark-color: #704D00;
    --light-color: #FFF8E1;
    --accent-color: #FF9800;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(255, 184, 0, 0.2);
    --btn-size: 3.2rem;
    --extra-space: 1.8rem;
    --menu-radius: calc(var(--btn-size) + var(--extra-space));
    --primary-rgb: 255, 184, 0;
    --glass-blur: 10px;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    padding: 0;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 5px 0;
    height: 40px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info i {
    font-size: 1rem;
}

.contact-info strong {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.quick-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.quick-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: white;
    font-size: 0.9rem;
}

/* Main Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    transition: all 0.4s ease;
    background: #2f2f2fa9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
    height: 0;
    overflow: visible;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
}

.logo-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 70px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 15px rgba(0, 67, 140, 0.3);
    z-index: 1010;
    transition: all 0.4s ease;
    overflow: hidden;
    border-left: 1px solid rgba(0, 67, 140, 0.2);
    border-right: 1px solid rgba(0, 67, 140, 0.2);
    border-bottom: 1px solid rgba(0, 67, 140, 0.2);
    padding-top: 4px;
}

.main-header.scrolled .logo-notch {
    width: 150px;
    height: 60px;
    top: 0;
}

.main-header.scrolled .logo-text {
    display: none;
}

.main-header.scrolled .logo-img {
    height: 50px;
}

.logo-notch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.logo-text-top {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
}

.logo-text-bottom {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    transition: all 0.4s ease;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-right: 0 !important;
    transition: none;
}

.logo-img {
    height: 60px;
    transition: all 0.4s ease;
}

.main-header.scrolled .logo-img {
    height: 50px;
}

.navbar {
    position: relative;
    height: 50px;
    margin-top: 10px;
    background: transparent; /* Navbar rengi header ile uyumlu olması için transparent yapıldı */
    transition: all 0.4s ease;
}

.main-header.scrolled .navbar {
    margin-top: 5px;
    background: transparent; /* Kaydırıldığında da arka plan transparent kalır */
}

.navbar-collapse {
    justify-content: space-between;
    height: 100%;
}

.left-menu, .right-menu {
    display: flex;
    align-items: center;
}

.left-menu {
    margin-right: auto;
}

.right-menu {
    margin-left: auto;
}

.nav-item {
    margin: 0 0.8rem;
}

/* Navbar Linkleri */
.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.8rem 1.8rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.5rem;
    left: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

/* Dropdown linkleri için ok ekle */
.nav-item.dropdown > .nav-link::after {
    content: '\F285'; /* Bootstrap Icons'tan sağa doğru ok (chevron-right) */
    font-family: 'Bootstrap Icons';
    position: static;
    width: auto;
    height: auto;
    opacity: 1;
    background: none;
    transform: none;
    margin-left: 5px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-item.dropdown.show > .nav-link::after {
    transform: rotate(90deg); /* Tıklandığında aşağı dönecek şekilde 90 derece döndür */
}

/* Sadece dropdown olmayan öğelerde hover efekti uygula */
.nav-item:not(.dropdown) .nav-link:hover::after {
    width: 70%;
    opacity: 1;
}

/* Dropdown menülerde hover efektini tamamen kapatmak için */
.nav-item.dropdown .nav-link:hover::after {
    width: auto;
    opacity: 1;
}

/* Mobil Hamburger Menü */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler .hamburger-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-toggler .hamburger-icon:before,
.navbar-toggler .hamburger-icon:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-toggler .hamburger-icon:before {
    transform: translateY(-8px);
}

.navbar-toggler .hamburger-icon:after {
    transform: translateY(8px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon:after {
    transform: rotate(-45deg);
}

/* Mobil Menü Düzenlemeleri */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .left-menu, .right-menu {
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .nav-item {
        margin: 0.3rem 0;
    }
    
    .nav-link {
        margin: 0;
        padding: 0.8rem 1rem;
        border-radius: 5px;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu.glass-dropdown {
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0.5rem 0 0.5rem 1rem;
        border-left: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .dropdown.show .glass-dropdown {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobil dropdown menü stilleri */
    .mobile-side-menu .dropdown-toggle-custom {
        cursor: pointer;
        position: relative;
    }
    
    .mobile-side-menu .dropdown-toggle-custom span {
        flex: 1;
        text-align: left;
    }
    
    .mobile-side-menu .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    
    .mobile-side-menu .dropdown-menu .dropdown-item {
        color: rgba(255,255,255,0.8);
        font-weight: 400;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-side-menu .dropdown-menu .dropdown-item:hover,
    .mobile-side-menu .dropdown-menu .dropdown-item:focus {
        color: #fff;
        background-color: rgba(255,255,255,0.1);
    }
    
    .glass-dropdown .dropdown-item {
        color: #212529;
        padding: 0.6rem 1.5rem;
        transition: all 0.2s ease;
        position: relative;
        font-weight: 500;
    }
    
    .glass-dropdown .dropdown-item:hover {
        background-color: rgba(255, 242, 0, 0.1);
        transform: none;
    }
}

@media (max-width: 991.98px) {
    .main-header {
        height: 60px;
        background: rgba(255, 248, 225, 0.95);
    }
    
    .logo-notch {
        width: 180px;
        height: 110px;
        border-radius: 0 0 15px 15px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        border-left: 1px solid rgba(255, 184, 0, 0.2);
        border-right: 1px solid rgba(255, 184, 0, 0.2);
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
    }
    
    .logo-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .navbar {
        margin-top: 10px;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 248, 225, 0.95);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        box-shadow: 0 10px 15px rgba(255, 184, 0, 0.1);
        padding: 20px;
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
    }
    
    .left-menu, .right-menu {
        flex-direction: column;
        width: 100%;
        margin: 0;
        align-items: flex-start;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        font-size: 1.1rem;
        width: 100%;
        font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
        border-bottom: 1px solid rgba(255, 184, 0, 0.1);
    }
    
    .logo-img {
        height: 50px;
    }
    
    .main-header.scrolled .logo-img {
        height: 45px;
    }
    
    .main-header.scrolled .logo-notch {
        height: 90px;
        width: 160px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
    }
    
    .dropdown-menu.glass-dropdown {
        background: rgba(255, 248, 225, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 184, 0, 0.3);
        border-radius: 12px;
        padding: 10px 0;
        margin-top: 10px; /* 0'dan 10px'e değiştirildi - dropdown menüyü aşağı kaydır */
        box-shadow: 0 8px 20px rgba(255, 184, 0, 0.15);
        min-width: 200px;
        top: 100%; /* Tam butonun altında başlasın */
    }
    
    .dropdown-menu.glass-dropdown::before {
        content: "";
        position: absolute;
        top: -10px; /* Görünmez bir alan oluştur */
        left: 0;
        right: 0;
        height: 10px;
        background: transparent; /* Görünmez olsun */
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Dropdown hover davranışını düzeltme */
    .dropdown:hover .glass-dropdown {
        display: block;
        animation: fadeIn 0.3s ease forwards;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dropdown-menu.glass-dropdown.show {
        display: block;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Mobil dropdown menü stilleri */
    .mobile-side-menu .dropdown-toggle-custom {
        cursor: pointer;
        position: relative;
    }
    
    .mobile-side-menu .dropdown-toggle-custom span {
        flex: 1;
        text-align: left;
    }
    
    .mobile-side-menu .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    
    .mobile-side-menu .dropdown-menu .dropdown-item {
        color: rgba(255,255,255,0.8);
        font-weight: 400;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-side-menu .dropdown-menu .dropdown-item:hover,
    .mobile-side-menu .dropdown-menu .dropdown-item:focus {
        color: #fff;
        background-color: rgba(255,255,255,0.1);
    }
    
    .glass-dropdown .dropdown-item {
        color: #212529;
        padding: 0.6rem 1.5rem;
        transition: all 0.2s ease;
        position: relative;
        font-weight: 500;
    }
    
    .services-section {
        margin-top: 20px;
    }
    
    .service-card {
        margin-bottom: 20px;
        height: auto;
    }
}

/* Carousel Styles */
.carousel {
    margin-top: -90px;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item.active img {
    animation: zoomIn 5.5s linear forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    95% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.1);
    }
}

.carousel .carousel-item {
    height: auto;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.8);
}

.carousel-caption {
    position: relative;
    z-index: 25;
    padding: 1rem;
    max-width: 600px;
    max-height: 150px;
    top: 40%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 25;
}

.carousel-caption p {
    display: none;
}

@media (max-width: 991.98px) {
    .carousel-caption {
        max-width: 70%;
        padding: 0.8rem;
        max-height: 200px;
        height: 200px;
        min-height: 200px;
    }
    
    .carousel-caption h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .carousel-caption {
        max-height: 150px;
        height: 150px;
        min-height: 150px;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
}

/* Services Section */
.services-section {
    margin-top: -29vh !important;
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 0;
}

.services-section .row {
    transition: all 0.3s ease;
}

.service-card {
    height: 20vh;  /* 25vh'den 20vh'ye düşürdüm */
    min-height: 180px;  /* 200px'den 180px'e düşürdüm */
    background: rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin: 0;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
    background: rgba(255, 255, 255, 0.9);
    z-index: 5;
}

/* Kart üzerine gelindiğinde diğer kartları flu yap */
.services-section:hover .service-card:not(:hover) {
    filter: blur(2px);
    opacity: 0.7;
    transform: scale(0.95);
}

.service-card i {
    font-size: min(4vh, 2.5rem);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover i {
    color: var(--primary-color) !important;
    transform: scale(1.1);
}

.service-card h4 {
    font-size: min(2.5vh, 1.1rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover h4 {
    color: #333;
}

.service-card p {
    font-size: min(2vh, 0.9rem);
    margin: 0;
    color: #fff;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Kadın Meclisi */
.card-kadin {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    border: none !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card-kadin:hover {
    background: linear-gradient(135deg, #e74c3c 20%, #c0392b 100%) !important;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

/* Gençlik Meclisi */
.card-genclik {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
    border: none !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card-genclik:hover {
    background: linear-gradient(135deg, #3498db 20%, #2980b9 100%) !important;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

/* Çocuk Meclisi */
.card-cocuk {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%) !important;
    border: none !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card-cocuk:hover {
    background: linear-gradient(135deg, #2ecc71 20%, #27ae60 100%) !important;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

/* Engelli Meclisi */
.card-engelli {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%) !important;
    border: none !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card-engelli:hover {
    background: linear-gradient(135deg, #9b59b6 20%, #8e44ad 100%) !important;
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.4);
}

/* Çalışma Grupları */
.card-calisma-gruplari {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
    border: none !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card-calisma-gruplari:hover {
    background: linear-gradient(135deg, #f39c12 20%, #e67e22 100%) !important;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

/* İletişim */
.card-iletisim {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%) !important;
    border: none !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card-iletisim:hover {
    background: linear-gradient(135deg, #f1c40f 20%, #f39c12 100%) !important;
    box-shadow: 0 8px 20px rgba(241, 196, 15, 0.4);
}

/* Genel service card stilleri */
.service-card {
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i, 
.service-card h4, 
.service-card p {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* News & Announcements */
.section-title {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.news-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
}

.news-card img {
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.news-date {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0.5rem 0;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 184, 0, 0.3);
}

/* Footer Styles */
footer {
    background-color: #004a85;
    color: #fff;
    padding: 50px 0 0;
}

footer h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #00a0e3;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00a0e3;
    padding-left: 5px;
}

.bottom-nav {
    background-color: #003a6a;
    padding: 20px 0;
    margin-top: 30px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.bottom-nav-item i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #00a0e3;
}

.bottom-nav-item span {
    font-size: 12px;
    font-weight: 500;
}

.bottom-nav-item:hover {
    color: #00a0e3;
    transform: translateY(-3px);
}

.contact-info {
    background-color: #003a6a;
    padding: 30px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: #00a0e3;
}

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

.info-text strong {
    font-size: 14px;
    color: #fff;
}

.info-text span {
    font-size: 18px;
    color: #00a0e3;
    font-weight: 600;
}

.copyright {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991.98px) {
    .copyright {
        text-align: center !important;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .copyright .text-end {
        text-align: center !important;
    }

    .copyright p {
        text-align: center !important;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .copyright {
        text-align: center !important;
        padding: 10px 0;
    }

    .copyright p {
        font-size: 12px;
        text-align: center !important;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .bottom-nav {
        padding: 10px 0;
    }

    .bottom-nav-item {
        margin-bottom: 15px;
    }

    .info-item {
        margin-bottom: 20px;
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    .copyright .text-end {
        text-align: center !important;
        margin-top: 15px;
    }
}

/* Cam Efektli Dropdown Menü */
.dropdown-menu.glass-dropdown {
    position: absolute;
    min-width: 200px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.glass-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown:hover .glass-dropdown {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-menu.glass-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.glass-dropdown .dropdown-item {
    color: #212529;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
    font-size: 1rem;
}

.glass-dropdown .dropdown-item:hover {
    background: rgba(255, 184, 0, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Mobil dropdown menü stilleri */
.mobile-side-menu .dropdown-toggle-custom {
    cursor: pointer;
    position: relative;
}

.mobile-side-menu .dropdown-toggle-custom span {
    flex: 1;
    text-align: left;
}

.mobile-side-menu .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
}

.mobile-side-menu .dropdown-menu .dropdown-item {
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.mobile-side-menu .dropdown-menu .dropdown-item:hover,
.mobile-side-menu .dropdown-menu .dropdown-item:focus {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
}

/* Scroll Efekti */
.main-header.scrolled .nav-link {
    padding: 0.3rem 0.8rem !important;
    font-size: 0.9rem;
}

/* Logo Çentiği Gölge Efekti */
.logo-notch::after {
    display: none;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .top-bar {
        text-align: center;
    }
    
    .quick-links, .social-links {
        justify-content: center;
        margin: 10px 0;
    }
    
    .carousel-item {
        height: 50vh !important;
    }
    
    .carousel-caption {
        position: absolute;
        top: 10%;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translateY(-50%);
        padding: 2rem;
        z-index: 10;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }

    .services-section {
        display: none;
    }

    /* Mobil ve Tablet Haber Slaytı */
    .news-carousel .carousel-item {
        height: 47vh;
    }

    .mobile-news-slider {
        padding: 0;
        position: relative;
        background: linear-gradient(135deg, rgba(27, 79, 114, 0.05) 0%, rgba(46, 134, 193, 0.05) 100%);
    }

    .mobile-news-slide {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 1rem;
        margin: 0.5rem;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .mobile-news-slide img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 0.8rem;
    }

    .news-slider-section {
        padding: 0;
        padding-top: 1rem;
        margin-top: 0;
    }

    .news-slider-section .section-title {
        display: none !important;
    }

    .news-carousel {
        padding: 0;
    }

    .navbar-brand img {
        max-height: 50px;
    }

    .carousel {
        margin-top: -40px;
    }

    .carousel-caption {
        bottom: 40%;
        padding: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 40%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
    }

    .news-carousel {
        height: 400px;
    }

    .news-carousel .carousel-item {
        height: 400px !important;
    }

    .news-slide {
        height: 400px;
        max-width: 90%;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        text-align: center;
    }
    
    .quick-links, .social-links {
        justify-content: center;
        margin: 10px 0;
    }
    
    .carousel-item {
        height: 75vh !important;
    }
    
    .carousel-caption {
        position: absolute;
        top: 20%;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translateY(-50%);
        padding: 1rem;
        z-index: 10;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }

    .services-section {
        display: none;
    }

    /* Mobil Haber Slaytı */
    .news-carousel .carousel-item {
        height: 0vh;
    }

    .mobile-news-slider {
        padding: 0;
        position: relative;
        background: linear-gradient(135deg, rgba(27, 79, 114, 0.05) 0%, rgba(46, 134, 193, 0.05) 100%);
    }

    .mobile-news-slide {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 1rem;
        margin: 0.5rem;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .mobile-news-slide img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 0.8rem;
    }

    .mobile-news-slide h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .mobile-news-slide p {
        font-size: 0.9rem;
        color: var(--dark-color);
        margin-bottom: 1rem;
    }

    .mobile-news-slide .news-date {
        font-size: 0.8rem;
        color: var(--accent-color);
    }

    .mobile-news-slider .carousel-indicators {
        bottom: -2rem;
    }

    .mobile-news-slider .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--primary-color);
        opacity: 0.3;
    }

    .mobile-news-slider .carousel-indicators .active {
        opacity: 1;
    }

    .news-slider-section {
        padding: 0;
        margin-top: 0;
    }

    .news-slider-section .section-title {
        display: none !important;
        margin: 0;
        padding: 0;
        height: 0;
    }

    .news-slide {
        transform: scale(0.9);
        transition: transform 0.5s ease;
    }

    .carousel-item.active .news-slide {
        transform: scale(1);
    }

    .navbar-brand img {
        max-height: 45px;
    }

    .carousel {
        margin-top: -15px;
    }

    .carousel-caption {
        bottom: 50%;
        transform: translateY(50%);
        padding: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }

    .news-carousel {
        height: 350px;
        margin-top: 5rem;
        padding-top: 2rem;
    }

    .news-carousel .carousel-item {
        height: 350px !important;
    }

    .news-slide {
        height: 350px;
        max-width: 95%;
    }

    .news-image {
        height: 200px;
    }

    .news-title {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    section.news {
        margin-top: 2rem;
    }
    
    .news-carousel {
        height: 350px;
    }
}
section.news .section-title {
    margin-top: 2rem;
}
/* Responsive Dropdown Styles */
@media (min-width: 992px) {
    .dropdown-menu {
        margin-top: 0;
        /* Dropdown ile üst menü arasındaki boşluğu kapat */
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }
    
    /* Dropdown ile üst menü arasında gizli bir köprü oluştur */
    .dropdown:hover::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 10px; /* Menüler arasında köprü görevi görecek alan */
        background: transparent;
        z-index: 1000;
    }
    
    /* Menü ve alt menü arasındaki geçişi iyileştir */
    .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 1001;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    /* Dropdown içindeki linklerin hover durumunu iyileştir */
    .dropdown-item:hover, .dropdown-item:focus {
        background-color: #f8f9fa;
        color: #16181b;
        transition: all 0.2s ease;
    }
}

@media (max-width: 991.98px) {
    .news-carousel {
        height: 200px;
    }

    .news-carousel .carousel-item img {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .news-carousel {
        height: 350px;
        margin-top: 5rem;
        padding-top: 2rem;
    }

    .news-carousel .carousel-item img {
        height: 250px;
    }
}

/* Başkan Sayfası Stilleri */
.president-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(27, 79, 114, 0.05) 0%, rgba(46, 134, 193, 0.05) 100%);
}

.president-image {
    text-align: right;
    padding: 2rem;
    position: relative;
}

.baskan-image {
    width: auto;
    height: 600px;
    max-width: 100%;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 75%, transparent 100%);
}

@media (max-width: 768px) {
    .baskan-image {
        height: auto;
        width: 100%;
        margin: 1rem auto;
    }
    
    .president-image {
        text-align: center;
        padding: 1rem;
    }
}

/* Bottom Navigation Bar */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 184, 0, 0.2);
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    will-change: transform;
}

.bottom-nav .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.bottom-nav-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
    padding: 0 20px;
    background: transparent;
    gap: 12px;
    flex: 1;
    justify-content: center;
    height: 100%;
}

.bottom-nav-item::before {
    content: '🏛️';
    font-size: 1.6rem;
}

.bottom-nav-item:last-child::before {
    content: '📞';
}

.bottom-nav-item span {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.bottom-nav-item:hover {
    color: var(--primary-color);
    background: rgba(255, 184, 0, 0.1);
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 60px;
    }

    .bottom-nav {
        display: block;
    }
}

.news-carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    display: block !important;
    width: 100%;
    height: 450px !important;
}

.news-carousel.carousel-fade .carousel-item.active {
    opacity: 1;
    position: relative;
}

.news-slide {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    max-width: 600px;
    height: 450px;
    transform: scale(0.85);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
}

.carousel-item.active .news-slide {
    transform: scale(1);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    width: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-content {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-content .news-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.news-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.news-carousel .carousel-indicators {
    bottom: -3rem;
    margin-bottom: 0;
    z-index: 5;
}

.news-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    margin: 0 5px;
    border: none;
}

.news-carousel .carousel-indicators .active {
    background-color: var(--primary-color);
}

.news-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
    padding: 4rem 0;
}

@media (max-width: 991.98px) {
    /* mainSlider'ın alt kısmına yerleştirme */
    body > main > section.news-section {
        position: absolute;
        top: calc(100vh - 440px);
        width: 100%;
        padding: 15px 0;
        z-index: 20;
        background: transparent;
    }
    
    /* services-section gizleme, çünkü çakışabilir */
    body > main > section.services-section {
        display: none;
        background: transparent;
    }
    
    body > main > section.news-section > div {
        background: rgba(255, 255, 255, 0.85);
        border-radius: 15px 15px 0 0; /* Sadece üst köşeleri yuvarlat */
        padding: 1.5rem;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 184, 0, 0.2);
        border-bottom: none; /* Alt kısımda çizgi olmasın */
        margin-top: 0;
    }
    
    body > main > section.news-section .section-title {
        color: white;
        text-align: center;
        margin-bottom: 15px;
    }
    
    body > main > section.news-section .carousel-container {
        max-height: 400px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Carousel kartları için görünüm ayarları */
    body > main > section.news-section .carousel-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    /* Kart overlay ayarları */
    body > main > section.news-section .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0));
        border-radius: 10px;
    }
    
    /* Kart içerik ayarları */
    body > main > section.news-section .card-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }
    
    body > main > section.news-section .card-title {
        color: white;
        font-size: 16px;
        margin-bottom: 5px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    body > main > section.news-section .card-date {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    body > main > section.news-section .card-link {
        color: white;
        text-decoration: none;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 2px;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    body > main > section.news-section .card-link:hover {
        color: var(--primary-color);
    }
}

@media (max-width: 767.98px) {
    .news-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body > main > section.news-section {
        top: calc(100vh - 400px); /* Videonun alt kısmı ile birleşsin */
    }
    
    body > main > section.news-section > div {
        margin: 0 10px;
        margin-top: 0;
    }
    
    body > main > section.news-section .carousel-container {
        max-height: 350px;
    }
    
    #mainSlider {
        margin-bottom: 0 !important; /* Margin kaldır */
    }
}

.news-swiper {
    padding: 20px 0;
    margin: 30px 0;
    overflow: visible !important;
}

section.news {
    padding: 50px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

section.news .section-title {
    margin-bottom: 30px;
    text-align: center;
}

/* Thumbnails */
.news-thumbnails {
    padding: 20px 0 40px;
    background-color: #f8f9fa;
}

.thumbnails-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.news-thumb {
    width: 100px;
    height: 70px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb-img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.95);
}

.thumb-img.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}

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

.news-thumb.all-news .thumb-img {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.all-news-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.all-news-content i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.all-news-content span {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* Slayt noktalarını gizle */
.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none !important;
}

/* Mobil Bottom Nav */
.mobile-bottom-nav {
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 1000;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.mobile-nav-item:hover {
    color: var(--primary-color);
}

/* Menü Toggle Butonu */
.menu-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.menu-toggle.active {
    transform: rotate(45deg);
}

/* Menü Öğeleri */
.menu-items {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-items.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
}

.menu-items .item {
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.menu-items.show .item {
    transform: translateY(0);
    opacity: 1;
}

.menu-items.show .item:nth-child(1) {
    transition-delay: 0.05s;
}

.menu-items.show .item:nth-child(2) {
    transition-delay: 0.1s;
}

.menu-items.show .item:nth-child(3) {
    transition-delay: 0.15s;
}

.menu-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.menu-item.facebook {
    background: #3b5998;
    color: white;
}

.menu-item.twitter {
    background: #1da1f2;
    color: white;
}

.menu-item.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.pos-relative {
    position: relative;
}

.mt-30px {
    margin-top: 30px;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: visible !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px !important;
    height: 300px !important;
    background-color: #fff;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.85);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.swiper-slide-prev, .swiper-slide-next {
    opacity: 0.8;
    z-index: 5;
}

.swiper-slide:hover {
    transform: translateY(-5px);
}

.swiper-slide-active:hover {
    transform: scale(1.02) translateY(-5px);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-wrapper {
    padding: 20px 0;
}

.swiper-container {
    overflow: visible !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #fff;
}

.news-swiper {
    padding: 20px 0;
    margin: 30px 0;
    overflow: visible !important;
}

section.news {
    padding: 50px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

section.news .section-title {
    margin-bottom: 30px;
    text-align: center;
}

.picture {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.picture::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.picture:hover img {
    transform: scale(1.05);
}

.detail {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    color: #fff;
    transition: all 0.3s ease;
}

.detail span {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.4;
}

.detail .news-date {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.detail .news-date i {
    margin-right: 5px;
}

.detail .read-more {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.detail .read-more:hover {
    color: var(--primary-color);
}

.detail .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.detail .read-more:hover i {
    transform: translateX(5px);
}

/* Haber Carousel Stilleri */
.news-carousel {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-carousel .carousel-inner {
    border-radius: 10px;
}

.news-carousel .carousel-item {
    background-color: #fff;
}

.news-carousel .news-card {
    border: none;
    background-color: #fff;
    height: 100%;
}

.news-carousel .news-card .row {
    min-height: 400px;
}

.news-carousel .news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.news-carousel .card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-carousel .news-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-carousel .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.news-carousel .news-date {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.news-carousel .news-date i {
    margin-right: 5px;
    color: var(--primary-color);
}

.news-carousel .card-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-carousel .btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-carousel .btn-primary i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.news-carousel .btn-primary:hover i {
    transform: translateX(5px);
}

.news-carousel .carousel-control-prev,
.news-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.news-carousel .carousel-control-prev {
    left: 20px;
}

.news-carousel .carousel-control-next {
    right: 20px;
}

.news-carousel .carousel-control-prev:hover,
.news-carousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-color);
}

.news-carousel .carousel-indicators {
    bottom: 20px;
}

.news-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.news-carousel .carousel-indicators .active {
    background-color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .news-carousel .news-card .row {
        flex-direction: column;
    }
    
    .news-carousel .news-card img {
        border-radius: 10px 10px 0 0;
        height: 200px;
    }
    
    .news-carousel .card-body {
        padding: 20px;
    }
    
    .news-carousel .card-title {
        font-size: 1.2rem;
    }
}

section.news {
    padding: 50px 0;
    background-color: #f8f9fa;
    position: relative;
}

section.news .section-title {
    margin-bottom: 30px;
    text-align: center;
}

/* Tüm Haberler Butonu */
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline-primary i {
    margin-left: 8px;
}

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

/* Video Header Styles */
.video-header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


#headerVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.video-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.video-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.video-content p.lead {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
}

.video-content .btn {
    font-size: 1.2rem;
    padding: 12px 30px;
    border-width: 2px;
    animation: fadeIn 1s ease-out 1s;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

.video-content .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .video-header {
        height: 80vh;
        min-height: 500px;
    }
    
    .video-content h1 {
        font-size: 3rem;
    }
    
    .video-content p.lead {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .video-header {
        height: 70vh;
        min-height: 400px;
    }
    
    .video-content h1 {
        font-size: 2.5rem;
    }
    
    .video-content p.lead {
        font-size: 1.2rem;
    }
    
    .video-content .btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

/* Video için CSS */
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#mainSlider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    max-height: none;
    margin: 0;
    padding: 0;
}

#mainSlider .carousel-inner,
#mainSlider .carousel-item {
    height: 100vh;
    max-height: none;
    overflow: hidden;
}

#mainSlider video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    #mainSlider,
    #mainSlider .carousel-inner,
    #mainSlider .carousel-item {
        height: 100vh;
        max-height: none;
    }

    #mainSlider video {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
}

@media (max-width: 767.98px) {
    #mainSlider,
    #mainSlider .carousel-inner,
    #mainSlider .carousel-item {
        height: 100vh;
        max-height: none;
    }

    #mainSlider video {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
}

/* 768px-992px arası ekran genişlikleri için özel ayarlar */
@media (min-width: 768px) and (max-width: 991.98px) {
    #mainSlider {
        max-height: 100vh;
        height: 100vh !important;
        margin-bottom: 0 !important; /* Margin kaldır */
    }
    
    /* News section pozisyonu */
    body > main > section.news-section {
        top: calc(100vh - 400px); /* Videonun alt kısmı ile birleşsin */
    }
    
    body > main > section.news-section > div {
        margin-top: 0;
    }
    
    /* Diğer stilleri koru */
    #mainSlider .carousel-inner,
    #mainSlider .carousel-item {
        max-height: 100vh;
        height: 100vh !important;
    }
    
    #mainSlider video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    #mainSlider .gradient-overlay {
        height: 100%;
    }
}

@media (max-width: 767.98px) {
    #mainSlider {
        max-height: 100vh;
        height: 100vh !important;
    }
    
    #mainSlider .carousel-inner,
    #mainSlider .carousel-item {
        max-height: 100vh;
        height: 100vh !important;
        overflow: hidden;
    }
    
    #mainSlider video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    #mainSlider .gradient-overlay {
        height: 100%;
        width: 100%;
    }
    
    #mainSlider .carousel-caption {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        max-height: 400px;
        height: 125px;
        min-height: 125px;
        padding: 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    #mainSlider .carousel-caption h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    #mainSlider .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
}

/* Floating Menu Stilleri */
.floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.menu-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    cursor: pointer;
    padding: 0;
    overflow: hidden;
}

.menu-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.menu-button.active {
    transform: rotate(45deg);
}

/* Menü Öğeleri */
.menu-items {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.menu-items.show {
    opacity: 1;
    visibility: visible;
}

.menu-items .item {
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.menu-items.show .item {
    transform: translateY(0);
    opacity: 1;
}

.menu-items.show .item:nth-child(1) {
    transition-delay: 0.05s;
}

.menu-items.show .item:nth-child(2) {
    transition-delay: 0.1s;
}

.menu-items.show .item:nth-child(3) {
    transition-delay: 0.15s;
}

.menu-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.menu-item.facebook {
    background: #3b5998;
    color: white;
}

.menu-item.twitter {
    background: #1da1f2;
    color: white;
}

.menu-item.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.menu-item.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: brightness(1.1);
}

.menu-item i {
    font-size: 20px;
}

/* FAB Menü Stilleri */
.btn-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    cursor: pointer;
    padding: 0;
    overflow: hidden;
}

.btn-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-fab.active {
    transform: rotate(45deg);
}

.btn-fab .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.btn-fab .icon i {
    font-size: 28px;
    color: white;
    display: block;
    line-height: 1;
}

.fab-menu {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.fab-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fab-item {
    width: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    opacity: 0;
}

.fab-menu.show .fab-item {
    opacity: 1;
}

.fab-menu.show .fab-item:nth-child(1) {
    transform: translate(calc(-50% - 60px), -60px) scale(1);
    transition-delay: 0.05s;
}

.fab-menu.show .fab-item:nth-child(2) {
    transform: translate(-50%, -100px) scale(1);
    transition-delay: 0.1s;
}

.fab-menu.show .fab-item:nth-child(3) {
    transform: translate(calc(-50% + 60px), -60px) scale(1);
    transition-delay: 0.15s;
}

.fab-item:hover {
    transform: scale(1.1) !important;
}

.fab-item.facebook {
    background: #3b5998;
    color: white;
}

.fab-item.facebook:hover {
    background: #4267B2;
}

.fab-item.twitter {
    background: #1da1f2;
    color: white;
}

.fab-item.twitter:hover {
    background: #1a91da;
}

.fab-item.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.fab-item.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: brightness(1.1);
}

.fab-item i {
    font-size: 20px;
}

@media (min-width: 992px) {
    .footer-nav {
        display: none;
    }
}

/* Mobil Alt Menü Stilleri */
.footer-nav {
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: relative;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.footer-nav li {
    text-align: center;
}

.footer-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-nav .icon {
    font-size: 24px;
    margin-bottom: 4px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav .icon i {
    font-size: 24px;
}

/* Sosyal Medya Butonları */
.social-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.social-button.facebook {
    background-color: #3b5998;
}

.social-button.twitter {
    background-color: #1da1f2;
}

.social-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-button.youtube {
    background-color: #ff0000;
}

/* Mobil ve Tablet için Responsive Ayarlar */
@media (max-width: 991px) {
    .floating-menu {
        display: none !important;
    }
    
    .social-buttons {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .service-card {
        margin-bottom: 15px;
    }
    
    .carousel-caption {
        max-width: 70%;
        padding: 0.8rem;
        max-height: 200px;
        height: 200px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 767.98px) {

    
    #mainSlider .carousel-caption {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        max-height: 400px;
        height: 125px;
        min-height: 125px;
        padding: 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    #mainSlider .carousel-caption h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    #mainSlider .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

}

/* 992px ekran genişliği altında haber slaytı iyileştirmeleri */
@media (max-width: 991.98px) {
    /* Haber kartları responsive düzenlemeleri */
    body > main > section.news-section .carousel-card {
        width: 85%;
        height: 85%;
    }
    
    body > main > section.news-section .card-overlay {
        opacity: 1;
        height: 60%;
    }
    
    body > main > section.news-section .card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    body > main > section.news-section .card-date {
        font-size: 12px;
    }
    
    body > main > section.news-section .card-link {
        font-size: 13px;
    }
    
    /* Carousel büyüklük düzenlemeleri */
    body > main > section.news-section .carousel-container {
        max-width: 100%;
        padding: 0 15px;
        margin-top: -20px;
    }
    
    /* Oklar için düzenlemeler */
    body > main > section.news-section .carousel-nav-prev,
    body > main > section.news-section .carousel-nav-next {
        width: 35px;
        height: 35px;
    }
    
    body > main > section.news-section .carousel-nav-prev i,
    body > main > section.news-section .carousel-nav-next i {
        font-size: 18px;
    }
    
    /* TÜM HABERLER butonu */
    body > main > section.news-section .all-news-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    body > main > section.news-section .carousel-card {
        width: 90%;
        height: 80%;
    }
    
    body > main > section.news-section .carousel-container {
        margin-top: -30px;
    }
    
    /* Carousel arkaplan stilini güncelle */
    body > main > section.news-section > div {
        margin: 0 10px;
    }
}

@media (max-width: 991.98px) {
    /* Video arka plan düzenlemeleri */
    #mainSlider .gradient-overlay {
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.3) 0%, 
            rgba(0,0,0,0.5) 50%, 
            rgba(0,0,0,0.8) 80%, 
            rgba(0,0,0,0.95) 100%
        );
    }
    
    /* ... existing code ... */
}

/* Carousel kartlarını görünür yap ve haber görseli sorununu çöz */
@media (max-width: 991.98px) {
    /* Carousel masaüstü gibi görünsün */
    body > main > section.news-section .cards {
        display: block !important;
        flex-wrap: nowrap !important;
        position: relative !important;
        width: 100% !important;
        height: 400px !important;
    }
    
    /* Kartları masaüstü stili */
    body > main > section.news-section .carousel-card {
        position: absolute !important;
        width: 60% !important;
        height: 85% !important;
        left: 0 !important;
        right: 0 !important;
        margin: auto !important;
        min-height: 280px !important;
        transform-origin: center !important;
    }
    
    /* Aktif olmayan kartları konumlandır */
    body > main > section.news-section #item-1:checked ~ .cards #news-3, 
    body > main > section.news-section #item-2:checked ~ .cards #news-1, 
    body > main > section.news-section #item-3:checked ~ .cards #news-2 {
        transform: translatex(-60%) scale(.7) !important;
        opacity: .3 !important;
        z-index: 1 !important;
    }
    
    body > main > section.news-section #item-1:checked ~ .cards #news-2, 
    body > main > section.news-section #item-2:checked ~ .cards #news-3, 
    body > main > section.news-section #item-3:checked ~ .cards #news-1 {
        transform: translatex(60%) scale(.7) !important;
        opacity: .3 !important;
        z-index: 1 !important;
    }
    
    /* Aktif kartı ortala ve büyüt */
    body > main > section.news-section #item-1:checked ~ .cards #news-1, 
    body > main > section.news-section #item-2:checked ~ .cards #news-2, 
    body > main > section.news-section #item-3:checked ~ .cards #news-3 {
        transform: translatex(0) scale(1) !important;
        opacity: 1 !important;
        z-index: 10 !important;
        visibility: visible !important;
    }
}

@media (max-width: 991.98px) {
    /* mainSlider'ın alt kısmına yerleştirme */
    body > main > section.news-section {
        position: absolute;
        top: calc(100vh - 900px); /* Daha yukarı kaydır, video alt kısmıyla birleşsin */
        min-height: auto;
        padding: 1rem 0;
        background: transparent;
        z-index: 99;
        width: 100%;
        left: 0;
        right: 0;
    }
}

.services-section {
    margin-top: -29vh !important;
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 0;
}

.services-section .row {
    transition: all 0.3s ease;
}

.service-card {
    height: 20vh;  /* 25vh'den 20vh'ye düşürdüm */
    min-height: 180px;  /* 200px'den 180px'e düşürdüm */
    background: rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin: 0;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
    background: rgba(255, 255, 255, 0.9);
    z-index: 5;
}

/* Kart üzerine gelindiğinde diğer kartları flu yap */
.services-section:hover .service-card:not(:hover) {
    filter: blur(2px);
    opacity: 0.7;
    transform: scale(0.95);
}

.service-card i {
    font-size: min(4vh, 2.5rem);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover i {
    color: var(--primary-color) !important;
    transform: scale(1.1);
}

.service-card h4 {
    font-size: min(2.5vh, 1.1rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover h4 {
    color: #333;
}

.service-card p {
    font-size: min(2vh, 0.9rem);
    margin: 0;
    color: #fff;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Eski Footer Stili Silindi */
/* Modern Footer Styles */
.modern-footer {
    position: relative;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    margin-top: 0px;
    overflow: hidden;
    border: none;
}

.footer-top {
    background-color: #343A40;
    background-image: linear-gradient(to right, #2D3436, #343A40, #404B53);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin: 0;
    border: none;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/pattern.png');
    opacity: 0.05;
    z-index: -1;
}

/* Footer Logo ve Bilgiler */
.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    height: 70px;
    width: auto;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Başlık */
.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Footer Menü */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding-left: 0;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* Footer İletişim */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact li i {
    width: 20px;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
}

.footer-contact li span:first-child {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 3px;
}

.footer-contact li span,
.footer-contact li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

/* Footer Alt Kısım */
.footer-bottom {
    background-color: #1A1E21;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    background-color: transparent !important;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links a {
    color: rgba(26, 30, 33, 1);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

/*.footer-bottom-links a:hover {
    color: #FFB800;
}*/

/* Mobil Alt Menü */
.mobile-footer-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1A1E21;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.mobile-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.mobile-footer-item i {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.mobile-footer-item:hover,
.mobile-footer-item:active {
    color: var(--primary-color);
}

/* Mobil Sosyal Menü */
.mobile-social-toggle {
    position: relative;
}

.mobile-social-menu {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1001;
}

.mobile-social-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.mobile-social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-social-item:hover {
    transform: translateY(-5px);
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .footer-top {
        padding: 50px 0 30px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        margin-left: 1px;
        margin-right: 1px;
    }
    
    .footer-title {
        margin-top: 30px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-menu a {
        font-size: 12px;
    }
    
    .footer-contact li {
        margin-bottom: 15px;
    }
    
    .footer-contact li i {
        font-size: 16px;
    }
    
    .footer-contact li span,
    .footer-contact li a {
        font-size: 12px;
    }
    
    .footer-brand-column {
        order: 3;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
    }
    
    .footer-about {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
        font-size: 12px;
    }
    
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-links li {
        margin: 0 10px;
    }
    
    .footer-bottom-links a {
        font-size: 11px;
    }
    
    .footer-logo {
        height: 50px;
        display: block;
        margin: 0 auto;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 13px;
        margin-top: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .footer-top {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    
    .footer-bottom-links li {
        margin-left: 10px;
    }
    
    /* Mevcut kodlar */
}

@media (max-width: 991px) {

    
    .footer-bottom {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    
}

@media (max-width: 767px) {

    
    .footer-bottom {
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

}

/* Footer responsive border radius ayarları - ek */
@media (max-width: 991px) {
    .footer-bottom {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        margin-left: 1px;
        margin-right: 1px;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        margin-left: 1px;
        margin-right: 1px;
    }
}

/* Copyright container için özel stil */
.footer-bottom .col-md-6 {
    background-color: transparent !important;
}

.transparent-bg {
    background-color: transparent !important;
    display: inline-block !important;
}

/* Mobil görünümde footer */
@media (max-width: 991px) {
    .footer-bottom {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-top {
        padding: 50px 0 30px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-top {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Responsive Footer Ayarları */
@media (max-width: 991px) {
    .modern-footer {
        margin-top: 30px;
    }
    
    .footer-top {
        padding: 40px 0 30px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-bottom {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding: 15px 0;
    }
    
    .footer-title {
        margin-top: 25px;
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-menu {
        columns: 2;
        column-gap: 20px;
    }
    
    .footer-menu a {
        font-size: 13px;
        margin-bottom: 8px;
        display: inline-block;
    }
    
    .footer-contact li {
        margin-bottom: 15px;
    }
    
    .footer-contact li i {
        font-size: 16px;
    }
    
    .footer-contact li span,
    .footer-contact li a {
        font-size: 13px;
    }
    
    .footer-brand-column {
        order: -1;
        margin-bottom: 20px;
    }
    
    .footer-about {
        font-size: 13px;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .footer-social {
        margin-top: 15px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .copyright {
        text-align: center;
        font-size: 12px;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    /* Footer içindeki sütun düzeni */
    .footer-top .row [class*="col-"] {
        margin-bottom: 10px;
    }
    
    /* İki sütunlu yapı */
    .footer-top .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .footer-top .row [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Logo sütunu tüm genişlikte */
    .footer-top .row .footer-brand-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .modern-footer {
        margin-top: 20px;
    }
    
    .footer-top {
        padding: 30px 0 20px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    
    .footer-bottom {
        padding: 12px 0;
    }
    
    .footer-title {
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    
    .footer-menu {
        columns: 1;
    }
    
    .footer-menu a {
        font-size: 12px;
    }
    
    .footer-logo {
        height: 50px;
        display: block;
        margin: 0 auto 10px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
    }
    
    .footer-bottom-links li {
        margin: 5px 8px;
    }
    
    .footer-bottom-links a {
        font-size: 11px;
    }
    
    /* Tek sütunlu yapı */
    .footer-top .row [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .footer-contact {
        margin-bottom: 20px;
    }
}

/* Mobil social-item hover */
.mobile-social-item:hover {
    transform: translateY(-5px);
}

/* Eski Responsive Sorgular Kaldırıldı */

/* Copyright container için özel stil */
.footer-bottom .col-md-6 {
    background-color: transparent !important;
}

.transparent-bg {
    background-color: transparent !important;
    display: inline-block !important;
}

/* Dropdown Menüler */
.dropdown-menu.glass-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    margin-top: 15px; /* Menüyü aşağıya kaydır */
    display: none;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    position: absolute;
    top: 100%; /* Link'in altından başlasın */
}

/* Görünmez alan ekliyoruz tıklanabilirlik için */
.dropdown-menu.glass-dropdown::before {
    content: '';
    position: absolute;
    top: -15px; /* Üstte görünmez alan oluştur */
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CSS hover stili ile açılan menü */
.dropdown:hover .glass-dropdown {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* JavaScript ile açılan menü (mobil için) */
.dropdown-menu.glass-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.glass-dropdown .dropdown-item {
    color: #333;
    padding: 0.7rem 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.glass-dropdown .dropdown-item:hover {
    color: #fff;
    background-color: var(--primary-color);
    transform: translateX(5px);
}

body > main > section.services-section .service-card {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

body > main > section.services-section .service-card h4,
body > main > section.services-section .service-card p,
body > main > section.services-section .service-card i {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Service card hover etkisi için metin ve simge renkleri */
body > main > section.services-section .service-card:hover h4 {
    color: #000 !important;
    text-shadow: none;
}

body > main > section.services-section .service-card:hover p {
    color: #000 !important;
    text-shadow: none;
}

body > main > section.services-section .service-card:hover i {
    color: #000 !important;
    text-shadow: none;
}

/* YouTube ikonlarını gizle */
body > footer > div.footer-top > div > div > div.col-lg-4.col-md-12.footer-brand-column > div > div > a:nth-child(4),
.mobile-social-item:nth-child(4) {
    display: none !important;
}

#navbarNavMobile > div.mobile-menu-footer > div.mobile-social-links > a:nth-child(4) {
    display: none !important;
}

/* Page Header Styles - Global */
.page-header {
    background-color: #f8f9fa;
    padding: 100px 0 30px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.page-header .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}

.page-header .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.page-header .breadcrumb-item.active {
    color: #6c757d;
}

.page-header .page-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}

.page-header .btn-primary {
    padding: 10px 20px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 80px 0 20px 0;
    }
    
    .page-header .page-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .page-header .col-md-4.text-end {
        text-align: center !important;
        margin-top: 20px;
    }
}

#mainSlider .gradient-overlay {
    position: absolute !important;
    top: -30 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.556) 0%, rgba(0, 0, 0, 0.451) 50%, rgba(0, 0, 0, 0.51) 100%) !important;
    z-index: 2 !important;
}

@media (max-width: 991.98px) {
    #mainSlider .gradient-overlay {
        background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%) !important;
    }
}

@media (max-width: 767.98px) {
    #mainSlider .gradient-overlay {
        background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%) !important;
    }
}

/* İletişim Sayfası Stilleri */
.contact-page {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-page .section-title {
    margin-bottom: 50px;
}

.contact-info-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.contact-info-box:hover::before {
    opacity: 1;
}

.contact-info-box:hover .info-icon,
.contact-info-box:hover .info-title,
.contact-info-box:hover .info-text,
.contact-info-box:hover .info-text a {
    color: #fff !important;
}

.info-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.info-text {
    font-size: 16px;
    transition: all 0.3s ease;
}

.info-text a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-form {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    height: 55px;
    border: 2px solid #e6e6e6;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-control.is-valid {
    border-color: #28a745;
    background-image: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

textarea.form-control {
    height: 180px;
    resize: none;
}

.form-label {
    position: absolute;
    top: 17px;
    left: 21px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: #fff;
    padding: 0 5px;
    margin: 0;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    font-size: 14px;
    color: var(--primary-color);
}

.btn-submit {
    height: 55px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    width: 100%;
}

.btn-submit:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 184, 0, 0.2);
}

.contact-map {
    height: 0;
    overflow: hidden;
    padding-bottom: 50%;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 15px;
}

@media (max-width: 991.98px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-form {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-info-box {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-control, .btn-submit {
        height: 50px;
    }
    
    .form-label {
        top: 15px;
    }
    
    .contact-map {
        padding-bottom: 70%;
    }
}

/* İletişim Sayfası Animasyonları */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-box, .contact-form {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.contact-info-box:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info-box:nth-child(2) {
    animation-delay: 0.3s;
}

.contact-info-box:nth-child(3) {
    animation-delay: 0.5s;
}

.contact-form {
    animation-delay: 0.7s;
}

.contact-map {
    animation: fadeInUp 0.9s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

/* İletişim Sayfası - Sosyal Medya İkonları */
.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 12px 20px rgba(var(--primary-rgb), 0.2);
}

.social-icon:hover::before {
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.social-icon:hover i {
    animation: pulse 0.8s ease-in-out infinite;
}

/* İletişim Sayfası - Mobil Görünüm */
@media (max-width: 991.98px) {
    .contact-page .row.flex-column-reverse > .col-lg-4 {
        margin-top: 30px;
    }
    
    .contact-form {
        margin-bottom: 20px;
    }
    
    .contact-info-box {
        margin-bottom: 20px;
    }
    
    .contact-map {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .social-icons-container {
        flex-wrap: wrap;
    }

    .contact-page .row.flex-column-reverse > .col-lg-4 {
        order: 2; 
    }
    
    .contact-page .row.flex-column-reverse > .col-lg-8 {
        order: 1;
    }
}

/* Dropdown menü iyileştirmeleri */
.navbar .dropdown-menu {
    margin-top: -2px !important; /* Menü ile buton arasındaki boşluğu azalt */
    padding-top: 10px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar .dropdown-item {
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #navbarNavDesktop {
        display: none !important;
    }
}

@media (min-width: 992px) {
    #floatingMenuButton {
        display: none !important;
    }
}

/* Masaüstü Sağ Alt İkonlar */
.desktop-corner-icons {
    position: fixed;
    bottom: 90px; /* Sosyal medya butonu üstte olması için 30px'den 90px'e değiştirildi */
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.corner-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

/* Sosyal Medya Butonu */
.social-button {
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    z-index: 1000;
}

.social-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Sosyal Medya Popup Menüsü */
.social-popup {
    position: absolute;
    bottom: 60px;
    right: 0;
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

/* Sosyal Medya Popup Hover */
.social-button:hover .social-popup,
.social-popup:hover,
.social-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-popup-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-popup-item:hover {
    transform: scale(1.1);
}

.social-popup-item.facebook {
    background-color: #3b5998;
}

.social-popup-item.twitter {
    background-color: #1da1f2;
}

.social-popup-item.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-popup-item.youtube {
    background-color: #FF0000;
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 30px; /* WhatsApp butonunu alta almak için 90px'den 30px'e değiştirildi */
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Mobil cihazlar için WhatsApp buton konumu ayarlaması */
@media (max-width: 991px) {
    .whatsapp-button {
        bottom: 80px; /* Footer nav'ın üstünde kalması için yüksekliği arttır */
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 24px;
    position: relative;
    z-index: 5;
    animation: rotateIcon 5.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: center;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }
    14% {  /* 0.8 saniyede 2 tam tur dönüş (720 derece) */
        transform: rotate(720deg);
    }
    100% { /* Sonraki 5 saniye duracak */
        transform: rotate(720deg);
    }
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.8) 0%, rgba(37, 211, 102, 0.4) 50%, transparent 70%);
    top: -50%;
    left: -50%;
    z-index: 1;
    animation: pulse 2s ease-out infinite;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

/* Mobil cihazlarda animasyon optimize edilmesi */
@media (max-width: 991px) {
    .whatsapp-button i {
        font-size: 22px;
    }
    
    /* Mobil cihazlarda animasyonu azalt - performans için */
    @keyframes rotateIcon {
        0% {
            transform: rotate(0deg);
        }
        20% {  /* Daha hızlı dönüş */
            transform: rotate(720deg);
        }
        100% { /* Daha kısa duraklama */
            transform: rotate(720deg);
        }
    }
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Mobile Bottom Nav ile çakışmaması için z-index ayarı */
@media (max-width: 991px) {
    .whatsapp-button {
        z-index: 1050; /* Daha yüksek z-index değeri */
    }
    
    /* iOS cihazlar için safe-area-inset-bottom desteği */
    @supports (padding: max(0px)) {
        .whatsapp-button {
            bottom: max(80px, calc(80px + env(safe-area-inset-bottom)));
        }
    }
}

/* Meclisler sayfası için mobil padding düzenlemesi */
@media (max-width: 767.98px) {
    body > main > section.news-section.py-5.bg-light {
        position: relative;
        top: 55vh;
        margin-bottom: 60vh; /* Aşağıdaki içeriğin de düzgün görünmesi için */
    }
}

/* Tarih ve Devamını gör yazılarının mobilden desktop'a taşınması */

.card-date {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -3px;
    left: 0;
    transition: all 0.3s ease;
}

.card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-color);
}

.card-link:hover::after {
    background-color: var(--secondary-color);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Diğer benzer card-link ve tarih stillerinin güncellemesi */
.news-date {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.detail .news-date {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.detail .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.detail .read-more::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    bottom: -3px;
    left: 0;
    transition: all 0.3s ease;
}

.detail .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.detail .read-more:hover {
    color: var(--secondary-color);
}

.detail .read-more:hover::after {
    background-color: var(--secondary-color);
}

.detail .read-more:hover i {
    transform: translateX(5px);
}