

:root {
    /* Colors */
    --primary-dark: var(--color-rank-3);
    --primary-light: var(--color-rank-2);
    --secondary-bg: var(--color-rank-5);
    --text-dark: var(--color-rank-4);
    --text-muted: var(--color-rank-8);
    --white: var(--color-rank-1);
    --border: var(--color-rank-6);

    /* Fonts */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-signature: 'Dancing Script', cursive;

    /* UI */
    --radius: 16px;
    --btn-radius: 50px;
    --shadow: 0 16px 48px -6px var(--color-rank-17);
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
}

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

.card-service a {
    color: var(--text-dark);
    transition: all 0.3s ease;
}



/* Utilities */
.text-mint {
    color: var(--primary-light) !important;
}

.text-white-50 {
    color: var(--color-rank-15) !important;
}

.text-muted {
    color: var(--text-dark) !important;
    opacity: 0.75;
}

.bg-dark-green {
    background-color: var(--primary-dark) !important;
    color: var(--white) !important;
}

.bg-dark-green * {
    color: var(--white) !important;
}

.bg-dark-green h1,
.bg-dark-green h2,
.bg-dark-green h3,
.bg-dark-green h4,
.bg-dark-green h5,
.bg-dark-green h6 {
    color: var(--white) !important;
}

.bg-dark-green p,
.bg-dark-green span,
.bg-dark-green div {
    color: var(--color-rank-12) !important;
}

.bg-dark-green .text-mint {
    color: var(--primary-light) !important;
}

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

.font-signature {
    font-family: var(--font-signature);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--color-rank-7);
    border-color: var(--color-rank-7);
    color: var(--white);
    transform: translateY(-2px);
}

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

.map-container iframe {
    width: 100% !important;
    height: 400px !important;
    border: none !important;
    border-radius: var(--radius) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow) !important;
    margin-top: 2rem !important;
    filter: grayscale(100%) !important;

}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.btn-outline-dark {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
}

.btn-outline-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
}

.btn-outline-primary:hover i {
    transform: translateX(3px);
}

/* Site Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    padding: 0;
    margin: 0;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: var(--primary-dark);
    padding: 0;
}

.navbar {
    background: transparent;
    padding: 0;
    margin: 0;
}

.navbar .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.site-header.scrolled .navbar .container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-wrapper {
    background: var(--color-rank-11);
    background-image: 
        linear-gradient(var(--color-rank-16) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-rank-16) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid var(--color-rank-1);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px var(--color-rank-17);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    position: relative;
    transition: all 0.3s ease;
    max-width: 100%;
    width: 100%;
}

.site-header.scrolled .navbar-wrapper {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--color-rank-11);
    border-bottom: 1px solid var(--color-rank-11);
    background: linear-gradient(180deg, var(--color-rank-3) 0%, var(--primary-dark) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 30px var(--color-rank-17);
    box-shadow: unset;
    background: unset !important;
    border: none;
    backdrop-filter: unset !important;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    z-index: 1;
}

.navbar-brand img, .footer-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-line1 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.logo-line2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

/* Desktop Navigation */
.navbar-nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.navbar-nav-custom {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-custom {
    position: relative;
}

.nav-link-custom {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-bullet {
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link-custom.active .nav-bullet {
    opacity: 1;
}

.nav-link-custom:hover {
    opacity: 0.8;
}

.nav-link-custom.active {
    opacity: 1;
}

/* Dropdown */
.dropdown-custom {
    position: relative;
}

.dropdown-toggle-custom::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    border: none;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    vertical-align: middle;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--color-rank-21);
    padding: 0.5rem 0;
    margin-top: 0.75rem;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-item-custom {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-item-custom:hover {
    background-color: var(--secondary-bg);
    color: var(--primary-dark);
}

.dropdown-divider-custom {
    border-top: 1px solid var(--border);
    margin: 0.5rem 0;
}

/* Contact Button */
.btn-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-rank-22);
    border: 1px solid var(--color-rank-23);
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 1;
}

.btn-contact:hover {
    background: var(--color-rank-24);
    border-color: var(--color-rank-1);
    transform: translateY(-2px);
    color: var(--white);
}

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

/* Mobile Toggler */
.navbar-toggler-custom {
    border: none;
    background: transparent;
    padding: 0.5rem;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1;
}

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

.navbar-toggler-custom:hover {
    opacity: 0.8;
}

/* Mobile Navigation */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--color-rank-11);
    color: var(--white);
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.btn-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-rank-11);
    border: 1px solid var(--color-rank-13);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin-right: 20px;
}

.btn-language:hover {
    background: var(--color-rank-18);
    border-color: var(--color-rank-23);
    color: var(--white);
}

.btn-language i.fa-chevron-down {
    font-size: 0.75rem;
}

.language-menu {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--color-rank-21);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 150px;
}

.language-menu .dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-menu .dropdown-item:hover {
    background: var(--secondary-bg);
    color: var(--primary-dark);
}

.language-menu .dropdown-item i.fa-check {
    color: var(--primary-light);
}

/* Mobile Language Dropdown */
.language-dropdown-mobile {
    margin-bottom: 1.5rem;
}

.btn-language-mobile {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-rank-11);
    border: 1px solid var(--color-rank-13);
    border-radius: 10px;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-language-mobile:hover {
    background: var(--color-rank-18);
    color: var(--white);
}

.language-menu-mobile {
    margin-top: 0.5rem;
    background: var(--color-rank-16);
    border-radius: 10px;
    padding: 0.5rem 0;
}

.language-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-item:hover,
.language-item.active {
    background: var(--color-rank-11);
    color: var(--white);
}

.language-item i.fa-check {
    color: var(--primary-light);
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
    margin-left: auto;
}

.mobile-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.mobile-submenu li {
    margin-bottom: 0.25rem;
}

.mobile-submenu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--color-rank-25);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    background: var(--color-rank-11);
    color: var(--white);
    padding-left: 1.25rem;
}


/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: var(--secondary-bg);
    color: var(--primary-dark);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.dropdown-divider {
    border-color: var(--border);
    margin: 0.5rem 0;
}


/* Offcanvas Dropdown */
.offcanvas .dropdown-menu {
    background-color: var(--color-rank-11);
    border-color: var(--color-rank-13);
    margin-left: 1rem;
}

.offcanvas .dropdown-item {
    color: var(--color-rank-12);
    padding: 0.75rem 1.5rem;
}

.offcanvas .dropdown-item:hover {
    background-color: var(--color-rank-18);
    color: var(--white);
}

.offcanvas .dropdown-divider {
    border-color: var(--color-rank-13);
}

/* Offcanvas */
.offcanvas {
    background-color: var(--primary-dark);
    color: var(--white);
    z-index: 1045;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas-header {
    border-bottom: 1px solid var(--color-rank-11);
    padding: 1.5rem;
}

.offcanvas-title {
    color: var(--white);
    font-weight: 700;
}

.offcanvas-body {
    padding: 1.5rem;
}

/* Cards */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-service {
    background: var(--white);
    padding: 2rem;
    height: 100%;
    border: none;
    box-shadow: var(--shadow);
}

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

.card-service .icon-box {
    width: 60px;
    height: 60px;
    background: var(--secondary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.card-blog {
    border: none;
    box-shadow: var(--shadow);
}

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

.card-blog img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.card-blog .card-body {
    padding: 1.5rem;
}

.card-blog .meta {
    font-size: 0.875rem;
    color: var(--text-dark);
    opacity: 0.75;
    margin-bottom: 0.5rem;
}

/* Blog Section Background */
.blog-section {
    background-color: var(--secondary-bg);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-dark);
    color: var(--white) !important;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--color-rank-26) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--color-rank-26) 0%, transparent 50%);
    padding-top: 120px;
    margin-top: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section .swiper {
    padding: 0 0 5rem 0;
    width: 100%;
}

.hero-section .swiper-slide {
    display: flex;
    align-items: center;
   padding-top: 3rem;
}

/* Hero images remain as they are - no aspect-ratio constraint */
.hero-section .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
}

/* General Image Aspect Ratios */
/* About Section Images - 4:3 */
section:not(.hero-section) img.img-fluid {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}
section .card-img-top {
    aspect-ratio: initial;
    object-fit: initial;
    width: initial;
}
section .blog-detail-hero {
    aspect-ratio: initial;
    object-fit: initial;
    width: initial;
}
section .editor-content img {
    aspect-ratio: initial;
    object-fit: initial;
    width: initial;
}

/* Team Images - Square */
.card .card-img-top {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

/* Blog Detail Hero Image - 16:9 */
.blog-detail-hero {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Service Detail Images - 16:9 */
.editor-content img {
    width: 100%;
}

/* Team Card Hover Effect */
.team-card {
    transition: all 0.3s ease;
}

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

.team-card img {
    transition: transform 0.3s ease;
}

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

/* Gallery Item */
.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-link::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-rank-1);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    text-shadow: 0 2px 10px var(--color-rank-27);
}

.gallery-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-rank-27);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-link::after,
.gallery-item:hover .gallery-link::before {
    opacity: 1;
}

.min-vh-75 {
    min-height: 500px;
}

/* Hero Swiper Navigation */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--white);
    background: var(--color-rank-11);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: var(--color-rank-13);
    transform: scale(1.1);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.heroSwiper .swiper-pagination {
    bottom: 30px;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-rank-1);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--primary-light);
    width: 30px;
    border-radius: 10px;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--primary-light);
    width: 30px;
    border-radius: 6px;
}

.hero-section * {
    color: var(--white) !important;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6 {
    color: var(--white) !important;
}

.hero-section p,
.hero-section span,
.hero-section div {
    color: var(--color-rank-12) !important;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-section .lead {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Editor Content */
.editor-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.editor-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.editor-content .text-muted {
    color: var(--text-dark) !important;
    opacity: 0.8;
}

.editor-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.editor-content ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--color-rank-28);
    padding-top: 4rem;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

footer a {
    color: var(--color-rank-15);
    transition: color 0.3s ease;
}

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

footer .text-white-50 {
    color: var(--color-rank-25) !important;
}

.footer-bottom {
    border-top: 1px solid var(--color-rank-11);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

/* Scroll To Top */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-light);
    color: var(--primary-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-dark);
    color: var(--white) !important;
    padding: 10rem 0 4rem 0;
    text-align: center;
}

.page-banner * {
    color: var(--white) !important;
}

.page-banner h1,
.page-banner h2,
.page-banner h3,
.page-banner h4,
.page-banner h5,
.page-banner h6 {
    color: var(--white) !important;
}

.page-banner p,
.page-banner span,
.page-banner a {
    color: var(--color-rank-12) !important;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb-item a {
    color: var(--primary-light);
}

.breadcrumb-item.active {
    color: var(--color-rank-15);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-rank-1);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2.5rem;
    color: var(--primary-light);
    opacity: 0.2;
}

.testimonial-card .lead {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

/* Accordion - Taze Modern Tasarım */

.accordion {
  --acc-border-radius: 14px;
  --acc-spacing: 0.85rem;
  --acc-transition: 0.24s cubic-bezier(.48,.35,.18,.95);
}

.accordion-item {
  background: var(--white);
  border-radius: var(--acc-border-radius);
  border: 1.5px solid var(--border) !important;
  margin-bottom: var(--acc-spacing);
  overflow: hidden;
  transition: box-shadow var(--acc-transition), border-color var(--acc-transition);
  box-shadow: 0 2px 8px var(--color-rank-17);
}
.accordion-item:last-child { margin-bottom: 0; }
.accordion-item:hover {
  box-shadow: 0 6px 24px var(--color-rank-19);
  border-color: var(--primary-light);
}

.accordion-button {
  border: none;
  background: linear-gradient(120deg, var(--white) 60%, var(--secondary-bg) 100%);
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.07rem;
  padding: 1.5rem 2.1rem;
  position: relative;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  transition: background var(--acc-transition), color var(--acc-transition);
  display: flex;
  align-items: center;
  cursor: pointer;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem var(--color-rank-19);
  border-color: var(--primary-light);
  z-index: 2;
}

.accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-rank-2);
  color: var(--color-rank-6);
  font-size: 1.05rem;
  transition: transform var(--acc-transition), background var(--acc-transition), color var(--acc-transition);
  background-image: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(120deg, var(--primary-dark) 60%, var(--color-rank-29) 100%);
  color: var(--white);
  box-shadow: inset 0 -2px 10px var(--color-rank-30);
}

.accordion-button:not(.collapsed)::after {
  background: var(--primary-light);
  color: var(--color-rank-6);
  transform: rotate(180deg) scale(1.06);
}



.accordion-body {
  background: linear-gradient(180deg, var(--white) 0%, var(--secondary-bg) 98%);
  color: var(--text-dark);
  border-top: 1.5px solid var(--border);
  padding: 2.1rem;
  line-height: 1.9;
  font-size: 1.03rem;
  transition: background var(--acc-transition);
}

.accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
  background: linear-gradient(183deg, var(--color-rank-5) 0%, var(--white) 100%);
  border-top-color: var(--color-rank-19);
}

.accordion-body p {
  color: var(--text-dark);
  margin-bottom: 1.05rem;
  opacity: .93;
}
.accordion-body p:last-child { margin-bottom: 0; }

.accordion-body ul,
.accordion-body ol {
  margin-bottom: 1.05rem;
  padding-left: 1.52rem;
}
.accordion-body li {
  color: var(--text-dark);
  opacity: 0.88;
  margin-bottom: 0.52rem;
}
.accordion-body strong {
  color: var(--primary-dark);
  font-weight: 700;
}

/* Dark Variant */
.bg-dark-accordion .accordion-item {
  background: var(--primary-dark);
  border-color: var(--color-rank-20);
}
.bg-dark-accordion .accordion-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 7px 18px var(--color-rank-14);
}
.bg-dark-accordion .accordion-button {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--color-rank-3) 99%);
  color: var(--white);
}
.bg-dark-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(120deg, var(--color-rank-14) 0%, var(--primary-dark) 100%);
  color: var(--primary-light);
  border-bottom: 1.5px solid var(--color-rank-2);
}
.bg-dark-accordion .accordion-button::after {
  color: var(--primary-light);
  background: var(--color-rank-2);
}
.bg-dark-accordion .accordion-button:not(.collapsed)::after {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.bg-dark-accordion .accordion-body {
  background: linear-gradient(182deg, var(--color-rank-29) 0%, var(--primary-dark) 100%);
  color: var(--color-rank-1);
  border-top-color: var(--color-rank-14);
}
.bg-dark-accordion .accordion-body p,
.bg-dark-accordion .accordion-body li {
  color: var(--color-rank-1);
}
.bg-dark-accordion .accordion-body strong {
  color: var(--primary-light);
}



@media (max-width: 768px) {
  .accordion-button {
    padding: 1.12rem 1.25rem;
    font-size: 0.98rem;
  }
  .accordion-body {
    padding: 1.28rem;
    font-size: 0.96rem;
  }
  .accordion-button::after {
    width: 22px;
    height: 22px;
    font-size: 0.80rem;
  }
}

@media (max-width: 576px) {
  .accordion-item {
    border-radius: 7px;
    margin-bottom: 0.42rem;
  }
  .accordion-button {
    padding: .85rem 1rem;
    font-size: 0.91rem;
  }
  .accordion-body {
    padding: 1rem;
    font-size: 0.88rem;
    line-height: 1.7;
  }
}

/* Maps */
.map-container {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
}

/* Industries Section */
.industries-section .badge {
    transition: all 0.3s ease;
}

.industries-section .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--color-rank-17);
}

/* Form Styles */
.form-control, .form-select {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem var(--color-rank-20);
}

.form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--primary-light);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-light);
}

/* Backdrop Blur Support */
.backdrop-blur-sm {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Link Hover Effects */
a.text-mint:hover {
    color: var(--color-rank-7) !important;
}

/* Button Enhancements */
.btn-primary i,
.btn-outline i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i,
.btn-outline:hover i {
    transform: translateX(3px);
}

/* Card Enhancements */
.card-service a.text-mint {
    transition: all 0.3s ease;
}

.card-service:hover a.text-mint {
    color: var(--primary-dark) !important;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
}
@media (max-width: 991.98px) {
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
      display: none;
        
    }
}
@media (max-width: 767.988px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero-section .swiper {
        padding: 2rem 0 3rem;
        min-height: auto;
    }
    
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        
    }
    
    .heroSwiper .swiper-button-next::after,
    .heroSwiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .site-header {
        position: absolute;
    }
    
    .site-header.scrolled {
        position: fixed;
    }
    
    .navbar .container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .site-header.scrolled .navbar .container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .navbar-wrapper {
        padding: 0.25rem 0.75rem;
        border-radius: 30px;
    }
    
    .site-header.scrolled .navbar-wrapper {
        border-radius: 0;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .logo-line1 {
        font-size: 0.9rem;
    }
    
    .logo-line2 {
        font-size: 1.1rem;
    }
    
    .btn-contact {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-contact span {
        display: none;
    }
    
    .btn-contact i {
        margin: 0;
    }
    
    .language-dropdown {
        display: none !important;
    }
    
    .btn-language-mobile {
        font-size: 0.9rem;
    }
    
    .mobile-submenu {
        padding-left: 1rem;
    }
    
    .offcanvas-body .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .min-vh-75 {
        min-height: 400px;
       
    }
    .hero-section .swiper-slide .row {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .hero-section .swiper-slide .row .col-lg-6 {
        order: 2;
        margin-bottom: 0;
    }
    .hero-section .swiper-slide .row .col-lg-6:first-child {
        order: 1;
    }
    .hero-section .hero-title {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .hero-section .btn-primary {
        font-size: 0.9rem;
    }
    .hero-section .btn-primary i {
        font-size: 0.8rem;
    }
}

/* Client Logo Grid */
.client-logo-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 120px;
    box-shadow: 0 2px 10px var(--color-rank-30);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--color-rank-17);
}

.client-logo {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.client-logo-card:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .client-logo-card {
        min-height: 100px;
        padding: 1rem;
    }
    
    .client-logo {
        max-height: 60px;
    }
}

/* Custom Utility Classes */
.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1 !important;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3 !important;
}

.aspect-ratio-3-2 {
    aspect-ratio: 3 / 2 !important;
}

.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9 !important;
}

.font-size-0-8em {
    font-size: 0.8em !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-85 {
    opacity: 0.85 !important;
}

.text-white-95 {
    color: var(--color-rank-12) !important;
}

.dark-text-opacity-80 {
    color: var(--text-dark) !important;
    opacity: 0.8 !important;
}

.dark-text-opacity-75 {
    color: var(--text-dark) !important;
    opacity: 0.75 !important;
}

.dark-text-opacity-85 {
    color: var(--text-dark) !important;
    opacity: 0.85 !important;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Map iFrame */
.map-iframe {
    border: 0;
    border-radius: var(--radius);
}

/* Sidebar Styles for Team Detail */
.team-detail-sidebar .card {
    border: none;
    box-shadow: var(--shadow);
}
.card-sidebar {
    border: none;
    box-shadow: var(--shadow);
}

.team-detail-sidebar .card-body {
    padding: 2rem;
}

.team-detail-sidebar .card-body h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.team-detail-sidebar .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.team-detail-sidebar .info-item:last-child {
    margin-bottom: 0;
}

.team-detail-sidebar .info-icon-wrapper {
    flex-shrink: 0;
    background: var(--secondary-bg);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-light);
}

.team-detail-sidebar .info-content h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.team-detail-sidebar .info-content a,
.team-detail-sidebar .info-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.team-detail-sidebar .social-links-wrapper .btn-outline-primary {
    border-color: var(--border);
    color: var(--text-dark);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-detail-sidebar .social-links-wrapper .btn-outline-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
}

.team-detail-sidebar .social-links-wrapper .btn-outline-primary i {
    font-size: 1.2rem;
}

/* CTA Card in Sidebar */
.team-detail-sidebar .cta-card {
    background-color: var(--primary-dark) !important;
    color: var(--white) !important;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.team-detail-sidebar .cta-card h5 {
    color: var(--white) !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-detail-sidebar .cta-card p {
    color: var(--color-rank-28) !important;
    margin-bottom: 1.5rem;
}

.team-detail-sidebar .cta-card .btn-primary {
    width: 100%;
    padding: 0.8rem 1.5rem;
}


/* Editor Content Styling */
.editor-content {
    font-size: 1.07rem;
    line-height: 1.8;
    color: var(--text-dark);
}
.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
    color: var(--primary-dark);
    font-family: var(--font-main);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.1rem;
    line-height: 1.22;
}
.editor-content h1 { font-size: 2.1rem; }
.editor-content h2 { font-size: 1.65rem; }
.editor-content h3 { font-size: 1.25rem; }
.editor-content h4 { font-size: 1.13rem; }
.editor-content h5,
.editor-content h6 { font-size: 1rem; }

.editor-content p {
    margin-bottom: 1.22rem;
    color: var(--text-dark);
    opacity: 0.94;
}

.editor-content ul, .editor-content ol {
    margin-bottom: 1.13rem;
    padding-left: 1.7rem;
}

.editor-content ul {
    list-style: none;
    padding-left: 0;
}

.editor-content ul li {
    position: relative;
    padding-left: 1.65em;
    margin-bottom: 0.7em;
    color: var(--text-dark);
    opacity: 0.92;
}
.editor-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-light);
    position: absolute;
    left: 0;
    top: 0.05em;
    font-size: 1em;
    line-height: 1.4;
}

.editor-content ol {
    list-style: decimal inside;
    padding-left: 1.4em;
}

.editor-content ol li {
    margin-bottom: 0.7em;
    color: var(--text-dark);
    opacity: 0.92;
}

.editor-content blockquote {
    border-left: 4px solid var(--primary-light);
    background: var(--color-rank-5);
    color: var(--primary-dark);
    margin: 1.8rem 0;
    padding: 1.2rem 2rem;
    font-style: italic;
    border-radius: 10px;
    font-size: 1.09rem;
}

.editor-content strong, .editor-content b {
    color: var(--primary-dark);
    font-weight: 700;
}

.editor-content em, .editor-content i {
    font-style: italic;
    opacity: .95;
}

.editor-content a {
    color: var(--primary-light);
    text-decoration: underline;
    transition: color .18s;
}
.editor-content a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.make-sticky {
    position: sticky;
    top: 120px;
}

.display-5 span {
    color: var(--primary-light);
}

.card-service .icon-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.card-blog .meta i {
    color: var(--primary-light);
}

.bos-banner {
   padding: 5rem 0 4rem 0;
}

@media (max-width: 991.98px) {
    html,body {
        overflow-x: hidden;
    }

    .hero-section .swiper-slide {
        padding-top: 0;
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .editor-content h1 { font-size: 1.45rem; }
    .editor-content h2 { font-size: 1.22rem; }
    .editor-content blockquote {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
    .bos-banner {
        padding: 4rem 0 4rem 0;
     }
}

@media (max-width: 576px) {
    .editor-content {
        font-size: 0.97rem;
    }
    .editor-content h1, .editor-content h2, .editor-content h3, .editor-content h4 { margin-top: 1.2rem; }
}




/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 60px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 60px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-17);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-9);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-17);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary-light);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary-dark);

    color: white;

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: background-color 0.3s ease-in-out;
}

.cookie-button:hover {
    background-color: var(--primary-light);
    color: var(--color-rank-1);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-10);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-1);
    background-color: var(--primary-dark);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-1);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0.5rem 0.75rem;
    color: var(--text-dark);
    background-color: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination .page-link:hover {
    background-color: var(--secondary-bg);
    border-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-rank-2);
}

.pagination .page-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-rank-22);
    border-color: var(--primary-light);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
    box-shadow: 0 4px 16px var(--color-rank-20);
}

.pagination .page-item.active .page-link:hover {
    background-color: var(--color-rank-7);
    border-color: var(--color-rank-7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-rank-24);
}

.pagination .page-item.disabled .page-link,
.pagination .page-item.prev.disabled .page-link,
.pagination .page-item.next.disabled .page-link {
    background-color: var(--secondary-bg);
    border-color: var(--border);
    color: var(--text-muted);
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background-color: var(--secondary-bg);
    border-color: var(--border);
}

.pagination .page-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.pagination .page-item.prev:not(.disabled) .page-link:hover i,
.pagination .page-item.next:not(.disabled) .page-link:hover i {
    transform: translateX(-2px);
}

.pagination .page-item.next:not(.disabled) .page-link:hover i {
    transform: translateX(2px);
}

.pagination .page-item.d-none {
    display: none !important;
}

/* Responsive Pagination */
@media (max-width: 576px) {
    .pagination {
        gap: 0.35rem;
        margin: 1.5rem 0;
    }
    
    .pagination .page-link {
        min-width: 38px;
        height: 38px;
        padding: 0.4rem 0.6rem;
        font-size: 0.875rem;
        border-radius: 8px;
    }
    
    .pagination .page-link i {
        font-size: 0.8rem;
    }
}

/* Blog Sidebar Styles */
    .sidebar .card ul.list-unstyled li a {
        transition: all 0.3s ease;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        margin: 0 -0.75rem;
    }
.sidebar .card ul.list-unstyled li a.active {
    background-color: var(--secondary-bg);
    color: var(--primary-light) !important;
    transform: translateX(5px);
    padding-left: 1rem;
}
.sidebar .card ul.list-unstyled li a:hover {
    background-color: var(--secondary-bg);
    color: var(--primary-light) !important;
    transform: translateX(5px);
    padding-left: 1rem;
}

.sidebar .card ul.list-unstyled li a:hover i {
    color: var(--primary-light) !important;
    transform: translateX(3px);
}

.sidebar .card ul.list-unstyled li a i {
    transition: all 0.3s ease;
}

/* Son Yazılar Hover Efekti */
.sidebar .card > div > a {
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
}



.sidebar .card > div > a:hover h6 {
    color: var(--primary-light) !important;
}

.sidebar .card > div > a h6 {
    transition: color 0.3s ease;
}

.custom-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin: 0 auto;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--primary-light);
}

.btn-primary:active, .btn-primary:disabled {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    color: var(--white) !important;
}
