:root {
    --primary-color: #007bff;
    --dark-blue: #003366;
    --light-blue: #0056b3;
    --font-family: 'Poppins', sans-serif;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

body {
    font-family: var(--font-family);
}



/* Erişebilirlik Not Gizle */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--dark-blue);
}

.navbar-brand-mobil {
    display: none;
}

.navbar-brand img,
.navbar-brand-mobil img {
    height: 40px;
}

.navbar-toggler {
    border: none;
}

.offcanvas {
    background-color: var(--dark-blue);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    color: white;
}

.offcanvas-body .navbar-nav .nav-item {
    margin: 10px 0;
}

.offcanvas-body .navbar-nav .nav-link {
    color: white;
    font-size: 1.1rem;
}

.offcanvas-body .navbar-nav .dropdown-menu {
    display: none; /* Varsayılan olarak gizli */
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    margin: 0; /* Sol ve sağ boşluğu kaldır */
    width: 100%; /* Tam genişlik */
    padding: 0; /* İç boşluğu kaldır */
}

.offcanvas-body .navbar-nav .dropdown-menu.show {
    display: block; /* Açıkken göster */
}

.offcanvas-body .navbar-nav .dropdown-item {
    color: white;
    padding: 0.75rem 1rem; /* Yazıya padding ekle */
    font-size: 1rem; /* Yazı boyutu */
}

.offcanvas-body .navbar-nav .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Desktop ekranlar için hover efekti */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Dropdown ikonlarının yönünü değiştirme */
.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg); /* Açıkken yukarı yönlü */
}

.navbar .navbar-nav .nav-item.dropdown {
    margin-right: 20px; /* Sağ boşluk */
}

/* Son öğenin sağ boşluğunu kaldır */
.navbar .navbar-nav .nav-item.dropdown:last-child {
    margin-right: 0;
}

/* Menü başlıklarının rengi */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

/* Mobil menüde alt menü stili */
@media (max-width: 991.98px) {
    .offcanvas-body .dropdown-menu {
        background-color: white; /* Arka fon beyaz */
    }

    .offcanvas-body .dropdown-item {
        color: var(--dark-blue); /* Yazı rengi koyu mavi */
    }

    .offcanvas-body .dropdown-item:hover {
        background-color: rgba(0, 51, 102, 0.1); /* Hover durumunda arka fon rengi */
    }
}

@media (max-width: 768px) {
    .navbar-brand-mobil {
        display: block;
    }



/* btn-close butonunun rengini ve stilini özelleştirme */
.btn-close {
    filter: invert(75%) sepia(50%) saturate(1000%) hue-rotate(330deg) brightness(100%) contrast(90%);
    width: 24px; /* Buton boyutunu artır */
    height: 24px; /* Buton boyutunu artır */
    opacity: 1; /* Varsayılan opaklık */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Geçiş efekti */
}

/* Butonun üzerine gelindiğinde stil */
.btn-close:hover {
    opacity: 0.8; /* Opaklığı azalt */
    transform: scale(1.1); /* Hafifçe büyüt */
}

/* Buton odaklandığında stil */
.btn-close:focus {
    outline: none; /* Varsayılan odak çerçevesini kaldır */
    box-shadow: 0 0 0 3px rgba(250, 166, 26, 0.5); /* Özel odak çerçevesi */
}

/* Mobil menüde dropdown menülerin görünürlüğü ve animasyonu */
.offcanvas-body .dropdown-menu {
    display: none; /* Başlangıçta gizli */
    transform: translateY(-10px); /* Başlangıçta hafif yukarıda */
    opacity: 0; /* Başlangıçta şeffaf */
    transition: transform 0.3s ease-out, opacity 0.3s ease-out; /* Animasyon süresi ve efekti */
    background-color: rgba(255, 255, 255, 0.1); /* Arka plan rengi */
    border: none;
    margin: 0; /* Sol ve sağ boşluğu kaldır */
    width: 100%; /* Tam genişlik */
    padding: 0; /* İç boşluğu kaldır */
}

.offcanvas-body .dropdown-menu.show {
    transform: translateY(0); /* Aşağı kaydır */
    opacity: 1; /* Opaklığı artır */
}

.offcanvas-body .dropdown-item {
    color: white;
    padding: 0.75rem 1rem; /* Yazıya padding ekle */
    font-size: 1rem; /* Yazı boyutu */
}

.offcanvas-body .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Hover durumunda arka fon rengi */
}


/* Bizi Takip Edin Bölümü */
#mobileMenu .social-section {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Hafif şeffaf arka plan */
    border-radius: 10px;
    margin-top: 20px;
}

#mobileMenu .social-section h6 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Sosyal Medya İkonları */
#mobileMenu .social-icons {
    font-size: 1.5rem;
}

#mobileMenu .social-icon {
    color: white; /* İkon rengi */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

#mobileMenu .social-icon:hover {
    color: #faa61a; /* Hover rengi */
    transform: translateY(-3px); /* Hafif yukarı kaydır */
}

/* Bootstrap Icons için özel stiller */
#mobileMenu .bi-facebook:hover {
    color: #1877f2; /* Facebook mavisi */
}

#mobileMenu .bi-twitter-x:hover {
    color: #000000; /* X siyahı */
}

#mobileMenu .bi-instagram:hover {
    color: #e4405f; /* Instagram pembesi */
}

#mobileMenu .bi-youtube:hover {
    color: #ff0000; /* YouTube kırmızısı */
}

}




/* Slider Stili */
#slider {
    position: relative;
}

.carousel-item {
    position: relative;
    height: 80vh; /* Slider yüksekliği */
    overflow: hidden;
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient Tabaka */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.4)); /* Dark blue gradient */
    z-index: 1;
}

/* Slider Caption (Başlık ve Açıklama) */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
}

.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Slider Altı Alan Stili */
.slider-bottom-area {
    background-color: rgba(0, 51, 102, 0.8); /* Dark blue transparan arka plan */
    padding: 0px; /* Üst ve alt boşluk */
    margin-top: -164px; /* Slider ile birleşmesi için */
    position: relative;
    z-index: 2;
}

/* Başkan Resmi Stili */
.baskan-resmi {
    width: 200px; /* Resim boyutu */
    height: auto; /* Oranları koru */
    object-fit: cover; /* Resmi orantılı sığdır */
    position: absolute;
    bottom: 0px;
}

/* İmza Resmi Stili */
.imza-resmi {
    text-align: center;

}
.imza-resmi img {
    width: 180px; /* İmza boyutu */
    margin-bottom: 15px; /* Butonlarla arasındaki boşluk */
    padding-top: 15px;

}

@media (max-width: 768px) {

.baskan-resmi {
width: 170px;
}


    .imza-resmi img {
        width: 180px;
    }

    .slider-bottom-area {
        margin-top: -164px;
    }
}


/*Başkan Sosyal Medya İcon */
/* Sosyal Medya İkonları Stilleri */
.imza-resmi .social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
}

.imza-resmi .social-icon {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.imza-resmi .social-icon:hover {
    transform: translateY(-3px);
}

.imza-resmi .bi-twitter-x:hover {
    color: #000000;
}

.imza-resmi .bi-facebook:hover {
    color: #1877f2;
}

.imza-resmi .bi-instagram:hover {
    color: #e4405f;
}

.imza-resmi .bi-youtube:hover {
    color: #ff0000;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .social-media-icons {
        gap: 10px;
    }
    
    .social-icon {
        font-size: 1.2rem;
    }
}







/* Bilgi Panosu Stilleri */
.belediye-bilgi-panosu {
    padding: 20px 0;
}

.belediye-slide-item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 470px; /* 1080px'in container'a oranlanmış hali */
}

.belediye-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.belediye-hava-durumu {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 1px solid #dee2e6;
    margin-bottom: 15px !important;
}

.belediye-hava-durumu h5 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.belediye-hava-bilgisi {
    color: #34495e;
    font-size: 0.9rem;
}

.belediye-bilgi-butonlari .btn {
    border-radius: 5px;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    font-size: 0.85rem;
}

.belediye-bilgi-butonlari .btn i {
    font-size: 1rem;
    margin-right: 5px;
}

.belediye-bilgi-butonlari .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Owl Carousel Düzenlemeleri */
.belediye-resim-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.belediye-resim-slider .owl-nav button {
    width: 50px !important; /* Genişlik artırıldı */
    height: 50px !important; /* Yükseklik artırıldı */
    font-size: 28px !important; /* Ok ikonu boyutu artırıldı */
    line-height: 50px !important; /* Dikey ortalama */
    background-color: rgba(255,255,255,0.9) !important;
    color: #007bff !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    margin: 0 15px !important; /* Kenar boşlukları eklendi */
}

.belediye-resim-slider .owl-nav button:hover {
    background-color: rgba(0, 51, 102, 0.9) !important;
    color: #fff !important;
    transform: scale(1.1); /* Hover efekti eklendi */
} 
  
.belediye-resim-slider .owl-dots {
    text-align: center;
    margin-top: 10px;
}

.belediye-resim-slider .owl-dot span {
    background-color: #dee2e6 !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 4px !important;
}

.belediye-resim-slider .owl-dot.active span {
    background-color: #007bff !important;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .belediye-slide-item {
        height: 350px;
    }
    
    .belediye-hava-durumu {
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .belediye-slide-item {
        height: 300px;
    }
    
    .belediye-bilgi-butonlari .btn {
        font-size: 0.8rem;
        padding: 6px 3px;
    }
    
    .belediye-bilgi-butonlari .btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .belediye-slide-item {
        height: 207px;
    }
    
    .belediye-resim-slider .owl-nav {
        display: none;
    }
    
    .belediye-hava-durumu h5 {
        font-size: 0.9rem;
    }
}

/* Anasayfa Haber Duyuru */

/* Genel Stil */
.belediye-haber-duyuru {
    font-family: 'Poppins', sans-serif;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.belediye-title-area h1 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.belediye-title-part-1 {
    color: #007bff;
}

.belediye-title-part-2 {
    color: #333;
}

.belediye-summary {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.belediye-button-group {
    text-align: center;
    margin-top: 20px;
}

.belediye-btn {
    margin-right: 10px;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    background-color: #e9ecef;
    color: #333;
}

.belediye-btn-active {
    background-color: #0056b3;
    color: #fff;
}

.belediye-btn:hover {
    background-color: #004080;
    color: #fff;
}

.belediye-news-list, 
.belediye-announcement-list,
.belediye-video-list {
    margin-top: 30px;
    display: none; /* Başlangıçta gizli */
}

.belediye-news-list.active, 
.belediye-announcement-list.active,
.belediye-video-list.active {
    display: block; /* Aktif olanı göster */
}

.belediye-news-item,
.belediye-video-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.belediye-news-item:hover,
.belediye-video-item:hover {
    transform: translateY(-5px);
}

.belediye-rounded {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.belediye-news-item:hover .belediye-rounded,
.belediye-video-item:hover .belediye-rounded {
    opacity: 0.9;
}

.belediye-news-content {
    margin-top: 15px;
}

.belediye-date {
    font-size: 0.9rem;
    color: #666666;
}

.belediye-news-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.belediye-news-item a {
    text-decoration: none;
    color: inherit;
}

.belediye-news-item a:hover {
    text-decoration: underline;
    color: var(--bs-heading-color) ; 
}

.belediye-btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.belediye-btn-primary:hover {
    background-color: #0056b3;
}




/* Video Özel Stilleri */
.belediye-video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.belediye-video-thumbnail img {
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

.belediye-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.belediye-play-button {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(216, 42, 30, 0); /* YouTube kırmızısı - başlangıçta transparan */
    font-size: 24px;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

/* Fare üzerine gelince efektler */
.belediye-video-item:hover .belediye-video-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.belediye-video-item:hover .belediye-play-button {
    background-color: rgba(255, 255, 255, 0.9);
    color: #d82a1e; /* YouTube kırmızısı */
    transform: scale(1);
}

.belediye-video-item:hover .belediye-video-thumbnail img {
    transform: scale(1.05);
}



/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .belediye-button-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .belediye-btn {
        margin: 5px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .belediye-title-area h1 {
        font-size: 2rem;
    }
    
    .belediye-summary {
        font-size: 1rem;
    }
    
    .belediye-play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}




/* Ana Sayfa Etkinlik Alanı */
.events-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    
}

.events-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.events-section .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.events-section .header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #003366;
}


.events-section a {
    text-decoration: none;
    color: inherit;
}

.events-section a:hover {
    text-decoration: none;
}

.events-section .header .btn-all-events {
    background-color: #003366;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.events-section .header .btn-all-events:hover {
    background-color: #002244;
}

.events-section .content {
    display: flex;
    gap: 30px;
}

.events-section .events-slider {
    flex: 3;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.events-section .slider-container {
    display: flex;
    gap: 15px; /* Kutular arası mesafe */
    transition: transform 0.5s ease-in-out;
}

.events-section .event-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    flex: 0 0 calc(33.33% - 10px); /* 3 kart görünecek şekilde ayarlandı */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.events-section .event-card:hover {
    transform: translateY(-5px);
}

.events-section .event-image {
    position: relative;
}

.events-section .event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.events-section .event-card:hover .event-image img {
    transform: scale(1.1);
}

.events-section .event-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff5722;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.events-section .event-details {
    padding: 20px;
}

.events-section .event-date {
    color: #003366;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.events-section .event-title {
    font-size: 1.1rem;
    color: #003366;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 3.5em; /* İki satır için ayar */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.events-section .event-time,
.events-section .event-location {
    color: #666;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.events-section .slider-prev,
.events-section .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 51, 102, 0.9); /* Arka plan rengi */
    border: none;
    color: #fff;
    padding: 15px; /* Ok boyutunu büyüt */
    cursor: pointer;
    border-radius: 50%; /* Dairesel yap */
    width: 50px; /* Genişlik */
    height: 50px; /* Yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Gölge efekti */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.events-section .slider-prev:hover,
.events-section .slider-next:hover {
    background-color: rgba(0, 51, 102, 1); /* Hover rengi */
    transform: translateY(-50%) scale(1.1); /* Hover'da büyüt */
}

.events-section .slider-prev {
    left: 20px; /* Sol okun konumu */
}

.events-section .slider-next {
    right: 20px; /* Sağ okun konumu */
}

/* Okların içindeki ikonlar */
.events-section .slider-prev i,
.events-section .slider-next i {
    font-size: 24px; /* Ok ikonlarının boyutu */
    color: #fff; /* Ok ikonlarının rengi */
}



/* Mobil Uyumluluk */
@media (max-width: 768px) {

    .events-section .header h2 {
        font-size: 1.7rem;
    }
    .events-section .content {
        flex-direction: column;
    }

    .events-section .event-card {
        flex: 0 0 100%; /* Mobilde tek kart göster */
    }

    .events-section .slider-container {
        gap: 0;
    }

    .events-section .slider-prev,
    .events-section .slider-next {
        width: 40px; /* Mobilde genişlik */
        height: 40px; /* Mobilde yükseklik */
        padding: 10px; /* Mobilde padding */
    }

    .events-section .slider-prev i,
    .events-section .slider-next i {
        font-size: 20px; /* Mobilde ikon boyutu */
    }

}


.events-section .events-calendar {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.events-section .events-calendar {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}




/* FullCalendar Stilleri */
.fc {
    font-family: 'Poppins', sans-serif;
}

.fc-header-toolbar {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.fc-toolbar-title {
    font-size: 1.25rem; /* Başlık boyutu küçültüldü */
    font-weight: 600;
    color: #003366;
    order: 1; /* Ay Yıl başlığını en üste al */
    width: 100%; /* Başlık tam genişlikte */
    text-align: center; /* Başlık ortalandı */
}

.fc-toolbar-chunk {
    display: flex;
    gap: 10px;
    align-items: center;
}

.fc-toolbar-chunk:nth-child(1) {
    order: 2; /* Önceki, Sonraki, Bugün butonları */
}

.fc-toolbar-chunk:nth-child(3) {
    display: none; /* Sağ taraftaki butonlar kaldırıldı */
}

.fc-button {
    background-color: #003366;
    border: none;
    color: #fff;
    padding: 6px 10px; /* Buton boyutu küçültüldü */
    border-radius: 5px;
    font-size: 0.8rem; /* Buton yazı boyutu küçültüldü */
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px; /* İkon ve metin arası boşluk */
}

.fc-button:hover {
    background-color: #002244;
}

.fc-button:active,
.fc-button:focus {
    outline: none;
    box-shadow: none;
}

.fc-button .bi {
    font-size: 0.9rem; /* İkon boyutu */
}

.fc-col-header-cell {
    background-color: #003366; /* Başlık arkaplan rengi darkblue */
    color: #fff; /* Başlık yazı rengi beyaz */
    padding: 10px;
    font-weight: 600;
    font-size: 0.85rem; /* Başlık yazı boyutu küçültüldü */
    text-decoration: none; /* Alt çizgi kaldırıldı */
}

.fc-col-header-cell a {
    color: #fff; /* Başlık yazı rengi beyaz */
    text-decoration: none; /* Alt çizgi kaldırıldı */
}

.fc-daygrid-day-number {
    color: #003366; /* Gün numaralarının rengi */
    font-weight: 600;
    text-decoration: none; /* Alt çizgi kaldırıldı */
    font-size: 0.85rem; /* Gün numaralarının yazı boyutu küçültüldü */
}

.fc-daygrid-day.fc-day-today {
    background-color: #e6f0ff;
}

.fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    color: #003366;
    font-weight: 700;
}

.fc-daygrid-event {
    background-color: #003366;
    border: none;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
}

.fc-daygrid-event-dot {
    display: none;
}

.fc-daygrid-day.fc-day-event .fc-daygrid-day-number {
    background-color: #003366;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-daygrid-day.fc-day-event {
    cursor: pointer;
}

.fc-daygrid-day.fc-day-event:hover .fc-daygrid-day-number {
    background-color: #002244;
}

.fc-daygrid-day {
    padding: 5px;
}

.fc-daygrid-day-top {
    justify-content: center;
}

.fc-daygrid-day-frame {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc-scrollgrid {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 280px; /* Takvim tablosu yüksekliği artırıldı */
}

.fc-scrollgrid td,
.fc-scrollgrid th {
    border-color: #e0e0e0;
}

.fc-daygrid-body {
    height: 100%; /* Takvim tablosu yüksekliği ayarlandı */
}

.fc-view-harness {
    height: 280px !important; /* Takvim görünüm yüksekliği ayarlandı */
}





/* Loading Icon */
#loading-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Sabit yükseklik */
    margin-bottom: 20px;
}

.spinner {
    border: 4px solid rgba(0, 51, 102, 0.1); /* #003366 rengi */
    border-top: 4px solid #003366; /* #003366 rengi */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Projeler Section */
#projeler {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.proje-slider .owl-stage-outer {
    overflow: hidden;
    border-radius: 10px;
}

.proje-kutu {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px; /* Kutular arası boşluk */
}

.proje-kutu:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.proje-resim {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.8), transparent); /* #003366 rengi */
}

.proje-baslik {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    max-width: 80%;
}

.proje-durum {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 15px;
    background-color: #003366; /* #003366 rengi */
    color: white;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Filtreleme Butonları */
.btn-filter {
    border: 2px solid #003366; /* #003366 rengi */
    color: #003366;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none; /* URL butonları için */
    padding: 8px 16px; /* Buton iç boşluğu */
    margin: 4px; /* Butonlar arası boşluk */
    flex: 1 1 auto; /* Butonların esnek genişliği */
    text-align: center; /* Metni ortala */
}

.btn-filter.active,
.btn-filter:hover {
    background: #003366;
    color: white;
}




/* Mobil Uyum */
@media (max-width: 768px) {
    #projeler .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    #projeler h2 {
        margin-bottom: 15px;
    }

    #projeler .btn {
        width: auto; /* Butonların genişliği otomatik */
        margin: 4px; /* Butonlar arası boşluk */
    }

    /* Butonları yan yana hizala */
    #projeler .d-flex.flex-wrap {
        flex-direction: row;
        justify-content: flex-start;
        gap: 8px; /* Butonlar arası boşluk */
    }

    .proje-kutu {
        height: 250px;
    }

    .proje-baslik {
        font-size: 1rem;
    }

    .proje-durum {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .owl-nav {
        display: none; /* Mobilde navigasyon oklarını gizle */
    }
}




/* Footer Özel Stilleri */
footer {
    font-family: var(--font-family);
    background-color: var(--dark-blue) !important;
    color: var(--white);
}

.footer-heading {
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-menu {
    list-style: none;
    padding-left: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

/* Sosyal Medya İkonları */
.social-media {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #000000; }
.social-icon.instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.social-icon.youtube { background-color: #ff0000; }
.social-icon.whatsapp { background-color: #25d366; }

/* İletişim Bilgileri */
.contact-info {
    font-size: 14px;
    line-height: 1.6;
}

.contact-icon {
    margin-right: 8px;
    font-size: 16px;
}

.contact-icon.phone { color: #28a745; }
.contact-icon.email { color: #17a2b8; }
.contact-icon.address { color: #fd7e14; }

/* Footer Ayırıcı Çizgi */
.footer-divider {
    background-color: rgba(255, 255, 255, 0.1);
    height: 1px;
    border: none;
}

/* Copyright Metni */
.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }

    .social-media {
        justify-content: center;
    }
}


/* Yüzen İkonlar Stilleri */
.floating-icons-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    padding: 10px 5px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 30px 0 0 30px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-icon {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.icon-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    background-color: #2c3e50; /* Varsayılan arka plan rengi */
}

/* Sosyal medya ikonları için özel arka plan renkleri */
.floating-icon[data-url*="facebook"] .icon-wrapper {
    background-color: #1877f2;
}

.floating-icon[data-url*="twitter"] .icon-wrapper,
.floating-icon[data-url*="x.com"] .icon-wrapper {
    background-color: #000000;
}

.floating-icon[data-url*="instagram"] .icon-wrapper {
    background-color: #e4405f;
}

.floating-icon[data-url*="youtube"] .icon-wrapper {
    background-color: #ff0000;
}

.floating-icon:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    filter: brightness(1.15); /* Hafif parlaklık artışı */
}

.icon-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2c3e50;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.floating-icon:hover .icon-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

.scroll-progress {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.scroll-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #e74c3c;
    transition: width 0.1s linear;
}

#back-to-top {
    display: none;
}

#back-to-top .icon-wrapper {
    background-color: #007bff;
}

#accessibility-toggle .icon-wrapper {
    background-color: #2c3e50;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .floating-icons-container {
        top: 44%;
        bottom: auto;
        right: 0;
        transform: translateY(-50%);
        flex-direction: column;
        border-radius: 30px 0 0 30px;
        padding: 10px 5px;
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .icon-wrapper {
        font-size: 1.3rem;
    }
    
    .icon-tooltip {
        right: 60px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        width: 300px;
        max-width: 300px;
        white-space: normal;
        word-break: break-word;
    }
    
    .floating-icon:hover .icon-tooltip {
        right: 70px;
    }
    
    #back-to-top {
        display: none;
    }
    
    @media (max-width: 400px) {
        .floating-icons-container {
            padding: 8px 3px;
        }
        
        .floating-icon {
            width: 40px;
            height: 40px;
        }
        
        .icon-wrapper {
            font-size: 1.2rem;
        }
        
        .icon-tooltip {
            max-width: 250px;
            font-size: 0.8rem;
            padding: 8px;
        }
    }
}



/* Erişilebilirlik İkonu için Özel Stil */
#accessibility-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 75px;
    height: 75px;
    z-index: 9999;
    cursor: pointer;
}


#accessibility-toggle .icon-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#accessibility-toggle:hover .icon-wrapper {
    background-color: #e74c3c;
    transform: scale(1.1);
}

#accessibility-toggle .icon-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2c3e50;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#accessibility-toggle:hover .icon-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}



/* Mobile Styles */
@media (max-width: 768px) {
#accessibility-toggle {
    width: 60px;
    height: 60px;
}

#accessibility-toggle .icon-wrapper {
    font-size: 2rem;

}

}





/* Erişilebilirlik Paneli Stili */
.accessibility-panel {
    position: fixed;
    right: 90px;
    bottom: 20px;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 9998;
    display: none;
}

.accessibility-panel h4 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.accessibility-option {
    margin-bottom: 10px;
}

.accessibility-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.accessibility-option input[type="checkbox"] {
    margin-right: 10px;
}

/* Mobil için stil ayarları */
@media (max-width: 768px) {
    #accessibility-toggle {
        width: 60px;
        height: 60px;
        right: 15px;
        bottom: 15px;
    }
    
    #accessibility-toggle .icon-wrapper {
        font-size: 2rem;
    }
    
    .accessibility-panel {
        right: 15px;
        bottom: 80px;
        width: calc(100% - 30px);
        max-width: 300px;
    }
}



/* Erişilebilirlik Paneli Stilleri */
.accessibility-panel {
    position: fixed;
    right: -350px; /* Panel başlangıçta gizli */
    bottom: 35px;
    width: 340px;
    max-height: 80vh;
    background-color: #fff;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: none; /* Başlangıçta gizli */
}

.accessibility-panel.active {
    right: 0;
    display: block;
}

.accessibility-header {
    padding: 15px;
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 0 0 0;
}

.accessibility-header h5 {
    margin: 0;
    font-size: 1.1rem;
}

.accessibility-options {
    padding: 15px;
}

.accessibility-option {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.accessibility-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.accessibility-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.accessibility-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.font-size-controls {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.font-size-controls button {
    padding: 5px 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

/* Erişilebilirlik seçeneklerinin aktif halleri */
.font-size-large {
    font-size: 1.2em !important;
}

.font-size-xlarge {
    font-size: 1.4em !important;
}

.cursor-large {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="16" fill="black"/></svg>'), auto !important;
}

.images-hidden img {
    visibility: hidden !important;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .accessibility-panel {
        width: 280px;
        bottom: 10px;
    }
}


/* Fare Büyüklüğü Stilleri */
.cursor-large * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="14" fill="none" stroke="black" stroke-width="2"/><circle cx="16" cy="16" r="8" fill="black"/></svg>') 16 16, pointer !important;
}

.cursor-preview {
    margin-top: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.cursor-demo {
    width: 100px;
    height: 50px;
    border: 1px dashed #999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="14" fill="none" stroke="black" stroke-width="2"/><circle cx="16" cy="16" r="8" fill="black"/></svg>') 16 16, pointer;
}

/* Okuma Maskesi */
.reading-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9997;
    pointer-events: none;
}

.reading-mask::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Bağlantı Vurgulama */
.highlight-links a {
    background-color: yellow !important;
    color: black !important;
    padding: 2px 4px !important;
    text-decoration: underline !important;
}

/* Satır Aralığı */
.line-spacing-large {
    line-height: 2 !important;
}

.line-spacing-xlarge {
    line-height: 2.5 !important;
}

/* Yüksek Kontrast */
.high-contrast {
    background: black !important;
    color: white !important;
}

.high-contrast a {
    color: yellow !important;
}

/* Disleksi Modu */
.dyslexia-mode {
    font-family: 'Comic Sans MS', 'OpenDyslexic', sans-serif !important;
    letter-spacing: 1px !important;
    line-height: 1.8 !important;
}

/* Mavi Işık Filtresi */
.blue-light-filter {
    filter: sepia(0.3) !important;
}

/* Siyah/Beyaz Filtre */
.grayscale {
    filter: grayscale(100%) !important;
}

/* Renk Doygunluğu */
.high-saturation {
    filter: saturate(2) !important;
}

.low-saturation {
    filter: saturate(0.5) !important;
}









/* Alt Sayfa Navbar Stilleri */
.subpage-navbar {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    height: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.subpage-navbar.scrolled {
    height: 70px;
}

.subpage-navbar .navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.subpage-navbar.scrolled .navbar-brand img {
    height: 40px;
}

/* Dropdown Menü Stilleri */
.subpage-navbar .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.subpage-navbar .dropdown-item {
    padding: 10px 20px;
    color: var(--dark-blue);
    font-weight: 500;
    transition: all 0.2s ease;
}

.subpage-navbar .dropdown-item:hover {
    background-color: rgba(0, 51, 102, 0.1);
    color: var(--dark-blue);
}

.subpage-navbar .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* Breadcrumb Stilleri */
.subpage-navbar .breadcrumb-container {
    padding: 10px 0;
    transition: all 0.3s ease;
}

.subpage-navbar.scrolled .breadcrumb-container {
    padding: 5px 0;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.subpage-navbar .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.subpage-navbar .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}

.subpage-navbar .breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.subpage-navbar .breadcrumb-item.active {
    color: white;
}

.subpage-navbar .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: ">";
    padding: 0 8px;
}

/* Navbar İç Düzeni */
.subpage-navbar .navbar-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.subpage-navbar .navbar-top {
    display: flex;
    align-items: center;
    padding: 15px 0;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.subpage-navbar.scrolled .navbar-top {
    padding: 5px 0;
}

.subpage-navbar .navbar-main {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Mobil Menü Stilleri */
.subpage-navbar .navbar-toggler {
    border: none;
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}

.subpage-navbar .offcanvas {
    background-color: var(--dark-blue);
}

.subpage-navbar .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subpage-navbar .offcanvas-body .navbar-nav .nav-link {
    color: white;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dropdown için responsive ayarlar */
@media (max-width: 991.98px) {
    .subpage-navbar .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding-left: 20px;
    }
    
    .subpage-navbar .dropdown-item {
        color: white;
        padding: 0.75rem 1rem;
    }
    
    .subpage-navbar .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}






/* Üst Menü Alt Stili */
#ustmenualt {
    position: relative;
}

.ustmenu-item {
    position: relative;
    height: 12vh; /* Slider yüksekliği */
    overflow: hidden;
}

.ustmenu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Gradient Tabaka */
.ustmenu-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.5)); /* Dark blue gradient */
    z-index: 1;
}


/* Dropdown için responsive ayarlar */
@media (max-width: 991.98px) {

.ustmenu-item {

    height: 8vh; /* Slider yüksekliği */

}



}