body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Yatay kaydırmayı engeller, responsive için önemli */
}

.container {
    max-width: 1200px; /* İçeriğin maksimum genişliği */
    margin: 0 auto; /* İçeriği yatayda ortalar */
    padding: 0 20px; /* Kenarlardan yatay boşluk bırakır */
    box-sizing: border-box; /* Padding'in genişliği etkilememesini sağlar */
}

/* Tüm butonlar için genel stil */
.btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

/* Font Awesome İkon Tipleri (Genel olarak kalmalı) */
.fas { /* fas sınıfına sahip tüm ikonlar için (Solid ikonlar) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.fab { /* fab sınıfına sahip tüm ikonlar için (Brands ikonları) */
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

/* ========================================================================== */
/* HEADER VE NAVİGASYON STİLLERİ */
/* ========================================================================== */

/* Ana Header Kapsayıcısı */
.main-header {
    background-color: #fff;
    padding: 15px 0; /* Header'ın üstten ve alttan boşluğunu buradan ayarlayın. Değeri küçülterek header yüksekliğini azaltabilirsiniz. Örn: 5px 0; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    z-index: 1000; /* Header'ın diğer öğelerin üzerinde kalmasını sağlar */
    position: relative;
}

/* Header'ın İçeriğini (Logo, Nav, Sosyal Linkler) Düzenleyen Konteyner */
.header-inner {
    display: flex; /* İçindeki öğeleri yanyana dizer */
    align-items: center; /* Öğeleri dikeyde (orta) hizalar */
    justify-content: space-between; /* Logoyu sola, menüyü ve sosyal linkleri sağa iter */
    flex-wrap: wrap; /* Küçük ekranlarda öğelerin alt satıra geçmesini sağlar */
    width: 100%;
}

/* LOGO STİLLERİ */
.logo {
    flex-shrink: 0; /* Ekran küçüldüğünde logonun küçülmesini engeller */
    /* Eğer .container'da yatay padding varsa ve logoyu TAM sola yapıştırmak isterseniz,
       aşağıdaki satırı aktif edin ve negatif margin değerini container'ın yatay padding'i kadar ayarlayın.
       Örn: eğer .container padding: 0 20px; ise, margin-left: -20px; yapın. */
    /* margin-left: -20px; */
}

.logo img {
    max-height: 100px; /* Logonun yüksekliğini buradan ayarlayın. Bu değer header'ın minimum yüksekliğini belirler. */
    width: auto;     /* Genişliği orantılı olarak ayarlar */
    display: block;  /* img etiketi etrafındaki istenmeyen boşlukları giderir */
}

/* ANA NAVİGASYON (MENÜ) STİLLERİ */
.main-nav {
    flex-grow: 1; /* Menünün logo ve sosyal linkler dışındaki tüm boş alanı doldurmasını sağlar */
    text-align: center; /* Menü linklerini yatayda ortalar */
}

.main-nav ul {
    list-style: none; /* Liste işaretlerini kaldırır */
    padding: 0;
    margin: 0;
    display: flex; /* Menü öğelerini yanyana dizer */
    justify-content: center; /* Menü öğelerini kendi alanlarında yatayda ortalar */
}

.main-nav ul li {
    margin: 0 15px; /* Menü öğeleri arasına yatay boşluk bırakır */
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 0; /* Menü linklerinin etrafında boşluk, tıklama alanını genişletir */
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap; /* Menü öğelerinin kelimelerinin kırılmasını engeller */
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #007bff; /* Hover ve aktif durum rengi */
}

/* SOSYAL LİNKLERİN STİLLERİ */
.social-links {
    flex-shrink: 0; /* Ekran küçüldüğünde sosyal linklerin küçülmesini engeller */
    display: flex; /* İkonları yanyana dizer */
    align-items: center; /* İkonları dikeyde ortalar */
    margin-left: 20px; /* Menü ile sosyal linkler arasına boşluk */
}

.social-links a {
    font-size: 1.2em; /* İkon boyutu */
    margin-left: 15px; /* İkonlar arasına boşluk bırakır */
    transition: color 0.3s ease;
}

/* Tüm sosyal medya ikonlarının genel rengini burada belirleyelim */
.social-links a i {
    color: #666; /* Varsayılan gri rengi buraya atadık */
}

/* Her ikon için özel renkler ve hover efektleri */
.social-links a i.fa-facebook {
    color: #1877F2; /* Facebook Mavisi */
}
.social-links a i.fa-facebook:hover {
    color: #0D5FB3;
}

.social-links a i.fa-instagram {
    color: #E4405F; /* Instagram Kırmızısı */
}
.social-links a i.fa-instagram:hover {
    color: #C2334F;
}

.social-links a i.fa-linkedin {
    color: #0A66C2; /* LinkedIn Mavisi */
}
.social-links a i.fa-linkedin:hover {
    color: #074780;
}

.social-links a i.fa-x-twitter {
    color: #000000; /* Twitter X Siyahı */
}
.social-links a i.fa-x-twitter:hover {
    color: #333333;
}

/* WHATSAPP İKON RENGİ - KESİN ÇÖZÜM */
.social-links a i.fa-whatsapp {
    color: #25D366; /* WhatsApp Yeşili */
}
.social-links a i.fa-whatsapp:hover {
    color: #1DA851;
}

/* ========================================================================== */
/* HERO SLIDER BÖLÜMÜ */
/* ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px; /* Slider'ın yüksekliğini buradan ayarlayın */
    overflow: hidden; /* Önemli: Dışarı taşan slaytları gizler */
    background-color: #000; /* Slider yüklenirken veya resim yokken görülecek renk */
}

.slider-inner {
    display: flex; /* Slaytları yan yana dizer */
    width: 300%; /* Toplam slayt sayısı (3) * %100 = %300 */
    height: 100%;
    transition: transform 0.5s ease-in-out; /* Slayt geçiş animasyonu */
}

.slider-item {
    /* HTML'inizde 3 adet .slider-item olduğu için, her biri %33.333 genişlik almalı */
    width: calc(100% / 3); /* Burası kritik düzeltme */
    height: 100%;
    position: relative;
    flex-shrink: 0; /* Slaytların küçülmesini engeller */
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görseli alanı kaplayacak şekilde ölçekler */
    object-position: center;
}

.slider-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı şeffaf arka plan */
    border-radius: 8px;
    max-width: 80%;
    z-index: 2; /* Resmin üzerinde görünmesini sağlar */
}

.slider-caption h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slider-caption p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Slider Kontrol Butonları */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 2em;
    z-index: 10;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.slider-control:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Slider Noktaları */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex; /* Noktaları yan yana dizer */
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #007bff; /* Aktif noktanın rengi */
}


/* ========================================================================== */
/* HİZMET VE ÜRÜN KATEGORİLERİ BÖLÜMÜ */
/* ========================================================================== */
.services-overview {
    padding: 80px 0;
    background-color: #f9f9f9; /* Hafif bir arka plan rengi */
    text-align: center;
}

.services-overview h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.services-overview .section-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Duyarlı sütunlar */
    gap: 30px; /* Kutucuklar arası boşluk */
}

.category-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px); /* Hafif yukarı kalkma efekti */
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Kategori ikonları rengi */
.category-item .icon {
    font-size: 3em;
    color: #007bff; /* Logonun mavi tonlarına uygun */
    margin-bottom: 20px;
}

.category-item h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.category-item p {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.btn-small {
    display: inline-block;
    background-color: #0056b3; /* Logonun daha koyu mavi tonu */
    color: white;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-small:hover {
    background-color: #003d80;
}

/* ========================================================================== */
/* FOOTER (ALT KISIM) */
/* ========================================================================== */
.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* ========================================================================== */
/* RESPONSIVE DÜZENLEMELER - TÜM SAYFA İÇİN */
/* ========================================================================== */
@media (max-width: 992px) {
    /* Header Responsive */
    .header-inner {
        flex-direction: column; /* Öğeleri dikeyde sırala */
        align-items: flex-start; /* Tüm öğeleri sola yasla */
        text-align: left; /* İçindeki metinleri sola yasla */
    }

    .main-nav {
        margin-top: 15px; /* Logo ile menü arasına boşluk */
        width: 100%; /* Navigasyonun tüm genişliği kaplamasını sağlar */
        text-align: left; /* Menü içindeki metinleri sola hizala */
    }

    .main-nav ul {
        flex-direction: column; /* Menü öğelerini alt alta dizer */
        align-items: flex-start; /* Menü öğelerini sola hizala */
    }

    .main-nav ul li {
        margin: 0 0 10px 0; /* Menü öğeleri arasına dikey boşluk */
        width: 100%; /* Her menü öğesinin satırı kaplamasını sağlar */
    }

    .social-links {
        margin-top: 15px; /* Menü ile sosyal linkler arasına boşluk */
        margin-left: 0; /* Küçük ekranlarda sola yaslamak için */
        width: 100%; /* Sosyal linklerin tüm genişliği kaplamasını sağlar */
        justify-content: flex-start; /* İkonları sola hizala */
    }
}

@media (max-width: 768px) {
    /* Genel Container */
    .container {
        padding: 0 15px;
    }

    /* LOGO STİLİ (MOBİLDE ORTALAMA) */
    .logo {
        text-align: center; /* İçindeki metni (veya inline elemanları) ortalar */
        width: 100%; /* Kapsayıcıyı tam genişliğe yayar */
    }
    .logo img {
        display: block; /* Bloğa dönüştürüp margin:auto kullanabilmek için */
        margin-left: auto;
        margin-right: auto;
        max-width: 80%; /* Logoyu çok büyük olmaktan korur */
        height: auto; /* Oranını korur */
    }

    /* Slider Responsive */
    .hero-slider {
        height: 400px; /* Daha küçük ekranlar için slider yüksekliği */
    }
    .slider-caption h2 {
        font-size: 1.8em;
    }
    .slider-caption p {
        font-size: 1em;
    }
    .slider-control {
        padding: 10px 5px; /* Butonları küçült */
        font-size: 1.5em;
    }
    /* Sliderdaki tüm .btn sınıfına sahip butonları mobilde gizle */
    .hero-slider .btn {
        display: none;
    }
    /* Slider navigasyon noktalarını (mavi kutucuklar) mobilde gizle */
    .slider-dots {
        display: none;
    }

    /* Hizmetler Bölümü Responsive */
    .services-overview {
        padding: 60px 0;
    }
    .services-overview h2 {
        font-size: 2em;
    }
    .services-overview .section-description {
        margin-bottom: 40px;
    }
    .category-grid {
        grid-template-columns: 1fr; /* Küçük ekranlarda tek sütun */
    }
    .category-item {
        padding: 20px;
    }

    /* Footer Responsive */
    .main-footer {
        margin-top: 30px;
    }

    /* Hakkımızda Sayfası Responsive */
    .about-content .container {
        flex-direction: column; /* İçeriği ve görseli alt alta getirir */
    }
    .about-text, .about-image {
        flex: none; /* Flex boyutlarını kaldırır */
        width: 100%; /* Tam genişlik kaplar */
        min-width: unset; /* Minimum genişliği kaldırır */
    }
    .about-image {
        margin-top: 30px;
    }
    .about-hero h1 {
        font-size: 2.5em;
    }
    .about-hero p {
        font-size: 1.1em;
    }
    .about-text h2 {
        font-size: 1.8em;
    }
    .about-text h3 {
        font-size: 1.4em;
    }

    /* İletişim Sayfası Responsive */
    .contact-info-map .container {
        flex-direction: column;
        gap: 30px;
    }
    .contact-details, .map-container {
        flex: none;
        width: 100%;
        min-width: unset;
        padding: 25px;
    }
    .map-container iframe {
        height: 300px;
    }
    .contact-form {
        padding: 20px;
    }
    .contact-form-section p {
        margin-bottom: 30px;
    }

    /* Çalışmalarımız Sayfası Responsive */
    .page-hero h1 { /* Varsayımsal .page-hero eğer Çalışmalarımızda da kullanılıyorsa */
        font-size: 2.5em;
    }
    .page-hero p { /* Varsayımsal .page-hero eğer Çalışmalarımızda da kullanılıyorsa */
        font-size: 1.1em;
    }
    .content-section h2 { /* Varsayımsal .content-section eğer Çalışmalarımızda da kullanılıyorsa */
        font-size: 1.8em;
    }
    .content-section p { /* Varsayımsal .content-section eğer Çalışmalarımızda da kullanılıyorsa */
        font-size: 1em;
    }
    .project-grid, .testimonial-grid {
        grid-template-columns: 1fr; /* Küçük ekranlarda tek sütun */
    }
    .project-item img {
        height: 200px; /* Daha küçük ekranlar için görsel yüksekliği */
    }
    .pdf-links {
        flex-direction: column; /* Küçük ekranlarda butonları alt alta dizer */
        align-items: center;
    }
    .pdf-links .btn {
        width: 80%; /* Buton genişliğini ayarla */
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    /* Slider Responsive */
    .hero-slider {
        height: 300px; /* Daha küçük ekranlar için slider yüksekliği */
    }
    .slider-caption h2 {
        font-size: 20px; /* Daha da küçültme */
    }
    .slider-caption p {
        font-size: 13px; /* Daha da küçültme */
    }
    .btn { /* Genel buton boyutu */
        padding: 8px 15px;
        font-size: 0.9em;
    }

    /* Hakkımızda Sayfası Responsive */
    .about-hero h1 {
        font-size: 2em;
    }
    .about-hero p {
        font-size: 1em;
    }

    /* İletişim Sayfası Responsive */
    .contact-details h2, .map-container h2 {
        font-size: 1.8em;
    }
    .info-item p {
        font-size: 0.9em;
    }
    .form-group label {
        font-size: 0.9em;
    }
    .form-group input, .form-group textarea {
        padding: 10px;
        font-size: 0.9em;
    }
    .contact-form .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    /* Çalışmalarımız Sayfası Responsive */
    .page-hero h1 {
        font-size: 2em;
    }
    .page-hero p {
        font-size: 0.9em;
    }
}

/* ========================================================================== */
/* HAKKIMIZDA SAYFASI STİLLERİ */
/* ========================================================================== */
.about-hero {
    background-color: #f0f8ff; /* Açık mavi tonu */
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.about-hero h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 0;
    background-color: #fff;
}

.about-content .container {
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçiş */
    align-items: center;
    gap: 40px; /* İçerik ve görsel arası boşluk */
}

.about-text {
    flex: 2; /* Daha fazla alan kaplar */
    min-width: 300px; /* Belirli bir genişliğin altına düşmesini engeller */
}

.about-text h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    text-align: left; /* Metni sola hizala */
}

.about-text h3 {
    font-size: 1.6em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 10px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.about-text ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #28a745; /* Yeşil tik rengi */
    position: absolute;
    left: 0;
    top: 0;
}

.about-image {
    flex: 1; /* Görsel için alan kaplar */
    min-width: 250px; /* Belirli bir genişliğin altına düşmesini engeller */
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ========================================================================== */
/* İLETİŞİM SAYFASI STİLLERİ */
/* ========================================================================== */

.contact-info-map {
    padding: 60px 0;
    background-color: #f8f9fa;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; /* Bölümler arası boşluk */
    text-align: center;
}

.contact-info-map .container {
    display: flex; /* İçindeki contact-details ve map-container'ı yan yana dizer */
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-details {
    flex: 1; /* Esnek boyut */
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left; /* İçeriği sola hizala */
}

.contact-details h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    text-align: center; /* Başlığı ortala */
}

.contact-details p {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    text-align: center; /* Açıklama metnini ortala */
}

.info-item {
    display: flex; /* İkon ve metni yan yana diz */
    align-items: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1em;
}

.info-item i {
    font-size: 1.5em;
    color: #007bff; /* Mavi ikon rengi */
    margin-right: 15px;
    min-width: 30px; /* İkonların sabit genişliği */
    text-align: center;
}

.info-item a {
    color: #007bff;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.map-container {
    flex: 2; /* Harita daha geniş alan kaplar */
    min-width: 320px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center; /* Başlığı ortala */
}

.map-container h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 350px; /* Harita yüksekliği */
    border: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}


/* İletişim Formu Bölümü */
.contact-form-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
}

.contact-form-section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left; /* Form elemanlarını sola hizala */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block; /* Etiketi üstte göster */
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 1em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Padding'in genişliği etkilememesini sağlar */
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.form-group textarea {
    resize: vertical; /* Sadece dikeyde boyutlandırmaya izin ver */
    min-height: 120px;
}

.contact-form .btn {
    width: auto; /* Butonun içeriği kadar genişlemesini sağlar */
    padding: 12px 30px;
    font-size: 1.1em;
    background-color: #28a745; /* Yeşil gönder butonu */
}

.contact-form .btn:hover {
    background-color: #218838;
}

.form-warning {
    font-size: 0.9em;
    color: #dc3545; /* Kırmızı uyarı metni */
    margin-top: 30px;
    border: 1px dashed #dc3545;
    padding: 15px;
    border-radius: 5px;
    background-color: #ffeaea;
}

/* ========================================================================== */
/* ÇALIŞMALARIMIZ SAYFASI - PROJE GALERİ STİLLERİ */
/* ========================================================================== */
.project-gallery-section {
    padding-top: 60px; /* Diğer içeriklerden ayırmak için */
    background-color: #f8f9fa; /* Arka plan rengini değiştirerek bölümleri ayırır */
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Duyarlı sütunlar */
    gap: 30px; /* Projeler arası boşluk */
    margin-top: 40px;
    justify-content: center; /* Grid öğelerini konteyner içinde yatayda ortalar */
    max-width: 1000px; /* Grid'in toplam genişliğini sınırlayabiliriz */
    margin-left: auto; /* Grid'i ortalamak için */
    margin-right: auto; /* Grid'i ortalamak için */
}

.project-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden; /* Taşmaları engelle */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* İçeriği dikeyde düzenle */
}

.project-item:hover {
    transform: translateY(-8px); /* Hafif yukarı kalkma efekti */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.project-item img {
    width: 100%;
    height: 250px; /* Görsel yüksekliğini sabitle */
    object-fit: cover; /* Görseli alanı kaplayacak şekilde ölçekle */
    display: block;
}

.project-info {
    padding: 20px;
    text-align: left; /* Metni sola hizala */
    flex-grow: 1; /* Kalan boşluğu doldur */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçerik ve buton arasına boşluk */
}

.project-info h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: left; /* Metni sola hizala */
}

.project-info .btn-small {
    align-self: flex-start; /* Butonu sola hizala */
    margin-top: auto; /* En alta hizala */
    background-color: #28a745; /* Mavi buton */
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.project-info .btn-small:hover {
    background-color: #28a745;
}

/* ========================================================================== */
/* ÇALIŞMALARIMIZ SAYFASI - MÜŞTERİ YORUMLARI STİLLERİ */
/* ========================================================================== */
.testimonials-section {
    background-color: #f0f0f0;
    padding: 80px 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center; /* Grid öğelerini konteyner içinde yatayda ortalar */
    max-width: 900px; /* Grid'in toplam genişliğini sınırlayabiliriz */
    margin-left: auto; /* Grid'i ortalamak için */
    margin-right: auto; /* Grid'i ortalamak için */
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.testimonial-item p {
    font-size: 1.1em;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-item span {
    display: block;
    font-weight: bold;
    color: #007bff;
    margin-top: 10px;
}

/* ========================================================================== */
/* ÇALIŞMALARIMIZ SAYFASI - PDF KATALOGLAR STİLLERİ */
/* ========================================================================== */
.pdf-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* PDF butonları arası boşluk */
    margin-top: 30px;
}

.pdf-links .btn {
    display: flex; /* İkonu ve metni yan yana getirir */
    align-items: center;
    background-color: #dc3545; /* Kırmızı tonu PDF için */
    color: white;
    padding: 12px 25px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pdf-links .btn:hover {
    background-color: #c82333;
}

.pdf-links .btn i {
    margin-right: 10px; /* İkon ile metin arasına boşluk */
    font-size: 1.3em;
}

/* ========================================================================== */
/* ÜRÜN & HİZMETLER SAYFASI - KATEGORİ LİSTESİ STİLLERİ */
/* ========================================================================== */
.products-services-section {
    background-color: #f8f9fa;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center; /* Kategorileri yatayda ortalar */
    max-width: 1200px; /* Grid'in maksimum genişliğini belirle */
    margin-left: auto;
    margin-right: auto;
}

.category-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-item img {
    width: 100%;
    height: 200px; /* Kategori görsel yüksekliği */
    object-fit: cover;
    display: block;
}

.category-item h3 {
    font-size: 1.5em;
    color: #333;
    margin: 15px 15px 10px 15px;
    text-align: center;
}

.category-item p {
    font-size: 0.95em;
    color: #666;
    margin: 0 15px 20px 15px;
    line-height: 1.5;
    text-align: center;
    flex-grow: 1; /* Metnin kalan alanı doldurmasını sağlar */
}

.category-item .btn-small {
    background-color: #28a745; /* Yeşil buton */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    margin: 0 15px 20px 15px; /* Alt boşluk ekle */
    align-self: center; /* Butonu ortalar */
    transition: background-color 0.3s ease;
}

.category-item .btn-small:hover {
    background-color: #218838;
}

/* ========================================================================== */
/* ÜRÜN/HİZMET DETAY SAYFALARI (örn: hareketli-mobilyalar.html) STİLLERİ */
/* ========================================================================== */
.product-detail-section {
    padding: 60px 0;
    background-color: #fff;
}

.product-detail-section .container {
    max-width: 1000px; /* Detay sayfası içeriği için daha dar bir genişlik */
}

.detail-content {
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçmesini sağlar */
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start; /* İçeriği yukarı hizalar */
}

.detail-text {
    flex: 2; /* Metin kısmı daha geniş */
    min-width: 300px;
    text-align: left; /* Metni sola hizala */
}

.detail-text h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    text-align: left; /* Detay sayfası başlığını sola hizala */
}

.detail-text h3 {
    font-size: 1.6em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.detail-text p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: none; /* Kısıtlamayı kaldır */
    text-align: left; /* Detay sayfasındaki paragrafları sola hizala */
}

.detail-text ul {
    list-style: none; /* Varsayılan madde işaretini kaldır */
    padding: 0;
    margin: 0;
}

.detail-text ul li {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start; /* İkon ve metni yukarıdan hizala */
}

.detail-text ul li i {
    color: #28a745; /* Yeşil tik işareti */
    margin-right: 10px;
    font-size: 1.2em;
    margin-top: 4px; /* İkonu metinle hizala */
}

.detail-image {
    flex: 1; /* Görsel kısmı daha dar */
    min-width: 280px;
    text-align: center;
}

.detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.detail-gallery {
    margin-top: 60px;
    text-align: center;
}

.detail-gallery h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    justify-content: center;
}

.gallery-grid img {
    width: 100%;
    height: 180px; /* Galeri görsel yüksekliği */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05); /* Üzerine gelince büyüt */
}

.related-video {
    margin-top: 60px;
    text-align: center;
}

.related-video h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.product-detail-section .call-to-action {
    background-color: #e6f7ff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-detail-section .call-to-action h2 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-detail-section .call-to-action p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-detail-section .call-to-action .btn {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product-detail-section .call-to-action .btn:hover {
    background-color: #0056b3;
}
 
