/* --- Genel Gövde ve Arka Plan Efekti --- */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #ffffff;
    /* Sitenin ana arka planı BEYAZ */
    position: relative;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* İçeriğin arkasında kalması için */
    background-color: #ffffff;
}

/* --- Navbar CSS --- */
/* (Mevcut stiller aynı kalır) */
.transparent-navbar {
    background-color: transparent !important;
    transition: background-color 0.5s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.scrolled-navbar {
    background-color: #000000 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.5s ease;
}

.scrolled-navbar .navbar-nav .nav-link,
.scrolled-navbar .navbar-brand {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.scrolled-navbar .navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.transparent-navbar .navbar-nav .nav-link,
.transparent-navbar .navbar-brand {
    color: #333 !important;
}
/* Navbar Görsel Logo Stili */
.navbar-brand .navbar-logo {
    max-height: 40px; /* Navbar yüksekliğine göre ayarlandı */
    width: auto;
    transition: all 0.3s ease;
}

/* Scroll edildiğinde logonun boyutu (opsiyonel) */
.scrolled-navbar .navbar-brand .navbar-logo {
    max-height: 35px; 
}

/* --- YENİ DİNAMİK HERO BÖLÜMÜ --- */
.dynamic-hero {
    position: relative;
    height: 70vh;
    /* Yüksekliği 100vh değil, 70vh olarak küçülttük */
    min-height: 450px;
    overflow: hidden;
    /* Ken Burns efekti için taşmayı gizle */
    z-index: 10;
    /* particles.js'in önünde */
    background-color: #333;
    /* Resim yüklenmezse diye yedek renk */
}

.dynamic-hero .carousel-item {
    height: 70vh;
    min-height: 450px;
}

/* YENİ: Ken Burns Efekti Arka Planı */
.ken-burns-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Animasyonu tanımla */
    animation: kenburns 20s ease-in-out infinite;
    transform: scale(1.1);
    /* Başlangıç zoom'u */
}

/* Ken Burns Animasyon Keyframes */
@keyframes kenburns {
    0% {
        transform: scale(1.1) translate(0, 0);
    }

    50% {
        transform: scale(1.0) translate(5px, 5px);
        /* Yavaşça kayar ve uzaklaşır */
    }

    100% {
        transform: scale(1.1) translate(0, 0);
        /* Başa döner */
    }
}

/* Metin okunurluğu için koyu katman */
.dynamic-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Hafif koyu katman */
    z-index: 1;
}

/* Metin İçeriği (Beyaz metin) */
.dynamic-hero .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Carousel Kontrolleri (Daha belirgin hale getirelim) */
.dynamic-hero .carousel-control-prev,
.dynamic-hero .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.dynamic-hero .carousel-control-prev:hover,
.dynamic-hero .carousel-control-next:hover {
    opacity: 1;
}

.dynamic-hero .carousel-control-prev-icon i,
.dynamic-hero .carousel-control-next-icon i {
    font-size: 2rem;
    color: white;
}


/* --- Diğer Stiller (Okunabilirlik Güncellemeleri) --- */
/* (Bu stiller önceki adımdan gelmeli, aynı kalır) */

/* Hizmet Kartları: Kartların kendisi opak olmalı */
.service-card {
    /* ... (aynı kalır) ... */
}

.service-card:hover {
    /* ... (aynı kalır) ... */
}

/* Hakkımızda Bölümü: Arka planı şeffaf yap */
#about {
    background-color: transparent;
    border-top: 5px solid #007bff;
}

/* Teknoloji Bölümü */
.tech-icons i {
    /* ... (aynı kalır) ... */
}

/* --- Diğer Stiller (Okunabilirlik Güncellemeleri) --- */

/* Hizmet Kartları: Kartların kendisi opak olmalı */
.service-card {
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    border-radius: 12px;
    border: none;
    background-color: #ffffff;
    /* Kartların arka planı olmalı */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.service-card i {
    transition: color 0.3s;
}

.service-card:hover i {
    color: #0056b3 !important;
}

/* Hakkımızda Bölümü: Arka planı şeffaf yap */
#about {
    background-color: transparent;
    /* DÜZELTME: Opak rengi kaldır */
    border-top: 5px solid #007bff;
}

/* Teknoloji Bölümü */
.tech-icons i {
    transition: transform 0.3s ease-in-out;
}

.tech-icons i:hover {
    transform: scale(1.1);
}

/* --- YENİ ÖNE ÇIKAN ÜRÜN KARTLARI CSS --- */

.featured-card {
    background-color: #ffffff;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); /* Daha belirgin gölge */
    border-color: #007bff; /* Hover'da mavi çerçeve vurgusu */
}

/* Görseli taklit eden ikon alanı */
.card-image-wrapper {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef); /* Hafif gradyan arka plan */
    border-bottom: 3px solid #007bff; /* Mavi vurgu çizgisi */
}

/* CTA butonu hover efekti */
.featured-card:hover .service-cta {
    background-color: #007bff;
    color: white !important;
    border-color: #007bff;
}

/* İkon Animasyonu (animate.css ile) */
.featured-card:hover .fa-5x {
    /* İkonun hover'da sürekli hafif büyüme/küçülme efekti */
    animation-duration: 1.5s;
}

/* --- Genel Stil İyileştirmeleri --- */
/* (Diğer stiller aynı kalır) */

/* --- YENİ ÖNE ÇIKAN ÜRÜN KARTLARI CSS (TÜM KART TIKLANABİLİR) --- */

/* Kartı saran link, tarayıcı tarafından varsayılan stilden kurtarılmalı */
.featured-card-link {
    text-decoration: none !important; /* Alt çizgiyi kaldır */
    color: inherit; /* Yazı rengini karttan alsın */
    display: block; /* Tüm col-lg-4 alanını kapla */
    height: 100%;
}

.featured-card {
    background-color: #ffffff;
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Daha akıcı geçiş */
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.featured-card:hover {
    transform: translateY(-12px); /* Daha güçlü yukarı kayma */
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 10px 10px rgba(0,0,0,0.22); /* Dramatik gölge */
    border-color: #007bff; /* Hover'da mavi çerçeve vurgusu */
}

/* Görseli taklit eden ikon alanı */
.card-image-wrapper {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef); 
    border-bottom: 3px solid #007bff; 
}

/* İkon ve Ok Vurgusu */
.featured-card:hover .fa-5x {
    color: #0056b3 !important; /* Hover'da ikon rengini değiştir */
    animation-duration: 1.5s;
}

/* "Detayları Gör" yazısına hover efekti */
.featured-card-link:hover .text-primary {
    color: #0056b3 !important; 
    letter-spacing: 0.5px; /* Hafif harf aralığı artışı */
    transition: all 0.3s;
}
/* --- FOOTER GELİŞTİRMESİ CSS --- */

#site-footer {
    background-color: #1a1a1a !important; /* Daha koyu, profesyonel arka plan */
}

/* Link Stilleri */
#site-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

#site-footer a:hover {
    color: #007bff; /* Mavi vurgu */
    text-decoration: none;
}

/* Footer Link Listesi */
.footer-links li {
    margin-bottom: 8px;
}

/* Yasal Metin Buton Stili */
.footer-legal-btn {
    display: inline-block;
    width: 100%;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.1); /* Hafif şeffaf buton arkaplanı */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-legal-btn:hover {
    background-color: #007bff; /* Hover'da mavi dolgu */
    color: white;
    border-color: #007bff;
    transform: translateX(5px); /* Hafif kayma efekti */
}

/* Sosyal Medya İkonları */
.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    margin-right: 15px;
}
.footer-social a:hover {
    color: #007bff;
}

/* Logo Stili (eğer görsel logo kullanılırsa) */
.footer-logo {
    max-height: 50px;
    width: auto;
}
/* --- FOOTER GELİŞTİRME OKUNURLUK DÜZELTMESİ --- */

/* Marka altındaki Açıklama Metni */
#site-footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important; /* Açık gri/beyaz tonu */
}

/* Genel dipnot metni (en alttaki copyright) */
#site-footer .text-muted.small {
    color: rgba(255, 255, 255, 0.5) !important; /* Daha hafif, ama okunur ton */
}
.product-row-image {
    height: 100%; /* YENİ: Ebeveynin yüksekliğini kapla */
    width: 100%; /* YENİ: Ebeveynin genişliğini kapla */
    min-height: 400px; /* Minimum yüksekliği koru */
    object-fit: cover; /* Resmi orantılı olarak keserek alanı doldur */
    display: block; /* Tarayıcıların resim altındaki boşluklarını engelle */
}
/* --- YENİ ÖNE ÇIKAN YAZILIM ÇÖZÜMLERİ CSS --- */

/* Kartı sarmalayan link stili */
.featured-service-item {
    text-decoration: none !important; 
    color: inherit; 
    display: block; 
    height: 100%;
}

/* Kartın İç Kutusu */
.service-inner-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0 !important; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.featured-service-item:hover .service-inner-box {
    transform: translateY(-8px); /* Hafif yukarı kayma */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.08) !important; /* Dramatik gölge */
    border-color: #007bff !important; /* Mavi çerçeve vurgusu */
}

/* İkon ve Başlık Rengi */
.service-inner-box .fa-3x {
    transition: color 0.4s;
    color: #007bff !important; /* Mavi renk */
}

/* İkon hover efekti */
.featured-service-item:hover .fa-3x {
    color: #0056b3 !important; /* Daha koyu mavi */
    transform: scale(1.1);
}

/* CTA linki stili */
.service-cta-link {
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

/* CTA linki hover efekti */
.featured-service-item:hover .service-cta-link {
    color: #dc3545 !important; /* Kırmızı vurgu */
    transform: translateX(5px); /* Hafif sağa kayma */
    letter-spacing: 0.5px;
}
/* --- PROJE REFERANSLARI STİLLERİ (SONSUZ KAYDIRMA) --- */

#references {
    /* Arka planı hafif gri yapalım ki kaydırma bandı daha iyi çıksın */
    background-color: #f8f9fa !important;
}

.marquee-container {
    overflow: hidden; /* Taşmayı gizle */
    width: 100%;
    white-space: nowrap; /* Tüm elemanlar tek satırda kalsın */
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    animation: marquee-scroll 40s linear infinite; /* Animasyon hızı ve süresi */
    /* Hover'da durma efekti */
    animation-play-state: running; 
}

/* Hover'da animasyonu durdurma */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
    cursor: pointer;
}

.reference-item {
    display: inline-block; /* Tek satırda kalmasını sağlar */
    width: 300px; /* Her kartın sabit genişliği */
    margin: 0 15px; /* Kartlar arası boşluk */
}

/* Kart stili (Önceki stille aynı, ama hover'da daha güçlü) */
.reference-card {
    transition: all 0.4s ease-in-out;
    cursor: pointer; /* Fare imleci el olsun */
    min-height: 250px;
    background-color: white;
}

.reference-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
    transform: scale(1.05); /* Hover'da hafif büyüme */
    border-color: #007bff !important;
}

.client-logo {
    max-width: 120px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 1.2rem;
}

/* YENİ: Sonsuz Kaydırma Animasyonu Keyframes */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* İçeriğin yarısı kadar (ilk döngü kadar) sola kayar */
        transform: translateX(-50%); 
    }
}