.content {
    min-height: 80vh;
}

a {
    text-decoration: none;
    color: var(--primaryColor);
}

body {
    overflow-x: hidden;
}

header {
    background-color: #fff;

}

header nav>.container {
    min-height: 80px;
}
div#cookieBar {
    position: fixed;
    z-index: 1002;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bs-border-color);
}
/* Desktop menü için davranış - başlangıçta gizli */
.menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Desktop menü hazır olduğunda görünür */
.menu.ready {
    opacity: 1;
    visibility: visible;
    display: block !important;
}

/* Mobil Menü Ana Container */
.mobile-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1050;
    overflow: hidden;
}

.mobile-menu-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Menü Seviyeleri */
.mobile-menu-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

/* Breadcrumb Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    min-height: 60px;
}

.mobile-menu-back {
    background: none;
    border: none;
    padding: 0.5rem;
    margin-right: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.mobile-menu-back:hover {
    background-color: #e9ecef;
}

.mobile-menu-back i {
    font-size: 1.2rem;
    color: #6c757d;
}

.mobile-menu-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    flex: 1;
}

/* Menü İçeriği */
.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Menü Öğeleri */
.mobile-menu-item {
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s;
}

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

.mobile-menu-item:hover {
    background-color: #f8f9fa;
}

.mobile-menu-item.active {
    background-color: #e3f2fd;
}

/* Menü Butonları ve Linkleri */
.mobile-menu-button,
.mobile-menu-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem;
    text-decoration: none;
    color: #212529;
    background: none;
    border: none;
    text-align: left;
    transition: all 0.2s;
    min-height: 60px;
}

.mobile-menu-button:hover,
.mobile-menu-link:hover {
    background-color: #f8f9fa;
    color: #212529;
    text-decoration: none;
}

.mobile-menu-button:focus,
.mobile-menu-link:focus {
    outline: none;
    background-color: #e9ecef;
}

/* Menü İkonları */
.mobile-menu-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Menü Metni */
.mobile-menu-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
}

/* Ok İkonları */
.mobile-menu-arrow {
    margin-left: auto;
    color: #6c757d;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.mobile-menu-button:hover .mobile-menu-arrow {
    transform: translateX(3px);
}

/* Overlay Container */
.mobile-menu-overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mobile-menu-overlays .mobile-menu-level {
    pointer-events: auto;
}

/* Animasyonlar */
.mobile-menu-level[data-level="0"] {
    transform: translateX(0);
}

.mobile-menu-level[data-level]:not([data-level="0"]) {
    transform: translateX(100%);
}

/* Scroll Bar Stilleri */
.mobile-menu-content::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-menu-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.mobile-menu-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive Ayarlar */
@media (max-width: 576px) {
    .mobile-menu-header {
        padding: 0.75rem;
        min-height: 56px;
    }

    .mobile-menu-button,
    .mobile-menu-link {
        padding: 0.875rem;
        min-height: 56px;
    }

    .mobile-menu-text {
        font-size: 0.95rem;
    }
}

/* Dark Mode Desteği */
@media (prefers-color-scheme: dark) {
    .mobile-menu {
        background: #1a1a1a;
    }

    .mobile-menu-level {
        background: #1a1a1a;
    }

    .mobile-menu-header {
        background: #2d2d2d;
        border-bottom-color: #404040;
    }

    .mobile-menu-title {
        color: #ffffff;
    }

    .mobile-menu-back i {
        color: #adb5bd;
    }

    .mobile-menu-back:hover {
        background-color: #404040;
    }

    .mobile-menu-item {
        border-bottom-color: #404040;
    }

    .mobile-menu-item:hover {
        background-color: #2d2d2d;
    }

    .mobile-menu-item.active {
        background-color: #1e3a5f;
    }

    .mobile-menu-button,
    .mobile-menu-link {
        color: #ffffff;
    }

    .mobile-menu-button:hover,
    .mobile-menu-link:hover {
        background-color: #2d2d2d;
        color: #ffffff;
    }

    .mobile-menu-button:focus,
    .mobile-menu-link:focus {
        background-color: #404040;
    }

    .mobile-menu-arrow {
        color: #adb5bd;
    }
}

/* Touch Cihazlar İçin Optimizasyon */
@media (hover: none) and (pointer: coarse) {

    .mobile-menu-button,
    .mobile-menu-link {
        min-height: 64px;
        /* Daha büyük dokunma alanı */
    }

    .mobile-menu-back {
        width: 44px;
        height: 44px;
    }
}

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

hr {
    border-width: 3px;
    color: var(--bs-gray-500);
}

.menu ul ul {
    opacity: 0;
    height: 0;
    background-color: white;
    z-index: 1;
    position: absolute;
    transition: all .3s ease-in-out;
    margin-top: 0 !important;
    visibility: hidden;
}

.youtube-preview-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    overflow: hidden;
}

.youtube-preview-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* 🌓 Gölge efekti */
.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

/* ▶️ Oynat butonu */
.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('/site-modulu/public/img/play.png') no-repeat center center;
    background-size: 64px;
    width: 80px;
    height: 80px;
    border: none;
    background-color: transparent;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-weight: bold;
    margin: 0 0.5rem;
}


.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 0.25rem;
    }
}

.menu ul li {
    position: relative;
    white-space: nowrap;
}

.menu ul ul li {
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease-in-out;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.menu ul ul li:hover {
    background-color: var(--bs-light-border-subtle);
}

.topHeader * {
    color: var(--paletteColor3);
}

.menu ul ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--paletteColor3);
    width: 100%;
}

.menu>ul {
    width: 100%;
    display: flex;
    gap: 25px;
    visibility: hidden;
}

.menu>ul.ready {
    visibility: visible;
}

/* Daha Fazla Menüsü */
.more-menu-item {
    position: relative;
}

.more-menu-item>ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 25px -18px rgba(0, 0, 0, 0.75);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
}

.more-menu-item:hover>ul {
    opacity: 1;
    visibility: visible;
}

.more-menu-item>ul>li>a {
    display: block;
    padding: 10px 20px;
    color: var(--paletteColor3);
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
}

.more-menu-item>ul>li>a:hover {
    background-color: var(--bs-light-border-subtle);
}

.menu ul li:hover>a {
    color: var(--bs-secondary) !important;
}

.menu ul li:hover>i {
    color: var(--bs-secondary) !important;
}

.menu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: fit-content;
    min-width: 200px;
    background-color: #fff;
    height: fit-content;
}

.menu ul li:hover>ul {
    opacity: 1;
    box-shadow: 0px 0px 25px -18px rgba(0, 0, 0, 0.75);
    visibility: visible;
}

.menu ul li:hover>ul ul {
    left: 100%;
    top: 0px;
    right: auto;
    z-index: 1;
}

.menu>ul>li {
    padding: 0;
    display: flex;
    align-items: center;
}

.menu>ul>li>a {
    font-weight: 500;
    font-size: 18px;
    color: var(--paletteColor3);
    display: flex;
    align-items: center;
    min-height: 80px;
}

.menu ul li i {
    margin-left: 10px !important;
}

.menu ul ul li i {
    width: 32px;
    display: inline-block;
    text-align: center;
    margin-left: 10px !important;
    margin-right: 10px !important;

}


.menu>ul>li>a:hover {
    color: #000;
}

.thumbnail-item:hover {
    border-color: var(--primaryColor) !important;
}

.thumbnail-item.active {
    border-color: var(--primaryColor) !important;
}

@media only screen and (max-width: 992px) {
    .menu.d-none.ready{
    display: none !important;
}
    .mobileBar li.active {
        background-color: var(--bs-primary);
    }

    .mobileBar ul li span {
        font-size: 11px;
        display: block;
        margin-top: 6px;
    }

    .mobileBar ul {
        display: flex;
        list-style: none;
        padding: 0px;
        margin: 0;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .mobileBar ul li {
        width: 20%;
        padding: 0;
        overflow: hidden;
        text-overflow: ellipsis;

    }

    .mobileBar ul li:hover {
        background-color: var(--bs-primary-bg-subtle);
    }

    .mobileBar ul li a {
        color: unset;
        text-decoration: none;
        padding: 15px 6px;
        display: block;
    }

    .mobileBar ul li img {
        margin: 0 !important;
    }

    .menu ul {
        display: block;
    }

    .menu>ul li:has(li)>a::after {
        position: relative;
        left: 15px;
        top: -8px;
    }

    .menu ul li:hover>ul {
        position: relative;
        box-shadow: unset;
        background-color: #0000000a;

    }

    .menu ul li:hover>ul ul {
        left: 0;
        margin-right: 30px;
    }

    header .dropdown-menu {
        right: 0 !important;
        /* Sağ kenara sıfırlar */
        left: auto !important;
        /* Sol hizalamayı kaldırır */
        max-width: 90vw;
        /* Ekranın %90'ını kaplamasına izin verir */
    }
}

.card {
    border: 3px solid var(--bs-light-bg-subtle);
}


/* Buttons */
/* Bu kısım kapsamlı override'larda zaten var, kaldırılıyor */

/* Text */
/* Bu kısım kapsamlı override'larda zaten var, kaldırılıyor */

/* Backgrounds */
/* Bu kısım kapsamlı override'larda zaten var, kaldırılıyor */

.logo {
    max-width: 200px;
        padding: 10px 0 !important;
}
footer .logo {
    filter: brightness(0) invert(1);
}
.align-items-start.d-lg-flex.d-none.desktop.gap-4 {
    justify-content: center !important;
}
.homePage section:nth-child(2n+1){
   background-color: var(--bs-gray-100);
}


.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem var(--bs-primary-border-subtle) !important;
}

.swiper-wrapper {
    padding-bottom: 35px;
}

.swiper-pagination-bullet-active {
    background: var(--bs-primary) !important
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-primary) !important
}

.partners-swiper .swiper-wrapper {
    align-items: center;
}

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

.partner-item {
    transition: transform 0.3s ease;
}

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

.partner-item:hover .partner-logo img {
    filter: grayscale(0%) !important;
}

.overlay {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: all 0.3s ease;
}

.blog-item-overlay:hover .overlay {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.3) 100%);
}

.offcanvas-header {
    background-color: var(--bs-secondary-bg);
    justify-content: space-between;
    padding: 5px 15px;
}

.blogSummary .carousel-inner {
    border-radius: 0 !important;
}

#slider .slide-desc2 p {
    margin: 0;
}

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


.topHeader {
    padding: 10px 0;
    background-color: var(--bs-secondary-bg);
}

/* Bootstrap 5 focus/active durumlarında border ve outline'ları temizleme */
.btn:focus,
.btn:active,
.btn:focus-visible,
.btn:focus-within,
.btn:focus:not(:focus-visible) {
    box-shadow: none !important;
    outline: none !important;
    border-color: inherit !important;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.form-range:focus,
.form-control:focus:not(:focus-visible),
.form-select:focus:not(:focus-visible),
.form-check-input:focus:not(:focus-visible),
.form-range:focus:not(:focus-visible) {
    box-shadow: none !important;
    border-color: var(--bs-primary) !important;
}

.nav-link:focus,
.nav-link:active,
.nav-link:focus-visible,
.nav-link:focus:not(:focus-visible) {
    box-shadow: none !important;
    outline: none !important;
}

.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item:focus:not(:focus-visible) {
    box-shadow: none !important;
    outline: none !important;
}

.accordion-button:focus,
.accordion-button:focus:not(:focus-visible) {
    box-shadow: none !important;
    outline: none !important;
}

/* Tüm elementler için genel focus temizleme */
*:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

/* Sadece klavye navigasyonu için outline göster (accessibility için) */
*:focus-visible {
    outline: 2px solid var(--bs-primary) !important;
    outline-offset: 2px !important;
}

/* Remove border from toggler */
.navbar-toggler {
    border: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: #000;
    display: block;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
    margin-left: auto;
    /* Sağa hizalama */
}

/* Adds Space between the lines */
.middle-bar {
    margin: 5px auto;
    width: 24px;
    /* İkinci çizgi daha kısa */
    margin-left: auto;
    /* Sağa hizalama */
}

/* Üçüncü çizgi için özel stil */
.bottom-bar {
    width: 18px;
    /* Üçüncü çizgi daha da kısa */
    margin-left: auto;
    /* Sağa hizalama */
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
    transform: rotate(45deg) translate(6px, 6px);
    transform-origin: center;
    width: 30px;
    /* Çarpı için tam genişlik */
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: scaleX(0);
    width: 30px;
    /* Çarpı için tam genişlik */
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg) translate(6px, -6px);
    transform-origin: center;
    width: 30px;
    /* Çarpı için tam genişlik */
}

/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0) translate(0, 0);
    width: 30px;
    /* İlk çizgi tam genişlik */
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: scaleX(1);
    width: 24px;
    /* İkinci çizgi daha kısa */
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0) translate(0, 0);
    width: 18px;
    /* Üçüncü çizgi daha da kısa */
}

/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
    background-color: #000;
    margin-right: 0;
}

/* Bootstrap 5 Renk Paletleri - Kapsamlı Override */
/* Primary */
.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primaryColorH) !important;
    border-color: var(--primaryColorH) !important;
    color: #fff !important;
}

.btn-outline-primary {
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: #fff !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

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

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-primary-subtle {
    background-color: var(--bs-primary-bg-subtle) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.border-primary-subtle {
    border-color: var(--bs-primary-border-subtle) !important;
}

/* Secondary */
.btn-secondary {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    color: #fff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--secondaryColorH) !important;
    border-color: var(--secondaryColorH) !important;
    color: #fff !important;
}

.btn-outline-secondary {
    color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    background-color: transparent !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    color: #fff !important;
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-secondary-subtle {
    background-color: var(--bs-secondary-bg-subtle) !important;
}

.border-secondary {
    border-color: var(--bs-secondary) !important;
}

.border-secondary-subtle {
    border-color: var(--bs-secondary-border-subtle) !important;
}

/* Success */
.btn-success {
    background-color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
    color: #fff !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: var(--bs-success-text-emphasis) !important;
    border-color: var(--bs-success-text-emphasis) !important;
    color: #fff !important;
}

.btn-outline-success {
    color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
    background-color: transparent !important;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active {
    color: #fff !important;
    background-color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
}

.text-success {
    color: var(--bs-success) !important;
}

.bg-success {
    background-color: var(--bs-success) !important;
}

.bg-success-subtle {
    background-color: var(--bs-success-bg-subtle) !important;
}

.border-success {
    border-color: var(--bs-success) !important;
}

.border-success-subtle {
    border-color: var(--bs-success-border-subtle) !important;
}

/* Info */
.btn-info {
    background-color: var(--bs-info) !important;
    border-color: var(--bs-info) !important;
    color: #fff !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    background-color: var(--bs-info-text-emphasis) !important;
    border-color: var(--bs-info-text-emphasis) !important;
    color: #fff !important;
}

.btn-outline-info {
    color: var(--bs-info) !important;
    border-color: var(--bs-info) !important;
    background-color: transparent !important;
}

.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active {
    color: #fff !important;
    background-color: var(--bs-info) !important;
    border-color: var(--bs-info) !important;
}

.text-info {
    color: var(--bs-info) !important;
}

.bg-info {
    background-color: var(--bs-info) !important;
}

.bg-info-subtle {
    background-color: var(--bs-info-bg-subtle) !important;
}

.border-info {
    border-color: var(--bs-info) !important;
}

.border-info-subtle {
    border-color: var(--bs-info-border-subtle) !important;
}

/* Warning */
.btn-warning {
    background-color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
    color: #000 !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background-color: var(--bs-warning-text-emphasis) !important;
    border-color: var(--bs-warning-text-emphasis) !important;
    color: #fff !important;
}

.btn-outline-warning {
    color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
    background-color: transparent !important;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active {
    color: #000 !important;
    background-color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
}

.text-warning {
    color: var(--bs-warning) !important;
}

.bg-warning {
    background-color: var(--bs-warning) !important;
}

.bg-warning-subtle {
    background-color: var(--bs-warning-bg-subtle) !important;
}

.border-warning {
    border-color: var(--bs-warning) !important;
}

.border-warning-subtle {
    border-color: var(--bs-warning-border-subtle) !important;
}

/* Danger */
.btn-danger {
    background-color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
    color: #fff !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background-color: var(--bs-danger-text-emphasis) !important;
    border-color: var(--bs-danger-text-emphasis) !important;
    color: #fff !important;
}

.btn-outline-danger {
    color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
    background-color: transparent !important;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active {
    color: #fff !important;
    background-color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
}

.text-danger {
    color: var(--bs-danger) !important;
}

.bg-danger {
    background-color: var(--bs-danger) !important;
}

.bg-danger-subtle {
    background-color: var(--bs-danger-bg-subtle) !important;
}

.border-danger {
    border-color: var(--bs-danger) !important;
}

.border-danger-subtle {
    border-color: var(--bs-danger-border-subtle) !important;
}



.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    color: #000 !important;
    background-color: var(--bs-light) !important;
    border-color: var(--bs-light) !important;
}

.text-light {
    color: var(--bs-light) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.bg-light-subtle {
    background-color: var(--bs-light-bg-subtle) !important;
}

.border-light {
    border-color: var(--bs-light) !important;
}

.border-light-subtle {
    border-color: var(--bs-light-border-subtle) !important;
}

/* Dark */
.btn-dark {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
    color: #fff !important;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    background-color: var(--bs-dark-text-emphasis) !important;
    border-color: var(--bs-dark-text-emphasis) !important;
    color: #000 !important;
}

.btn-outline-dark {
    color: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
    background-color: transparent !important;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    color: #fff !important;
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
}

.text-dark {
    color: var(--bs-dark) !important;
}

.bg-dark {
    background-color: var(--bs-dark) !important;
}

.bg-dark-subtle {
    background-color: var(--bs-dark-bg-subtle) !important;
}

.border-dark {
    border-color: var(--bs-dark) !important;
}

.border-dark-subtle {
    border-color: var(--bs-dark-border-subtle) !important;
}

/* Link Renkleri */
a {
    color: var(--bs-link-color);
}

.menu li.active {
    color: var(--bs-primary) !important;
}

.active>.page-link,
.page-link.active {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
    border-color: var(--bs-primary) !important;
}

a:hover {
    color: var(--bs-link-hover-color) !important;
}

footer * {
    color: #c0c0c0;
}

footer .social-links a i {
    font-size: 34px !important;

}

footer a {
    color: #fff !important;
}

footer a:hover {

    filter: contrast(20%) !important;
}

/* Nav Link */
.nav-link:not(.active) {
    color: var(--bs-primary) !important;
}

.nav-link.active {
    color: var(--bs-primary) !important;
    background-color: var(--bs-primary-bg-subtle) !important;
}

/* Form Elements */
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.form-range:focus,
.form-control:focus:not(:focus-visible),
.form-select:focus:not(:focus-visible),
.form-check-input:focus:not(:focus-visible),
.form-range:focus:not(:focus-visible) {
    box-shadow: none !important;
    border-color: var(--bs-primary) !important;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--bs-light-border-subtle) !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem var(--bs-primary-border-subtle) !important;
}

/* Swiper */
.swiper-pagination-bullet-active {
    background: var(--bs-primary) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-primary) !important;
}

/* Alert Components */
.alert-primary {
    color: var(--bs-primary-text-emphasis) !important;
    background-color: var(--bs-primary-bg-subtle) !important;
    border-color: var(--bs-primary-border-subtle) !important;
}

.alert-secondary {
    color: var(--bs-secondary-text-emphasis) !important;
    background-color: var(--bs-secondary-bg-subtle) !important;
    border-color: var(--bs-secondary-border-subtle) !important;
}

.alert-success {
    color: var(--bs-success-text-emphasis) !important;
    background-color: var(--bs-success-bg-subtle) !important;
    border-color: var(--bs-success-border-subtle) !important;
}

.alert-info {
    color: var(--bs-info-text-emphasis) !important;
    background-color: var(--bs-info-bg-subtle) !important;
    border-color: var(--bs-info-border-subtle) !important;
}

.alert-warning {
    color: var(--bs-warning-text-emphasis) !important;
    background-color: var(--bs-warning-bg-subtle) !important;
    border-color: var(--bs-warning-border-subtle) !important;
}

.alert-danger {
    color: var(--bs-danger-text-emphasis) !important;
    background-color: var(--bs-danger-bg-subtle) !important;
    border-color: var(--bs-danger-border-subtle) !important;
}

/* Badge Components */
.badge.bg-primary {
    background-color: var(--bs-primary) !important;
}

.badge.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.badge.bg-success {
    background-color: var(--bs-success) !important;
}

.badge.bg-info {
    background-color: var(--bs-info) !important;
}

.badge.bg-warning {
    background-color: var(--bs-warning) !important;
}

.badge.bg-danger {
    background-color: var(--bs-danger) !important;
}

/* Progress Bar */
.progress-bar.bg-primary {
    background-color: var(--bs-primary) !important;
}

.progress-bar.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.progress-bar.bg-success {
    background-color: var(--bs-success) !important;
}

.progress-bar.bg-info {
    background-color: var(--bs-info) !important;
}

.progress-bar.bg-warning {
    background-color: var(--bs-warning) !important;
}

.progress-bar.bg-danger {
    background-color: var(--bs-danger) !important;
}

/* List Group */
.list-group-item-primary {
    color: var(--bs-primary-text-emphasis) !important;
    background-color: var(--bs-primary-bg-subtle) !important;
}

.list-group-item-secondary {
    color: var(--bs-secondary-text-emphasis) !important;
    background-color: var(--bs-secondary-bg-subtle) !important;
}

.list-group-item-success {
    color: var(--bs-success-text-emphasis) !important;
    background-color: var(--bs-success-bg-subtle) !important;
}

.list-group-item-info {
    color: var(--bs-info-text-emphasis) !important;
    background-color: var(--bs-info-bg-subtle) !important;
}

.list-group-item-warning {
    color: var(--bs-warning-text-emphasis) !important;
    background-color: var(--bs-warning-bg-subtle) !important;
}

.list-group-item-danger {
    color: var(--bs-danger-text-emphasis) !important;
    background-color: var(--bs-danger-bg-subtle) !important;
}

/* Table */
.table-primary {
    --bs-table-color: var(--bs-primary-text-emphasis) !important;
    --bs-table-bg: var(--bs-primary-bg-subtle) !important;
    --bs-table-border-color: var(--bs-primary-border-subtle) !important;
}

.table-secondary {
    --bs-table-color: var(--bs-secondary-text-emphasis) !important;
    --bs-table-bg: var(--bs-secondary-bg-subtle) !important;
    --bs-table-border-color: var(--bs-secondary-border-subtle) !important;
}

.table-success {
    --bs-table-color: var(--bs-success-text-emphasis) !important;
    --bs-table-bg: var(--bs-success-bg-subtle) !important;
    --bs-table-border-color: var(--bs-success-border-subtle) !important;
}

.table-info {
    --bs-table-color: var(--bs-info-text-emphasis) !important;
    --bs-table-bg: var(--bs-info-bg-subtle) !important;
    --bs-table-border-color: var(--bs-info-border-subtle) !important;
}

.table-warning {
    --bs-table-color: var(--bs-warning-text-emphasis) !important;
    --bs-table-bg: var(--bs-warning-bg-subtle) !important;
    --bs-table-border-color: var(--bs-warning-border-subtle) !important;
}

.table-danger {
    --bs-table-color: var(--bs-danger-text-emphasis) !important;
    --bs-table-bg: var(--bs-danger-bg-subtle) !important;
    --bs-table-border-color: var(--bs-danger-border-subtle) !important;
}

.notices-section .noticeCarouselApp a {
    color: var(--bs-light) !important;
    font-size: 20px;
}

.list-group-item.active {
    color: #fff !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

@media (max-width: 992px) {
    .notices-section .noticeCarouselApp .swiper-slide {
        width: 100% !important;
        text-align: center;
    }

    header {
        min-height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .serviceGallery .swiper {
        height: 300px;
    }
}

/* Sidebar List Items - Bootstrap 5 Hover Effects */
.hover-bg-light:hover {
    background-color: var(--bs-light-bg-subtle) !important;
}

.hover-border-primary:hover {
    border-color: var(--bs-primary) !important;
}

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

.hover-text-primary:hover h6 {
    color: var(--bs-primary) !important;
}

.hover-text-primary:hover .bi {
    color: var(--bs-primary) !important;
    transform: translateX(3px);
}

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

.transition-all:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bi {
    transition: all 0.3s ease;
}

/* Sidebar List Items - Enhanced Hover Effects */
.blog-list-simple .blog-item a,
.service-list-compact .service-item a,
.project-list-compact .project-item a,
.notice-list-compact .notice-item a,
.product-list-compact .product-item a {
    transition: all 0.3s ease;
}

.blog-list-simple .blog-item a:hover,
.service-list-compact .service-item a:hover,
.project-list-compact .project-item a:hover,
.notice-list-compact .notice-item a:hover,
.product-list-compact .product-item a:hover {
    background-color: var(--bs-light-bg-subtle) !important;
    border-color: var(--bs-primary) !important;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-list-simple .blog-item a:hover h6,
.service-list-compact .service-item a:hover h6,
.project-list-compact .project-item a:hover h6,
.notice-list-compact .notice-item a:hover h6,
.product-list-compact .product-item a:hover h6 {
    color: var(--bs-primary) !important;
}

.blog-list-simple .blog-item a:hover .bi,
.service-list-compact .service-item a:hover .bi,
.project-list-compact .project-item a:hover .bi,
.notice-list-compact .notice-item a:hover .bi,
.product-list-compact .product-item a:hover .bi {
    color: var(--bs-primary) !important;
    transform: translateX(3px);
}

/* Counter Icons - Responsive Design */
.counter-icon-img {
    max-width: 60px;
    height: auto;
}
.whatsappButton{
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

/* Contact Request Button */
.contactRequestButton{
    position: fixed;
    bottom: 24px;
    right: 85px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
   
    transition: all 0.3s ease;
    gap: 8px;
}



 


.whatsappButton:hover{
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Mobile responsive for contact request button */
@media (max-width: 768px) {

  
    
    .whatsappButton {
        z-index: 1000;
    }
}
 

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

.contact-form-floating {
    margin-bottom: 1.5rem;
}





.contact-alert {
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1rem;
}
 
/* Mobile devices - smaller icons */
@media (max-width: 768px) {
    .counter-icon-img {
        max-width: 40px;
    }
}

/* Extra small devices - even smaller icons */
@media (max-width: 576px) {
    .counter-icon-img {
        max-width: 30px;
    }
}