/**
 * Main Stylesheet
 * Çit Teknoloji Web Sitesi
 */

/* Global Box Sizing for consistency */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ===== Genel Stil Ayarları ===== */
:root {
    /* Ana renkler (bu değerler header.php içinde site ayarlarından dinamik olarak yüklenir) */
    --primary-color: #1a4a9c;
    --secondary-color: #6c757d;
    --primary-light: #60a5fa;
    --primary-dark: #1e40af;
    --accent: var(--primary-color);
    --accent-light: #60a5fa;
    --gray-bg: #f8fafc;
    --gray-border: #e5e7eb;
    --shadow: 0 4px 24px rgba(26, 74, 156, 0.07);
    --shadow-hover: 0 8px 32px rgba(26, 74, 156, 0.13);
}

html {
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    position: relative; /* Helps with overflow containment */
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding-top: 116px; /* Navbar yüksekliği (80px) + banner yüksekliği (36px) */
}

/* ===== Bilgi Banner Stilleri ===== */
.info-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1031; /* Navbar'dan daha yüksek z-index */
}

.info-banner a {
    color: white;
    text-decoration: underline;
}

.info-banner i {
    margin-right: 5px;
}

.marquee-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-toggle,
.banner-close {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: background-color 0.3s;
}

.banner-toggle {
    right: 40px;
}

.banner-close {
    right: 10px;
}

.banner-toggle:hover,
.banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.banner-toggle i,
.banner-close i {
    margin: 0;
    font-size: 12px;
}

/* Marquee Animation Styles */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
    will-change: transform;
    /* Performans optimizasyonu */
}

.marquee-item {
    display: inline-block;
    padding-right: 50px;
}

/* Farklı ekran boyutları için farklı hızlar */
@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 15s;
    }
}

@media (max-width: 576px) {
    .marquee-content {
        animation-duration: 10s;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-container.paused .marquee-content {
    animation-play-state: paused;
}

/* ===== Diğer Stil Tanımlamaları ===== */
/* ... */

/* ===== Scroll-to-Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    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;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* ===== WhatsApp Call Button ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button i {
    font-size: 24px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* ===== Phone Call Button ===== */
.phone-button {
    position: fixed;
    bottom: 20px;
    left: 85px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.phone-button i {
    font-size: 24px;
}

.phone-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Header scroll behavior */
.navbar {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    z-index: 1030;
    position: fixed;
    top: 36px; /* Banner yüksekliğine göre ayarlayın */
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Add padding to body to prevent content from being hidden under the fixed navbar */
body {
    padding-top: 116px; /* Navbar yüksekliği (80px) + banner yüksekliği (36px) */
}

.navbar.scroll-up {
    transform: translateY(0);
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

/* Search and Contact Button Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.search-form .input-group {
    position: relative;
}

.search-form .form-control {
    border-radius: 4px 0 0 4px;
    border: 1px solid #dee2e6;
}

.search-form .btn {
    border-radius: 0 4px 4px 0;
}

/* Enhanced Search and Contact Button Styles */
.navbar .btn-search {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.navbar .btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: var(--primary-color);
    color: #fff;
}

.navbar .btn-contact {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.navbar .btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-menu.search-dropdown {
    padding: 15px;
    border-radius: 15px;
    margin-top: 10px;
    min-width: 320px !important;
}

.search-form .form-control {
    border-radius: 25px 0 0 25px;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.15);
}

.search-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 10px 25px;
}

.search-results {
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.search-results .result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.search-results .result-item:last-child {
    border-bottom: none;
}

.search-results .result-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.search-results .result-item h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.search-results .result-item p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.search-result-link {
    display: block;
    color: inherit;
}

.search-result-link:hover {
    color: inherit;
}

/* Ensure the entire result item is clickable */
.search-results .result-item a {
    display: block;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar .ms-lg-3 {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .dropdown-menu.search-dropdown {
        width: 100%;
        min-width: auto !important;
        margin-top: 5px;
    }

    .offcanvas .search-form {
        margin: 15px 0;
    }

    .offcanvas .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    padding: 1.5rem;
}

.modal-title {
    font-weight: 500;
}

/* Enhanced Search Results Styles */
.search-results .result-item {
    transition: all 0.2s ease;
}

.search-results .result-item:hover {
    background-color: rgba(var(--primary-color-rgb), 0.03);
}

.search-results .result-item h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.search-results .result-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
}

.search-results .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
}

.search-results .badge i {
    font-size: 0.9rem;
}

/* Search Input Enhancements */
.search-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.15);
    border-color: var(--primary-color);
}

.search-dropdown {
    margin-top: 10px !important;
    min-width: 350px !important;
}

@media (max-width: 576px) {
    .search-dropdown {
        min-width: 300px !important;
    }

    .modal-dialog {
        margin: 0.5rem;
    }
}

/* Hizmetler ve Yorum Kartları - Uyumlu Stil */
.service-card {
    transition: transform 0.25s cubic-bezier(.4, 2, .3, 1), box-shadow 0.25s, border-color 0.25s;
    will-change: transform;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 340px;
    border: 2px solid #0d6efd33;
    box-shadow: 0 2px 8px 0 rgba(13, 110, 253, 0.08);
    border-radius: 1.5rem;
    background: #fff;
}

.service-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card .card-title,
.service-card .card-text {
    flex-shrink: 0;
}

.service-card .card-text {
    flex-grow: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(13, 110, 253, 0.13), 0 2px 8px 0 rgba(108, 99, 255, 0.10);
    border-color: #0d6efd;
    z-index: 2;
}

.service-card .service-img-wrapper img {
    transition: transform 0.3s cubic-bezier(.4, 2, .3, 1);
    transform: scale(1);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.07);
}

.section-underline {
    background: linear-gradient(90deg, #0d6efd 60%, #6c63ff 100%);
}

/* Testimonial Card Hover & Animation - Uyumlu */
.testimonial-card {
    transition: transform 0.25s cubic-bezier(.4, 2, .3, 1), box-shadow 0.25s, border-color 0.25s;
    will-change: transform;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 340px;
    border: 2px solid #0d6efd33;
    box-shadow: 0 2px 8px 0 rgba(13, 110, 253, 0.08);
    border-radius: 1.5rem;
    background: #fff;
}

.testimonial-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-card .testimonial-content {
    flex-grow: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01) rotate(-1deg);
    box-shadow: 0 8px 32px 0 rgba(13, 110, 253, 0.13), 0 2px 8px 0 rgba(108, 99, 255, 0.10);
    border-color: #0d6efd;
    z-index: 2;
}

.testimonial-animated {
    animation: fadeInUp 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.testimonial-img-wrapper {
    position: relative;
    display: inline-block;
}

.testimonial-content {
    display: inline-block;
    animation: fadeInText 1.2s cubic-bezier(.4, 2, .3, 1);
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* referanslar */
.client-logo,
.client-logo-animated {
    transition:
        box-shadow 0.25s cubic-bezier(.4, 2, .3, 1),
        border-color 0.25s,
        transform 0.35s cubic-bezier(.4, 2, .3, 1);
    will-change: transform, box-shadow;
    border: 1.5px solid transparent;
    background: #fff;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 2px 8px 0 rgba(13, 110, 253, 0.06);
    position: relative;
    width: 100%;
    min-height: 100px;
}

.client-logo:hover,
.client-logo:focus-within,
.client-logo-animated:hover,
.client-logo-animated:focus-within {
    box-shadow: 0 12px 36px 0 rgba(13, 110, 253, 0.16), 0 2px 8px 0 rgba(108, 99, 255, 0.10);
    border-color: #0d6efd33;
    transform: scale(1.05) rotate(-2deg) translateY(-8px);
    z-index: 2;
}

.client-logo img,
.client-logo-link:hover img,
.client-logo-link:focus img,
.client-logo-animated img,
.client-logo-animated .logo-placeholder {
    filter: grayscale(0) brightness(1.05) drop-shadow(0 2px 8px rgba(13, 110, 253, 0.08));
    transition: filter 0.3s, transform 0.3s;
    max-width: 100%;
}

.client-logo-link:hover img,
.client-logo-link:focus img,
.client-logo-animated:hover img {
    filter: grayscale(0) brightness(1.15) drop-shadow(0 4px 16px rgba(13, 110, 253, 0.13));
    transform: scale(1.05) rotate(-2deg);
}

.client-logo-animated:hover .logo-placeholder {
    filter: brightness(1.15);
    transform: scale(1.05) rotate(-2deg);
}

.logo-placeholder {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 991.98px) {
    .client-logo,
    .client-logo-animated {
        padding: 1.25rem;
        min-height: 90px;
    }
    
    .logo-placeholder {
        height: 50px;
    }
}

@media (max-width: 575.98px) {
    .client-logo,
    .client-logo-animated {
        padding: 1rem;
        min-height: 70px;
    }
    
    .logo-placeholder {
        height: 40px;
    }
    
    .client-logo img,
    .client-logo-animated img {
        max-height: 40px !important;
    }
}

/* Animasyonlar */
@keyframes fadeInUpClient {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.client-animated {
    animation: fadeInUpClient 0.9s cubic-bezier(.4, 2, .3, 1) both;
}

.clients-section .section-title span {
    display: inline-block;
    animation: fadeInUpClient 1.1s cubic-bezier(.4, 2, .3, 1) both;
}

.clients-section .section-underline {
    animation: fadeInUpClient 1.3s cubic-bezier(.4, 2, .3, 1) both;
}

.clients-section .lead {
    animation: fadeInUpClient 1.5s cubic-bezier(.4, 2, .3, 1) both;
}




/* Slider Section */
.slider-section .slider-item {
    min-height: 600px;
    max-height: 700px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    box-shadow:
        0 16px 48px 0 rgba(13, 110, 253, 0.13),
        0 4px 16px 0 rgba(108, 99, 255, 0.10),
        0 24px 48px 0 rgba(60, 72, 100, 0.10),
        0 1.5px 4px 0 rgba(0, 0, 0, .04);
    transition:
        box-shadow 0.3s cubic-bezier(.4, 2, .3, 1),
        transform 0.3s cubic-bezier(.4, 2, .3, 1);
}

.slider-section .slider-item:hover {
    transform: rotateY(4deg) scale(1.01) translateY(-8px);
    box-shadow:
        0 32px 64px 0 rgba(13, 110, 253, 0.18),
        0 8px 32px 0 rgba(108, 99, 255, 0.13),
        0 32px 64px 0 rgba(60, 72, 100, 0.13),
        0 4px 16px 0 rgba(0, 0, 0, .08);
    z-index: 2;
}

.slider-section .slider-item>.container {
    position: relative;
    z-index: 2;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: inherit;
    transform-style: preserve-3d;
}

.slider-section .slider-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(13, 110, 253, 0.10) 0%, rgba(108, 99, 255, 0.08) 100%);
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 32px 64px 0 rgba(13, 110, 253, 0.08);
}

.slider-section .slider-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition:
        transform .9s cubic-bezier(.4, 2, .3, 1),
        filter .4s,
        box-shadow .5s cubic-bezier(.4, 2, .3, 1);
    filter: brightness(0.92) saturate(1.08) contrast(1.04) drop-shadow(0 8px 32px rgba(13, 110, 253, 0.10));
    position: relative;
    z-index: 0;
    transform: translateZ(20px) scale(1);
}

.slider-section .slider-item:hover img {
    transform: translateZ(40px) scale(1.08) rotateY(4deg);
    filter: brightness(1) saturate(1.12) contrast(1.08) drop-shadow(0 16px 48px rgba(13, 110, 253, 0.15));
}

.slider-section .swiper-slide-active .slider-item img {
    transform: translateZ(40px) scale(1.06) rotateY(2deg);
    filter: brightness(1) saturate(1.12) contrast(1.08) drop-shadow(0 16px 48px rgba(13, 110, 253, 0.13));
}

.slider-section .swiper-button-next,
.slider-section .swiper-button-prev {
    background: linear-gradient(135deg, #0d6efd 60%, #6c63ff 100%);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%) translateZ(60px) scale(1.05);
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.18), 0 2px 8px rgba(108, 99, 255, 0.10), 0 8px 24px rgba(60, 72, 100, 0.10);
    transition:
        background .25s,
        box-shadow .25s,
        transform .2s;
    color: #fff !important;
    border: 2px solid #fff;
    opacity: 0.92;
    z-index: 10;
}

.slider-section .swiper-button-next {
    right: 0;
}

.slider-section .swiper-button-prev {
    left: 0;
}

.slider-section .swiper-button-next:hover,
.slider-section .swiper-button-prev:hover {
    background: linear-gradient(135deg, #6c63ff 60%, #0d6efd 100%);
    box-shadow: 0 16px 32px rgba(13, 110, 253, 0.22), 0 8px 24px rgba(108, 99, 255, 0.13), 0 16px 32px rgba(60, 72, 100, 0.13);
    transform: translateY(-50%) translateZ(80px) scale(1.12) rotateY(6deg);
    opacity: 1;
}

.slider-section .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.8;
    width: 14px;
    height: 14px;
    margin: 0 6px !important;
    border: 2px solid #0d6efd33;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.10), 0 4px 12px rgba(60, 72, 100, 0.08);
    transition: background .2s, opacity .2s, border .2s, box-shadow .2s;
}

.slider-section .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #0d6efd 60%, #6c63ff 100%);
    opacity: 1;
    border: 2px solid #0d6efd;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.18), 0 8px 24px rgba(60, 72, 100, 0.13);
}

@media (max-width: 991.98px) {
    .slider-section .slider-item {
        min-height: 400px;
        max-height: 500px;
    }

    .slider-section .slider-item::after {
    }

    .slider-section .slider-item img {
    }

    .slider-section .swiper-button-next,
    .slider-section .swiper-button-prev {
        width: 44px;
        height: 44px;
    }

    .slider-section .slider-item>.container {
        min-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .slider-section .slider-item {
        min-height: 260px;
        max-height: 340px;
    }

    .slider-section .slider-item::after {
    }

    .slider-section .slider-item img {
    }

    .slider-section .swiper-button-next,
    .slider-section .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .slider-section .slider-item>.container {
        min-height: 260px;
    }
}

/* Hakkımızda Bölümü */
.about-img-wrapper img:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 12px 32px 0 rgba(13, 110, 253, 0.18), 0 2px 8px 0 rgba(108, 99, 255, 0.10);
}

.about-section .btn-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(13, 110, 253, 0.18), 0 2px 8px 0 rgba(108, 99, 255, 0.10);
}

.about-section .about-content {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 2px 8px 0 rgba(13, 110, 253, 0.06);
}

@media (max-width: 991.98px) {
    .about-section .about-content {
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-cta-section .d-flex {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .contact-cta-section .ms-md-4 {
        margin-left: 0 !important;
        margin-top: 1.5rem !important;
    }
    .contact-cta-section .rounded-4 {
        border-radius: 1.25rem !important;
    }
    .contact-cta-section .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 575.98px) {
    .contact-cta-section h2 {
        font-size: calc(1.3rem + 0.6vw) !important;
    }
    .contact-cta-section p {
        font-size: 1rem !important;
    }
    .contact-cta-section .btn {
        font-size: 1.1rem !important;
        padding: 0.5rem 1rem !important;
    }
}

.stylish-offcanvas .offcanvas-header {
    background: linear-gradient(90deg, #e46d02 0%, #ffb347 100%);
}

.stylish-offcanvas .offcanvas-title img {
    background: #fff;
    padding: 4px;
}

.stylish-offcanvas .nav-link {
    font-size: 1.08rem;
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.stylish-offcanvas .nav-link.active,
.stylish-offcanvas .nav-link:hover {
    background: #e46d02;
    color: #fff !important;
}

.stylish-offcanvas .btn-contact {
    background: #e46d02;
    color: #fff;
    border: none;
}

.stylish-offcanvas .btn-contact:hover {
    background: #d45c00;
    color: #fff;
}

.stylish-offcanvas .social-links .btn-outline-primary {
    border-color: #e46d02;
    color: #e46d02;
    background: #fff;
}

.stylish-offcanvas .social-links .btn-outline-primary:hover {
    background: #e46d02;
    color: #fff;
}

.stylish-offcanvas .latest-blogs a.fw-semibold:hover {
    color: #e46d02 !important;
}




/* About.php Team Section */
.team-card {
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 8px 32px rgba(60, 72, 100, 0.13), 0 1.5px 8px rgba(13, 110, 253, 0.08);
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), box-shadow 0.35s;
    position: relative;
}

.team-card:hover {
    transform: translateY(-12px) scale(1.04) rotateZ(-1deg);
    box-shadow: 0 16px 48px rgba(13, 110, 253, 0.18), 0 8px 32px rgba(60, 72, 100, 0.18);
    z-index: 2;
}

.team-card .card-img-top,
.team-img-placeholder {
    border-radius: 0 0 1.5rem 1.5rem;
    transition: filter 0.3s;
}

.team-card:hover .card-img-top,
.team-card:hover .team-img-placeholder {
    filter: brightness(0.95) blur(0.5px);
}

.team-card .card-body {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 1.5rem;
    margin-top: -2.5rem;
    box-shadow: 0 2px 12px rgba(13, 110, 253, 0.06);
    transition: background 0.3s;
}

.team-card .card-title {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.team-card .text-muted {
    color: var(--primary-color) !important;
    font-weight: 500;
}

.team-card .social-links a {
    font-size: 1.3rem;
    color: var(--primary-color) !important;
    background: #f3f3ff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    box-shadow: 0 2px 8px rgba(108, 99, 255, 0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.team-card .social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color) 60%, #0d6efd 100%);
    color: #fff !important;
    transform: scale(1.15) rotate(-8deg);
}

.team-img-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #f3f3ff 60%, #e6e9f9 100%);
}

/* Animasyon için fadeInUp */
@keyframes fadeInUpTeam {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.team-animated {
    opacity: 0;
    animation: fadeInUpTeam 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
}

/* About.php hakkımızda kısmı için */
.about-img-wrapper {
    box-shadow: 0 8px 32px 0 #0d6efd22, 0 1.5rem 3rem #6c63ff11;
    transition: box-shadow .4s;
}

.about-img-wrapper:hover {
    box-shadow: 0 16px 48px 0 #0d6efd44, 0 2.5rem 5rem #6c63ff22;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 60%, #6c63ff 100%) !important;
}

.text-gradient {
    background: linear-gradient(90deg, #0d6efd 60%, #6c63ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* İletişim Formu Bölümü Responsive Düzenlemeler */
.contact-section .card {
    overflow: hidden;
}

.contact-section .input-group,
.contact-section .form-control,
.contact-section textarea {
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .contact-section .card-body {
        padding: 1.5rem !important;
    }
    
    .contact-section .row.g-5 {
        --bs-gutter-y: 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .contact-section .input-group-text {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .contact-section .form-control {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 0.95rem;
    }
    
    .contact-section .card-body {
        padding: 1.25rem !important;
    }
    
    .contact-section .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .contact-section .col-md-6 {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    
    .contact-section .row.g-3 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    
    .contact-section .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
}

/* Ensure swiper containers themselves are hidden */
.swiper {
    overflow: hidden;
}

.blog-item .blog-tag a {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Chevron icon rotation for collapsible categories */
.categories-list .h5 .bi-chevron-down {
    transition: transform 0.3s ease-in-out;
    transform: rotate(0deg); /* Default state: pointing down */
}

.categories-list .h5:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg); /* Rotated when expanded (not collapsed) */
}

.comment-author {
    font-weight: bold;
}



