/* Genel Ayarlar */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    }
    
    /* Sıfırlama (Boşlukları Önlemek için) */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    /* Hero Section */
    .hero {
        position: relative;
        overflow: hidden; /* Taşmaları önler */
    }
    
    .swiper-container {
        width: 100%; /* Tam genişlik */
        height: 100vh; /* Tam ekran yüksekliği */
    }
    
    .swiper-slide {
        display: flex;
        align-items: center; /* Görselleri dikey merkezler */
        justify-content: center; /* Görselleri yatay merkezler */
    }
    
    .swiper-slide img {
        width: 100%; /* Görsel genişliği tam kaplar */
        height: auto; /* Yükseklik orantılı şekilde ayarlanır */
        object-fit: fill; /* Mobil cihazlarda beyaz boşluk olmaması için */
        display: block; /* Varsayılan boşlukları kaldırır */
        margin: 0; /* Ek boşlukları engeller */
    }
    
    /* Responsive Ayarlar */
    @media (max-width: 768px) {
        .swiper-container {
            height: auto; /* Mobil cihazlarda uygun yüksekliği otomatik ayarla */
        }
        .swiper-slide img {
            width: 100%; /* Genişliği mobilde tam sığdır */
            height: auto; /* Yükseklik orantılı şekilde ayarlanır */
            object-fit: cover; /* Alanı düzgün şekilde doldur */
        }
    }
    
    @media (max-width: 576px) {
        .swiper-container {
            height: auto; /* Mobil cihazlar için daha uygun yükseklik */
        }
        .swiper-slide img {
            width: 100%; /* Mobil cihazlarda tam genişlik */
            height: auto; /* Yükseklik orantılı şekilde ayarlanır */
            object-fit: cover; /* Alanı düzgün doldururken kırpmaları ayarla */
        }
    }
    
    
   /* Info Section */
    
   .info-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
    background-image: url('images/1903x828_Serap.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    }
    
    .info-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Siyah renk ve %50 opaklık */
    background-image: url('images/1903x828_Serap.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    }
    

    .info-content-wrapper {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    }
    
    .info-image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    }
    
    .info-image-content img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    }
    
    .info-text-content {
    text-align: center;
    /* background-color: #f9f9f9; /* İsteğe bağlı arka plan rengi */
    }
    
    .info-text-content h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
    }
    
    .info-text-content p {
    font-family: "Montserrat", serif;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
    }
    
    .cta-button {
    padding: 10px 20px;
    background-color: #333;
    border: 1px solid #b1b1b1;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Montserrat", serif;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid #333;
    color: #ffffff;
    }
    
    .cta-button:hover {
    background-color: #616161;
    color: #ffffff;
    }
    
    /* Info Responsive Styles */
    @media (max-width: 768px) {
    .info-image-content img {
    max-width: 100%;
    }
    
    .info-text-content {
    padding: 20px;
    }
    
    .info-text-content h1 {
    font-size: 1.5rem;
    }
    }
    
    @media (max-width: 480px) {
    .info-text-content {
    padding: 15px;
    }
    
    .info-text-content h1 {
    font-size: 1.2rem;
    }
    
    .cta-button {
    padding: 8px 16px;
    }
    }
    
    
/* Owl Carousel2 Öne Çıkan Ürünler*/

/* Kart Tasarımı */
.featured-products-slider .slide-item {
    position: relative;
    text-align: center;
    width: 90%; /* Kart genişliği */
    max-width: 800px; /* Masaüstü ve tabletlerde genişlik */
    height: auto;
    padding: 0;
    background: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px auto; /* Ortalamak için */
    }
    
    .featured-products-slider .slide-item img {
    width: 100%; /* Kartın tam genişliğini kapla */
    height: 400px; /* Sabit yükseklik */
    object-fit: cover; /* Görselleri düzgünce kartın içine sığdır */
    display: block;
    }
    
    .featured-products-slider .slide-content {
    padding: 15px;
    }
    
    .featured-products-slider .slide-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
    }
    
    .featured-products-slider .slide-content p {
    font-size: 1.2rem;
    margin: 15px 0;
    color: #555;
    }
    
    .featured-products-slider .slide-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    }
    
    .featured-products-slider .slide-button:hover {
    background-color: #555;
    }
    
    /* Mobil Uyumlu Ayarlar */
    @media (max-width: 768px) {
    .featured-products-slider .slide-item {
    width: 100%; /* Mobilde kart genişliği tam olsun */
    max-width: none; /* Genişlik sınırı kaldırıldı */
    }
    .featured-products-slider .slide-content h3 {
    font-size: 1.5rem; /* Başlık yazısı küçültüldü */
    }
    .featured-products-slider .slide-content p {
    font-size: 1rem; /* Açıklama yazısı küçültüldü */
    }
    .featured-products-slider .slide-button {
    font-size: 1rem;
    padding: 10px 20px;
    }
    }

    
    /* Genel Ayarlar */
.testimonial-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #f3f3f3, #dfdddd);
}

.owl-carousel .owl-stage {
    display: flex; /* Slider içeriğini yatay hizalamak için */
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center; /* İçeriği ortalamak için */
}

.testimonial-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 400px; /* Sabit genişlik */
    height: 250px; /* Sabit yükseklik */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px; /* Kartların etrafında boşluk */
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    color: #333;
    font-weight: bold;
    font-size: 1rem;
}

/* Mobil Uyumlu Ayarlar */
@media (max-width: 768px) {
    .testimonial-card {
        width: 90%; /* Mobilde genişlik ekranı kaplasın */
    }
}

    
    /* Ürünler */
    .img-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    }
    
    .full-width-banner {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 50px;
    }
    
    .banner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    }
    
    
    
/* Section Title */
.section-title {
    text-align: center;
    margin: 20px 0; /* Dikey ve yatay boşluk */
    font-size: 32px;
    color: #333;
  }
  
  /* Section Title H2 */
  .section-title h2 {
    color: #333;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto !important;
    font-weight: 500 !important;
    font-style: normal !important;
    font-size: 3rem !important; /* Varsayılan büyük font */
  }
  
  /* Küçük ekranlarda yazı boyutlarını küçültme */
  @media (max-width: 992px) { /* Tablet boyutları ve daha küçük */
    .section-title h2 {
      font-size: 2.5rem !important;
    }
  }
  
  @media (max-width: 768px) { /* Küçük ekranlar */
    .section-title h2 {
      font-size: 2rem !important;
    }
  }
  
  @media (max-width: 576px) { /* Mobil cihazlar */
    .section-title h2 {
      font-size: 1.75rem !important;
    }
  }
  
    /* Features Section */
    .features {
    background-color: #f9f9f9;
    text-align: center;
    padding: 20px 0; /* Üst ve alt boşluk */
    display: flex;
    align-items: center; /* Dikeyde ortalama */
    justify-content: center; /* Yatayda ortalama */
    padding: 100px;
    }
    
    .features h2 {
    margin-bottom: 50px;
    color: #333;
    }
    
    .features-container {
    display: flex;
    gap: 150px;
    justify-content: center;
    flex-wrap: wrap;
    background-image: url('images/1903x450_Serap_2.png');
    filter: grayscale(100%); /* Siyah beyaz yapmak için */
    position: relative;
    z-index: 1;
    flex-wrap: wrap; /* Küçük ekranlarda kaydırma */
    }
    .features-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Siyah renk ve %50 opaklık */
    background-image: url('images/1903x450_Serap_2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* filter: grayscale(100%); /* Siyah beyaz yapmak için */
    }
    .feature-item {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px; /* Sabit genişlik */
    height: 250px; /* Sabit yükseklik (tüm kutular eşit) */
    display: flex;
    flex-direction: column; /* İçeriği dikey hizalamak için */
    align-items: center; /* Yatayda ortalama */
    justify-content: center; /* Dikeyde ortalama */
    transition: transform 0.3s, box-shadow 0.3s;
    }
    .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    
    .feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    
    }
    
    .feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    }
    
    .feature-item p {
    color: #666;
    font-size: 1rem;
    }

    
    .banner {
    position: relative;
    width: 100%;
    max-height: 600px; /* Sayfa boyunu geçmemesi için maksimum yüksekliği ayarla */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .banner-image img {
    width: 100%;
    height: auto; /* Görselin yüksekliğini orantılı tut */
    object-fit: cover; /* Görseli düzgün şekilde yerleştir */
    }

/* BLOGLAR */
.card-section {
    padding: 40px 0; /* Sayfa içeriği ile boşluk */
}

/* Kart Tasarımı */
.card-container {
    border: 1px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 700px;
    height: 700px;
    margin:30px 50px; /* Ortalamak için */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.card-container:hover {
    transform: translateY(-10px); /* Hover'da yukarı kalkma efekti */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2); /* Hover sırasında daha belirgin gölge */
}

/* Varsayılan Stil (Masaüstü ve geniş ekranlar için) */
.card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 1200px;
    margin: 50px;
    overflow: visible;
}

.image-card img {
    width: 100%;
    object-fit: cover;
}

.content-card4 {
    position: relative;
    max-width: 500px; /* Metin içeriği genişliği */
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 2;
}

/* Metin İçeriği */
.info-text-content {
    text-align: left;
}

.fontsize h3 {
    font-size: 1.5rem;
}

.fontsize p {
    font-size: 1rem;
}

/* Mobil ve Tablet Ekranlar için (Responsive Tasarım) */
@media (max-width: 992px) {
    .card-container {
        flex-direction: column; /* Dikey düzen */
        align-items: center;
        padding: 10px;
    }

    .image-card img {
        max-width: 100%; /* Görsel tam genişlik */
    }

    .content-card4 {
        max-width: 100%;
        margin-top: 20px; /* Görselin altına yerleştir */
    }
    .content-card4 {
        right: 0; /* Sağ taşmayı sıfırla */
        width: 140%; /* İçeriğin genişliğini küçült */
        margin-top: 150px;
    }
}

/* Küçük Mobil Ekranlar (576px ve altı) */
@media (max-width: 576px) {
    .fontsize h3 {
        font-size: 1.25rem;
    }

    .fontsize p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .content-card4 {
        padding: 15px;
    }
}


/* Görseller */
.card-image {
    width: 100%; /* Görsel genişliği kartın tamamını kaplar */
    height: 65%; /* Görselin kart içindeki yüksekliği */
    object-fit: cover; /* Görseller düzgün şekilde sığar */
}

/* Kart Başlığı */
.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    color: #333;
}

/* Bölücü Çizgi */
.card-divider {
    width: 80%;
    border: 1px solid #ddd;
    margin: 10px auto;
}

/* Devam Linki */
.card-link {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding: 30px 20px;
    color: #1a1c20;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.card-link:hover {
    color: #888888;
}

/* Grid Ayarları */
.card-row {
    display: flex;
    flex-wrap: wrap; /* Kartların sarılmasını sağlar */
    justify-content: center; /* Kartları yatayda ortalar */
    gap: 20px; /* Kartlar arasındaki boşluk */
}

/* Responsive Ayarlar */
@media (max-width: 992px) { /* Tablet ve daha küçük cihazlar */
    .card-container {
        width: 100%; /* Mobilde kart genişliği tam olsun */
        height: auto; /* Yükseklik içerik boyutuna göre */
    }

    .card-image {
        height: auto; /* Mobilde görsellerin yüksekliği içerik boyutuna göre ayarlanır */
    }

    .card-title {
        font-size: 1.6rem; /* Mobilde başlık yazısı küçültülür */
    }
}

    
    /* Footer */
    
    .footer {
        background-color: #333;
        color: #fff;
        padding: 40px 0;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-style: normal;
        
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #fff;
    }
    
    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
    }
    
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 10px;
    }
    
    .footer-nav a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-nav a:hover,
    .footer-legal a:hover,
    .footer-nav a:focus,
    .footer-legal a:focus,
    .footer-nav a:active,
    .footer-legal a:active {
        color: #fff;
    }
    
    .social-icons a {
        margin-right: 10px;
        color: #ccc;
        transition: color 0.3s;
    }
    
    .social-icons a:hover,
    .social-icons a:focus,
    .social-icons a:active {
        color: #fff;
    }
    
    .social-icons i {
        font-size: 24px;
    }
    
    .footer-form input[type="email"] {
        padding: 10px;
        border: none;
        border-radius: 5px;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .footer-form button {
        padding: 10px;
        border: none;
        border-radius: 5px;
        background-color: #555;
        color: #fff;
        font-weight: bold;
        transition: background-color 0.3s;
        width: 100%;
    }
    
    .footer-form button:hover,
    .footer-form button:focus,
    .footer-form button:active {
        background-color: #777;
    }
    
    /* Responsive Ayarlar */
    @media (max-width: 768px) {
        .footer-section {
            text-align: center;
        }
        
        .social-icons a {
            margin: 0 5px;
        }
    }
    
    .container {
    overflow: hidden; /* Görselin taşmasını önler */
    }
    
    .slide-in-image {
    width: 100%; /* Genişliği ihtiyacınıza göre ayarlayın */
    opacity: 0; /* Başlangıçta görünmez */
    transform: translateX(100%); /* Sağdan başlat */
    transition: all 0.3s ease;
    }
    
    .slide-in-text {
    opacity: 0; /* Başlangıçta görünmez */
    transform: translateX(-100%); /* Soldan başlat */
    transition: all 0.3s ease;
    }
    
    .slide-item img {
    width: 100%; /* Resimlerin genişliğini tam yap */
    height: auto; /* Yüksekliği orantılı ayarla */
    max-height: 400px; /* Maksimum yüksekliği sınırla */
    object-fit: cover; /* Görsel taşmalarını önle */
    }
    
    
    
    @keyframes fadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    
    .fade-in {
    animation: fadeIn 2s ease-in-out;
    }
    .col-4 {
    text-align: center;
    display: flex; /* Flexbox etkinleştirme */
    justify-content: center; /* Yatayda ortalama */
    align-items: center; /* Dikeyde ortalama */
    margin: 0 auto; /* Sağdan ve soldan ortalama */
    }
    .col-4 row {
    margin: 60px auto; /* Üst ve alt 40px, sağ ve sol ortalama */
    padding: 0 100px; /* Sağdan ve soldan 60px boşluk */
    }


    /* KOLEKSİYONLAR */
    
   
    /* Hakkımızda */
    
    .centered{
    margin: 100px auto;
    max-width: 800px;
    text-align: justify;
    padding: 20px;
    line-height: 1.6;
    }
    

    .centered h1{
    text-align: center;
    }
    .centered p{
    font-size: 20px;
    }
    .col-6 {
    display: inline-block;
    width: 600px;
    }
    
    .media1 {
    display: flex;
    align-items: center;
    padding: 40px 80px;
    margin-bottom: 150px;
    background-color: #fff5f0;
    }
    .media2 {
    display: flex;
    align-items: center;
    padding: 40px 80px;
    background-color: #fff5f0;
    }
    
    .media-body{
    margin: 70px 100px;
    line-height: 1.6;
    font-size: medium;
    }
    
    .media-body p{
    font-size: 22px;
    text-align: justify;
    color: #333;
    display: flex;
    justify-content: center; /* Yatay ortalama */
    align-items: center; /* Dikey ortalama */
    }
    
    /*
    .hakkimizdacontainer{
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
    background-image: url('images/201.');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    } */
    
    .hakkimizdah2{
    text-align: center;
    font-size: 23px;
    color: #333;
    margin: 20px;
    }
    
    .divider2 {
    border: none; /* Tüm kenar çizgilerini kaldırır */
    border-bottom: 1px solid #888888; /* Sadece altta çizgi ekler */
    margin: 10px auto; /* Ortalamak için */
    }
    
    
    .accordion {
    max-width: 800px;
    margin: 30px auto;
    }
    
    .accordion-item {
    border-bottom: 1px solid #666565;
    margin-bottom: 20px;
    }
    
    .accordion-button {
    background-color: #eee;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: background-color 0.2s ease;
    position: relative;
    }
    
    .accordion-button:hover {
    background-color: #ccc;
    }
    
    .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    background-color: #f9f9f9;
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    }
    
    .accordion-content p {
    margin: 0;
    
    }
    
    .accordion-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #333;
    transition: transform 0.2s ease;
    }
    
    .accordion-button.active .accordion-icon {
    transform: translateY(-50%) rotate(90deg);
    }
    
    .accordion-button.active + .accordion-content {
    max-height: 200px; /* Adjust if needed */
    padding: 15px 20px;
    }
    
    /* İletişim */
    
    
    .contact-card {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 250px;
    padding: 20px;
    display: flex; /* Flexbox etkinleştirildi */
    justify-content: center; /* Yatayda ortalama */
    align-items: center; /* Dikeyde ortalama */
    flex-direction: column; /* İçerikleri dikey hizalar */
    
    }
    
    .contact-page {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .contact-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .contact-header p {
        font-size: 18px;
        color: #666;
    }
    
    /* İletişim Kartları */
    .contact-card {
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .contact-card h2 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #333;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 16px;
        color: #333;
    }
    
    .contact-item i {
        font-size: 20px;
        color: #333;
        margin-right: 10px;
    }
    
    .contact-item a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
    }
    
    .contact-item a:hover {
        color: #007bff; /* Hover için Bootstrap renk kullanımı */
    }
    
   /* Başlık */
.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Form Girdileri */
  .contact-form form input,
  .contact-form form textarea {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%; /* Tam genişlik */
    box-sizing: border-box; /* İçerik kutusunu sınırlar */
  }
  
  /* Gönder Butonu */
  .contact-form button {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    background-color: #007bff; /* Bootstrap birincil renk */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #0056b3; /* Daha koyu bir hover efekti */
  }
  
  /* Responsive Ayarlar */
  @media (max-width: 768px) {
    .contact-form h2 {
      font-size: 20px; /* Küçük ekranlarda başlık boyutunu küçült */
    }
  
    .contact-form form input,
    .contact-form form textarea {
      font-size: 14px; /* Girdilerin yazı boyutunu küçült */
      padding: 8px; /* Daha az padding */
    }
  
    .contact-form button {
      font-size: 12px; /* Buton yazı boyutunu küçült */
      padding: 8px 12px; /* Buton boyutunu küçült */
    }
  }
  
    
    /* Responsive Ayarlar */
    @media (max-width: 768px) {
        .contact-container {
            flex-direction: column; /* Küçük ekranlarda dikey yerleşim */
        }
    
        .contact-card, .contact-form {
            margin-bottom: 20px;
        }
    
        .contact-header p {
            font-size: 16px;
        }
    
        .contact-card h2, .contact-form h2 {
            font-size: 20px;
        }
    }
    
    /* İletişim Alanları */
    .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    padding: 30px;
    max-width: 700px;
    margin: 10px auto;
    }
    
    .contact-info, .contact-form {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    }
    
    .contact-info h2, .contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    }
    
    .contact-info ul {
    list-style: none;
    }
    
    .contact-info ul li {
    margin-bottom: 15px;
    font-size: 16px;
    }
    
    .contact-info ul li i {
    margin-right: 10px;
    }
    
    .contact-info a {
    color: #333;
    text-decoration: none;
    }
    
    .contact-info a:hover {
    text-decoration: underline;
    }
    
    /* Form Stilleri */
    .contact-form form {
    display: flex;
    flex-direction: column;
    }
    .contact-form h2 {
    font-size: 2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #696969;
    font-size: 23px;
    }
    
    .contact-form button {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    }
    
    .contact-form button:hover {
    background-color: #333;
    }
    
    
    .contact-maps
    {
    max-width: 100%;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-top: 150px;
    }
    
    
    
    /* Responsive Navbar */
    @media only screen and (max-width: 768px) {
    header {
    flex-direction: column; /* Header'ı dikey hizalar */
    align-items: center; /* Ortalar */
    padding: 20px; /* Padding azaltıldı */
    }
    
    }
    
    @media only screen and (max-width: 480px) {
    header {
    padding: 15px; /* Mobilde padding daha da azaltıldı */
    }
    
    .logo img {
    height: 30px; /* Logo boyutu daha da küçültüldü */
    }
    
    
    }
    
    /* Responsive Ayarlar */
    @media only screen and (max-width: 1024px) {
    
    .product-card {
    height: auto; /* Kartların yüksekliği esnek hale getirilir */
    }
    
    .product-title {
    font-size: 1rem; /* Başlık boyutu küçültülür */
    }
    
    .product-description {
    font-size: 0.8rem; /* Açıklama boyutu küçültülür */
    }
    }
    
    
    
    
    
    
    