/* Yeni Hizmet Kartları */
.service-card-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    margin-bottom: 30px;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--light-color);
    height: 100%;
    background: linear-gradient(45deg, #9999997a, #ffffff);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 99, 0.7); /* Primary color with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay span {
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 30px;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}/* Referanslar Bölümü */
.references-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
    background-color: var(--light-color);
}

.ref-logo {
    background-color: #fff;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ref-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ref-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ref-logo:hover img {
    opacity: 1;
}

.references-indicators {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
    justify-content: center;
}

.references-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(10, 36, 99, 0.3);
    margin: 0 5px;
}

.references-indicators .active {
    background-color: var(--primary-color);
}

/* İstatistik Kartları */
.stats-card {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stats-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
}/* 
 * Gebze Tabelacı - Ana Stil Dosyası
 */

:root {
    --primary-color: #0a2463; /* Koyu lacivert - buton ve linkler için */
    --secondary-color: #c40007; /* Kırmızı - başlıklar için (güncellendi) */
    --text-color: #333333; /* Koyu gri - metinler için */
    --light-color: #ffffff; /* Beyaz - arka plan için */
    --gray-color: #f8f9fa; /* Açık gri - bölüm arkaplanları için */
    --dark-color: #212529; /* Koyu gri - footer için */
    --border-color: #e1e1e1; /* Açık gri - kenar çizgileri için */
}

/* Genel Ayarlar */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    padding-top: 76px; /* Sabit navbar için boşluk */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.section-title {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Butonlar */
.btn {
    border-radius: 4px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #071d50; /* Daha koyu lacivert */
    border-color: #071d50;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* Daha belirgin gölge eklendi */
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Hero Section */
.hero-section {
    margin-top: -20px;
    position: relative;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;
}

.hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Koyu overlay */
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Hero içeriğini aşağıya konumlandırma */
.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* İçeriği alt tarafa hizala */
    padding-bottom: 100px; /* Alt kısımdan boşluk */
}

.hero-slide h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Daha belirgin metin gölgesi */
    margin-bottom: 15px;
}

.hero-slide .lead {
    color: white;
    font-size: 1.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Metin gölgesi */
    margin-bottom: 25px;
}

/* Carousel kontrolleri */
.carousel-control-prev, 
.carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    bottom: 20px;
}

/* Yavaş geçiş efekti için */
.carousel-item {
    transition: transform 1.2s ease-in-out;
}

#heroSlider {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hizmetler Kartları */
.service-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card .card-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* İstatistikler Bölümü */
.stats-section {
    background-color: var(--gray-color);
}

.stat-card {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.stat-card i {
    color: var(--primary-color);
}

.stat-card h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin: 15px 0;
}

/* Footer */
.footer {
    background-color: #0a1e3f;
}

.footer h5 {
    font-size: 1.1rem;
    color: var(--light-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links a {
    color: var(--light-color);
    padding: 5px 0;
    font-weight: 500;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-info i {
    color: var(--light-color);
    font-size: 1.1rem;
    width: 25px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive Tasarım */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--light-color);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    
    .navbar-light .navbar-nav .nav-link {
        border-bottom: none;
        padding: 10px 0;
    }
    
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        border-bottom: none;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .d-md-flex.justify-content-md-start {
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}
/* Sayfa başlık alanları için genel stil */
.page-header {
    position: relative;
    padding: 80px 0;
    color: white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(10, 36, 99, 0.7); /* Ana renk tonunda yarı-saydam overlay */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Kurumsal Sayfası Stilleri */

/* Başlıklar için çizgi */
.title-line {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 30px;
}

/* Hakkımızda bölümü */
.img-container {
    position: relative;
    overflow: hidden;
}

.img-container img {
    transition: transform 0.5s ease;
}

.img-container:hover img {
    transform: scale(1.05);
}

.company-features {
    list-style: none;
    padding-left: 0;
}

.company-features li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Vizyon & Misyon kartları */
.vision-card, .mission-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.vision-card .icon-box, .mission-card .icon-box {
    text-align: center;
}

.goal-item, .mission-values {
    margin-top: 20px;
}

.goal-item h5 {
    font-weight: 600;
    font-size: 1.1rem;
}

.value-item {
    padding: 15px 10px;
    border-radius: 8px;
    background-color: rgba(10, 36, 99, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.value-item:hover {
    background-color: rgba(10, 36, 99, 0.1);
    transform: translateY(-5px);
}

.value-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 5px;
}

/* Kalite Politikası Kartları */
.quality-card {
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-10px);
}

.quality-card .card {
    border-radius: 10px;
    overflow: hidden;
}

.quality-icon {
    margin-bottom: 20px;
}

.quality-commitment {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.quality-commitment:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quality-commitment h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.quality-commitment ul {
    padding-left: 20px;
}

.quality-commitment ul li {
    margin-bottom: 8px;
}

.quality-header-image {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quality-header-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

/* Ekstra Responsif Ayarlar */
@media (max-width: 767.98px) {
    .value-item {
        padding: 10px;
    }
    
    .value-item h5 {
        font-size: 0.85rem;
    }
}

/* Hizmetler Bölümü - Alt Alta Liste Stili */
.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item .card {
    transition: all 0.3s ease;
}

.service-item:hover .card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.service-item h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-item img {
    transition: all 0.5s ease;
}

.service-item:hover img {
    transform: scale(1.05);
}

.service-item .col-md-8 {
    background: linear-gradient(45deg, #9999997a, #ffffff);
}

/* Mobil uyumlu ayarlar */
@media (max-width: 767.98px) {
    .service-item .card-body {
        padding: 1.25rem;
    }
    
    .service-item h3 {
        font-size: 1.4rem;
    }
    
    .service-item .col-md-4 {
        height: 200px;
    }
}
/* Referanslar Sayfası Stilleri */

/* Referans Logoları Grid */
.reference-item {
    margin-bottom: 20px;
}

.ref-logo-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ref-logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ref-logo-card img {
    max-width: 90%;
    max-height: 90px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ref-logo-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Müşteri Yorumları */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--secondary-color);
}

.testimonial-author h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-author p {
    font-size: 0.9rem;
}

/* Responsive Ayarlar */
@media (max-width: 767.98px) {
    .ref-logo-card {
        height: 120px;
        padding: 15px;
    }
    
    .ref-logo-card img {
        max-height: 70px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
}
/* Sayfaya özel arkaplan görselleri */
.header-blog {
    background-image: url('/img/headers/blog-bg.jpg');
}

.header-referanslar {
    background-image: url('/img/headers/referanslar-bg.jpg');
}

/* Blog Sayfası Stilleri */
.blog-hero {
    position: relative;
    background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.8)), url('../img/headers/blog-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 80px;
    color: white;
}

.blog-hero .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../img/wave-white.svg') no-repeat bottom center;
    background-size: cover;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--secondary-color);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Blog Sayfası Mobil Uyumlu Ayarlar */
@media (max-width: 767.98px) {
    .blog-img {
        height: 180px;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
}

/* =================================================
   HIZMET SAYFALARI HEADER BACKGROUND IMAGES 
   ================================================= */

/* Bu CSS kodlarını mevcut style.css dosyasının sonuna ekle */

/* Hizmet Sayfaları Header Backgrounds */
.page-header.header-isikli-tabela {
    background-image: url('/img/headers/isikli-tabela-bg.jpg');
}

.page-header.header-isiksiz-tabela {
    background-image: url('/img/headers/isiksiz-tabela-bg.jpg');
}

.page-header.header-ahsap-tabela {
    background-image: url('/img/headers/ahsap-tabela-bg.jpg');
}

.page-header.header-dijital-baski {
    background-image: url('/img/headers/dijital-baski-bg.jpg');
}

.page-header.header-insaat-arazi-tabelasi {
    background-image: url('/img/headers/insaat-arazi-tabelasi-bg.jpg');
}

.page-header.header-isg-uyari-levhalari {
    background-image: url('/img/headers/isg-uyari-levhalari-bg.jpg');
}

.page-header.header-kumlu-folyo {
    background-image: url('/img/headers/kumlu-folyo-bg.jpg');
}

/* Blog ve diğer sayfalar için */
.page-header.header-blog {
    background-image: url('/img/headers/blog-bg.jpg');
}

.page-header.header-referanslar {
    background-image: url('/img/headers/referanslar-bg.jpg');
}

.page-header.header-iletisim {
    background-image: url('/img/headers/iletisim-bg.jpg');
}

.page-header.header-kurumsal {
    background-image: url('/img/headers/kurumsal-bg.jpg');
}

/* Fallback için genel header */
.page-header.header-default {
    background-image: url('/img/headers/default-bg.jpg');
}

/* =================================================
   HIZMET DETAY SAYFA İYİLEŞTİRMELERİ
   ================================================= */

/* Service Hero section için dinamik background desteği */
.service-hero {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Service detail sayfası için ek stiller */
.service-detail-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-detail-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Gallery section iyileştirmeleri */
.gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 36, 99, 0);
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-img:hover::before {
    background: rgba(10, 36, 99, 0.3);
}

/* Feature cards hover efekti iyileştirmesi */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(10, 36, 99, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Process section iyileştirmeleri */
.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 100%;
    width: 50px;
    height: 2px;
    background: #e1e1e1;
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .process-step::after {
        display: none;
    }
}

/* CTA section iyileştirmeleri */
.cta-service {
    position: relative;
}

.cta-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.cta-service .container {
    position: relative;
    z-index: 2;
}


/* ========================================
   SIDEBAR WIDGET STİLLERİ
   ======================================== */

/* Sidebar Widget Genel */
.sidebar-widget {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

/* Blog Widget Item */
.blog-widget-item {
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}

.blog-widget-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.blog-widget-item img {
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.blog-widget-item h6 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.blog-widget-item h6 a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.blog-widget-item h6 a:hover {
    color: var(--primary-color);
}

/* Project Widget Item */
.project-widget-item .card {
    transition: all 0.3s ease;
}

.project-widget-item:hover .card {
    transform: translateY(-5px);
}

.project-widget-item .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.project-widget-item .card-body {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.project-widget-item .text-muted {
    font-size: 0.85rem;
}

/* Widget Responsive */
@media (max-width: 991.98px) {
    .sidebar-widget {
        margin-top: 30px;
    }
}

/* Ana içerik alanı düzenlemeleri */
.references-section {
    border-top: none;
    padding: 0;
    background-color: transparent;
}

.references-section .ref-logo {
    background-color: #f8f9fa;
}

/* Hizmet kartları için ek stil */
.services-section {
    padding-top: 0;
}