@font-face {
    font-family: 'Outfit';
    src: url('../lib/fonts/Outfit-Black.woff') format('woff'),
         url('../lib/fonts/Outfit-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../lib/fonts/Outfit-Bold.woff') format('woff'),
         url('../lib/fonts/Outfit-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../lib/fonts/Outfit-ExtraBold.woff') format('woff'),
         url('../lib/fonts/Outfit-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../lib/fonts/Outfit-ExtraLight.woff') format('woff'),
         url('../lib/fonts/Outfit-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../lib/fonts/Outfit-Light.woff') format('woff'),
         url('../lib/fonts/Outfit-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../lib/fonts/Outfit-Medium.woff') format('woff'),
         url('../lib/fonts/Outfit-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../lib/fonts/Outfit-Regular.woff') format('woff'),
         url('../lib/fonts/Outfit-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../lib/fonts/Outfit-SemiBold.woff') format('woff'),
         url('../lib/fonts/Outfit-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../lib/fonts/Outfit-Thin.woff') format('woff'),
         url('../lib/fonts/Outfit-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


.bold-text {
    font-family: 'Outfit', sans-serif; /* Kalın yazı */
    font-weight: 900; 
}
.semibold-text {
    font-family: 'Outfit', sans-serif; /* Kalın yazı */
    font-weight: 700; 
}
.semibold2-text {
    font-family: 'Outfit', sans-serif; /* Kalın yazı */
    font-weight: 600; 
}


.regular-text {
    font-family: 'Outfit', sans-serif; /* Normal yazı */
    font-weight: normal; 
}
.semiregular-text {
    font-family: 'Outfit', sans-serif; /* Normal yazı */
    font-weight: 500; 
}

.thin-text {
    font-family: 'Outfit', sans-serif; /* İnce yazı */
    font-weight: 100; 
}

.light-text {
    font-family: 'Outfit', sans-serif; /* İnce yazı */
    font-weight: 200; 
}

.semi-text {
    font-family: 'Outfit', sans-serif; /* İnce yazı */
    font-weight: 300; 
}
.semi2-text {
    font-family: 'Outfit', sans-serif; /* İnce yazı */
    font-weight: 400; 
}

.book-text {
    font-family: 'Outfit', sans-serif; /* İnce yazı */
    font-weight: 200; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif; 
}

body {
    background-color: white;
}

ul {
    margin-bottom: 0;
}
/* Slider Styles */
.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    padding-right: 200px;
    padding-left: 200px;
    padding-top: 30px;
}
@media (max-width: 1520px) and (min-width: 1320px) {
    header {
        padding-left: 100px;
        padding-right: 100px;
    }
}

header.scrolled {
    color: white;
    padding-top: 5px;
    background-color: #000829;
    transition: background-color 0.3s ease, padding-top 0.3s ease;

}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}
.logo img{
    width: 240px;
}
header.scrolled .logo{
    color: white;
    padding-top: 10px;
}


.headericon {
    color: #E50019!important;
    padding-top: 14px;
    padding-left: 15px;
    font-size: 10px;
}
.submenu li{
    display: inline-flex
}
.submenu li a:hover{
    color: #E50019;
}
.submenu li a {
    display: inline-flex;
    transition: padding-left 0.3s ease; /* Yavaşça geçiş yapmasını sağlar */
    font-weight: 500;
    font-size: 14px;
}

.submenu li:hover a {
    padding-left: 10px; /* Yazıyı sağa kaydırır */
}

.navbar {
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    position: relative;
}

.navbar a:hover {
    color: #CCCED4;
}

.navbar .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 200;
}

.navbar a:hover .submenu {
    display: block;
}

.submenu a {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
}



.submenu a i {
    margin-right: 10px;
}

.contact {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1); /* Gri arka plan ve opaklık */
    border-radius: 8px; /* Köşeleri yuvarlatılmış dikdörtgen */
    padding: 10px 10px;
    color: white;
    transition: background-color 0.3s ease; /* Hover geçiş efekti */
    max-width: 300px;
    gap: 10px;
    cursor: pointer;
}
.contact2 {
    display: flex;
    align-items: center;
    border-radius: 8px; /* Köşeleri yuvarlatılmış dikdörtgen */
    padding: 10px 10px;
    color: white;
    transition: background-color 0.3s ease; /* Hover geçiş efekti */
    max-width: 300px;
    gap: 10px;
    cursor: pointer;
    padding-left: 0px;
}

.contact:hover {
    background-color: #00166A; /* Hover durumunda mavi arka plan */
    color: white;
}
.contactfot:hover {
    background-color: #00166A!important; /* Hover durumunda mavi arka plan */
    color: white;
}
.contact-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.contact-info .title {
    font-size: 10px;
    font-weight: 100; /* İnce font */
    color: inherit;
}

.contact-info .phone {
    font-size: 16px;
    font-weight: 500; /* Kalın font */
    color: inherit;
}


/* Dropdown menu visibility */
.navbar li {
    position: relative;
    padding-right: 17px;
}

.navbar li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 200;
    min-width: 150px;
}

.navbar li:hover .submenu {
    display: block;
}

/* Submenu items */
.submenu a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
}



/* Genel liste işaretlerini kaldır */
.navbar, .navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Submenu için özel marker */
.submenu a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
    position: relative;
}

/* Marker (ikon) ayarları */
.submenu a i {
    margin-right: 10px;
    color: #1a2634;
    background-color: white; /* Marker için arka plan rengi */
    border-radius: 50%; /* Yuvarlak bir marker için */
    padding: 4px; /* Marker boyutunu ayarlamak için */
    font-size: 14px; /* Marker boyutu */
    display: inline-block;
}



/* Dropdown menu visibility */
.navbar li {
    position: relative;
}

.navbar li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 200;
    min-width: 150px;
}

/* Dropdown hover açılır menü */
.navbar li:hover .submenu {
    display: block;
}
.submenu li a {
    transition: padding-left 0.3s ease; /* Yavaşça geçiş yapmasını sağlar */
}

.submenu li:hover a {
    padding-left: 10px; /* Yazıyı sağa kaydırır */
}





.beslenme-section {
    background-color: white;
    padding: 100px 0;
    text-align: center;
}
.beslenme-section img {
    max-width: 100%;
    height: auto;
}
.beslenme-section h2 {
    color: #05496B;
    font-size: 45px;
    margin-bottom: 20px;
}
.beslenme-section p {
    color: #474747;
    font-size: 25px;
    margin-bottom: 30px;
}
.beslenme-btn {
    display: flex;
    background-color: #00A12F;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 10px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}
.beslenme-btn:hover {
    background-color: #007B24;
}

.text-left{
    text-align: left;
}



.kategori-section {
    padding-bottom: 150px;
    padding-top: 100px;
    background-color: white;
    border-radius: 20px;
}

.kategori img{
    width: 80%;
} 


.kategori-section {
    width: 100%;
    overflow: hidden; 
    position: relative;
}

.swiper-container {
    width: 100%;
}

.swiper-slide {
    display: flex; 
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.swiper-slide img {
    width: 100%; 
    height: auto; 
    border-radius: 25px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 10; 
    position: absolute; 
}

.swiper-button-next {
    right: 100px; 
    top: 50%; 
    transform: translateY(-50%); 
  
}

.swiper-button-prev {
    left: 70px;
    top: 50%; 
    transform: translateY(-50%); 

}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 11px; 
    color: #A5A5A5; 
    font-weight: 800;
}

.container .urunh2{
    padding-bottom: 10px;
    color: #00166A;
    font-size: 45px;
    text-align: center;
}
.container .urunp{
    color: #474747;
    font-size: 20px;
    padding-bottom: 40px;
    text-align: center;
}

.on-urun{
    z-index: 3;
}
.arka-plan {
    position: absolute;
}
.on-urun:hover{
    transform: scale(1.05);
    transition: transform 0.2s ease; 

}
.alt-bilgi {
    bottom: 0px;
    position: absolute;
    left: 20px;
    color: #05496B;
}

.alt-bilgi p{
    font-size: 10px;
}
.alt-bilgi2 {
    top: 30px;
    position: absolute;
    left: 50px;
    color: #05496B;
}

.alt-bilgi2 p{
    font-size: 10px;
}
.ust-bilgi {
position: absolute;
top: 20px;
left: 30px;
color: white;
background-color: #00A12F;
border-radius: 20px;
padding: 5px 15px;
font-size: 10px;

}
.ust-bilgi2 {
position: absolute;
top: 20px;
right: 30px;
color: #00A12F;
background-color: white;
border-radius: 20px;
padding: 5px 15px;
font-size: 10px;

}
.btn-urun {
    bottom: 10px;
    position: absolute;
    right: 30px;
    background-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease; 
}

.btn-urun .fa-angle-right {
    z-index: 99999;
    color: #05496B;
    font-size: 14px; 
    transition: transform 0.3s ease;
}

.btn-urun .fa-angle-right:hover {
    color: white;
}

.btn-urun:hover {
    background-color: #05496B;
    color: white;
    transform: translateX(5px); 
}

.btn-urun:focus, .btn-urun:hover, .btn-urun:visited, .btn-urun:link, .btn-urun:active {
    text-decoration: none; 
}

.btn-urun:hover ~ .on-urun {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.on-urun:hover ~ .btn-urun {
    background-color: #05496B;
    color: white;
    transform: translateX(5px); 
}


.kategoris:hover .btn-urun {
    transform: translateX(5px); 
    background-color: #05496B;
}
.kategoris:hover .btn-urun .fa-angle-right {
 
    color: white;
}

/* İkon hover durumunda sağa kayma */
.on-urun:hover ~ .btn-urun .fa-angle-right,
.btn-urun:hover .fa-angle-right {
    color: white;
    transform: translateX(2px); 
}

.kategori-section {
width: 90%;
margin: auto;
overflow: hidden;
position: relative;
}
.rowkategori {
    padding-top: 40px;
    text-align: center;

}

.card-container {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.card-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto; /* Yüksekliği orijinal görsel boyutunda olacak şekilde düzenledik */
    transition: transform 0.5s ease-in-out; /* Yavaş geçiş */
}

.card-image img {
    width: 100%;
    height: auto; /* Görsel yüksekliğini orijinaline yakın tutmak için auto olarak ayarladım */
    object-fit: cover; /* Görselin en-boy oranını koruyarak kapsaması için */
    transition: transform 0.5s ease-in-out; /* Yavaş geçiş */
}

.card-image:hover img {
    transform: scale(1.03); /* Daha az büyüme */
}

.card-image .icon-btn-arrow {
    position: absolute;
    top: 10px;  /* Yukarıya yakın */
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    cursor: pointer;
    z-index: 10; /* Icon'u görselin üstünde göstermek için z-index */
    transition: color 0.3s ease;
    padding-top: 30px;
    font-size: 15px;
    color: #E50019;
}


.product-title {
    position: absolute;
    top: 75px;  /* Ok simgesinin hemen altı */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    z-index: 10; /* Yazıyı icon'un üstünde göstermek için z-index */
    transition: opacity 0.3s ease;
}

/* Görsel üzerine gelindiğinde icon ve yazı kaybolmaması için opacity'yi koruyalım */
.card-image:hover .icon-btn-arrow,
.card-image:hover .product-title {
    opacity: 1;  /* Icon ve yazı görsel üzerine gelindiğinde kaybolmaz */
}



.swiper-container {
width: 100%;
}

.swiper-slide {
position: relative; 
}

.slide-content {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}

.on-urun {
z-index: 3; 
width: 100%; 
height: auto; 
}

.arka-plan {
position: absolute;
top: 0;
left: 0;
width: 100%; 
height: 100%; 
z-index: 1; 
}

.ust-bilgi, .ust-bilgi2, .alt-bilgi {
position: absolute;
z-index: 2;
}

.btn-urun {
position: absolute;
right: 30px;
bottom: 10px;
z-index: 4;
}

.carousel-item img {
    width: 100%;
    height: auto;
}
/* Slider container içine responsive özellik eklemek için */
#sliderExample {
    max-width: 100%;
    height: auto;
}

    .slider-text {
position: absolute;
top: 47%;
left: 14%;
transform: translateY(-50%);
color: white;

text-align: left;
z-index: 1;
}

.slider-text h4{
    font-size: 15px;
    line-height: 45px;
    text-transform: uppercase;
}
.slider-text h2{
    font-size: 40px;
}
.slider-text p{
    padding-top: 10px;
    font-size: 11px;
    font-weight: 200;
}



.carousel-controls {
    position: absolute; /* Konumlandırmayı sağlamak için */
    bottom: 50%; /* Alt kenara %20 boşluk bırak */
    left: 7%; /* Sol kenara hizalama */
    right: 7%; /* Sağ kenara hizalama */
    z-index: 1; /* Diğer öğelerin üstünde görünmesini sağlar */
    display: flex; /* Butonları yatayda hizalamak için flex kullanıyoruz */
    justify-content: space-between; /* Sol ve sağ buton arasında boşluk bırakır */
    align-items: center; /* Butonları dikeyde ortalar */
    padding: 0 10px; /* Butonlara yatayda boşluk ekler */
}

.carousel-control-prev {
    position: relative;
    width: 40px;
    height: 40px;
    opacity: 1;
}

.carousel-control-next {
    position: relative;
    width: 40px;
    height: 40px;
    opacity: 1;
}
/* Dotların genel stilini özelleştirme */
.carousel-indicators {
    position: absolute;
    bottom: 10px; /* Yükseklikten uzaklık */
    bottom: 10%;
    transform: translateX(-50%); /* Ortalamak için */
    z-index: 2; /* Diğer öğelerin üzerinde görünmesini sağlar */
}

/* Dotların genel tasarımı */
.carousel-indicators button {
    background-color: #E50019; /* Dotların arka plan rengi */
    border: none; /* Çerçeveyi kaldırır */
    width: 12px; /* Dotların genişliği */
    height: 12px; /* Dotların yüksekliği */
    border-radius: 50%; /* Daire şeklini verir */
    margin: 0 4px; /* Aralarındaki mesafeyi ayarlamak için */
    opacity: 0.7; /* Dotların saydamlığını ayarlamak */
    transition: background-color 0.3s ease, opacity 0.3s ease; /* Yumuşak geçiş efekti */
}

/* Aktif dot'un rengi */
.carousel-indicators .active {
    background-color: #E50019; /* Aktif dot beyaz olacak */
    opacity: 1; /* Tam görünür olacak */
}


.carousel-item {
    position: absolute; /* Slider'ları üst üste yerleştiriyoruz */
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity 1s ease-in-out; /* Opaklık geçişi */
    width: 100%;
    height: 100%;
}

.carousel-item.active {
    opacity: 1; /* Aktif slider tamamen görünür */
    position: relative; /* Aktif slider'ın konumunu düzgün göstermek için */
}

.carousel-inner {
    position: relative; /* Altındaki öğelerin birbirinin üstüne gelmesini sağlamak için */
}

.carousel-indicators button {
    background-color: rgb(255, 255, 255, 1); /* Dots'un rengi */
}

/* İsterseniz slider'ın opacity'si geçerken biraz yumuşaklık eklemek için */
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    transition: opacity 1s ease-in-out;
}




.fa {
font-size: 27px;
color: white;

}

.neden-vita {
    background-image: url('../img/back.png');
    background-size: cover;
    background-position: center;
   padding-top:100px ;
    text-align: center;
}

.main-title {
    font-size: 65px;
    color: #05496B;
    margin-bottom: 8px;
}

.main-text {
    font-size: 14px;
    color: #05496B;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top:100px;
    padding-bottom: 40px;
}

.feature-item {
    width: 25%;
    text-align: center;
    z-index: 2;
    transition: transform 0.3s ease; 
}
.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    
}

.feature-item h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 10px;
    color: white;
    font-weight: 200;
}

.feature-back{
    position: absolute;
    z-index: 1;
    width: 85%;
    padding-bottom: 30px;
}


/* TOP-BAR */

.top-bar img {
    width: 100%; 
    height: auto; 
    display: block; 
}
  
/* Resmi kapsayan div */
.top-bar {
    position: relative;
    width: 100%;
}

.top-bar h3{
    font-size: 30px;
}
/* Sol taraftaki başlık (Hakkımızda) */
.top-bar .left-side {
    position: absolute;
    top: 72%;
    left: 17%;
    transform: translate(-50%, -50%); /* Ortalamak için */
    color: white; /* Yazının rengini beyaz yapalım */
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

/* Sağ taraftaki navigasyon metni */
.top-bar .right-side {
    position: absolute;
    bottom: 10px;
    right: 10%;
    color: white; /* Yazı rengi */
    font-size: 10px;
}

/* FOOTER */



/* HAKKIMIZDA */
.white {
    background-color: white;
}
.hakkimizda p{
    color: #707070;
    font-size: 19px;
}
.hakkimizda h2{
    font-size: 50px;
}
.hakkimizda .pv2{
    font-size: 13px;
}
    
/* MİSYON */
.misyon {
    padding-right: 150px;
    padding-left: 150px;

}
.misyon-img {
    border-radius: 25px;
}

.top-text {
    text-align: center;
    padding: 0;
    color: white;
    font-size: 8px;
    margin-bottom: 0;
}

/* KATALOG */

.katalog {
    padding: 100px 150px;
}
.katalog-img {
    width: 70%;
}
.kat-img {
    background-color: #f2faf4;
    border-radius: 15px;
    margin-bottom: 20px;


}
.katalog-col p {
    color: #05496B;
    margin-bottom: 10px;
}
.katalog-col {
display: flex; 
flex-direction: column; 
align-items: center; 
text-align: center; 
}

/* KATEGORİ */

.kategori-sections {
    padding: 100px 150px;
    position: relative;
    border-radius: 20px;
}

.background2 {
    max-width: 100%;
    border-radius: 35px;
    position: relative;
}
.background {
    max-width: 100%;
    border-radius: 25px;
    position: relative;
}

.centered-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 80%;
}
.kategoris {
    margin-top: 50px;
}

.kategoris2:hover .centered-img {
    transform: translate(-50%, -50%) scale(1.1); /* Zoom the image */
}

/* ÜRÜN DETAY*/

.alt-bilgi-detay{
    top: 100px;
    position: absolute;
    left: 20px;
    color: #05496B;
}
.alt-bilgi-detay h2{
    font-size: 40px;
}
.alt-bilgi-detay p{
    font-size: 15px;
}


.tables{
    top: 250px; position: relative; left: 13px;
    text-align: center;
}
.table1 thead {
    background-color: #707070;
}
.table1 thead th {
    font-size: 11px;
    color: white;
}
.table1 tbody td {
    font-size: 11px;
}
.table2 {
    position: relative;
    top: 280px;
    left: 13px;
}

.table2 thead {
    background-color: #05496B;
    text-align: left;
}
.table2 thead th {
    font-size: 11px;
    color: white;
    text-align: left;
}
.table2 tbody td {
    font-size: 11px;
    text-align: left;
}
.table td, .table th {
    padding: 5px;
}

.tablo-area {
    margin-top: 100px;
}
.table3 {
    text-align: center;
}

.table3 thead {
    background-color: #00A12F;
    text-align: center;
}
.table3 thead th {
    font-size: 11px;
    color: white;
}
.table3 tbody td {
    font-size: 11px;
    text-align: left;
    
}
.tablo-area h4{
    text-align: center;
    color: #666666;
    font-size: 18px;
}

/* BELGELER */

.belgeler {
    background-color: white;
    padding-bottom: 80px;
}
.belgeler img {
height: auto;
display: block;
padding: 10px;
max-width: 70%;
transition: transform 0.3s ease; /* Hover için geçiş süresi */
cursor: pointer;

}

.belgeler img:hover {
transform: scale(1.1); /* Resmi %10 büyüt */
}

/* Tam ekran modal için stil */
/* Modal için arka plan rengini ayarla */
.modal {
display: none;
position: fixed;
z-index: 999;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color:rgb(4 39 93 / 90%);
z-index: 9999999999;
}

.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 400px;
}

.modal-content, .close {
animation-name: zoom;
animation-duration: 0.6s;
}

/* Kapatma tuşu için arka plan rengi ayarı */
.close {
position: absolute;
top: 15px;
right: 35px;
color: #00166A;
font-size: 40px;
font-weight: bold;
background-color: white; /* Kapatma butonunun arka plan rengi #00A12F */
padding: 5px 15px;
border-radius: 5px;
transition: 0.3s;
}

.close:hover,
.close:focus {
color: white;
text-decoration: none;
cursor: pointer;
}


@keyframes zoom {
from {transform: scale(0)}
to {transform: scale(1)}
}

/* Kapatma tuşu */
.close {
position: absolute;
top: 15px;
right: 35px;
color: #00166A;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
opacity: 1;
}


.belge {
display: flex;
justify-content: center;
}

.belgeler h4 {
text-align: center;
color:#05496B;
padding-left: 100px;
padding-right: 100px;
font-size: 45px;
padding-bottom: 50px;
}
.belge-row {
padding-left: 90px;
padding-right: 90px;
margin: 0;
}

.galeri-img {
    border-radius: 20px;
}
.modal-content2 {
    max-width: 800px;
}

.haber-img {
    width: 100%;
}
.haber-col {
    display: flex;
    flex-direction: column;
    justify-content: left;
    text-align: left;
}
.haber-col h5{
    color:#05496B;
    font-size: 15px;
    padding-top: 15px;
    font-weight: 600;
}
.haber-col p{
    color: #707070;
    font-size: 12px;
    padding-top: 10px;
    margin-bottom: 5px;
}
.haber-col a:hover {
    text-decoration: none;
}
.haberdetay{
    padding-left: 100px;
    padding-right: 100px;
}
.haberdetay-img {
    border-radius: 15px;
}

.social-icons2 {
    margin-top: 15px;
}


.social-icons2 a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #05496B;
    margin-right: 10px;
    border: 1px solid #05496B;
    transition: background-color 0.3s ease;
}

.social-icons2 a:hover {
    background-color: #05496B;;
    color: white;
}


.contact-col{
    padding-left: 100px;
    text-align: left;
}
.iletisim{
    padding-top: 100px;
    padding-bottom: 100px;
}
.blue  {
    color:#05496B;
}



.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold; 
    margin-bottom: 0px; 
    font-size: 10px;
    font-weight: 200;
}

.form-group {
    margin-bottom: 10px; 
}

.form-control {
    width: 100%;
    padding: 8px;
    font-size: 12px;
    font-weight: 300;
    border-radius: 10px;
}

textarea {
    resize: vertical; 
}

.btn-primary {
    background-color: #00A12F;
    color: white; 
    padding: 10px 20px;
    border: none;
    border-radius: 23px; 
    cursor: pointer; 
    transition: background-color 0.3s;
    float: right; 
}

.btn-primary:hover {
    background-color: #007B24; 
}

.kvkk-container {
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 10px; 
}

.kvkk-container input[type="checkbox"] {
    margin-right: 5px; 
}


.contant-col h2{
    color: #05496B;
    font-size: 22px;
}

.contant-col p {
    color: #707070;
    font-size: 11px;
}
.form-control::placeholder {
    font-size: 12px; 
    font-weight: 300;
}
.gonder-btn{
    position: relative;
    font-size: 10px;
    font-weight: 100;
}
.kvkk {
    display: flex;
    align-items: center;
}







/* YENİ SİTE ÇELİKSAN */
.btn-urun-incele {
    display: inline-flex;
    align-items: center;
    background-color: #E50019;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 13px;
    transition: padding-right 0.3s ease, transform 0.3s ease;
}

.reversebuton {
    display: inline-flex;
    align-items: center;
    background-color: #F5F5F5;
    color: #E50019;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 13px;
    transition: padding-right 0.3s ease, transform 0.3s ease;
}


.btn-urun-incele i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Hover efekti sırasında yazı rengini ve alt çizgiyi korumak için */
.btn-urun-incele:hover {
    color: white; /* Yazı rengini beyaz yap */
    text-decoration: none; /* Alt çizgiyi kaldır */
    padding-right: 30px;
}

.btn-urun-incele:hover i {
    transform: translateX(10px); /* Ok simgesini sağa kaydır */
}

.reversebuton:hover {
    color: #E50019; /* Yazı rengini beyaz yap */
    text-decoration: none; /* Alt çizgiyi kaldır */
    padding-right: 30px;
}


.bilgi-section {
    background-color: white;
    padding: 100px 0;
    text-align: center;
}
.bilgi-section img {
    max-width: 100%;
    height: auto;
}
.bilgi-section h4 {
    color: #474747;
    font-size: 32px;
    margin-bottom: 20px;
}
.bilgi-section p {
    color: #474747;
    font-size: 25px;
    margin-bottom: 30px;
}

.bilgi-section .container .row{
    padding-top: 50px;
}

/* Anasayfa satış sonrası destek*/
.custom-box-bg {
    background-size: contain; /* Görselin tamamı görünsün */
    background-position: center; /* Görseli merkeze hizala */
    background-repeat: no-repeat; /* Görseli tekrar etme */
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    color: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px; /* Minimum yükseklik belirle */
}

/* Metin ve ikon */
.custom-title {
    font-size: 40px;
    color: white;

    margin-bottom: 10px;
}

.custom-text {
    font-size: 12px;
    margin-bottom: 15px;
    color: white!important;
   
}
.icon-technic-service {
    color: white    ;
}
.custom-box-content .icon-customer-line {
    color: white;
}

.custom-icon-btn {
    font-size: 24px;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.custom-icon-btn:hover {
    transform: scale(1.2);
    color: #f0ad4e;
}

/* İkinci kolon */
.icon-customer-line {
    font-size: 40px;
    margin-bottom: 10px;
}

.custom-number {
    font-size: 24px;
    font-weight: bold;
}

/* Buton */
.custom-button {
    background-color: white;
    color: inherit;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-button:hover {
    background-color: #f0ad4e;
    color: white;
}

.custom-box {
    min-height: 390px;
    border-radius: 20px;
   
}
.custom-box-content .btn-urun-incele {
    background-color: rgb(255, 255, 255, 0.3);
}


/* Blog anasayfa */
.swiper-button-next{
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
}
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}
.kategori-section .swiper-container {
width: 100%;
overflow: hidden; /* Fazla kayan slaytların görünmesini engeller */
}

.kategori-section .swiper-slide {
flex: 0 0 auto;
width: 33.33%; /* Her bir slaytın genişliği 3 slide gösterecek şekilde */
box-sizing: border-box;
}

.kategori-section .swiper-wrapper {
display: flex;
transition: transform 0.3s ease-in-out;
}  
.blogbtn {
color: #00166A;
background-color: transparent;
padding-left: 0px;
font-size: 14px;
}
.blogbtn:hover {
color: #00166A;
background-color: white;
}
.blogicon{

}
.blogicon {
transition: transform 0.3s ease; /* Yumuşak geçiş ekler */
}

.blogicon:hover {
transform: translateX(5px); /* Sağ kaydırmak için 5px */
}
.custom-slider-date{
margin-top: 20px;
background-color: #F2F3F7;
color:#00166A;
border-radius: 15px;
padding: 10px;
padding: 8px 15px;
font-size: 12px;
margin-bottom: 15px;
}
.custom-slider-title{
font-size: 24px;
color: #474747;
text-decoration: none;
}

a:hover .custom-slider-title{
text-decoration: none;
}
.swiper-slide a {
display: block;
overflow: hidden;
border-radius: 10px; /* Görselin yuvarlak kenarları */
}

/* Görselin normal hali */
.swiper-slide a img {
transition: transform 0.3s ease-in-out; /* Yavaş geçiş efekti */
border-radius: 10px; /* Görselin yuvarlak kenarları */
}

/* Hover durumunda görselin büyümesi */
.swiper-slide a img:hover {
transform: scale(1.1); /* Görseli %10 büyüt */
}
.btn-urun-incele i{
margin-left: 10px;
transition: transform 0.3s ease;
}



/* mobile header ve slider*/

/* Slider Responsive Styles */
@media (max-width: 1160px) {
    .slider-text {
        left: 22%;
        top: 50%;
        text-align: center;
    }

    .slider-text h4 {
        font-size: 14px;
        line-height: 35px;
    }

    .slider-text h2 {
        font-size: 50px;
    }

    .carousel-controls {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .slider-text {
        width: 90%;
        left: 5%;
        top: 50%;
        text-align: center;
    }

    .slider-text h4 {
        font-size: 12px;
        line-height: 25px;
    }

    .slider-text h2 {
        font-size: 42px;
    }

    .carousel-controls {
        left: 38%;
        right: 38%;
        bottom: 20%;
    }

    .carousel-indicators {
        bottom: 5%;
        left: 35%;
    }

    .btn-urun-incele {
        padding: 20px 30px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .slider-text h4 {
        font-size: 10px;
        line-height: 20px;
    }

    .slider-text h2 {
        font-size: 20px;
    }
    .slider-text h4 {
        font-size: 12px;
        line-height: 25px;
    }

    .slider-text h2 {
        font-size: 42px;
    }

    .carousel-controls {
        left: 38%;
        right: 38%;
        bottom: 20%;
    }
    .carousel-indicators {
        bottom: 5%;
        left: 35%;
    }


}


 /* Header için breakpoint güncellemesi */
 @media (max-width: 1300px) {
    .hamburger-menu {
        display: flex;
    }

    header {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    header .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #1a2634;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    header .navbar.active {
        right: 0;
    }

    header .navbar ul {
        flex-direction: column;
        gap: 20px;
    }

    header .navbar li {
        width: 100%;
    }

    header .submenu {
        position: static !important;
        width: 100%;
        display: none;
        padding-left: 20px;
        margin-top: 10px;
    }

    header .submenu.active {
        display: block;
    }

    header .contact {
        display: none;
    }
}
/* Mobil iletişim ikonu için stil */
.mobile-contact-icon {
    display: none;
    position: fixed;
    right: 80px; /* Hamburger menüden önce */
    top: 20px;
    color: white;
    text-decoration: none;
    z-index: 999; /* Hamburger menüden daha yüksek */
    transition: color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    z-index: 9999;
}

.mobile-contact-icon i {
    font-size: 24px;
}



.mobile-contact-icon:hover {
    background-color: #00166A;
}
/* Responsive davranış */
@media (max-width: 1300px) {
    .mobile-contact-icon {
        display: block;
    }
    
    header .contact {
        display: none;
    }
}

/* Küçük ekranlar için ince ayar */
@media (max-width: 576px) {
    .mobile-contact-icon {
        right: 70px;
        top: 18px;
    }
    
    .mobile-contact-icon i {
        font-size: 22px;
    }
}

/* Hamburger Menu Stili - varsayılanda gizli */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    right: 20px;
    top: 30px;
    
}

.hamburger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
}

/* Sadece mobil görünümde yapılacak değişiklikler */
@media (max-width: 992px) {
    .hamburger-menu {
        display: flex;
    }

    header {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    header .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #1a2634;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    header .navbar.active {
        right: 0;
    }

    header .navbar ul {
        flex-direction: column;
        gap: 20px;
    }

    header .navbar li {
        width: 100%;
    }

    header .submenu {
        position: static !important;
        width: 100%;
        display: none;
        padding-left: 20px;
        margin-top: 10px;
    }

    header .submenu.active {
        display: block;
    }

    header .contact {
        display: none;
    }

    /* Hamburger Menu Aktif Durumu */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    /* Mobilde dropdown ok işareti */
    header .navbar .fa-angle-down {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    header .navbar .has-submenu.active .fa-angle-down {
        transform: translateY(-50%) rotate(180deg);
    }
}

@media (max-width: 576px) {
    header .navbar {
        width: 100%;
        max-width: none;
    }

    header .logo img {
        width: 160px;
    }
}

/* Header için breakpoint güncellemesi */
@media (max-width: 1320px) {
    .hamburger-menu {
        display: flex;
    }

    header {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    header .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #1a2634;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    header .navbar.active {
        right: 0;
    }

    header .navbar ul {
        flex-direction: column;
        gap: 20px;
    }

    header .navbar li {
        width: 100%;
    }

    header .submenu {
        position: static !important;
        width: 100%;
        display: none;
        padding-left: 20px;
        margin-top: 10px;
    }

    header .submenu.active {
        display: block;
    }

    header .contact {
        display: none;
    }
}









/* footer */

.site-footer {
    background-color: #000829;
    color: white;
    padding: 40px 0 0 0;
    font-family: 'Outfit', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 15px;
    padding-top: 50px;
}



/* Logo ve İletişim Bilgileri */
.footer-left {
    flex: 0 0 25%;
}

.footer-logo {
    width: 240px;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 5px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Menü Bölümü */
.footer-nav {
    flex: 0 0 75%;
    display: flex;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    padding: 0 20px;
}

.footer-col h5 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #E50019;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    padding-right: 20px;
}


.social-icons a i{
    font-size: 30px;
}
.social-icons a i:hover{
    color: #E50019;
}
/* Alt Bilgi */
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.copyright p, .legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}
.copyright p, .legal-links a:hover {
    text-decoration: none;
}

.legal-links {
    display: flex;
    gap: 20px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left {
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
    }

    .footer-col {
        flex: 0 0 100%;
        padding: 0;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .legal-links {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 15px;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 22px;
}
@media (max-width: 992px) { /* Mobil cihazlar için */
    .footer-top {
        flex-direction: column; /* Yönü dikey yap */
        align-items: center; /* İçerikleri ortala */
    }
}
.custom-line {
width: 71%; /* Çizginin genişliği */
height: 1px; /* Çizginin kalınlığı */
background-color: rgb(219, 219, 219, 0.5); /* Çizginin rengi */
margin: 20px auto; /* Ortalamak için auto kullanılır ve üst/alt boşluk için 20px */

}
.bilgi-section {
    background: linear-gradient(to top, #F5F5F5 66%, transparent 66%);/* Gri arka planın üst kısmı %66, alt kısmı şeffaf */
    border-radius: 30px; /* Köşe yuvarlama */
    margin-left: 30px;
    margin-right: 30px;
}
.katcontainer * {
    padding-bottom: 40px!important;
}
.katcontainer p {
    font-size: 18px;
}


/* Banner */
.bannericon {
    font-size: 20px;
    padding-right: 20px;
}



/* Hakkımızda */ 
.hakkimizdah5{
    padding-right: 37px;
    font-size: 30px;
    color: #474747;
    padding-bottom: 50px;
}
.hakkimizdap {
    font-size: 16px!important;
}

/* Top-bar Responsive Styles */
.top-bar {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.top-bar img {
    width: 100%;
    object-fit: cover; /* Görseli kırpmadan doldurur */
    object-position: center; /* Görseli ortalar */
}

.top-bar h3 {
    font-size: 30px;
}

.left-side {
    position: absolute;
    top: 72%;
    left: 17%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

.right-side {
    position: absolute;
    bottom: 10px;
    right: 10%;
    color: white;
    font-size: 10px;
    z-index: 2;
}

/* Responsive Ayarlar */
@media (max-width: 1200px) {
    .left-side {
        left: 20%;
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .top-bar img {
        height: 250px;
    }

    .left-side {
        left: 25%;
        font-size: 35px;
        top: 65%;
    }

    .right-side {
        right: 5%;
    }
}

@media (max-width: 768px) {
    .top-bar img {
        height: 200px;
    }

    .left-side {
        left: 30%;
        font-size: 30px;
        top: 60%;
    }

    .top-bar h3 {
        font-size: 25px;
    }

    .bannericon {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .top-bar img {
        height: 180px;
    }

    .left-side {
        left: 35%;
        font-size: 25px;
        width: 100%;
        top: 50%;
    }

    .right-side {
        bottom: 5px;
        right: 5%;
        font-size: 9px;
    }

    .top-bar h3 {
        font-size: 20px;
    }

    .bannericon {
        font-size: 14px;
    }
}

.overlay-banner-container {
    position: relative;
    width: 100%;
    margin-top: -150px;
    margin-bottom: 100px;
    z-index: 99; /* z-index düşürüldü */
}

.overlay-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.banner-image {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.banner-image img {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    left: 70px;
    top: 80px;
    max-width: 600px;
    z-index: 3;
    padding: 60px;
}

.banner-text h5 {
    color: white;
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .banner-text h5 {
       
        font-size: 20px;
      
    }
    .banner-text p {
       
       font-size: 10px;
     
   }
}

.banner-text p {
    color: white;
    font-size: 18px;
    line-height: 1.6;
}

/* Top-bar için z-index ayarı */
.top-bar {
    z-index: 2;
}

.top-bar .left-side,
.top-bar .right-side {
    z-index: 3;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .banner-text {
        left: 50px;
        top: 60px;
    }

    .banner-text h5 {
        font-size: 28px;
    }

    .banner-text p {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .banner-text {
        left: 40px;
        top: 40px;
    }

    .banner-text h5 {
        font-size: 24px;
    }

    .banner-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .overlay-banner-container {
        margin-top: -100px;
    }

    .banner-text {
        left: 30px;
        top: 30px;
    }

    .banner-text h5 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .banner-text p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .banner-image {
        width: 100%;
    }

    .banner-text {
        left: 20px;
        top: 20px;
        padding: 15px;
    }

    .banner-text h5 {
        font-size: 18px;
    }

    .banner-text p {
        font-size: 13px;
    }

    .overlay-banner-container {
        margin-top: -80px;
        margin-bottom: 60px;
    }
}

/* İletişim Section Styles */
.contact-section {
    padding: 80px 0;
}

/* İletişim Bilgileri Stili */
.contact-info-box {
    padding: 20px;
}

.contact-item {
    display: block;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid rgba(0, 22, 106, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info h3 {
    font-size: 16px;
    color: #474747;
    margin: 0;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
}

.info p {
    color: #666;
    margin: 5px 0 0;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Efektleri - Sadece metin kayması */
.contact-item:hover {
    border-color: #00166A;
}

.contact-item:hover .info h3,
.contact-item:hover .info p {
    transform: translateX(10px);
    color: #00166A;
}

/* Sosyal Medya Alanı */
.social-media {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px;
    border: 1px solid rgba(0, 22, 106, 0.1);
}

.social-media h4 {
    font-size: 16px;
    color: #474747;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #E50019;
}

/* Form Stili */
.contact-form-box {
    background: #F5F5F5;
    padding: 40px;
}

.form-title {
    font-size: 24px;
    color: #00166A;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-control {
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #00166A;
    box-shadow: none;
}

.kvkk-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.kvkk-check label {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.btn-submit {
    background: #00166A;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #E50019;
}

.btn-submit i {
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-info-box, .contact-form-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-info-box {
        margin-bottom: 30px;
    }

    .form-title {
        font-size: 20px;
    }

    .contact-item {
        padding: 15px;
    }

    .info h3 {
        font-size: 14px;
    }

    .social-media {
        padding: 15px;
    }
}
/* galery satış sonrası */
/* Gallery Responsive Styles */
@media (max-width: 992px) {
    .katalog {
        padding: 50px 20px; /* Mobilde padding'i azalt */
    }

    .galeri-col {
        margin-bottom: 20px; /* Görseller arası boşluk */
    }

    .kat-img {
        height: 100%; /* Kapsayıcının tüm yüksekliğini kullan */
    }

    .galeri-img {
        width: 100%; /* Görseli kapsayıcıya sığdır */
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .beslenme-section.white.katalog .col-4 {
        flex: 0 0 50%; /* 2 sütun görünümü */
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .beslenme-section.white.katalog .col-4 {
        flex: 0 0 100%; /* Tek sütun görünümü */
        max-width: 100%;
        padding: 0 15px; /* Yanlarda boşluk */
    }

    .galeri-img {
        height: auto; /* Oranı koru */
        max-height: 300px; /* Maksimum yükseklik */
    }

    .kat-img {
        margin-bottom: 15px;
    }
}


/* Blog sayfası */

   /* Blog Grid Styles */
   .blog-card {
    margin-bottom: 30px;
}

.blog-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    display: block;
}

.blog-card a:hover .blog-image {
    transform: scale(1.03);
}

.blog-card .custom-slider-date {
    margin-top: 20px;
    background-color: #F2F3F7;
    color: #00166A;
    border-radius: 15px;
    padding: 8px 15px;
    font-size: 12px;
    margin-bottom: 15px;
    display: inline-block;
}

.blog-card .custom-slider-title {
    font-size: 24px;
    color: #474747;
    margin: 15px 0;
    transition: color 0.3s ease;
}

.blog-card a:hover .custom-slider-title {
    color: #00166A;
}

.blog-card .blogbtn {
    color: #00166A;
    background-color: transparent;
    padding-left: 0;
    font-size: 14px;
}

.blog-card .blogbtn:hover {
    color: #00166A;
}

.blog-card .blogbtn i {
    transition: transform 0.3s ease;
}

.blog-card .blogbtn:hover i {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 40px;
    }

    .blog-card .custom-slider-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .blog-card {
        margin-bottom: 30px;
    }

    .blog-card .custom-slider-title {
        font-size: 18px;
    }

    .blog-card .custom-slider-date {
        font-size: 11px;
    }

    .blog-card .blogbtn {
        font-size: 13px;
    }
}

/* Blog Detay Styles */
.blog-detail-section {
    padding: 80px 0;
}

.blog-detail-img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.blog-detail-content {
    padding: 0 20px;
}

.blog-date {
    display: inline-block;
    background-color: #F2F3F7;
    color: #00166A;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-title {
    font-size: 36px;
    color: #474747;
    margin-bottom: 40px;
    font-weight: 600;
}

.blog-info h2 {
    font-size: 20px;
    color: #474747;
    margin: 25px 0 15px;
    font-weight: 500;
}

.blog-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .blog-title {
        font-size: 32px;
    }

    .blog-detail-content {
        padding: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 40px 0;
    }

    .blog-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .blog-info h2 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .blog-info p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .blog-title {
        font-size: 24px;
    }

    .blog-date {
        font-size: 12px;
        padding: 6px 15px;
    }

    .blog-info h2 {
        font-size: 16px;
    }

    .blog-info p {
        font-size: 14px;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid rgba(0, 22, 106, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-icon2 {
    color: #474747;
    font-size: 20px;
    margin-right: 15px;
    min-width: 20px;
}

.info {
    flex: 1;
}

.info h3 {
    font-size: 16px;
    color: #474747;
    margin: 0;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
}

.info p {
    color: #666;
    margin: 5px 0 0;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Efektleri */
.contact-item:hover {
    border-color: #00166A;
}

.contact-item:hover .info h3,
.contact-item:hover .info p {
    transform: translateX(10px);
    color: #00166A;
}

.contact-item:hover .contact-icon2 {
    color: #00166A;
}


/* Form Stili Güncellemesi */
.contact-form-box {
    background: #F5F5F5;
    padding: 50px;
}

.form-title {
    font-size: 28px;
    color: #00166A;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-desc {
    color: #666;
    font-size: 15px;
    margin-bottom: 40px;
}

.form-control {
    border: 1px solid #ddd;
    padding: 15px 20px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 20px;
    height: auto;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23474747' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.kvkk-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.kvkk-check input[type="checkbox"] {
    margin-top: 3px;
}

.kvkk-check label {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.btn-submit {
    background: #00166A;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background: #E50019;
}

.btn-submit i {
    font-size: 12px;
    margin-left: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-form-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form-box {
        padding: 30px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .form-control {
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .contact-form-box {
        padding: 25px;
    }
}


/* ÜRÜN SAYFASI */

/* Slider Styles */
.product-title2 {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 100px);
}

.product-title2 h4 {
    font-size: 24px;
    margin: 0;
}

.capacity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.capacity img {
    width: 40px;
}

.capacity span {
    font-size: 24px;
    font-weight: 600;
}

/* Product Sections */
.product-section {
    margin: 30px 0;
    padding: 30px;
}

.teknik-cizim {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.ozellikler-table {
    background-color: #F5F5F5;
}

.product-section h3 {
    color: #00166A;
    font-size: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-section h3 i {
    color: #E50019;
    font-size: 20px;
}

/* Table Styles */
table {
    margin-bottom: 0!important;
    border: none!important;
}

table th {
    font-weight: 300!important;
    padding: 20px!important;
    width: 30%!important;
    border: none!important;
}

table td {
    
    padding: 20px!important;
    border: none!important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1)!important ;
    
}
table td:first-child {
    text-align: left!important;
    font-weight: 400!important;
}

table td:last-child {
    text-align: right!important;
    font-weight: 600!important;
}


table tr:hover {
    background-color: rgba(255, 255, 255, 0.9)!important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-title2 {
        left: 30px;
        width: calc(100% - 60px);
    }

    .product-title2 h4 {
        font-size: 20px;
    }

    .capacity span {
        font-size: 20px;
    }

    .product-section {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .product-title2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .product-title2 h4 {
        font-size: 18px;
    }

    .table th, .table td {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .product-title2 {
        left: 20px;
        bottom: 30px;
        width: calc(100% - 40px);
    }

    .product-section {
        padding: 15px;
    }

    .table th, .table td {
        padding: 10px;
    }
}
@media (min-width: 1200px){
    .container {
        max-width: 1334px;
    }
}

/* Product Slider Section */
.product-slider-section {
    position: relative;
    width: 100%;
    margin-top: -150px;
    margin-bottom: 50px;
    z-index: 2;
}

/* Slider Container */
.product-slider-container {
    width: 71%;
    margin: 0 auto;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 50%;
    left: 7%;
    right: 7%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    opacity: 1;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 27px;
    color: white;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 10%;
    transform: translateX(-50%);
    z-index: 2;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.7;
    margin: 0 4px;
    border: none;
}

.carousel-indicators button.active {
    opacity: 1;
}

/* Product Info Bar */
.product-info-bar {
    background-color: #000829;
    padding: 20px 0;
    margin-top: -2px; /* Slider ile birleşmesi için */
    width: 71%;
    margin: auto;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.product-name {
    font-size: 21px;
    padding-left: 20px;
    margin: 0;
    font-weight: 500;
}

.capacity-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.capacity-info i {
    font-size: 40px;
    color: #666B7F;
    padding-right: 74px;
}

.capacity-info span {
    font-size: 39px;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-name {
        font-size: 22px;
    }
    
    .capacity-info i {
        font-size: 35px;
    }
    
    .capacity-info span {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .product-slider-section {
        margin-top: -100px;
    }

    .product-slider-container {
        width: 95%;
    }

    .product-name {
        font-size: 20px;
    }
    .product-info-bar {
        width: 95%;
    }

    .capacity-info i {
        font-size: 30px;
    }

    .capacity-info span {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .product-slider-section {
        margin-top: -40px;
    }
    .product-info-bar {


        width: 100%;
    }
    .info-content {
        flex-direction: row;
    }

    .product-slider-container {
        width: 100%;
    }

    .info-content {
        flex-direction: row;
        gap: 10px;
        text-align: center;
    }

    .product-name {
        font-size: 18px;
        padding-left: 10px;
    }

    .capacity-info {
        justify-content: center;
    }

    .capacity-info i {
        font-size: 25px;
        padding-right: 20px;
    }

    .capacity-info span {
        font-size: 18px;
    }

    .carousel-controls {
        left: 38%;
        right: 38%;
        bottom: 20%;
    }
}

@media (max-width: 576px) {
    .product-info-bar {
        padding: 15px 0;
    }

    .product-name {
        font-size: 13px;
    }

    .capacity-info i {
        font-size: 22px;
    }

    .capacity-info span {
        font-size: 16px;
    }
}


.contacticons a{
    color: #474747;
}

        /* Bilgi Section Yeni Stiller */
        .bilgi-section .row {
            margin: 0 -10px;
        }
        
        .bilgi-section .col-md-6,
        .bilgi-section .col-md-3 {
            padding: 0 10px;
            margin-bottom: 20px;
            display: flex;
        }
        
        .custom-box {
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .custom-box picture {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .custom-box-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .custom-box-content {
            position: relative;
            z-index: 2;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: transparent;
        }
        
        .button-wrapper {
            margin-top: auto;
            padding-top: 20px;
        }
        
        .custom-box:not(:first-child) .custom-box-content {
            background-color: inherit;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
        }
        
        .custom-title {
            font-size: 40px;
            color: white;
            margin-bottom: 20px;
        }
        
        .custom-text {
            font-size: 17px;
            margin-bottom: 0;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .custom-title {
                font-size: 32px;
            }
            
            .custom-text {
                font-size: 15px;
            }
            
            .custom-box-content {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .custom-box {
                min-height: 350px;
            }
        
            .custom-title {
                font-size: 28px;
            }
            
            .custom-text {
                font-size: 14px;
            }
            
            .custom-box-content {
                padding: 25px;
            }
        
            .button-wrapper {
                padding-top: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .custom-box {
                min-height: 300px;
            }
        
            .custom-title {
                font-size: 24px;
            }
            
            .custom-box-content {
                padding: 20px;
            }
        }