



:root {
    --primary: var(--color-rank-1);
    --primary-rgb: 26, 31, 22;
    --secondary: var(--color-rank-5);
    --accent: var(--color-rank-3);
    --accent-hover: var(--color-rank-9);
    --text-dark: var(--color-rank-6);
    --text-light: var(--color-rank-2);
    --text-muted: var(--color-rank-6);
    --border-color: var(--color-rank-4);
    --surface-light: var(--color-rank-2);
    --surface-dark: var(--color-rank-8);
    
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Jost', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --section-padding: 70px;
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 40px;
    }
}

body { font-family: var(--font-body); color: var(--text-dark); background-color: #fff; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary); font-weight: 600; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Buttons */
.btn-primary { background-color: var(--primary); border-color: var(--primary); color: var(--accent); padding: 12px 28px; border-radius: var(--radius-pill); font-weight: 500; }
.btn-primary:hover { background-color: var(--surface-dark); color: var(--color-rank-2); border-color: var(--surface-dark); transform: translateY(-2px); }
.btn-accent { background-color: var(--accent); color: var(--primary); border: none; padding: 12px 28px; border-radius: var(--radius-pill); font-weight: 600; }
.btn-accent:hover { background-color: var(--accent-hover); transform: translateY(-2px); }

/* Cards & Utilities */
.card { border: 1px solid var(--border-color); border-radius: var(--radius-md); box-shadow: 0 10px 30px var(--color-rank-21); transition: 0.3s; background: var(--surface-light); overflow: hidden; }
.card:hover { transform: translateY(-6px); box-shadow: 0 25px 70px var(--color-rank-22); }
.card-img-top { 
    aspect-ratio: 4 / 3; 
    object-fit: cover; 
    width: 100%;
}
.img-portrait {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}
.section-padding { padding: var(--section-padding) 0; }
.text-accent { color: var(--accent) !important; }
.bg-primary-dark { background-color: var(--primary); }
.card-badge { position: absolute; top: 20px; left: 20px; background: var(--color-rank-33); color: var(--color-rank-2); padding: 5px 15px; border-radius: var(--radius-pill); font-size: 0.85rem; backdrop-filter: blur(5px); }
.card-price { font-family: var(--font-heading); font-size: 1.25rem; color: var(--primary); font-weight: 700; }

/* Header */
.navbar { 
    /* padding: 20px 0;  */
    transition: background-color 0.4s ease-in-out, padding 0.4s ease-in-out; 
    background-color: transparent; 
    z-index: 1030; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.navbar:not(.scrolled) .container-xl {
    background-color: var(--color-rank-18);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-pill);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--color-rank-26);
   
}

.navbar.scrolled { 
    background-color: var(--color-rank-27); 
    backdrop-filter: blur(10px); 
    padding: 15px 0; 
    box-shadow: 0 10px 30px var(--color-rank-19); 
}
.navbar.scrolled .container-xl {
    margin-top: 0;
}

.navbar-brand { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }

.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
    color: var(--text-light);
}
.nav-link { 
    font-weight: 500; 
    margin: 0 10px; 
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}
.nav-link.active {
    color: var(--color-rank-2) !important;
}

.nav-link:hover {
    color: var(--color-rank-2);
}
.scrolled .nav-link { color: var(--color-rank-28); }
.scrolled .nav-link:hover, .scrolled .nav-link.active { color: var(--color-rank-2); }

.dropdown-menu {
    background-color: var(--surface-dark);
    border: 1px solid var(--color-rank-18);
}
.dropdown-item {
    color: var(--color-rank-28);
}
.dropdown-item:hover {
    background-color: var(--primary);
    color: var(--accent);
}

.navbar-toggler { border: none; font-size: 1.5rem; color: var(--color-rank-2);}
.navbar-toggler:focus { box-shadow: none; }
.offcanvas { background-color: var(--primary); color: var(--color-rank-2); }
.offcanvas .nav-link { color: var(--color-rank-2); font-size: 1rem;  }
.offcanvas .btn-close { filter: invert(1); }

/* Accordion (SSS) - New Style */
.accordion-item {
    background-color: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadows-soft);
    overflow: hidden;
}
.accordion-button {
    padding: 30px 24px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    background: #fff;
    transition: background-color 0.3s;
}
.accordion-button-jobs {
    padding-top: 24px;
    padding-bottom: 24px;
}
.accordion-button:hover {
    background-color: var(--color-rank-4);
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--primary);
    box-shadow: inset 0 -1px 0 var(--color-rank-18);
}
.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.accordion-button::after {
    content: '\f078'; /* FontAwesome chevron-down icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    background-image: none;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    color: var(--text-muted);
}
.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    color: #fff;
}
.accordion-body {
    padding: 24px;
    background-color: #fff;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    text-align: left;
}

/* Custom File Input */
.form-control[type="file"] {
    overflow: hidden;
}
.form-control[type="file"]::file-selector-button {
    background-color: var(--secondary);
    border: none;
    padding: 0.5rem 1rem;
    margin: -0.375rem -0.75rem;
    margin-right: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.form-control[type="file"]::file-selector-button:hover {
    background-color: var(--accent);
}





/* Hero */
.hero-section { position: relative; height: 100vh; min-height: 800px; display: flex; align-items: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--color-rank-27), var(--color-rank-34)); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--color-rank-2); }
.hero-title { font-size: 4.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 2rem; color: var(--color-rank-2); }
.hero-swiper .swiper-pagination-bullet {
    background: var(--color-rank-29);
    width: 10px;
    height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}
.hero-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 1rem;
}
.hero-nav .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-rank-18);
    color: var(--color-rank-2);
    border: 1px solid var(--color-rank-24);
}
.hero-nav .btn:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-explore {
    color: var(--color-rank-2);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 8px 8px 8px 24px;
    border-radius: var(--radius-pill);
    background: transparent;
    border: 1px solid var(--color-rank-35);
    transition: 0.3s;
}
.btn-explore:hover {
    background: var(--color-rank-18);
    border-color: var(--color-rank-2);
    color: var(--color-rank-2);
}
.btn-explore .btn-circle {
    width: 36px;
    height: 36px;
    background-color: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.btn-explore:hover .btn-circle {
    transform: rotate(45deg);
}

/* Services / About Section */
.feature-icon-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: 0.3s;
}
.card:hover .feature-icon-lg {
    background-color: var(--primary);
    color: var(--accent);
}

.feature-icon-sm {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* CTA Section */
.bg-accent {
    background-color: var(--accent);
}
.bg-accent .btn-primary {
    color: var(--color-rank-2);
}
.bg-accent .btn-primary:hover {
    background-color: var(--color-rank-2);
    border-color: var(--color-rank-2);
    color: var(--primary);
}

/* Stats Section */
.counter-section {
    margin-top: var(--section-padding);
    margin-bottom: var(--section-padding);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.counter-container {
    position: relative;
    z-index: 1;
}
.counter-title {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 8px;
}
.counter-desc {
    color: #fff;
    max-width: 1040px;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 300;
}
.counter-grid {
    margin-top: 40px;
}
.counter-item {
    padding: clamp(0.3rem, 1vw, 0.8rem);
}
.counter-value {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--accent);
}
.counter-label {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}

@media (max-width: 575.98px) {
    .counter-section {
        text-align: center;
    }

.counter-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
}

.counter-desc {
    color: #fff;
    max-width: 880px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 300;
}

.counter-grid {
    margin-top: 10px;
}

.counter-item {
    padding: clamp(0.3rem, 1vw, 0.8rem);
}

.counter-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--accent);
}

.counter-label {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}






}

/* Search Box */
.search-tab-nav { display: inline-flex; background: var(--color-rank-24); backdrop-filter: blur(10px); border-radius: var(--radius-pill) var(--radius-pill) 0 0; padding: 5px 20px 0; }
.search-tab-btn { padding: 10px 25px; color: var(--color-rank-2); background: transparent; border: none; font-weight: 500; border-radius: 10px 10px 0 0; }
.search-tab-btn.active { background: var(--color-rank-2); color: var(--primary); }
.search-box { background: var(--color-rank-2); padding: 25px; border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg); box-shadow: 0 20px 60px var(--color-rank-19); }

/* Timeline (Hakkımızda) */
.timeline { border-left: 2px solid var(--border-color); padding-left: 30px; margin-left: 20px; }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before { content: ''; position: absolute; left: -36px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 2px solid var(--color-rank-2); box-shadow: 0 0 0 2px var(--accent); }

/* Project Detail Tabs */
.nav-pills .nav-link { color: var(--text-muted); border-radius: var(--radius-pill); padding: 10px 25px; }
.nav-pills .nav-link.active { background-color: var(--primary); color: var(--accent); }

/* Gallery Hover Effect */
.gallery-item {
    position: relative;
    display: block;
}
.gallery-item::after {
    content: '\f00e'; /* FontAwesome search-plus icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: var(--color-rank-2);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-rank-36);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}
.gallery-item img {
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}


/* Team Card */
.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadows-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #111;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadows-hover);
}
.team-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(100%);
}
.team-card:hover img {
    transform: scale(1.05);
}
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}
.team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px;
    color: #fff;
    z-index: 2;
    text-align: left;
}
.team-card-name {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.team-card-role {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}
.team-card .social-links {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s ease;
}
.team-card:hover .social-links {
    opacity: 1;
    transform: translateX(0);
}
.team-card .social-links .btn {
    background-color: var(--color-rank-24);
    backdrop-filter: blur(5px);
    color: var(--color-rank-2);
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}
.team-card .social-links .btn:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Gallery Detail Page */
.gallery-top {
    aspect-ratio: 4 / 3;
}
.gallery-thumbs .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary);
}

/* Reference Logos Marquee */
.infinite-logos-swiper {
    overflow: hidden;
    width: 100%;
}
.infinite-logos-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logos-marquee 28s linear infinite;
}
.infinite-logos-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 50px;
    padding-right: 50px;
}
.infinite-logos-item {
    flex: 0 0 auto;
}
.infinite-logos-item img {
    height: auto;
    width: 180px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.25s ease;
}
.infinite-logos-item img:hover {
    opacity: 1;
}
@keyframes logos-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* Filter Sidebar */
.filter-group {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.filter-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
    font-size: 1.1rem;
}
.filter-group .form-check-label {
    font-size: 0.9rem;
}

/* Pagination */
.pagination .page-link {
    border-radius: 50% !important;
    margin: 0 5px;
    border: none;
    color: var(--primary);
}
.pagination .page-link:hover {
    background-color: var(--secondary);
}
.pagination .page-item.active .page-link {
    background-color: var(--primary);
    color: var(--accent);
}

/* Footer */
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: var(--color-rank-23);
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--color-rank-2);
    text-decoration: underline;
}

/* Sidebar Widgets */
.sidebar-widget .widget-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.editor-content p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
}

.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.editor-content ul {
    padding-left: 0;
    margin-bottom: 1rem;
    font-weight: 400;
    list-style: none;
}

.editor-content ul li {
    position: relative;
    padding-left: 1.7em;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.6;
}

.editor-content ul li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-color: #43C7D1;
    -webkit-mask-image: url("./../img/check.png");
    mask-image: url("./../img/check.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.editor-content ol {
    padding-left: 1.5em;
    margin-bottom: 1rem;
    font-weight: 400;
    list-style: decimal inside;
}

.editor-content ol li {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.editor-content blockquote {
    font-style: italic;
    background: #f7f7f7;
    border-left: 4px solid var(--primary);
    color: var(--text-dark);
    padding: 1.2em 1.4em;
    margin: 1rem 0;
}

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

.editor-content em,
.editor-content i {
    color: var(--secondary);
}

.editor-content a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s;
}
.editor-content a:hover {
    color: var(--primary);
    text-decoration: underline;
}

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

}
@media (min-width:992px) and (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .hero-section { min-height: 600px; }
}
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.8rem; }
    .hero-section { min-height: 600px; }
    .section-padding { padding: 60px 0; }
    .navbar:not(.scrolled) .container-xl {
        border-radius: var(--radius-lg);
    }
    .hero-nav { display: none; }
    .gallery-grid-container {
        grid-template-rows: repeat(2, 150px);
    }

    .offcanvas-title {
        color: var(--text-light);
    }
    .offcanvas-body {
        overflow: unset;
        background-color: var(--primary);

    }
    .offcanvas-body .nav-link {
        color: var(--text-light);
    }
    .offcanvas-body .nav-link:hover {
        color: var(--accent);
    }
    .offcanvas-body .nav-link.active {
        color: var(--accent);
    }

    .language-dropdown .dropdown-menu-end[data-bs-popper] {
        position: relative;
        right: 0;
        left: auto;
        top: 0;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin: 0;

    }

    .offcanvas {
        width: 100% !important;
        max-width: 300px;
        height: 100vh;
        min-height: 100vh;
        top: -25px !important;
        right: -10px !important;

    }

    .navbar.scrolled .offcanvas {
        top: 0px !important;
        right: 0px !important;
    }

    .navbar:not(.scrolled) .container-xl {
        max-width: 95%;
    }

    .offcanvas-backdrop {
        left: -10px;
    }
   
}
@media (max-width: 767.98px) {
    .gallery-grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 120px 120px;
    }
    .gallery-grid-item.main {
    .language-dropdown .dropdown-menu-end[data-bs-popper] .dropdown-item:hover {
        background-color: var(--primary);
        color: var(--accent);
    }
    .language-dropdown .dropdown-menu-end[data-bs-popper] .dropdown-item.active {
        background-color: var(--primary);
        color: var(--accent);
    }
    .language-dropdown .dropdown-menu-end[data-bs-popper] .dropdown-item.active::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .gallery-grid-item:nth-child(4) {
        display: none;
    }
}



/* 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: 45px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 45px;

    border-radius: 50%;

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

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

    /* 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-13);

    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-19);

    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);

    text-decoration: none;

    margin-left: 10px;
}

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

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

    color: var(--surface-light);

    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);
    color: var(--surface-light);
}

/* 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-14);

    font-size: 14px;

    font-weight: 500;
}

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

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

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

    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);
    }
}


.navbar-brand img {
    object-fit: contain;
}
.copyright-text a{
    transition: all 0.3s;
    color: var(--text-light);
}
.copyright-text a:hover {
    color: var(--accent-hover);
}

.feature-icon-lg img {
    object-fit: contain;
    transition: filter 0.3s;
}
.card:hover .feature-icon-lg {
    background-color: var(--accent);
}
/* .card:hover .feature-icon-lg img {
    filter: brightness(0) invert(1);
} */

.aspect-4-3 {
    aspect-ratio: 4 / 3;
}
.aspect-16-9 {
    aspect-ratio: 16 / 9;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--border-color);
}

.btn-padding {
    padding: 8px 24px 8px 24px !important;
}

/* .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active , .btn:disabled {
    background-color: var(--primary) !important;
    color: var(--text-light) !important;
    border-color: var(--primary) !important;

} */

.ekip-detay-hizalama {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.ekip-detay-hizalama p {
    margin-bottom: 0;
}

.ekip-detay-hizalama a.btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.ekip-contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.ekip-contact-icon i {
    color: var(--primary) !important;
}

.link {
    color: var(--primary) !important;
    text-decoration: none !important;
    transition: all 0.3s;
    word-break: break-word;
}
.link:hover {
    color: var(--accent-hover) !important;
    text-decoration: none !important;
}

.card-padding {
    padding: 3rem;
}

.project-topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 3rem;
}
.project-topbar ul.nav-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 5px;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
}
.project-topbar .nav-link {
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    font-weight: 500;
    margin: 0 5px;
    position: relative;
    padding: 10px 20px;
}
.project-topbar .nav-link:hover {
    background-color: var(--color-rank-31);
    color: var(--primary);
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    margin: 0 5px;
    position: relative;
    padding: 10px 20px;
}
.project-topbar .nav-link.active {
    background-color: var(--primary);
    color: var(--color-rank-2);
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page-link:hover {
    background-color: var(--color-rank-5);
    color: var(--primary);
}
.pagination .page-item.active .page-link {
    background-color: var(--primary);
    color: var(--color-rank-2);
}
.img-cover {
    object-fit: cover;
}
.make-sticky {
    position: sticky;
    top: 120px;
}
.project-detail-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.project-detail-image {
    display: block;
    width: 100%;
}

.project-detail-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 45%, rgba(0, 0, 0, 0.60) 100%);
}

.project-detail-title {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
}

.filter-sidebar .form-group, .mobile-filter-sidebar .form-group {
    margin-bottom: 1rem;
}

.filter-sidebar .form-group label, .mobile-filter-sidebar .form-group label {
    margin-bottom: 5px;
    display: block;
    width: 100%;
    font-size: 1rem;
    color: var(--bs-body-color, var(--color-rank-15));
    line-height: 1.5;
    font-weight: 500;
    word-break: break-word;
}

/* Filter Sidebar Form Elements */
.filter-group .form-control,
.filter-group .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--surface-light);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.filter-group .form-control:focus,
.filter-group .form-select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--color-rank-20);
    background-color: var(--surface-light);
}

.filter-group .form-control:hover,
.filter-group .form-select:hover {
    border-color: var(--primary);
}

.filter-group .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Filter Group Form Labels (nested) */
.filter-group .form-group label:not(.filter-label) {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-family: var(--font-body);
}

/* Checkbox Styling */
.filter-group .form-check {
    margin-bottom: 0.75rem;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    margin-left: 0;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.filter-group .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%231A1F16' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.filter-group .form-check-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--color-rank-20);
}

.filter-group .form-check-input:hover {
    border-color: var(--primary);
}

.filter-group .form-check-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.5;
    font-weight: 400;
    font-family: var(--font-body);
    user-select: none;
    transition: color 0.3s ease;
}

.filter-group .form-check:hover .form-check-label {
    color: var(--primary);
}

/* Filter Button Wrapper */
.filter-button-wrapper {
    padding-top: 1.5rem;
    transition: all 0.3s ease;
}

/* Make Float - Sticky filter button wrapper */
.filter-btn-area.make-float {
    position: sticky;
    bottom: 0;
    background-color: var(--surface-light);
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 0;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px var(--color-rank-38);
    z-index: 100;
    transition: all 0.3s ease;
}

/* Desktop filter sidebar için make-float */
.filter-sidebar .filter-btn-area.make-float {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Mobile filter body için make-float */
.mobile-filter-body .filter-btn-area.make-float {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.filter-button-wrapper .btn-primary {
    width: 100%;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.filter-button-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-rank-39);
}

.filter-button-wrapper a {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.filter-button-wrapper a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Filter Scroll Area */
.filter-scrool {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}

.filter-scrool::-webkit-scrollbar {
    width: 6px;
}

.filter-scrool::-webkit-scrollbar-track {
    background: var(--secondary);
    border-radius: 10px;
}

.filter-scrool::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.filter-scrool::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Number Input Styling */
.filter-group input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.filter-group input[type="number"]::-webkit-outer-spin-button,
.filter-group input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

/* Select Dropdown Styling */
.filter-group .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231A1F16' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
    cursor: pointer;
}

/* Responsive adjustments for filter sidebar */
@media (max-width: 991.98px) {
    .filter-group {
        padding-bottom: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .filter-group .form-control,
    .filter-group .form-select {
        padding: 9px 14px;
        font-size: 0.9rem;
    }
    
    .filter-group .form-group {
        margin-bottom: 0.875rem;
    }
    
    .filter-button-wrapper {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    

}

@media (max-width: 575.98px) {
    .filter-group {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .filter-group .form-control,
    .filter-group .form-select {
        padding: 8px 12px;
        font-size: 0.875rem;
    }
    
    .filter-group .form-check {
        margin-bottom: 0.625rem;
    }
    
    .filter-group .form-check-input {
        width: 16px;
        height: 16px;
    }
    
    .filter-button-wrapper .btn-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    

}

label.filter-label {
    margin-bottom: 1.25rem;
    display: block;
    width: 100%;
    font-size: 1.5rem;
    color: var(--primary, var(--color-rank-1));
    line-height: 1.6;
    font-weight: 600;
    font-family: var(--font-heading, 'Lora', serif);
    letter-spacing: -0.01em;
    word-break: break-word;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
}

label.filter-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent, var(--color-rank-3)), transparent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.filter-group:hover label.filter-label {
    color: var(--primary, var(--color-rank-1));
}

.filter-group:hover label.filter-label::after {
    width: 60px;
}



@media (max-width: 991.98px) {
    .ekip-detay-hizalama {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .card-padding {
        padding: 2rem;
    }

    .project-detail-overlay {
        padding: 1rem;
    }

    .project-detail-title {
        font-size: 20px;
    }

}

@media (max-width: 575.98px) {

    .project-topbar ul.nav-pills {
        align-items: center;
        gap: 10px;
    }
}

/* Listing Detail Sidebar */
.listing-detail-sidebar {
/*     position: sticky;
    top: 120px; */
    z-index: 10;
}

.listing-detail-sidebar__price-card {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--color-rank-21);
    padding: 0;
    margin-bottom: 1.5rem;
    transition: 0.3s;
    overflow: hidden;
}

.listing-detail-sidebar__price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px var(--color-rank-22);
}

.listing-detail-sidebar__price-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--surface-dark) 100%);
    padding: 2rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.listing-detail-sidebar__price-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-rank-20) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

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

.listing-detail-sidebar__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.listing-detail-sidebar__location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-rank-40);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-rank-41);
}

.listing-detail-sidebar__location i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.listing-detail-sidebar__location span {
    line-height: 1.4;
    word-break: break-word;
}

.listing-detail-sidebar__options {
    padding: 2rem;
}

.listing-detail-sidebar__options-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
    position: relative;
}

.listing-detail-sidebar__options-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.listing-detail-sidebar__options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.listing-detail-sidebar__options-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    gap: 1rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

.listing-detail-sidebar__options-item:hover {
    background: var(--color-rank-20);
    border-color: var(--accent);
    transform: translateX(4px);
}

.listing-detail-sidebar__options-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    flex-shrink: 0;
    min-width: 100px;
}

.listing-detail-sidebar__options-value {
    color: var(--text-dark);
    font-weight: 600;
    text-align: right;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}

@media (max-width: 1199.98px) {
    .listing-detail-sidebar__price {
        font-size: 2rem;
    }
    
    .listing-detail-sidebar__price-wrapper {
        padding: 1.75rem;
    }
    
    .listing-detail-sidebar__options {
        padding: 1.75rem;
    }
}

@media (max-width: 991.98px) {
    .listing-detail-sidebar__price {
        font-size: 2rem;
    }
    
    .listing-detail-sidebar__price-wrapper {
        padding: 1.5rem;
    }
    
    .listing-detail-sidebar__options {
        padding: 1.5rem;
    }
    
    .listing-detail-sidebar__options-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .listing-detail-sidebar__options-label {
        min-width: auto;
    }
    
    .listing-detail-sidebar__options-value {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .listing-detail-sidebar__price {
        font-size: 1.75rem;
    }
    
    .listing-detail-sidebar__price-wrapper {
        padding: 1.25rem;
    }
    
    .listing-detail-sidebar__options {
        padding: 1.25rem;
    }
    
    .listing-detail-sidebar__location {
        font-size: 0.85rem;
    }
    
    .listing-detail-sidebar__options-title {
        font-size: 1.1rem;
    }
}

.listing-detail-sidebar__consultant-card {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--color-rank-21);
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
}

.listing-detail-sidebar__consultant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px var(--color-rank-22);
}

.listing-detail-sidebar__consultant-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1.5rem;
}

.listing-detail-sidebar__consultant-link:hover {
    text-decoration: none;
}

.listing-detail-sidebar__consultant-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    box-shadow: 0 10px 30px var(--color-rank-19);
    border: 4px solid var(--secondary);
    transition: 0.3s;
}

.listing-detail-sidebar__consultant-link:hover .listing-detail-sidebar__consultant-img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--color-rank-25);
}

.listing-detail-sidebar__consultant-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.listing-detail-sidebar__consultant-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.listing-detail-sidebar__consultant-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.listing-detail-sidebar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.listing-detail-sidebar__btn--whatsapp {
    background-color: var(--color-rank-16);
    color: var(--color-rank-2);
}

.listing-detail-sidebar__btn--whatsapp:hover {
    background-color: var(--color-rank-17);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--color-rank-42);
    color: var(--color-rank-2);
}

.listing-detail-sidebar__btn--phone {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.listing-detail-sidebar__btn--phone:hover {
    background-color: var(--primary);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--color-rank-43);
}

@media (max-width: 991.98px) {
    .listing-detail-sidebar {
        position: static;
        margin-top: 2rem;
    }
}


.map-area {
    aspect-ratio: 16 / 9;
}

.map-area iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Blog Category Widget */
.sidebar-widget.blog-category-widget ul li {
    margin-bottom: 0.5rem;
}

.sidebar-widget.blog-category-widget ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
    background-color: var(--secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-widget.blog-category-widget ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-widget.blog-category-widget ul li a:hover {
    color: var(--primary);
    background-color: var(--color-rank-20);
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 4px 12px var(--color-rank-26);
}

.sidebar-widget.blog-category-widget ul li a:hover::before {
    transform: scaleY(1);
}

.sidebar-widget.blog-category-widget ul li a.active {
    color: var(--primary);
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-rank-44) 0%, var(--color-rank-32) 100%);
    border-color: var(--accent);
    box-shadow: 0 4px 12px var(--color-rank-45);
}

.sidebar-widget.blog-category-widget ul li a.active::before {
    transform: scaleY(1);
}

.sidebar-widget.blog-category-widget ul li a .badge {
    background-color: var(--primary);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-pill);
    min-width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sidebar-widget.blog-category-widget ul li a:hover .badge,
.sidebar-widget.blog-category-widget ul li a.active .badge {
    background-color: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.no-results {
      border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--color-rank-21);
    transition: 0.3s;
    background: var(--surface-light);
    overflow: hidden;  
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}




/* Blog Detail Bottom */
.blog-detail-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.blog-detail-bottom__meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-detail-bottom__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.blog-detail-bottom__category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--surface-dark) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-detail-bottom__category-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-rank-18), transparent);
    transition: left 0.5s ease;
}

.blog-detail-bottom__category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-rank-46);
    color: #fff;
}

.blog-detail-bottom__category-badge:hover::before {
    left: 100%;
}

.blog-detail-bottom__date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    white-space: nowrap;
}

.blog-detail-bottom__date i {
    color: var(--accent);
    font-size: 1rem;
}

.blog-detail-bottom__date span {
    font-family: var(--font-body);
}

.blog-detail-bottom__share {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid #F0F0F0;
    border-radius: 999px;
    background-color: #fff;
}

.blog-detail-bottom__share-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.blog-detail-bottom__share .social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-bottom__share .social-list__item {
    margin: 0;
}

.blog-detail-bottom__share .social-list__link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EAEAEA;
    color: var(--primary);
    transition: all 0.25s ease;
}

.blog-detail-bottom__share .social-list__link:hover {
    background-color: var(--color-rank-5);
    border-color: var(--color-rank-5);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Form Title */
.form-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
    line-height: 1.3;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    border-radius: var(--radius-pill);
}

@media (max-width: 767.98px) {
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.875rem;
    }
    
    .form-title::after {
        width: 50px;
        height: 2px;
    }
}

@media (max-width: 575.98px) {
    .form-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
}



/* Map Area Contact */
.map-area-contact {
    position: relative;
    margin-top: 4rem;
    margin-bottom: 0;
    overflow: hidden;
}

.map-area-contact__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.map-area-contact__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--color-rank-25);
    border: 1px solid var(--border-color);
    background: var(--secondary);
    transition: all 0.3s ease;
}

.map-area-contact__wrapper:hover {
    box-shadow: 0 30px 80px var(--color-rank-30);
    transform: translateY(-4px);
}

.map-area-contact iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.map-area-contact__wrapper:hover iframe {
    filter: grayscale(0) ;
}

.map-area-contact__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-rank-32) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-area-contact__wrapper:hover::before {
    opacity: 1;
}

/* Contact Info Panel */
/* .contact-info-panel {
    max-width: 520px;
} */

.contact-info-panel__subtitle {
    margin-bottom: 12px !important;
}

.contact-info-panel__title {
    margin-bottom: 24px !important;
}

.contact-info-panel__desc {
    font-size: 17px !important;
    font-weight: 300 !important;
    margin-bottom: 24px !important;
}

.contact-info-panel__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-panel__item {
    gap: 16px;
}

.contact-info-panel__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #fff;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-info-panel__content {
    flex: 1;
    padding-top: 4px;
}

.contact-info-panel__text {
    font-size: 17px;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 0;
}

.contact-info-panel__link {
    color: inherit;
    text-decoration: none;
}

.contact-info-panel__link:hover {
    color: var(--text-dark);
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--text-dark) !important;
}

.contact-form-panel {
    border-radius: 16px;
    padding: 40px;
    overflow: hidden;
    border: 1px solid #F2F2F2;
}

.contact-form-panel__title {
    margin-bottom: 12px !important;
}

.contact-form-panel__desc {
    font-size: 17px !important;
    font-weight: 300 !important;
    margin-bottom: 24px !important;
}
.link:hover {
    color: var(--text-dark) !important;
}
.form-control {
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.form-control:focus {
    box-shadow: none !important;
    border-color: var(--accent) !important;
}
.form-control:focus-visible {
    border-color: var(--accent) !important;
    box-shadow: none !important;
}

.contact-form-panel select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 42px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231A1F16' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 10px;
}

.map-section iframe{
    width: 100%;
        filter: grayscale(1);
            transition: filter 0.3s ease;
}



.map-section iframe:hover {
    filter: grayscale(0);
}


.whatsapp-button img {
    box-shadow: 0 24px 52px var(--color-rank-30), 0 0 0 0 rgba(var(--primary-rgb), 0.35);
    background-color: #fff;
    border-radius: 50%;
    padding: 20%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    animation: whatsappBlink 2s steps(2, end) infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-button a {
    position: relative;
    display: inline-block;
}



@keyframes whatsappBlink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(0.9);
    }
}



.whatsapp-button {
    left: unset !important;
    right: 20px !important;
    animation: whatsappNudge 0.9s steps(2, end) infinite;
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-button,
    .whatsapp-button img {
        animation-duration: 1.8s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-play-state: running;
    }
}

@media (max-width: 1199.98px) {
    .contact-info-panel__title {
        font-size: 42px;
    }

    .contact-info-panel__text {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .contact-info-panel {
        max-width: 100%;
    }

    .contact-info-panel__title {
        font-size: 36px;
    }

    .contact-info-panel__desc {
        margin-bottom: 28px;
    }
}

@media (max-width: 575.98px) {
    .contact-info-panel__title {
        font-size: 30px;
    }

    .contact-info-panel__item {
        gap: 12px;
    }

    .contact-info-panel__icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .contact-info-panel__text {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 991.98px) {
    .map-area-contact {
        margin-top: 3rem;
    }
    
    .map-area-contact__wrapper {
        aspect-ratio: 16 / 6;
        border-radius: var(--radius-md);
    }


}

@media (max-width: 767.98px) {
    .map-area-contact {
        margin-top: 2rem;
    }
    
    .map-area-contact__wrapper {
        aspect-ratio: 4 / 3;
        border-radius: var(--radius-sm);
        box-shadow: 0 10px 30px var(--color-rank-19);
    }
    
    .map-area-contact__wrapper:hover {
        transform: none;
        box-shadow: 0 15px 40px var(--color-rank-25);
    }
}

@media (max-width: 767.98px) {

    
    .blog-detail-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .blog-detail-bottom__meta {
        width: 100%;
    }
    
    .blog-detail-bottom__date {
        width: 100%;
    }

    .blog-detail-bottom__share {
        width: 100%;
        justify-content: space-between;
        border-radius: 14px;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .blog-detail-bottom__category-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
    }
    
    .blog-detail-bottom__date {
        font-size: 0.875rem;
    }

    .blog-detail-bottom__share .social-list {
        gap: 6px;
    }

    .blog-detail-bottom__share .social-list__link {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }


        .hero-content {
        padding-top: 80px !important;
    }
}

.custom-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto;
    display: block;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--accent);
    transition: all 0.3s;

}


@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0px;
        font-size: 14px;
    }
}



/*18 Nisan 2026*/

.navbar:not(.scrolled) .container-xl {
    background-color: #FFFFFFCC;
    border-radius: 100px;
    margin-top: 45px;
    padding: 10px 30px;
}
.navbar:not(.scrolled) .container-xl .navbar-nav .nav-link{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding-right: 24px;
    padding-left: 0px;
    margin: 0px;

}

.btn-dark {
    background-color: #000;
    color: #fff;
    padding: 10px 50px;
    min-width: 247px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-dark:hover, .btn-dark:active, .btn-dark:focus-visible, .btn-dark:disabled {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}
.btn-light {
    background-color: #fff;
    color: var(--accent);
    padding: 10px 24px;
    min-width: 247px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: auto;
    transition: all 0.3s ease ;
}
.btn-light:hover, .btn-light:active, .btn-light:focus-visible, .btn-light:disabled {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}
.btn-light:hover i, .btn-light:active i, .btn-light:focus-visible i, .btn-light:disabled i {
    background-color: #fff !important ;
}


.hero-content .btn-light:hover, .hero-content .btn-light:active, .hero-content .btn-light:focus-visible, .hero-content .btn-light:disabled {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}
.hero-content .btn-light:hover i, .hero-content .btn-light:active i, .hero-content .btn-light:focus-visible i, .hero-content .btn-light:disabled i {
    background-color: #fff !important ;
}



.btn-light-generic {
    background-color: #fff;
    color: var(--accent);
    padding: 10px 50px;
    min-width: 247px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: auto;
    transition: all 0.3s ease;
}

.btn-light-generic:hover,
.btn-light-generic:active,
.btn-light-generic:focus-visible,
.btn-light-generic:disabled {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}

.btn-light-generic:hover i,
.btn-light-generic:active i,
.btn-light-generic:focus-visible i,
.btn-light-generic:disabled i {
    background-color: #fff !important;
}


.hero-content .btn-light-generic:hover,
.hero-content .btn-light-generic:active,
.hero-content .btn-light-generic:focus-visible,
.hero-content .btn-light-generic:disabled {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}

.hero-content .btn-light-generic:hover i,
.hero-content .btn-light-generic:active i,
.hero-content .btn-light-generic:focus-visible i,
.hero-content .btn-light-generic:disabled i {
    background-color: #fff !important;
}

.btn-light-generic-black {
    background-color: #fff;
    color: var(--primary);
    padding: 10px 50px;
    min-width: 247px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: auto;
    transition: all 0.3s ease;
}

.btn-light-generic-black:hover,
.btn-light-generic-black:active,
.btn-light-generic-black:focus-visible,
.btn-light-generic-black:disabled {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}

.btn-light-generic-black:hover i,
.btn-light-generic-black:active i,
.btn-light-generic-black:focus-visible i,
.btn-light-generic-black:disabled i {
    background-color: #fff !important;
}


.hero-content .btn-light-generic-black:hover,
.hero-content .btn-light-generic-black:active,
.hero-content .btn-light-generic-black:focus-visible,
.hero-content .btn-light-generic-black:disabled {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}

.hero-content .btn-light-generic-black:hover i,
.hero-content .btn-light-generic-black:active i,
.hero-content .btn-light-generic-black:focus-visible i,
.hero-content .btn-light-generic-black:disabled i {
    background-color: #fff !important;
}



.btn-dark.for-header {
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 400;
    min-width: 155px;
}
.navbar-brand img {
                position: relative;
                    bottom: 3px;
                    width: 290px;
                    height: auto;
}

.navbar.scrolled {
    background-color: #fff;
    backdrop-filter: blur(15px);
}



.navbar.scrolled .container-xl .navbar-nav .nav-link {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding-right: 24px;
    padding-left: 0px;
    margin: 0px;

}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 0px;
}

.hero-desc {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    max-width: 750px;
    margin: 16px auto 26px auto;
}


.custom-icon.play-icon {
    mask-image: url('../../assets/img/play-icon.png');
    width: 18px;
    height: 18px;
}
.custom-icon.phone-icon {
    mask-image: url('../../assets/img/phone-icon.png');
    width: 10px;
    height: 10px;
}
.custom-icon.email-icon {
    mask-image: url('../../assets/img/email-icon.png');
    width: 10px;
    height: 10px;
}
.custom-icon.location-icon {
    mask-image: url('../../assets/img/location-icon.png');
    width: 10px;
    height: 10px;
}





.btn-slide-video {
    gap: 8px;

}

.hero-section {
    height: 720px;
    min-height: unset;
}

.hero-swiper .swiper-pagination-bullet {
    border: 2px solid #fff;
    opacity: 1 !important;
    background-color: transparent !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
}
.hero-swiper .swiper-pagination-bullet-active {
    background-color: #fff !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
    border: 2px solid #fff !important;
}

.hero-swiper .swiper-pagination {
    top: unset;
    bottom: 72px;
}
.hero-content {
    padding-top: 60px !important;
}

footer {
    background-color: #161C1E !important;
    position: relative;
}

.btn-social {
    width: 36px;
    height: 36px;
    background-color: #fff;
    color: #0E0503;
    border: none;
    transition: all 0.3s ease;
}
.btn-social:hover {
    background-color: var(--accent) !important;
    color: #fff !important;
}
.btn-social:hover i {
    color: #fff !important;
}

.footer-links li {
    line-height: 1;
}
.footer-links li:last-child {
    margin-bottom: 0px !important;
}
.footer-links {
    margin-bottom: 0px !important;
}
.footer-links li a {
    line-height: 1.25;
    font-size: 16px;
    font-weight: 300;
    color: #fff !important;
    transition: all 0.3s ease;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px !important;
}
.footer-contact-item a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-contact-item .icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    padding: 4px;
    transition: all 0.3s ease;
}
.footer-contact-item .icon i {
    background-color: #161C1E;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.working-hours-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.working-hours-item-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}
.working-hours-item-time {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}    


footer .row {
    padding: 40px 0;
    row-gap: 40px;
}

footer .row>* {
    margin-top: 0px !important;
}

.footer-bottom-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 40px 0;
}
.footer-bottom-item {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.33;
    color: #fff;
    transition: all 0.3s ease;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.33;
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: 34px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.33;
    margin-bottom: 0;
}
.section-desc {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.6;
}
.section-top-space {
    margin-bottom: 50px;
}

.hwu-card {
    background-color: #F2F2F266;
    border: 0.25px solid #3CD1CE4D;
    border-radius: 16px;
    padding: 30px;

}
.hwu-card i {
    height: 50px;
    width: 50px;
    margin-bottom: 24px;
}

.hwu-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.33;
    margin-bottom: 16px;
}

.hwu-card p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-section {
    margin-bottom: 50px;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 30px;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 30px;
}


.dealer-card {
    border: 1px solid #F2F2F2;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dealer-card .image {
    padding: 24px;
    aspect-ratio: 2/1;
    object-fit: contain;
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

.dealer-card .image img {
    aspect-ratio: 2/1;
    object-fit: contain;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.dealer-card .card-body {
    padding: 24px;
        border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background-color: #F2F2F266;
    display: flex;
    flex-direction: column;
    flex: 1;
}



.dealers-swiper .swiper-wrapper {
    align-items: stretch;
}

.dealers-swiper .swiper-slide {
    height: auto !important;
    display: flex;
}

.dealers-swiper .swiper-slide .dealer-card {
    width: 100%;
}


.dealer-card .card-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.dealer-card .card-title h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

.dealer-card .card-title .badge {
    background-color: #E5DCF9 !important;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.25;
}

.dealer-card .card-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

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

.service-card {
    border: 1px solid #F2F2F2;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card-media {
    display: block;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 0;
}

.service-card-title a {
    color: inherit;
}

.service-card-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.services-swiper .swiper-wrapper {
    align-items: stretch;
}

.services-swiper .swiper-slide {
    height: auto !important;
    display: flex;
}

.services-swiper .swiper-slide .service-card {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--color-rank-21);
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

.service-sidebar {
    border: 1px solid #f2f2f2;
    border-radius: 16px;
    padding: 24px;
    background: #fff;
}

.service-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-sidebar-item {
    border-top: 1px solid #F2F2F2;
}

.service-sidebar-item:first-child {
    border-top: 0;

}

.service-sidebar-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.service-sidebar-link.active {
    color: var(--accent);
    padding-left: 0px;
    font-weight: 500;
}

.service-sidebar-link:hover {
    color: var(--accent);
    padding-left: 6px;
    font-weight: 500;
}

.blog-card {
    border: 1px solid #F2F2F2;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card-media {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.35s ease;
}



.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1.4;
}

.blog-card-date i {
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    margin: 0;
        position: relative;
        bottom: 2px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1.25;
    margin-bottom: 0;
}

.blog-card-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--color-rank-21);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.cta-section {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    isolation: isolate;
    margin-top: var(--section-padding);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
}


.cta-container .btn-light-generic {
    min-width: 247px;
    width: max-content;
    margin: auto;
}




.swiper-section {
    padding-bottom: 60px;
}

.swiper-section .swiper-pagination {
    bottom: 0px !important;
}

.swiper-section .swiper-pagination-bullet {
    background-color: #fff !important;
    border: 1.33px solid var(--primary) !important;
    width: 12px !important;
    height: 12px !important;
    opacity: 0.8 !important;
}

.swiper-section .swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
    width: 12px !important;
    height: 12px !important;
    border: 1.33px solid var(--primary) !important;
    opacity: 1 !important;
}

.project-section {
    padding: 100px 0;
    margin-top: var(--section-padding);
    margin-bottom: var(--section-padding);
}

.project-card {
    position: relative;
    display: block;
    width: 100%;
    min-height: 260px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 1;
    transition: background 0.35s ease;
}

.project-card-media {
    position: absolute;
    inset: 0;
}

.project-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.project-card-title-container {
    /* padding-right: 80px; */
}

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    width: 100%;
    gap: 30px;
}

.project-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #fff;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-desc {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #fff;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 2px;
}



.project-card-arrow{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}
.project-card-arrow i{
    width: 44px;
    height: 44px;
    background-color: #43C7D1;
}

.project-card:hover .project-card-image {
    transform: scale(1.06);
}

.project-card:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 18%, rgba(0, 0, 0, 0.30) 100%);
}

.project-card:hover .project-card-arrow {
    transform: translateX(2px);
}

.project-card:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.text-white .section-subtitle {
    color: #fff !important;
}

.text-white .section-title {
    color: #fff !important;
}

.text-white .section-desc {
    color: #fff !important;
}


/* Page Banner (Inner Pages) */
.page-banner {
    padding-top: 250px;
    padding-bottom: 100px;
    background-color: var(--primary);
    color: #fff;
    position: relative;
    overflow: hidden;
    background-size: cover;
   /*  background-position: center; */
    background-repeat: no-repeat;
    margin-bottom: var(--section-padding);

}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000B2;
    z-index: 1;
    pointer-events: none;
}

.page-banner .container-xl {
    position: relative;
    z-index: 2;
        text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap:15px
}





/* Breadcrumb styling for the banner */
.page-banner .breadcrumb {
    margin-bottom: 0;
}

.page-banner .breadcrumb-item {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

.page-banner .breadcrumb-item a {
    color: #fff;
}

.page-banner .breadcrumb-item a:hover {
    color: #fff;
}

.page-banner .breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.page-banner .page-title {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0px;
}

.page-banner .page-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 0px;
}

.video-section {
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000099;
    z-index: 1;
}

.video-play-btn {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: all .3s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.video-play-btn::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--accent);
    z-index: -1;
    animation: video-play-pulse 2s ease-out infinite;
    opacity: 0.45;
    pointer-events: none;
}

.video-play-btn i {
    margin-left: 4px;
}

.video-play-btn:hover {
    color: var(--accent);
}

@keyframes video-play-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.25);
        opacity: 0;
    }
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

.mission-card {
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    background-color: #F2F2F266;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
}

.mission-card .card-icon i {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
}

.mission-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-card .card-content h3 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--primary);
}

.mission-card .card-content p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
}

.sidebar-widget {
    border: 1px solid #F2F2F2;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-widget .widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.sidebar-widget .input-group input {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}
.sidebar-widget .input-group .btn-dark {
    min-width: unset;
    width: 64px;
    padding: 0px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-widget.blog-category-widget ul li a {
    background-color: #fff;
    border: 1px solid #F2F2F2;
    border-radius: 16px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
    transition: all 0.3s ease;
}

.sidebar-widget.blog-category-widget ul li a:hover::before {
    display: none;
}
.sidebar-widget.blog-category-widget ul li a:hover {
    background-color: #fff;
    border-color: var(--border-color);
}

.sidebar-widget.blog-category-widget ul li a.active {
    background-color: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    font-weight: 400;
}

.sidebar-widget.blog-category-widget ul li a.active::before {
    display: none;
}

.sidebar-widget.blog-category-widget ul li a .badge {
    background-color: #fff !important;
}


.referance-card {
    border: 1px solid #F2F2F2;
    border-radius: 16px;
    display: flex;
   justify-content: center;
   align-items: center;
    aspect-ratio: 4/3;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 10%;
}

.referance-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

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


.custom-icon.play-icon {
    margin: 0;
}


@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-brand img {
        width: 225px;
    }

        .btn-dark.for-header {
            padding: 10px 24px;
            font-size: 16px;
            font-weight: 400;
            min-width: 120px;
        }

                    .navbar:not(.scrolled) .container-xl .navbar-nav .nav-link {
                        font-size: 16px;
                    }

        .navbar:not(.scrolled) .container-xl {
            max-width: calc(100% - 46px);
            margin-top: 23px;
        }
                                        .navbar.scrolled .container-xl .navbar-nav .nav-link {
                                            font-size: 16px;
                                        }


}

@media (max-width: 991.98px) {
    .navbar:not(.scrolled) .container-xl {
    max-width: calc(100% - 46px);
    margin-top: 23px;
    }

        .navbar-toggler {
            color: var(--accent);
        }

        .navbar-brand {
            margin-right: 0px;
        }

.navbar-brand img {
    max-width: 100%;
    width: 225px;
    height: auto;
            position: relative;
                bottom: 3px;
}

.offcanvas {
    right: -23px !important;
    top: -30px !important;
}

.offcanvas-body {
    background-color: #FFFFFFCC;
}

.offcanvas-backdrop {
          left: -25px;
                    top: -25px;
}

.navbar.scrolled {
    padding: 10px 0;
}
.navbar.scrolled .navbar-brand img{
    bottom: 0px;
}

.hero-title {
    font-size: 48px;
}


}


@media (max-width: 575.98px) {
.hero-section {
        height: 500px;
        min-height: unset;
    }
.hero-content {
    padding-top: 60px !important;
}

.hero-title {
    font-size:32px;
    font-weight: 800;
}

.hero-desc {
    font-size: 15px;
    font-weight: 400;
}

.hero-swiper .swiper-pagination {
    top: unset;
    bottom: 42px;
}

.btn-light {
    height: 40px;
}
.hero-section {
    margin-bottom: 0px;
}
.section-subtitle {
    font-size: 14px;
    font-weight: 600;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
}
.section-top-space {
    margin-bottom: 30px;
}



.project-card-content {
    padding: 15px;
}

.project-card-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.project-card-desc {
    font-size: 15px;
    line-height: 1.4;
}

.service-card-body {
    padding: 18px;
    gap: 10px;
}



.blog-card-body {
    padding: 16px;
    gap: 10px;
}



.cta-container .section-title {
    font-size: 28px;
}

.cta-container .section-desc {
    font-size: 15px;
}
.btn-dark, .btn-light-generic-black, .btn-light, .btn-light-generic {
    width: 100%;
    height: 40px;
            display: flex;
                justify-content: center;
                align-items: center;
}




.page-banner {
    padding-top: 160px;
    padding-bottom: 50px;
}




.page-banner .page-title {
    font-size: 30px;
}

.page-banner .page-desc {
    font-size: 15px;
}




.mission-card {
    flex-direction: column;
}

.mission-card .card-icon i {
    width: 50px;
    height: 50px;
}

.mission-card .card-content {
    gap: 12px;
    align-items: center;
        text-align: center;
}
.mission-card .card-content h3 {
    font-size: 32px;
}

.mission-card .card-content p {
    font-size: 15px;
}

.video-section {
    min-height: 228px;
}

.video-play-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.service-sidebar {
    padding: 18px;
}

.service-sidebar-title {
    font-size: 24px;
}

.service-sidebar-link {
    font-size: 16px;
    padding: 11px 0;
}


.whatsapp-button img {
    width: 60px;
    height: 60px;
}








}




@media (max-width: 389.98px) {
    .navbar-brand img {
        width: 190px;
    }
}

/* Bank Accounts List */
.banks-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.banks-list .bank-item {
    background: #fff;
    border: 1px solid #F2F2F2;
    border-radius: 16px;
    padding: 22px 20px;
    transition:  box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px var(--color-rank-21);
}

.banks-list .bank-item:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 40px var(--color-rank-21);
}

.banks-list .bank-item .title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 14px;
}

.banks-list .bank-item .account-number {
    margin-bottom: 0;
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid #F2F2F2;
    background: #F2F2F266;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    word-break: break-word;
}

.banks-list .bank-item .account-number i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.banks-list .bank-item:hover .account-number i {
    transform: scale(1.08);
    background-color: var(--primary);
}

@media (max-width: 575.98px) {
    .banks-list {
        gap: 14px;
    }

    .banks-list .bank-item {
        padding: 16px;
    }

    .banks-list .bank-item .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .banks-list .bank-item .account-number {
        min-height: 46px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .banks-list .bank-item .account-number i {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
    }
}