@font-face {
    font-family: 'AmsiProNarw';
    src: url('font/AmsiPro-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    font-family: 'AmsiProNarw', sans-serif;
    height: 100%;
    margin: 0;
}

    body.layout {
        min-height: 100vh; /* ekran boyu */
        display: flex;
        flex-direction: column;
    }


.main {
    flex: 1 0 auto;
}
/* içerik kalan alanı doldurur */
footer {
    margin-top: auto;
}
/* footer’ı alta iter */

/* Genel Stil Ayarları */
/*body {
   
    margin: 0;
    padding: 0;
    box-sizing: normal;
}*/

p {
    font-family: 'AmsiProNarw', sans-serif;
    font-weight: normal;
}

h1, h2 {
    font-family: 'AmsiProNarw', sans-serif;
    font-weight: bold;
}

.topbar {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.topbar-content {
    padding-left: 20%;
    padding-right: 25%;
    width: 100%;
}

/* Butonların Boyutunu Küçültme */
.topbar .buttons .btn {
    font-weight: bold;
    padding: 3px 8px;
    font-size: 0.85rem; /* Buton yazı boyutu küçültüldü */
    border-radius: 0; /* Düz köşeler */
}

/* Dil Seçenekleri Boyutunu Küçültme */
.topbar .dropdown-toggle {
    border: none;
    background-color: transparent;
    color: #212529;
    font-size: 0.85rem; /* Dil seçeneği yazı boyutu küçültüldü */
    padding: 3px 8px; /* İç boşluk ayarlandı */
    margin-top: 0px;
}

/* Dropdown Menünün Radius'u Kaldırma */
.topbar .dropdown-menu {
    min-width: 150px;
    border-radius: 0; /* Radius'u kaldır */
    box-shadow: none; /* Gölgeyi kaldır */
}

.topbar .dropdown-item {
    font-size: 0.85rem; /* Dropdown içindeki yazı boyutu küçültüldü */
}

.topbar .dropdown-item:hover {
    background-color: #f1f1f1;
}

/* Sosyal Medya İkonlarının Boyutunu Küçültme */
.social-icons a {
    color: #212529;
    font-size: 1rem; /* İkonların boyutu küçültüldü */
    margin-right: 8px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #0061a8;
}

/* Mail Adresi Boyutunu Küçültme */
.topbar .fa-envelope {
    margin-right: 5px;
}

.topbar span {
    font-size: 0.85rem; /* Mail adresi yazı boyutu küçültüldü */
}

/* Mobil Görünüm Ayarları */
@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column; /* Elemanları alt alta sıralamak için flex yönü değiştirildi */
        padding-left: 10%; /* Mobilde padding ayarlandı */
        padding-right: 10%; /* Mobilde padding ayarlandı */
        text-align: center; /* Elemanları ortalamak için */
    }

    .buttons {
        margin-bottom: 10px;
    }

    .right-section {
        margin-top: 10px;
        flex-direction: column; /* Sağdaki elemanları alt alta sıralamak için flex yönü değiştirildi */
        text-align: center; /* Elemanları ortalamak için */
    }

    .right-section .dropdown,
    .right-section .social-icons,
    .right-section span {
        margin-bottom: 10px; /* Elemanlar arasında boşluk bırakıldı */
    }
}

.topbar, .navbar {
/*    position: sticky;*/
    top: 0;
    /*z-index: 1020;*/ /* Üstte kalmasını sağlamak için yüksek bir z-index değeri */
}


/* Butonlar Stil Ayarları */
.custom-btn {
    border-radius: 0;
    padding: 8px 16px;
    font-size: 10px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-transform: capitalize;
}

/* Buton Renkleri */
.btn-primary {
    background-color: #323e48;
    border-color: #323e48;
    color: #fff;
}

.btn-outline-primary {
    border-color: #323e48;
    color: #323e48;
}

.btn-outline-primary:hover {
    background-color: #323e48;
    color: #fff;
}

/* Slider Resim Ayarları */
.carousel-item img {
    height: 600px;
    object-fit: cover;
}

/* Slider Başlık ve Metin Ayarları */
.carousel-caption h5 {
    font-size: 2rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
}

/* Responsive Tasarım Ayarları */
@media (max-width: 767.98px) {
    /* Topbar'ı Gizle */
    .topbar {
        display: none; /* Topbar'ı tamamen gizle */
    }

        /* Topbar Responsive Ayarları */
        .topbar .container-fluid {
            flex-direction: column;
            align-items: center;
        }

    .flags {
        justify-content: center;
        margin-bottom: 10px;
    }

    .buttons {
        justify-content: center;
    }

        .buttons .custom-btn {
            margin-right: 0;
            margin-bottom: 0;
            width: 100%;
        }

            .buttons .custom-btn:last-child {
                margin-bottom: 0;
            }

    /* Slider Resim Yüksekliği Ayarı */
    .carousel-item img {
        height: 300px;
    }

    /* Topbar ve Navbar İçerik Ortak Stil Ayarları */
    .topbar-content {
        padding-left: 5%;
        padding-right: 5%;
    }
}


/* Navbar Ayarları 
.navbar-nav .nav-link {
    font-size: 0.75rem;
    font-weight: 500;  Yazı kalınlığı azaltıldı 
    color: #333;
    padding: 5px 55px;
    transition: color 0.3s;  Arka plan rengi yerine sadece yazı rengi değişecek 
    text-transform: uppercase;


}

.navbar::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #00a0dd;  İnce mavi çizgi 
    position: absolute;
    bottom: 0;
    left: 0;
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #323e48;  Yazı rengi değişimi 
}

 Dropdown Menü Ayarları 
.navbar-nav .dropdown-menu {
    background-color: #212529;  Ters renk için koyu arka plan 
    border-radius: 0;  Köşe yuvarlaması kaldırıldı 
    padding: 10px 0;
    box-shadow: none;  Gölge kaldırıldı 
    text-transform: uppercase;
}

.navbar-nav .dropdown-item {
    font-size: 0.75rem;
    color: #ffffff;  Beyaz yazı rengi 
    padding: 8px 20px;
    transition: color 0.3s, background-color 0.3s;  Renk değişimi için geçiş 
}

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        color: #ffffff;  Hover'da beyaz yazı rengi korunur 
        background-color: #343a40;  Hover sırasında arka plan rengi biraz daha açık gri 
    }

.navbar-nav .dropdown-toggle::after {
    margin-left: 5px;
}

 Dropdown Menülerin Hover ile Açılmasını Sağlar 
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;  Açıldığında konumunu ayarlamak için 
}*/




/* Responsive Tasarım Ayarları */
@media (max-width: 767.98px) {
    /* Navbar'daki menü öğelerini gizle */
    .navbar-nav {
        display: none; /* Menü öğelerini gizle */
    }

    /* Topbar'ı tamamen gizle */
    .topbar {
        display: none;
    }

    /* Hamburger menü ikonunu gizle */
    .navbar-toggler {
        display: none; /* Hamburger menüsünü gizle */
    }

    /* Navbar'daki logo için ayarlamalar */
    .navbar-brand {
        display: block; /* Logonun görünür kalmasını sağlar */
        margin: 0 auto; /* Logoyu ortalar */

    }


}



/* Slider Button Ayarları */
.no-radius {
    border-radius: 0; /* Radius kaldırıldı */
}

/* Slider İçindeki Video Katmanı */
.video-overlay {
    position: absolute;
    top: 45%; /* Videonun ortada yer alması için ayarlandı */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 60%; /* Videonun genişliği ayarlandı */
    max-width: 500px;
    height: auto;
    pointer-events: none; /* Video kullanıcı etkileşimlerinden etkilenmez */
}

.video-overlay video {
    width: 100%;
    height: auto;
    border: none;
}

/* Slider Resim Ayarları */
.carousel-item img {
    height: 600px;
    object-fit: cover;
}

/* Slider Başlık ve Metin Ayarları */
.text-container {
    position: absolute;
    top: 70%; /* Metin ve buton videonun altında olacak şekilde ayarlandı */
    left: 50%;
    transform: translateX(-50%);
    z-index: 11; /* Video katmanının üstünde kalması için z-index ayarlandı */
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.text-container h5, .text-container p {
    margin: 0;
    padding: 2px 0; /* Video ile başlık ve paragraf arasına boşluk eklendi */
}

.text-container h5 {
    font-size: 2rem;
    font-weight: bold;
}

.text-container p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.text-container .btn {
    margin-top: 10px; /* Video ile buton arasına boşluk eklendi */
}

/* Mobil Görünüm Ayarları */
@media (max-width: 767.98px) {
    .carousel-item img {
        height: 300px;
    }

    .video-overlay {
        width: 80%; /* Mobilde videonun genişliği ayarlandı */
        top: 50%; /* Videonun ekranın ortasında kalması sağlandı */
    }

    .text-container {
        bottom: 5%; /* Mobilde metin ve butonun videonun altında olması sağlandı */
        padding: 0 10px; /* Mobilde düzgün yerleşim için */
    }

    .text-container h5 {
        font-size: 1.5rem; /* Mobilde başlık boyutu küçültüldü */
    }

    .text-container p {
        font-size: 1rem; /* Mobilde paragraf boyutu küçültüldü */
    }

    .text-container .btn {
        margin-top: 10px; /* Mobilde buton ile metin arasında boşluk */
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Flexbox düzeni ile eşit yükseklik ve içerik dengesi */
.row {
    display: flex;
    flex-wrap: wrap;
}

.info-box {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 0;
    text-align: left;
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 

    min-height: 100%; 
}

.info-box h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-box p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: auto;
    flex-grow: 1; 
}

.info-box .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 0; 
    margin-top: auto; 
    background-color: #323e48; 
    color: #ffffff; 
    text-align: center;
    align-self: flex-start;
}

.wide-box {
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 0;
}

.wide-box h2 {
    color: #212529;
    font-size: 2rem;
    margin-bottom: 15px;
}

.wide-box p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 20px;
}

.wide-box .btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 0; /* Köşeler köşeli olacak */
}



.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.footer h5 {
    font-size: 1rem;
    color: #212529;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer a {
    color: #323e48;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    margin-right: 15px;
    color: #323e48;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #004a8b;
}

.footer-bottom {
    border-top: 1px solid #e1e1e1;
    padding-top: 0;
}

.footer-bottom p {
    margin-bottom: 5px;
    color: #6c757d;
    font-size: 0.9rem;
}

.footer .form-control {
    border-radius: 0; /* Köşeler köşeli olacak */
}

.footer .btn {
    width: 100%;
    border-radius: 0; /* Köşeler köşeli olacak */
    background-color: #323e48; /* Mavi arka plan */
    color: #ffffff; /* Beyaz yazı rengi */
    border: 1px solid #323e48; /* Mavi kenarlık */
    transition: background-color 0.3s, color 0.3s; /* Geçiş animasyonu */
}

.footer .btn:hover, 
.footer .btn:focus {
    background-color: #ffffff; /* Üzerine gelince beyaz arka plan */
    color: #323e48; /* Üzerine gelince mavi yazı rengi */
    border: 1px solid #323e48; /* Mavi kenarlık */
}


.icon-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.icon-box {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    min-height: 150px; /* Minimum yükseklik belirlenerek kutuların eşit olması sağlanır */
}

.icon-box i {
    font-size: 2rem;
    color: #323e48;
    margin-bottom: 10px;
}

.icon-box p {
    margin: 0;
    color: #212529;
    font-weight: bold;
    flex-grow: 1; /* Metin alanının esnemesini sağla */
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #e9ecef; /* Hover sırasında arka plan rengini değiştirir */
}

/* Kutuların aynı boyda olmasını sağlamak için row içinde flex ayarları */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-2 {
    display: flex;
    align-items: stretch;
}

.icon-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.news-section {
    background-color: #ffffff;
    padding: 0 0;
}

.news-section h2 {
    color: #212529;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.news-box {
    background-color: #f8f9fa;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}

.news-box img {
    margin-bottom: 15px;
}

.news-date {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.news-box h5 {
    color: #323e48;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.news-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #e9ecef; /* Hover sırasında arka plan rengini değiştirir */
}


.cta-section {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Yarı saydam katman */
    z-index: 1;
}

.cta-content {
    background-color: #ffffff;
    padding: 40px;
    z-index: 2;
    position: relative;
}

.cta-content h2 {
    font-size: 2rem;
    color: #212529;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-content p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.cta-content .btn {
    background-color: #323e48;
    color: #ffffff;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 0; /* Radius'u kaldır */
    border: none;
}

.cta-content .btn:hover {
    background-color: #0d6efd;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Ayarları */
@media (max-width: 768px) {
    .cta-content {
        padding: 20px;
        text-align: center;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }
}


.quality-logos-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e1e1e1; /* Üst kenar çizgisi */
    position: relative;
}

.section-title {
    font-size: 1.5rem;
    color: #212529;
    font-weight: bold;
    margin-bottom: 30px;
}

.quality-logo {
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
}

.quality-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Alt çizgi */
.quality-logos-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e1e1e1; /* Alt çizginin rengi */
}

@media (max-width: 768px) {
    .quality-logos-section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 1.25rem;
    }
}


.product-section {
    background-color: #fff; /* Arka plan rengi */
    padding: 100px 0;
   
}

.section-title {
    font-size: 2rem; /* Başlık boyutu büyütüldü */
    color: #212529;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.product-list {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
}

.product-list li {
    margin-bottom: 10px;
}

.product-list a {
    color: #002060;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.product-list a i {
    margin-right: 10px;
    color: #323e48; /* İkon rengi */
}

.product-list a:hover {
    text-decoration: underline;
    color: #004a8b;
}

.cta-section1 {
    background-color: #323e48; /* Mavi arka plan rengi */
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.cta-link1 {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;

    align-items: center;
    justify-content: center;
}



/* Responsive Ayarlar */
@media (max-width: 768px) {
    .product-section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-link {
        font-size: 1rem;
    }
}

.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa00;
    color: #fff;
    z-index: 1000;
    padding: 0;
    display: flex;
    flex-direction: row; /* Butonların yan yana olmasını sağlamak için flex-direction ayarlandı */
}

.footer-btn {
    background-color: #00a0dd;
    color: #fff;
    border: none;
    padding: 10px 0; /* Daha küçük ve şık görünüm için padding küçültüldü */
    font-size: 16px; /* Daha zarif bir görünüm için yazı boyutu küçültüldü */
    cursor: pointer;
    width: 50%; /* Butonların genişliğini %50 yaparak yan yana eşit şekilde yerleştiriyoruz */
    text-align: center;
    text-transform: uppercase;
    border-radius: 0; /* Köşelerin keskin olması için radius kaldırıldı */
}



.fullscreen-menu {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    z-index: 1000; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .fullscreen-menu.open {
        display: flex;
    }


.close-menu-btn {
    position: absolute;
    top: 100px;
    right: 20px;
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 21px;
    cursor: pointer;
    z-index: 1001;
}

    .close-menu-btn i {
        pointer-events: none;
    }



.custom-menu {
    list-style: none;
    padding: 0;
    text-align: center;
}

    .custom-menu li {
        margin: 20px 0;
    }

    .custom-menu a {
        text-decoration: none;
        color: #fff;
        font-size: 24px;
        padding: 10px 20px;
        transition: background-color 0.3s, color 0.3s;
    }

        .custom-menu a:hover {
            background-color: #00a0dd;
            color: #fff;
            border-radius: 5px;
        }


@media (max-width: 767.98px) {
    .mobile-footer {
        display: flex;
        
    }
}

@media (min-width: 768px) {
    .mobile-footer,
    #fullscreenMenu {
        display: none;
    }

 
}


.logo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.logo-item {
    width: 250px;
    margin: 20px;
    text-align: center;
}

.logo-image img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 10px;
    background-color: #fff;
}

.logo-name h3 {
    margin-top: 15px;
    font-size: 1.2em;
    color: #333;
}

.download-links {
    margin-top: 10px;
}

.download-btn {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    background-color: #00a0dd; /* Kurumsal mavi renk */
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .download-btn:hover {
        background-color: #0078a0; /* Hover efekti için koyu mavi */
    }


.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.video-item {
    width: 300px;
    margin: 15px;
    background-color: #f5f5f5;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.video-iframe {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 oranı için */
    overflow: hidden;
}

    .video-iframe iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.video-info {
    padding: 15px;
}

    .video-info h3 {
        font-size: 1.2em;
        color: #333;
        margin-bottom: 10px;
        text-align: left;
    }

    .video-info p {
        font-size: 0.9em;
        color: #777;
        text-align: left;
    }
@media (max-width: 768px) {
    .video-item {
        width: 100%;
        margin: 10px 0;
    }

    .video-info h3 {
        font-size: 1em;
    }

    .video-info p {
        font-size: 0.8em;
    }
}
.catalog-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.catalog-item {
    width: 250px;
    margin: 20px;
    text-align: center;
    background-color: #f5f5f5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.catalog-cover img {
    width: 100%;
    height: auto;
}

.catalog-info {
    padding: 15px;
}

    .catalog-info h3 {
        font-size: 1.2em;
        color: #333;
        margin-bottom: 15px;
    }

.catalog-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.catalog-btn {
    flex: 1; /* Butonların eşit genişlikte olmasını sağlar */
    padding: 10px 0; /* Dikey padding, yatay padding'i sıfırladık */
    text-decoration: none;
    color: #fff;
    background-color: #00a0dd; /* Kurumsal mavi */
    font-weight: bold;
    text-align: center; /* Metni ortalar */
    transition: background-color 0.3s;
}

    .catalog-btn:hover {
        background-color: #0078a0; /* Daha koyu mavi */
    }



@media (max-width: 768px) {
    .catalog-item {
        width: 100%;
        margin: 10px 0;
    }
    .catalog-actions {
        flex-direction: column;
    }

    .catalog-btn {
        margin-bottom: 10px;
    }
}
/* Dil Seçme Arayüzü */
.language-selector {
    text-align: center;
    margin-bottom: 20px;
}

    .language-selector a {
        margin: 0 10px;
        text-decoration: none;
        color: #00a0dd;
        font-weight: bold;
    }

        .language-selector a:hover,
        .language-selector a.selected {
            color: #0078a0;
            text-decoration: underline;
        }

/* Patent Galerisi */
.patent-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.patent-item {
    width: 300px;
    margin: 15px;
    background-color: #f5f5f5;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.patent-image img {
    width: 100%;
    height: auto;
}

.patent-info {
    padding: 15px;
}

    .patent-info h3 {
        font-size: 1.2em;
        color: #333;
        margin-bottom: 10px;
    }

    .patent-info p {
        font-size: 0.9em;
        color: #777;
        margin-bottom: 10px;
        text-align: left;
    }

.patent-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.patent-btn {
    flex: 1;
    padding: 10px 0;
    text-decoration: none;
    color: #fff;
    background-color: #00a0dd;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

    .patent-btn:hover {
        background-color: #0078a0;
    }




/* Responsive Tasarım */
@media (max-width: 768px) {
    .patent-item {
        width: 100%;
        margin: 10px 0;
    }

    .patent-info p {
        text-align: center;
    }

    .patent-actions {
        flex-direction: column;
    }

    .patent-btn {
        margin-bottom: 10px;
    }
}
/* Medya Galerisi */
.media-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;

}

.media-item {
    width: 300px;
    margin: 15px;
    background-color: #f5f5f5;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
}

.media-image img,
.media-video iframe {
    width: 100%;
    height: auto;
}

.media-info {
    padding: 15px;
}

    .media-info h3 {
        font-size: 1.2em;
        color: #333;
        margin-bottom: 10px;
    }

    .media-info p {
        font-size: 0.9em;
        color: #777;
        margin-bottom: 10px;
    }

/* Responsive Tasarım */
@media (max-width: 768px) {
    .media-item {
        width: 100%;
        margin: 10px 0;
    }
}
.modal {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    z-index: 1000;
    padding-top: 160px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9); /* Siyah arka plan, opaklık %90 */
    border-radius:0;
}

/* Modal İçeriği (resim) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Başlık Metni */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

/* Kapatma Butonu */
.close {
    position: absolute;
    top: 100px;
    right: 100px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s;
    cursor: pointer;
}

    .close:hover,
    .close:focus {
        color: #bbb;
    }

/* Responsive Stil */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }

    #caption {
        width: 100%;
    }
}

/* Form ve İletişim Bilgileri */
.contact-container {
    margin-bottom: 50px;
}

    .contact-container .row {
        display: flex;
        flex-wrap: wrap;
    }

    .contact-container .col-md-6 {
        flex: 1;
        min-width: 300px;
        box-sizing: border-box;
    }

.form-section {
    padding-right: 20px;
}

    .form-section label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .form-section input,
    .form-section textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }

    .form-section button {
        background-color: #00a0dd;
        color: #fff;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
    }

        .form-section button:hover {
            background-color: #0078a0;
        }

/* İletişim Bilgileri */
.contact-info {
    padding-left: 20px;
}

    .contact-info h3 {
        margin-bottom: 15px;
    }

    .contact-info p {
        margin-bottom: 10px;
    }

    .contact-info a {
        color: #00a0dd;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

/* Sosyal Medya İkonları */
.social-media {
    padding-left: 20px;
    margin-top: 30px;
}

    .social-media a {
        display: inline-block;
        margin-right: 10px;
    }

    .social-media img {
        width: 40px;
        height: 40px;
    }

/* Butonlar */
.button-container {
    margin-bottom: 50px;
}

    .button-container .row {
        display: flex;
    }

    .button-container .col-md-6 {
        flex: 1;
        text-align: center;
    }

    .button-container .btn {
        display: inline-block;
        width: 80%;
        padding: 15px 0;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
    }

.btn-quote {
    background-color: #00a0dd;
}

.btn-partnership {
    background-color: #0078a0;
}

.button-container .btn:hover {
    opacity: 0.8;
}

/* Haritalar */
.maps-container {
    margin-bottom: 50px;
}

    .maps-container .row {
        display: flex;
        flex-wrap: wrap;
    }

    .maps-container .col-md-6 {
        flex: 1;
        min-width: 300px;
        box-sizing: border-box;
        padding: 10px;
    }

    .maps-container iframe {
        width: 100%;
        height: 300px;
        border: none;
    }

/* Video Alanı */
.announcement-box {
    text-align: center;
    margin-bottom: 50px;
}

    .announcement-box h3 {
        margin-bottom: 20px;
    }

    .announcement-box iframe {
        width: 70%;
        height: 400px;
    }

/* Call to Action Bar */
.cta-bar {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
}

    .cta-bar p {
        margin: 0;
        font-size: 18px;
    }

    .cta-bar a {
        color: #00a0dd;
        text-decoration: none;
        font-weight: bold;
    }

        .cta-bar a:hover {
            text-decoration: underline;
        }

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-container .row,
    .button-container .row,
    .maps-container .row {
        flex-direction: column;
    }

    .form-section,
    .contact-info,
    .social-media,
    .button-container .col-md-6,
    .maps-container .col-md-6 {
        padding: 0;
        text-align: center;
    }

    .form-section {
        padding-right: 0;
    }

    .contact-info {
        padding-left: 0;
    }

    .social-media {
        padding-left: 0;
        margin-top: 20px;
    }

    .button-container .btn {
        width: 90%;
        margin-bottom: 15px;
    }

    .announcement-box iframe {
        width: 100%;
    }
}
/* Ürün Resmi */
.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Ürün İçeriği */
.product-content {
    padding-left: 20px;
}

/* Responsive Tasarım İçin */
@media (max-width: 768px) {
    .product-detail .row {
        flex-direction: column;
    }

    .product-content {
        padding-left: 0;
        margin-top: 20px;
    }
}


/* Ürün Galerisi */
.product-gallery img {
    width: 100%;
    height: auto;
}

/* Ürün Özellikleri */
.product-features {
    list-style-type: none;
    padding: 0;
}

    .product-features li {
        margin-bottom: 10px;
    }

/* Diğer Ürünler Kartları */
.card {
    border: 1px solid #ddd;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.2s;
}

    .card:hover {
        transform: scale(1.02);
    }

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1.1em;
    margin-bottom: 0;
    color: #333;
}

.yaziSite{
    text-transform:capitalize !important
}


