/* Genel Ayarlar ve CSS Değişkenleri */
:root {
    --primary-color: #264653;
    /* Navbar, Footer için koyu petrol yeşili */
    --secondary-color: #d32f2f;
    /* Vurgu rengi: logoya yakın kırmızı */
    --accent-color: #e53935;
    /* Ek vurgu: canlı kırmızı */
    --text-color-dark: #234236;
    /* Koyu metin rengi: koyu yeşil */
    --text-color-light: #ffffff;
    /* Açık metin rengi (koyu arka plan üzerinde) */
    --bg-light: #f8f9fa;
    /* Çok açık gri arka plan rengi */
    --bg-dark: #234236;
    /* Daha koyu yeşil (bazı koyu alanlar için) */
}

/* Navbar-dark özel renk ve font ayarları */
.navbar-dark {
    background-color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--bg-light);
    padding-top: 70px;
    /* Navbar fixed olduğu için içeriğin görünmesi için padding */
}

/* Header (Navbar) */
.navbar {
    background-color: #fff !important;
    /* Header beyaz */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* Hafif gölge */
    border-bottom: 1px solid #ececec;
    /* İnce alt çizgi */
    padding: 0.8rem 0;
    z-index: 1030;
}

.navbar-brand .logo-navbar {
    max-width: 100px;
    /* Logoyu küçült */
    height: auto;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    /* Menü yazı rengi koyu */
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    margin-left: 25px;
    font-size: 1.1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    /* Vurgu rengi: altın sarısı */
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar-toggler-icon {
    filter: invert(1);
    /* Hamburger ikonunu beyaz yapar */
}

/* Dil Seçim Dropdown */
.navbar-nav .dropdown-menu {
    background-color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Gölgeyi hafiflettik */
}

.navbar-nav .dropdown-item {
    color: var(--text-color-light);
    transition: background-color 0.2s ease, color 0.2s ease;
    padding: 10px 15px;
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--secondary-color);
}

.navbar-nav .dropdown-item img {
    margin-left: 8px;
    vertical-align: middle;
}

/* Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    /* İçindeki öğelerin konumlandırılması için */
    width: 100%;
    min-height: 100vh;
    /* Carousel yüksekliği: ekranın tamamı */
    height: 100vh;
    overflow: hidden;
    /* Taşmayı engellemek için */
    margin-top: 0;
    /* Navbar padding-top'u kaldır */
    padding-top: 0 !important;
    border-top: none !important;
    background: none !important;
}

.carousel-item {
    min-height: 100vh;
    /* Her bir slayt öğesinin yüksekliği: ekranın tamamı */
    height: 100vh;
    background-color: var(--primary-color);
    /* Varsayılan arka plan, resim yüklenmezse */
    transition: opacity 1.2s ease-in-out !important;
    /* Fade geçişini daha yumuşak yapar */
}

.carousel-img {
    height: 100vh;
    /* Resimlerin yüksekliği ekran kadar */
    width: 100vw;
    object-fit: cover;
    /* Resim ekranı tamamen doldursun, kırpma olabilir */
    filter: brightness(60%);
    /* Resimleri karartarak metinlerin okunurluğunu artır */
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Resim üzerinde hafif opak siyah katman */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color-light);
    /* Metin rengi beyaz */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Metin gölgesi */
    z-index: 2;
    /* Metnin resmin üzerinde olmasını sağlar */
    padding-bottom: 0;
    /* Bootstrap'in varsayılan padding'ini sıfırlar */
}

.carousel-caption h1 {
    font-size: 3.5rem;
    /* Başlık boyutu */
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 1.3rem;
    /* Slogan boyutu */
    max-width: 800px;
    margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
    cursor: pointer;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 50%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.8;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--text-color-light);
    /* Gösterge noktalarını beyaz yapar */
    opacity: 0.6;
}

.carousel-indicators .active {
    background-color: var(--secondary-color);
    /* Aktif gösterge noktasını yeni vurgu rengi yapar */
    opacity: 1;
}

/* Hakkımızda Bölümü */
.about-section {
    background-color: #fff;
    /* Açık bir arka plan */
    padding: 80px 0;
}

.about-section h2 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    font-weight: 700;
}

.about-section p {
    color: var(--text-color-dark);
}

.about-section .btn-primary {
    background-color: var(--secondary-color);
    /* Yeni, daha canlı vurgu rengi */
    border-color: var(--secondary-color);
    /* Yeni, daha canlı vurgu rengi */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.about-section .btn-primary:hover {
    background-color: #d15b4d;
    /* secondary-color'ın biraz daha koyusu */
    border-color: #d15b4d;
    /* secondary-color'ın biraz daha koyusu */
}

/* Hizmet Verdiğimiz Sektörler Bölümü */
.services-section {
    background-color: var(--bg-light);
    /* Çok açık gri arka plan */
    padding: 80px 0;
}

.services-section h2 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    font-weight: 700;
}

.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    padding: 20px;
}

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

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    /* Yeni lacivert vurgu rengi */
    margin-bottom: 15px;
}

.service-card .card-title {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-card .card-text {
    color: var(--text-color-dark);
    font-size: 0.95rem;
}

/* İmalatlarımız Bölümü */
.manufacturing-section {
    background-color: #fff;
    /* Açık bir arka plan */
    padding: 80px 0;
}

.manufacturing-section h2 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    font-weight: 700;
}

.manufacturing-section .service-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* Hafif bir kenarlık */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Daha hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    padding: 25px;
    /* İç boşluğu artır */
}

.manufacturing-section .service-card:hover {
    transform: translateY(-8px);
    /* Hafif yukarı kayma efekti */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    /* Daha belirgin gölge */
}

/* İkon yerine resim gelince ikon stilini gizle */
.manufacturing-section .service-icon {
    display: none;
    /* İkonları gizle */
}

/* İmalat görselleri için yeni stiller */
.manufacturing-section .card-img-top {
    width: 100%;
    /* Kartın genişliğini doldur */
    height: 180px;
    /* Sabit yükseklik ver */
    object-fit: cover;
    /* Resmi kutuya sığdırırken en boy oranını koru */
    border-top-left-radius: 8px;
    /* Köşe yuvarlamaları */
    border-top-right-radius: 8px;
    margin-bottom: 15px;
    /* Alt boşluk */
}

.manufacturing-section .card-title {
    font-size: 1.3rem;
    /* Başlık boyutunu ayarla */
    font-weight: 600;
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    margin-bottom: 15px;
}

.manufacturing-section .card-text {
    font-size: 0.9rem;
    /* Açıklama yazısı boyutu */
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

/* Sadece bu butonun rengini değiştirdik */
.manufacturing-section .btn-primary {
    background-color: var(--secondary-color);
    /* Yeni, daha canlı vurgu rengi */
    border-color: var(--secondary-color);
    /* Yeni, daha canlı vurgu rengi */
    transition: background-color 0.3s ease, border-color 0.3s ease;
    padding: 10px 25px;
    font-size: 0.95rem;
    border-radius: 5px;
}

.manufacturing-section .btn-primary:hover {
    background-color: #d15b4d;
    /* secondary-color'ın biraz daha koyusu */
    border-color: #d15b4d;
    /* secondary-color'ın biraz daha koyusu */
}

/* Feature Section (Özellikler - Neden Bizi Tercih Etmelisiniz?) */
.feature-section {
    background-color: #fff;
    /* Beyaz arka plan */
    padding: 80px 0;
}

.feature-section h3 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    margin-bottom: 40px;
    font-weight: 700;
}

.custom-list .list-group-item {
    border: none;
    padding: 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.custom-list .list-group-item:last-child {
    border-bottom: none;
}

.custom-list .list-group-item i {
    color: var(--secondary-color);
    /* Yeni, daha canlı vurgu rengi */
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

/* Footer */
.footer-section {
    background-color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    color: var(--text-color-light);
    padding: 50px 0;
    /* Daha fazla padding */
}

.footer-logo {
    max-width: 290px;
    height: auto;
}

.footer-section h5 {
    color: var(--secondary-color);
    /* Başlıklar için yeni vurgu rengi */
    font-weight: 600;
}

.footer-section ul {
    padding-left: 0;
}

.footer-section ul li a {
    color: var(--text-color-light);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-red-link {
    color: var(--secondary-color) !important;
}

.footer-red-link:hover {
    color: #b71c1c !important;
}

.social-icons a {
    color: var(--text-color-light);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Sayfa Başlığı (Kurumsal, İletişim vb. sayfalar için) */
.page-header {
    background-color: var(--bg-light);
    /* Arka plan rengi */
    padding: 100px 0 60px 0;
    /* Üst ve alt boşluk */
    margin-top: 56px;
    /* Navbar sabit olduğu için boşluk bırak */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Alt kenarlık */
}

.page-header h1 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    font-weight: 700;
}

.page-header p {
    color: var(--text-color-dark);
    margin-top: 10px;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .navbar-nav {
        background-color: #fff !important;
        /* Mobilde menü arka planı beyaz */
        padding: 15px;
        margin-top: 10px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .navbar-nav .nav-link,
    .navbar-nav .dropdown-item {
        color: #fff !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active,
    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item.active {
        color: var(--secondary-color) !important;
    }

    .navbar-nav .nav-item {
        margin-left: 0;
    }

    .hero-carousel-section,
    .carousel-item,
    .carousel-img {
        min-height: 500px;
        /* Tablet ekranlar için yükseklik */
        height: 500px;
        object-fit: contain !important;
        background-color: #222;
    }

    .carousel-caption h1 {
        font-size: 2.8rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .carousel-caption {
        padding: 10px;
    }

    .about-section .col-lg-6 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar-brand .logo-navbar {
        max-width: 120px;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        margin-left: 0;
    }

    .hero-carousel-section,
    .carousel-item,
    .carousel-img {
        min-height: 400px;
        /* Mobil için daha küçük yükseklik */
        height: 400px;
        object-fit: contain !important;
        background-color: #222;
    }

    .carousel-caption h1 {
        font-size: 2.2rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }

    .carousel-caption {
        padding: 10px;
    }

    .feature-section h3,
    .about-section h2,
    .services-section h2 {
        font-size: 1.8rem;
    }

    .custom-list .list-group-item {
        font-size: 1rem;
    }

    .custom-list .list-group-item i {
        font-size: 1.2rem;
    }

    .footer-section .col-md-4 {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .social-icons {
        margin-top: 15px;
    }
}

/* Mobilde imalat fotoğrafı üstte, açıklama altta gözüksün */
.content-section img.float-start,
.content-section img.float-end {
    float: none !important;
    margin: 0 auto 18px auto !important;
    display: block !important;
}


/* İletişim Formu Bölümü */
.contact-form-section {
    background-color: var(--bg-light);
    /* Açık renk arka plan */
    padding: 80px 0;
}

.contact-form-section h2 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    font-weight: 700;
}

.contact-form-section .form-label {
    font-weight: 500;
    color: var(--text-color-dark);
}

.contact-form-section .form-control {
    border-radius: 5px;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    /* Odaklandığında varsayılan gölgeyi kaldır */
}

.contact-form-section .form-control:focus {
    border-color: var(--secondary-color);
    /* Odaklandığında yeni vurgu rengi kenarlık */
    box-shadow: 0 0 0 0.25rem rgba(230, 106, 90, 0.25);
    /* Hafif vurgu rengi parlama */
}

.btn-primary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}

.contact-form-section .btn-primary {
    background-color: var(--secondary-color);
    /* Yeni, daha canlı vurgu rengi */
    border-color: var(--secondary-color);
    /* Yeni, daha canlı vurgu rengi */
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form-section .btn-primary:hover {
    background-color: #d15b4d;
    /* secondary-color'ın biraz daha koyusu */
    border-color: #d15b4d;
    /* secondary-color'ın biraz daha koyusu */
}

#form-message {
    font-weight: 500;
    padding: 15px;
    border-radius: 5px;
}

#form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* style.css */

.map-section {
    background-color: #ffffff;
    /* Harita bölümü için açık bir arka plan */
    border-top: 1px solid #e9ecef;
    /* Üstte hafif bir çizgi */
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 en boy oranı için %56.25 */
    height: 0;
    overflow: hidden;
    background-color: #f0f0f0;
    /* Harita yüklenirken gösterilecek arka plan */
    border-radius: 8px;
    /* Köşeleri hafif yuvarla */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Hafif bir gölge */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*Kurumsal Css */
body {
    padding-top: 100px;
    /* Navbar yüksekliği kadar boşluk */
}

/* style.css */

/* --- Mevcut Sidebar Stilleri (Daha Önce Verdiğimiz) --- */
.sidebar {
    background-color: #f8f9fa;
    /* Açık gri arka plan */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: sticky;
    /* Sticky için bu ve top önemli */
    top: 90px;
    /* Navbar yüksekliğinize göre bu değeri ayarlayın */
}

/* Sidebar Başlığı */
.sidebar h5 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    font-weight: 700;
    /* Kalın yapalım */
    font-size: 1.35rem;
    /* Biraz büyütelim */
    padding-bottom: 15px;
    /* Altına boşluk */
    margin-bottom: 20px;
    /* Elementler arasına daha fazla boşluk */
    position: relative;
    /* Sahte alt çizgi için */
}

/* Sidebar Başlığı Altına İnce Çizgi */
.sidebar h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    /* Çizginin uzunluğu */
    height: 3px;
    /* Çizginin kalınlığı */
    background-color: var(--secondary-color);
    /* Yeni vurgu rengi */
    border-radius: 2px;
}

/* Sidebar Nav Linkleri */
.sidebar .nav-link {
    padding: 12px 15px;
    /* Dikey padding'i artırarak daha rahat tıklama alanı */
    color: var(--text-color-dark);
    /* Koyu metin rengi */
    border-radius: 5px;
    margin-bottom: 8px;
    /* Linkler arasında daha fazla boşluk */
    transition: all 0.3s ease;
    /* Hover ve aktif durum geçişleri için animasyon */
    font-weight: 500;
    /* Biraz daha kalın metin */
    display: flex;
    /* İkon ve metni hizalamak için */
    align-items: center;
    /* Dikeyde ortala */
}

/* Sidebar Nav Link Hover Durumu */
.sidebar .nav-link:hover {
    background-color: #e9ecef;
    /* Daha açık gri */
    color: var(--secondary-color);
    /* Hover'da yeni vurgu rengine dönsün */
    transform: translateX(5px);
    /* Hafif sağa kayma efekti */
}

/* Sidebar Nav Link Aktif Durum */
.sidebar .nav-link.active {
    background-color: var(--secondary-color);
    /* Aktif link yeni vurgu rengi arka plan */
    color: #ffffff;
    /* Beyaz metin */
    font-weight: 600;
    /* Daha kalın metin */
    box-shadow: 0 4px 8px rgba(230, 106, 90, 0.2);
    /* Yeni vurgu rengine uygun hafif gölge */
    border-color: var(--secondary-color);
    /* Kenarlık rengi aynı olsun */
}

/* Aktif linkin hover durumu (isteğe bağlı) */
.sidebar .nav-link.active:hover {
    background-color: #d15b4d;
    /* Vurgu renginin biraz daha koyusu */
    color: #ffffff;
    transform: translateX(0);
    /* Sağa kayma olmasın */
}

/* Sidebar ikonları için stil (Eğer ikon kullanırsanız) */
.sidebar .nav-link i {
    margin-right: 10px;
    /* İkon ile metin arasına boşluk */
    font-size: 1.1rem;
    /* İkon boyutu */
}

/* Kurumsal Kartlar (Arka plan görselli, metin önde) */
.kurumsal-card {
    background: linear-gradient(135deg, #fff 80%, #ffe5e0 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(67, 99, 216, 0.10), 0 1.5px 6px rgba(230, 106, 90, 0.08);
    padding: 2.5rem 2.2rem 1.7rem 2.2rem;
    margin-bottom: 2.7rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.kurumsal-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: 40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 40%, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.kurumsal-card:hover {
    box-shadow: 0 16px 48px rgba(67, 99, 216, 0.18), 0 3px 12px rgba(230, 106, 90, 0.13);
    transform: translateY(-4px) scale(1.012);
}

.kurumsal-card h2 {
    color: #222;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: none;
    border-left: 6px solid var(--secondary-color);
    padding-left: 18px;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.kurumsal-card h2::before,
.content-section h2[data-translate="certifications_title"]::before,
.content-section h2[data-translate="references_title"]::before {
    content: "\f02e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-right: 6px;
    opacity: 0.7;
    display: inline-block;
}

.kurumsal-card p {
    color: #333;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    font-size: 1.13rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

/* ... (Diğer CSS kodlarınız) ... */
.content-section {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    margin-bottom: 25px;
    font-weight: 700;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* style.css */

/* ... (Mevcut CSS kodlarınız) ... */

/* Sertifika Görsel Boyutlandırması */
.sertifika-thumbnail {
    width: 180px;
    /* Tüm görseller için sabit genişlik */
    height: 250px;
    /* Tüm görseller için sabit yükseklik */
    object-fit: contain;
    display: block;
    /* Margin auto için block element olmalı */
    margin: 0 auto 10px auto;
    /* Ortalamak ve altına boşluk bırakmak için */
    border: 1px solid #dee2e6;
    /* Hafif bir kenarlık */
    border-radius: 5px;
    /* Köşeleri yuvarla */
    padding: 5px;
    /* İç boşluk */
    /* background-color: #ffffff; /* Görselden kalan boşlukları doldurmak için beyaz arka plan */
}

/* Gerekirse mobil uyumluluk için media query */
@media (max-width: 767.98px) {
    .sertifika-thumbnail {
        width: 150px;
        /* Mobil cihazlarda daha küçük olabilir */
        height: 200px;
    }
}

/* style.css */

/* ... (Mevcut CSS kodlarınız) ... */

/* Hizmetler Sayfası İçin Özel Stiller */
.content-section img.float-start {
    margin-right: 20px;
    /* Sağa boşluk ver */
}

.content-section img.float-end {
    margin-left: 20px;
    /* Sola boşluk ver */
}

/* Sayfa üst başlığı için ek stil */
.content-section h1 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    font-weight: 700;
}

/* Sidebar başlığı için stil */
.sidebar h5 {
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 15px;
}

p {
    font-size: 1.125rem;
    /* Yaklaşık 18px */
    margin-bottom: 1.5rem;
    /* Paragraflar arası boşluk */
}

/* Başlıklar için (örnek olarak h5 ve h2) */
h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Örneğin ana başlıklar */
h2 {
    font-size: 2.2rem;
    /* h2 başlıklarını biraz büyütelim */
    margin-top: 2.5rem;
    /* Önceki içerikle arasına boşluk */
    margin-bottom: 1.2rem;
    /* Kendi içeriğiyle arasına boşluk */
    font-weight: 700;
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

h5 {
    font-size: 1.35rem;
    /* Sidebar başlığı zaten büyümüştü, genel h5'ler için de ayarlanabilir */
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
    /* Yeni, daha açık soft gri */
}

h6 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

/* Section'lar arasında daha belirgin boşluklar */
section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 60%, #eaf0fb 100%);
    border-radius: 12px;
    box-shadow: 0 6px 32px rgba(67, 99, 216, 0.07), 0 1.5px 6px rgba(230, 106, 90, 0.04);
    margin-bottom: 2.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

section:hover {
    box-shadow: 0 12px 40px rgba(67, 99, 216, 0.13), 0 3px 12px rgba(230, 106, 90, 0.08);
    transform: translateY(-4px) scale(1.01);
}

/* Kurumsal içerik başlıklarına ikon ekle (isteğe bağlı, HTML'de <i> eklenirse) */
.content-section h2 i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 2rem;
    vertical-align: middle;
}

/* Kurumsal içerik için animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section section {
    animation: fadeInUp 0.8s cubic-bezier(.39, .575, .565, 1) both;
}

/* Sertifika ve referans kartlarına ekstra efektler */
.sertifika-thumbnail,
.referans-thumbnail {
    box-shadow: 0 2px 12px rgba(67, 99, 216, 0.08);
    border: 2px solid #eaf0fb;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.sertifika-thumbnail:hover,
.referans-thumbnail:hover {
    box-shadow: 0 8px 32px rgba(67, 99, 216, 0.18);
    border-color: var(--secondary-color);
    transform: scale(1.04) rotate(-1deg);
}

/* Referans görseli için özel stil */
.referans-thumbnail {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 10px auto;
    display: block;
}

/* Kurumsal içerik kart başlıkları için ekstra vurgu */
.content-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2.3rem;
    letter-spacing: 0.5px;
    border-left: 6px solid var(--secondary-color);
    padding-left: 18px;
    background: linear-gradient(90deg, #fff 80%, #ffe5e0 100%);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(230, 106, 90, 0.04);
}

/* Kurumsal içerik paragrafları için daha yumuşak görünüm */
.content-section p {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    padding: 18px 22px;
    box-shadow: 0 1px 4px rgba(67, 99, 216, 0.03);
    font-size: 1.13rem;
    margin-bottom: 1.7rem;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
        padding-left: 10px;
    }

    .referans-thumbnail {
        width: 140px;
        height: 90px;
    }

    /* Mobil menüde yazılar kesinlikle beyaz olsun */
    .navbar-nav .nav-link,
    .navbar-nav .dropdown-item {
        color: #fff !important;
    }
}

@media (max-width: 576px) {
    .content-section h2 {
        font-size: 1.1rem;
        padding-left: 6px;
    }

    .content-section p {
        padding: 10px 8px;
        font-size: 1rem;
    }

    .referans-thumbnail {
        width: 90px;
        height: 60px;
    }
}

/* Sidebar nav-link'leriniz için zaten belirli stillerimiz vardı,
   onlar yeterince büyükse dokunmayabilirsiniz. */
.sidebar .nav-link {
    font-size: 1.05rem;
    /* Sidebar linkleri için belki biraz daha büyük yazı */
    /* Diğer mevcut stiller */
}

/* Genel liste elemanları */
ul,
ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    /* Liste işaretçileri için boşluk */
}

ul li,
ol li {
    margin-bottom: 0.5rem;
    /* Liste elemanları arası boşluk */
}

.custom-icon-list {
    list-style: none;
    padding-left: 0;
}

.custom-icon-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-color-dark);
}

.custom-icon-list li i {
    color: var(--secondary-color);
    /* Vurgu renginiz */
    margin-right: 10px;
    font-size: 1.3rem;
    width: 25px;
    /* İkonların hizalanması için */
    text-align: center;
}

.gallery {
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    /* thumbnail sabit yüksekliği */
    object-fit: cover;
    /* görüntüyü orantılı kırpar */
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.gallery-thumb {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    background: #eee;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

.thumb {
    width: 250px;
    height: 160px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s;
}

.thumb:hover {
    transform: scale(1.05);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity .3s;
}

.gallery-modal .gallery-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

.gallery-modal .modal-img {
    display: block;
    max-width: 85vw;
    max-height: 85vh;
    margin: 0 auto;
    box-shadow: 0 0 40px #0009;
    border-radius: 10px;
}

.gallery-modal .close.gallery-close {
    position: absolute;
    top: 32px;
    right: 38px;
    font-size: 55px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    z-index: 2010;
    opacity: 0.90;
    transition: color .2s, opacity .2s;
}

.gallery-modal .close.gallery-close:hover {
    color: #d32f2f;
    opacity: 1;
}

.gallery-modal .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    z-index: 2010;
    opacity: 0.7;
    transition: color .2s, opacity .2s;
}

.gallery-modal .arrow.left-arrow {
    left: 38px;
}

.gallery-modal .arrow.right-arrow {
    right: 38px;
}

.gallery-modal .arrow:hover {
    color: #d32f2f;
    opacity: 1;
}

.gallery-modal {
    animation: fadeInUp .38s cubic-bezier(.39, .575, .565, 1) both;
}

.gallery-row .gallery-thumb-wrapper {
    width: 180px;
    height: 180px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    display: block;
    cursor: pointer;
}

/* Artık eski .modal ve .modal-img burada kullanılmıyor! */


/* Mobilde galeri görselleri arası ve sağ kenar boşlukları - imalatlarımız uyumu için */
@media (max-width: 768px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin: 0;
    display: block;
    max-width: 100%;
  }

  /* Bootstrap row/col karışımını baskıla */
  .gallery-row .row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
  .gallery-row .col-6 {
    flex: 0 0 calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
    margin: 0;
    padding: 0;
  }
  .gallery-thumb-wrapper,
  .gallery-thumb {
    width: 100% !important;
    height: 110px !important;
    object-fit: cover;
  }
}

/* === FOOTER GERÇEK BAŞLIKLAR (sırayla; link, sosyal başlık, açıklama) === */
.footer-section .footer-links {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
    width: 100%;
    justify-items: center;
    align-items: flex-start;
    padding: 0 8px;
}

@media (max-width: 992px) {
    .footer-section .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 18px;
    }
}
@media (max-width: 576px) {
    .footer-section .footer-links {
        grid-template-columns: 1fr;
        gap: 14px 0;
    }
}

.footer-section .footer-link-red.footer-head-link {
    color: #d32f2f !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    margin-top: 18px !important;
    margin-bottom: 32px !important;
    line-height: 1.22;
    letter-spacing: 0em;
    border-radius: 3px;
    display: block;
    background: none !important;
    text-decoration: none !important;
    text-align: center;
    padding: 3px 0 3px 0;
}

.footer-section .footer-link-red.footer-head-link {
    color: #d32f2f !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    margin-top: 18px !important;
    margin-bottom: 32px !important;
    line-height: 1.22;
    letter-spacing: 0em;
    border-radius: 3px;
    display: block;
    background: none !important;
    text-decoration: none !important;
}

/* Hover ve focus efektleri kaldırıldı */

/* Kaldırılan nth-child font farklılığı, tutarlı tek boyut için */

@media (max-width: 992px) {
    .footer-section .footer-links {
        flex-wrap: wrap !important;
    }

    .footer-section .footer-link-red.footer-head-link {
        font-size: 1.18rem !important;
        margin-bottom: 14px !important;
        padding-bottom: 2px;
    }
}

.footer-section .footer-desc {
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.18rem;
    margin-top: 8px;
    margin-bottom: 15px;
    letter-spacing: .01em;
}

.footer-section .footer-social-title {
    color: var(--secondary-color) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    margin-top: 8px;
    margin-bottom: 20px;
}