@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('./urunler.css');

/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
}

/* Navbar */
.navbar {
    background-color: white;
    width: 100%;
    height: 12vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}


.navbar .nav-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto;
    gap: 50px;
}

/* Navbar Linkleri */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0 auto; /* Ortalamak için */
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #2370af;
    font-size: 16px;
    padding: 8px 16px;
    transition: color 0.3s ease;
    border-radius: 6px;
    transition: all 0.5s ease-in-out;
}

.nav-links a.active {
    background-color: #8fab33;
    color: #fff;
    border-bottom: 3px solid #8fab33;
}

.nav-links a:hover {
    background-color: #8fab33;
    color: #fff;
}

/* Logo */
.logo img {
    width: auto; /* Logo genişliği */
    height: 8vh;
}


/* Dil Seçimi */
.language {
    display: flex;
    flex-direction: column;
    gap: 5px;
    
}
.lang.active {
    background-color: #8fab33;
    color: #fff;
}

.language a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    padding: 8px 16px;
    border: #8fab3362 1px solid;
    border-radius: 5px;
}

.language a:hover {
    background-color: #8fab33;
}


/* Tam Ekran Slider */
.slider {
    position: relative;
}

/* Slider İçerikleri */

/* Tek bir slide için ayarlar */
.slide {
    width: 100%; /* 2 slide olduğu için her biri genişliğin yarısını kaplar */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slide video, 
.slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.caption {
    position: absolute;
    color: white;
    text-align: center;
    background-color: rgba(41, 75, 119, 0.8);
    padding: 15px; /* Daha az padding */
    border-radius: 5px;
    max-width: 90%; /* Küçük ekranlarda taşmayı önlemek için */
    box-sizing: border-box;
}

.caption h1 {
    font-size: 32px; /* Küçük ekranlar için boyut küçültme */
    margin-bottom: 15px;
}

.caption p {
    font-size: 16px; /* Yazı boyutunu küçültme */
}


.caption img {
    width: auto;
    height: 250px;
}

/* Hakkımızda */

.ikinci-bolum {
    margin: 10px;
    padding: 50px 0;
}
.hakkimizda {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hakkimizda img {
    width: 600px;
    height: auto;
    border-radius: 50px 0 50px 0;
    border: #8fab33 2px solid;
    box-shadow: 2px 3px  15px rgba(0, 0, 0, 0.3);
}
.hakkimizda .sag-aciklama {
    margin-left: 30px;
    width: 75%;
}

.hakkimizda .sag-aciklama li {
    list-style: none;
    margin: 10px 0;
}

.hakkimizda .sag-aciklama li i {
    margin-right: 10px;
    color: #2370af;
    font-size: 24px;
    padding-top: 5px;
}

.hakkimizda .sag-aciklama .devami{
    font-weight: bold;
    background-color: #2370af;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.hakkimizda .sag-aciklama .devami:hover {
    background-color: #8fab33;
    color: white;
    text-decoration: none;
}

.hakkimizda .sag-aciklama .link {
    color: #8fab33;
    font-weight: bold;
}

.hakkimizda .sag-aciklama .business {
    color: #2370af;
    font-weight: bold;
}

.ikinci-bolum .alt-aciklama {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 70%;
}

.ikinci-bolum .alt-aciklama h2 {
    font-size: 36px;
    color: #8fab33;
    text-align: center;
}

.hakkimizda .sag-aciklama h2 {
    font-size: 36px;
    color: #8fab33;
    text-align: center;

}


/* İstatistikler Bölümü */
.statistics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    max-width: 1200px;
    margin: 50px auto;
    gap: 20px;
    text-align: center;
    border-radius: 10px;
}

.stat-item {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.stat-item:hover {
    scale: 1.1;
    transform: translateY(-2px);
    transition: all 0.3s ease-in-out;
}

.stat-item p {
    font-size: 30px;
    margin-bottom: 15px;
    color: #333;
    transition: all ease-in-out 0.3s;
}

.stat-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    transition: all ease-in-out 0.3s;
}

.stat-item:hover h3{
    color: #8fab33;
    transition: all ease-in-out 0.3s;
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    color: #333;
}

.stat-item:hover p span {
    transition: all 0.3s ease-in-out;
    color: #2370af;
}



/* Parallax Bölümü */
.parallax.bolum1, .parallax.bolum2, .parallax.hakkimizda {
    min-height: 35vh; /* Tam ekran yüksekliği */
    background-attachment: fixed; /* Parallax etkisi */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 75px 0px;
    padding: 20px 0;
}

.parallax.blog{
    min-height: 30vh; /* Tam ekran yüksekliği */
    background-attachment: fixed; /* Parallax etkisi */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;

}


.parallax.bolum1 {
    background-image: url('../images/parallax3.jpg'); /* Arkaplan resmi */
}


.parallax .content h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.parallax .content p {
    font-size: 12px;
}

.parallax.bolum1 .content, .parallax.bolum2 .content, .parallax.hakkimizda .content, .parallax.blog .content{
    background-color: #2370af;
    padding: 20px;
    border-radius: 10px;
    width: 75%;
}

.parallax.bolum2 .content {
    background-color: #8fab33;
    padding: 20px;
    border-radius: 10px;
    width: 75%;
}

.parallax.hakkimizda  {
    background-image: url('../images/urunler/urunler.jpg'); /* Arkaplan resmi */
    width: 100%;
}
.parallax.blog {
    background-image: url('../images/fuar.jpg'); /* Arkaplan resmi */
    width: 100%;
}
.parallax.blog h2 {
    color: white;
    text-align: center;
    font-size: 2rem;
}
.parallax.hakkimizda h2 {
    color: white;
    text-align: center;
    font-size: 2rem;
}

.parallax.hakkimizda p,.parallax.bolum1 p,.parallax.parallax.bolum2 p, .parallax.blog p {
    color: white;
    font-size: 1.1rem;
}


/* Diğer İçerik Bölümü */
.other-content {
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
}

.other-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.other-content p {
    font-size: 18px;
}




/* Hizmetler Bölümü */
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services h2 {
    font-size: 36px;
    color: #8fab33;
    margin-bottom: 5px;
    width: 80%;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
}

.hizmetler {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background-color: #fff;
    width: 80%;
    margin: 0 auto;
    gap: 20px;
    border-radius: 10px;
}

.service {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.service:hover{
    transition: all 0.3s ease-in-out;
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.service i {
    font-size: 50px;
    color: #2370af;
    margin-bottom: 20px;
    transition: color 0.3s ease;

}

.service:hover i{
    transform: scale(1.1);
    color: #8fab33;
    transition: color 0.3s ease;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.parallax.bolum2 {
    background-image: url('../images/parallax4.jpg'); /* Arkaplan resmi */
}
.parallax.bolum2 .content{
    background-color: #8fab33;
}

/* Logo Slider */

.slayt {
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
}
.slayt a {
    font-size: 32px;
    color: #2370af;
    text-align: center;
    border-bottom: #8fab33 1px solid;
    margin-bottom: 10px;
    text-decoration: none;
    height: 45px;
    padding: 0 10px;
    transition: all 0.1s ease-in-out;
}

.slayt a:hover{
    border-bottom: #8fab33 5px solid;
    border-radius: 5px;
}


.logo-slider {
   overflow: hidden;
   width: 80%;
   box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
   border-radius: 25px;
   border: #8fab33 3px solid;
}

.logo-slide {
    display: flex;
    animation: slide 10s infinite linear;
    background: transparent;
    padding: 15px;
}


.slider-logo {
    width: auto;
    height:100px;
    margin-right: 100px;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* Blog Bölümü */ 

.fuar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 75px 10px;
    background-color: #fff;
    text-align: center;
}

.fuar-aciklama-sol {
    width: 50%;
    height: 100%;
    padding: 50px;
    gap: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease-in-out;
}
.fuar h2 {
    font-size: 36px;
    color: #2370af;
    margin-bottom: 5px;
    text-align: left;
    border-radius: 10px;
}

.fuar p {
    text-align: left;
}
.fuar button {
    background-color: #2370af;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: transparent;
    transition: background-color 0.3s ease;
}

.fuar .line,p,button {
    margin-bottom: 20px;
}

.fuar button:hover {
    cursor: pointer;
    background-color: #8fab33;
}

.fuar-content{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    width: 75%;
}

.fuar-aciklama-sol .line {
    width: 30%;
    background-color: #8fab33;
    height: 3px;
    margin-right: 10px;
}
.fuar-aciklama-sol {
    width: 34%;
}

.fuar-resimler {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    margin: 0px 20px;
}



.fuar .container {
    position: relative;
    margin: 0 20px;
  }
  .fuar-baslik {
    width: 75%;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0  5px 5px rgba(0, 0, 0,0.1);
    background-color: #f4f4f4;
  }
  .fuar-baslik h2 {
    text-align: center;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  .mySlides img {
    height: auto;
    object-fit: contain;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #2370af;
    font-weight: bold;
    font-size: 40px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: #ffffff9a;
    
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .prev {
    left: 0;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    text-align: center;
    background-color: #2370af;
    color: white;
  }

  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: left;
    width: 25%;
  }

  .column img {
    margin-top: 10px;
    max-height: 200px;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.2;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }



  /* İletişim Başlangıç */


  .iletisim {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: flex-start;
    padding: 75px 50px;
    gap: 20px;
    height: auto;
    background-image: url("../images/parallax4.jpg");
    background-size: cover;
  }
  
  

  .adres {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease-in-out;
  }


  /* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }

  input[type=email], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #8fab33;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  /* Add a background color and some padding around the form */
  .iletisim-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
  }



/* Footer */
.footer {
    background-color: #333;
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;  /* İçeriği ortalamak için */
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
    width: 80%;  /* İçerik genişliği */
    border-top: 1px solid #444;
    padding-top: 20px;
    min-height: 300px;  /* En az 300px uzunluk */
}


/* Footer Sütunları */
.footer-column {
    padding: 0 20px;
    flex-basis: 33%;
    display: flex;
    flex-direction: column;

}

.footer-column.logo{
    flex-direction: column;
    align-items: center;
    justify-items: center;
}
.footer-column.logo img{
    width: 300px;
    height: auto;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-column p {
    margin-bottom: 10px;
    font-size: 14px;

}

.footer-column i {
    margin-right: 10px;
    color: #2370af;
}



.footer-column p a {
    color: #2370af;
    text-decoration: none;
}

.footer-column p a:hover {
    color: #8fab33;
}



/* Logo */
.footer-logo {
    width: 300px;
    margin-bottom: 10px;
}

/* Google Harita */
.footer-column iframe {
    border-radius: 5px;
    border: 0;
}

.footer-column:nth-child(2) p {
    margin-top: 20px;
    font-size: 16px;
}

.copyright {
    text-align: center;
    background-color: #444;
    padding: 5px 0;
    color: white;
}
/* 1366px genişliğe uygun ayarlamalar */
@media (max-width: 1366px) 
{

    .navbar {
        width: 100%;
        height: 20vh;
        flex-direction: column;
        padding: 10px;
    }
    .navbar .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: auto;
        gap: 10px;
    }
    .slider {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
    .slider .caption {
        width: 65%;
        font-size: 24px;
        text-align: center;
        margin-bottom: 40px;
    }
    .slider img {
        width: 30%;
        height: auto;
    }
    .slider .caption h1 {
        font-size: 28px;
    }

}
/* 1024px genişliğe uygun ayarlamalar */
@media (max-width: 1024px) {
    html {
        max-width: 1024px;
    }
    .navbar {
        width: 100%;
        height: 10vh;
        flex-direction: row;
        padding: 10px;
    }
    .navbar .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: auto;
        gap: 10px;
    }

    
    .hakkimizda {
        display: flex;
        flex-direction: column;        
    }

    .hakkimizda .sag-aciklama {
        width: 100%;
    }

    .services h2 {
        width: 90%;
    }

    .hizmetler  {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-around;
        width: 90%;
    }

    .hizmetler .service {
        width: 20%;
    }
    .hizmetler .service p {
        font-size: 14px;
    }

    .fuar {
        padding: 50px 0px;
    }

    .fuar-resimler img {
        width: 220px;
        margin-bottom: 10px;
        margin-right: 10px;
        border-radius: 10;
    }

    .parallax.blog {
        height: 30vh;
    }
    .parallax.blog .content {
        width: 60%;
    }
    

    .fuar-aciklama-sol h2 {
        font-size: 24px;
    }

    .fuar-aciklama-sol p {
        font-size: 12px;
    }


    .language {
        margin-top: 15px;
        flex-direction: row;
    }
    .language a {
        padding: 4px 8px;
    }
    .footer {
        display: flex;
        flex-direction: column;
    }
    .footer-column iframe {
        max-width: 300px;
    }
}

@media  (max-width: 950px){
    .navbar {
        height: 25vh;
    }
    .navbar .nav-container{
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 10px 0;
        justify-content: space-around;
    }

    .navbar .nav-container .logo img {
        display: none;
    }

    .parallax.blog {
        height: 60vh;
    }

    .parallax.blog .content {
        width: 85%;
        padding: 10px;
    }

    .parallax.blog .content h2 {
        font-size: 20px;
    }
    .parallax.blog .content p {
        font-size: 14px;
    }
}

@media (max-width: 768px)
{
    
}


@media (max-width: 720px) {
    html {
        max-width: 720px;
    }
    .navbar {
        width: 100%;
        height: 20vh;
        flex-direction: column;
        padding: 20px;
    }
    .navbar .nav-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
        gap: 10px;
    }
    .logo img {
        display: none;
    }
    
    .nav-links {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .language {
        flex-direction: row;
        gap: 10px;
    }
        
    .parallax.blog {
        height: 30vh;
    }
    .parallax.blog .content {
        width: 60%;
    }
    

    .hakkimizda {
        flex-direction: column;
        align-items: center;
    }

    .hakkimizda img {
        width: 100%;
        max-width: 350px; /* 720px altında resmi küçültelim */
        margin-bottom: 20px;
    }

    .hakkimizda .sag-aciklama {
        width: 90%;
        text-align: center;
        margin-left: 0;
    }

    .hakkimizda .sag-aciklama h2 {
        font-size: 28px; /* Başlık boyutunu küçültelim */
    }

    .statistics {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        max-width: 90%;
    }

    .stat-item {
        margin-bottom: 10px;
        width: 33%;
        max-width: 250px;
    }

   

    .stat-item h3 {
        font-size: 16px;
    }
    .stat-item p span{
        font-size: 20px;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        margin-bottom: 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        flex-basis: 100%;
        padding: 10px 0;
        border: none;
    }

    .footer-column iframe {
        max-width: 200px;
    }
}

/* 480px ve altındaki cihazlar için */
@media (max-width: 480px) {

    .navbar {
        width: 100%;
        height: 15vh;
        padding: 10px;
    }

    .navbar .nav-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
        }

    .logo img {
        height: 6vh;
    }
    .nav-links {
        flex-direction: row;
        align-items: center;
        padding: 5px;

    }

    .nav-links a {
        font-size: 14px;
        padding: 5px;
    }

    .language a {
        font-size: 10px;
        padding: 6px 12px;
    }
    .parallax.blog
    {
        height: 20vh;
    }
    .parallax.blog .content {
        width: 80%;
    }
    
    .parallax.blog .content p {
        font-size: 12px;
    }
    .slider {
        height: 100vh;
        overflow: hidden;
    }
    .slides {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        transition: transform 1s ease-in-out;
    }
    .slide {
        flex-basis: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
        height: 100vh;
    }

    .caption {
        width: 90%;
    }

    .caption h1{
        font-size: 20px;
    }
    .caption p{
        font-size: 14px;
    }

    .fuar-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fuar-resimler img {
        max-width: 250px; /* 480px altında resmi daha da küçültelim */
    }

    .fuar-aciklama-sol {
        margin-top: 10px;
        padding: 15px;
        width: 100%;
    }


    .hakkimizda img {
        width: 100%;
        max-width: 280px; /* 480px altında resmi daha da küçültelim */
    }

    .hakkimizda .sag-aciklama h2 {
        font-size: 24px; /* Başlığı daha küçük yapalım */
    }

    .hakkimizda .sag-aciklama {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
    .hakkimizda .sag-aciklama li {
        border-bottom: 2px solid #8fab33; /* Altına gri ince bir çizgi ekler */
        padding-bottom: 10px; /* Çizgi ile içerik arasında boşluk bırakır */
        margin-bottom: 10px; /* Her bir liste öğesi arasında boşluk bırakır */
        border-radius: 2px solid #8fab33;
    }

    @keyframes slide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-500%); }
    }
    .logo-slide {
        animation: slide 15s infinite linear;
        padding: 5px;
    }

    .stat-item p {
        font-size: 16px;
    }

    .parallax .content h1 {
        font-size: 24px;  /* Başlık boyutu daha küçültüldü */
    }

    .parallax .content p {
        font-size: 14px;  /* Metin boyutu daha küçültüldü */

    }
    .parallax .content {
        width: 75%;
    }

    .parallax.hakkimizda .content
    {
        width: 85%;
    }

    .hizmetler {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .services h2 {
        max-width: 480px;
        width: 90%;
    }

    .prev,
    .next {
    font-size: 15px;
    padding: 5px;
  }

    .services {
        flex-direction: column;
        align-items: center;
        width: 98%;
    }

    .service {
        min-width: 300px;
    }

    .iletisim {
        flex-direction: column;
        align-items: center;
    }

    .iletisim-container {
        padding: 10px;
        max-width: 100%;
      }
    
      .iletisim-container input[type=text],
      .iletisim-container select,
      .iletisim-container textarea {
        font-size: 14px;
      }
    
      .iletisim-container input[type=submit] {
        padding: 10px;
      }


    .footer-container {
        width: 100%;
        flex-direction: column;
        padding-top: 20px;
    }

    .footer-column.logo img {
        width: 200px;  /* Mobilde logo boyutu küçültüldü */
        display: flex;
    }
    

    .footer-column iframe {
        width: 100%;
        height: 300px;  /* Haritanın yüksekliği küçültüldü */
    }
}


@media (max-width: 400px)
{
    .navbar {
        width: 100%;
        height: 20vh;
        padding: 5px;
    }
    .nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        gap: 0;    
        padding: 0;
        margin: 0;
    }
    .nav-links {
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }

    .nav-links li a{
        font-size: 12px;
    }
    .language {
        flex-direction: row;
        gap: 5px;
    }

    .slider {
        height: 100vh;
        overflow: hidden;
    }
    .slides {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        transition: transform 1s ease-in-out;
    }
    .slide {
        flex-basis: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
        height: 100vh;
    }

    .service {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        max-width: 200px;
        padding: 10px;
    }

    .service h3{
        font-size: 14px;
        margin-bottom: 5px;
        max-width: 300px;
    }
    .service p{
        font-size: 12px;
        margin-bottom: 10px;
        max-width: 300px;
    }
}
