/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #141414;
    
}
.klogo{
    transition: transform 0.3s ease; /* Geçiş süresi ve yumuşaklık */
    height: 50px;
    width: 50px;
    border-radius: 5%;
}
.klogo:hover {
    transform: scale(1.1); /* Resmi %110 oranında genişletir */
}
.flogo{
    transition: transform 0.3s ease; /* Geçiş süresi ve yumuşaklık */
    height: 40px;
    width: 40px;
    border-radius: 5%;
}
.flogo:hover {
    transform: scale(1.1); /* Resmi %110 oranında genişletir */
}
.logok {
    transition: transform 0.3s ease; /* Geçiş süresi ve yumuşaklık */
    width: 150px;
    height: 150px;
    border-radius: 15%;
    margin-bottom: 3%;
}

.logok:hover {
    transform: scale(1.1); /* Resmi %110 oranında genişletir */
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 7%;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #9e9b9d;
    font-size: 1em;
    transition: color 0.3s ease;
    margin-left: 24vh;
    
}

nav ul li a:hover {
    color: #ffffff;
    
}
nav ul li a::after {
    content: ''; /* Çizgi oluşturmak için boş içerik */
    display: block; 
    width: 0; /* Başlangıçta çizgi görünmez */
    height: 2px; /* Çizginin yüksekliği */
    background-color: #ffffff; /* Çizginin rengi */
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease; /* Yumuşak geçiş efekti */
}

nav ul li a:hover::after {
    width: 100%; /* Üzerine gelindiğinde çizgi genişler */
}

/* Main Section with Background Image */
main {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    padding-top: 80px; /* Fixed header için boşluk */
    background-image: url('drum.jpg');
}

.left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

}
.ikilikayan{
    display: none;
}
.leftorta{
    background-color: #141414; 
  height: 600px;
  width: 700px;
margin-left: 32%;
}
.slider {
    position: relative;
    width: 80%;
    height: 100%;
}

.slides {
    display: flex;
    overflow: hidden;
    height: 100%;
}

.slides img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease-in-out;
}

.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #000000;
}

.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    
}


.content {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 55px;
    border-radius: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

h2 {
    font-size: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s ease; /* Geçiş süresi ve yumuşaklık */

}
h2:hover{
    transform: scale(1.1); /* Resmi %110 oranında genişletir */
}


.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.button-container a{
    text-decoration: none;
}
.zilresim {
    margin-top: 10%;
    display: flex; /* Resimleri yan yana dizmek için flex kullanıyoruz */
    justify-content: center; /* Resimleri ortalar */
}

.zilresim img {
    width: 100%; /* Resmin genişliğini %100 yapar */
    height: auto; /* Orantılı yükseklik için otomatik ayar */
    max-width: 450px; /* Resimlerin maksimum genişliği 250px */
    margin: 0 25px; /* Resimler arasında 5px boşluk bırakır */
}


/* Button Styles with Transition */
.btn {
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    background-color: #5beb63;
    color: #043306;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #5beb63;
    transform: scale(1.1);
}
/* Footer Styles */
footer {
    background-color: black;
    color: #9e9b9d;
    text-align: center;
    padding: 1%;
    position:relative;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.footer-container {
    margin-top: 2%;
    display: inline-flex;
}
.social-media{
    margin-right: 10%;
}
.onem{
    margin-right:10% ;
}
.adres{
    margin-left: 10%;
}



.social-link {
    display: inline-flex;
    margin: 0 3%;
}

.social-link img {
    width: 2.4em;
    height: 2.4em;
    transition: transform 0.3s ease;
}

.social-link img:hover {
    transform: scale(1.1);
}

.links {
    margin-bottom: 2%;
    display: inline-flex;
}

.links p {
    color: white;
}

.links h5 {
    font-size: 1em;
}

.link-link {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #5beb63;
}

.copyright {
    font-size: 0.8em;
    margin-top: 1%;
    color: #5beb63;
}
.slider-info {
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: 25px;
}

.info {
    height: 85%;
    width: 100%;
    background-color: #141414;
    background-position: center;
    padding: 2%;

    
}

.info h2 {
    font-size: 2rem;
    color: #cacaca;
}
.info h3{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 70px;
    color: #cacaca;
    margin-bottom: 2%;
}

.info p {
    font-size: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 2%;
}

.slider-img {
    position: relative;
    overflow: hidden; /* Taşan resimleri gizle */
    width: 100%; /* Slider container genişliği */
}

.slider-images {
    display: flex; /* Resimlerin yan yana dizilmesi */
}

.slider-images img {
    min-width: 100%; /* Her resim slider'ın %100 genişliğini kaplar */
    height: auto; /* Yüksekliği korur */
}


.slider-images img:hover {
    opacity: 1;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

button.prev {
    left: 10px;
 
}

button.next {
    right: 10px;
}
.info h2{
   
    margin-top: 25px;
    font-weight: bold;
    font-family: fantasy;
    font-size: 50px;
}
.info p {
    font-size: 13px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #cacaca;
}
.gif{
    width: 98vw; /* Viewport genişliği kadar geniş */
    height: 98vh; /* Viewport yüksekliği kadar yüksek */
    overflow: hidden; /* Taşan kısmı gizler */
    display: flex;
    align-items: center; /* Dikeyde ortalar */
    justify-content: center; /* Yatayda ortalar */
}
.responsive-gif {
    width: 100%;
    height: 100%;
    object-fit: contain; /* İçeriği kapsayıcıya sığdırır */
    background-image: url('back.webp');
}
.mask{
   
    width: 350%;
    height: 100%; /* Genişlik ayarları */
  
}
.orta{
        height: 75vh;
        display: flex;
        
    background-color: whitesmoke;
}
.orta h1{
    margin-top: 30px;
    font-size: 55px;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #3e9943;
}
.orta p{
    margin-top: 20px;
    font-family: 'Times New Roman', Times, serif;
    margin-left: 10%;
    margin-right: 8%;
}
.highlight {
    color: #542349; /* Metin rengini belirler */
}
/* styles.css */

/* Genel hizmetler stili */
.services {
    padding: 40px;
    background-color: #141414;
    text-align: center;
}
.services h4{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 70px;
    color:#cacaca;
    margin-bottom: 2%;
}
.service-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 40px;
}

.service {
    display: flex;
    flex-direction: column;
    width: 320px;
    height: 400px;
    border: 2px solid #ddd; /* Kartın başlangıçtaki kenar rengi */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.service-image {
    flex: 1;
    overflow: hidden;
    transition: transform 0.3s ease;
   
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-content {
    padding: 20px;
    background-color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.service-content h3 {
    margin-top: 0;
    font-size: 1.5em;
}

.service-content p {
    margin-bottom: 0;
    font-size: 1em;
    color: #555;
}

/* Hover efekti */
.service:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.service:hover .service-image img {
    transform: scale(1.1);
}
.service::after {
    content: ''; /* Çizgi oluşturmak için boş içerik */
    display: block; 
    width: 0; /* Başlangıçta çizgi görünmez */
    height: 6px; /* Çizginin yüksekliği */
    background-color: #000000; /* Çizginin rengi */
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.9s ease; /* Yumuşak geçiş efekti */
}

.service:hover::after {
    width: 100%; /* Üzerine gelindiğinde çizgi genişler */
}
.ortak{
    height: 40em;
    display: flex;
    justify-content: space-between;
    padding-top: 7%; /* Fixed header için boşluk */
    background-image: url('arka.webp');
}
.ortak h1{
margin-top: 4%;
font-size: 3.8em;
text-align: center;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
color: #3e9943;
}
.ortak p{
margin-top: 4%;
font-size: 1.7em;
font-family: 'Times New Roman', Times, serif;
margin-left: 10%;
margin-right: 18%;
}
.telifyazi{
    text-align: left;
    color: whitesmoke;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 5%;
}

.cerezyazi{
    text-align: left;
    color: whitesmoke;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 5%;
}

.services-list {
    padding: 20px;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
}

.service-img {
    width: 40%;
    height: 25%;
    border-radius: 5px;
}
.yazi {
    font-size: 1.2em;
    text-align: center;
}
.service-heading {
    font-size: 1.5em;
    margin: 15px 0 10px;
}

.service-text {
    font-size: 1.5em;
    color: #555;
    margin-top: 2%;
}
.service-item h2{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3.3em;
    color:#542349;
}
.newright{
margin-right: 29%;
}
.yazi p{
    font-size: 1.3em;
    font-weight: 100;
}
.iletisim{
    background-color: rgba(0, 0, 0, 0.8);
}
.container-c {
    margin-left: 28%;
    max-width: 600px;
    width: 100%;
    padding: 80px;
    background-color: #eeeeee;
    border-radius: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.container-c h2{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3em;
     color:#542349;
     margin-bottom: 12%;
     transition: transform 0.3s ease;
     text-align: center;
     
}
.container-c h2:hover{
    transform: scale(1.1); /* Resmi %110 oranında genişletir */
    
}

.form-group {
    margin-bottom: 20px;
}
label {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #5beb63;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
textarea {
    resize: none;
}
.btn-btn {
    text-align: center;
}

.btn-primary:active {
    transform: scale(0.98);
}
.whatsappmobile {display: none;}
.whatsappmasaustu {width: 150px; position: fixed; bottom: 70px; left: 10px; z-index: 16;}
.whatsappmobile.sagayasla {left: auto; right: 10px;}
.whatsappmasaustu.sagayasla {left: auto; right: 10px;}

.insta-sag {
    width: 150px; /* Genişlik */
    position: fixed; /* Sabit pozisyon */
    bottom: 70px; /* Sayfanın altından 70px yukarıda */
    right: 10px; /* Sağdan 10px içeri */
    z-index: 16; /* Üst üste gelen öğelerin doğru sırada görünmesini sağlar */
}

.insta-sag.sagayasla {
    right: 10px; /* Sağdan 10px içeride */
    left: auto; /* Soldan hizalama iptal */
}
.service-button {
    display: inline-block;
    margin-top: 10px; /* Space above the button */
    padding: 10px 20px; /* Button padding */
    background-color: #5beb63; /* Button color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition */
}
.service-button:hover {
    background-color: #4ab853; /* Darker shade on hover */
}
.service-btn{
    display: inline-block;
    
    padding: 10px 20px; /* Button padding */
    background-color: #5beb63; /* Button color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s; /* Smooth transition */
}
.services h2{
    margin-top: 3%;
    color: white;
}
.iletisimbutonalan {
    background-color: #28a745; /* Butonun arka plan rengi */
    color: white; /* Metin rengi */
    border: none;
    padding: 10px 25px; /* İç boşluklar */
    font-size: 18px; /* Yazı boyutu */
    border-radius: 8px; /* Kenarları yuvarlama */
    cursor: pointer; /* Fare ikonu */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Geçiş animasyonu */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

.iletisimbutonalan:hover {
    background-color: #218838; /* Hover sırasında arka plan rengi */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15); /* Hover sırasında gölge derinliği */
}


.iletisim-section {
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 40px 0;
  }
  
  .iletisim-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
 
  }
  
  .underline {
    width: 50px;
    height: 3px;
    background-color: #000000;
    margin: 0 auto 30px;
  }
  .iletisim-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .iletisim-box {
    text-align: center;
    padding: 20px;
    flex: 1;
  }
  
  .iletisim-box img {
    margin-top: 38px;
    font-size: 36px;
    color: #b41111;
    margin-bottom: 10px;
  }
  
  .iletisim-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .iletisim-box p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
  }
  .iletisim-box:not(:last-child) {
    border-right: 1px solid #ddd;
    padding-right: 20px;
  }
  
  .iletisim-box:last-child {
    padding-left: 20px;
  }
  .containerile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: 5%;
}

.iletisim {
    background: linear-gradient(to right, #e9e9e9, #ffffff);
    padding: 60px 0;
}
.iletisimile {
    background-color: white;
    padding: 60px 0;
}
.iletisimile p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.4;
}
.iletisim-baslik {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    
}

.krkit{
    height: 75px;
    width: 75px;
    border-radius: 5%;
   }
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.col-md-8, .col-md-4 {
    padding: 15px;
}

.col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
}

.col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    display: flex;
    justify-content: flex-end;
}
.button-iletisim {
    display: inline-block;
    padding: 15px 30px;
    background-color: #5beb63;
    color: #13491c;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.button-iletisim:hover {
    background-color: #4da553;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 728px) {

    /* Header Styles */
    header {
        padding: 10px; /* Yüksekliği azalt */
        position: relative;
    }

    nav ul {
        flex-direction: column; /* Dikey düzenleme */
        
        
    }

    nav ul li {
        margin: 10px 0; /* Elemanlar arasındaki boşluk */
        
    }

    nav ul li a {
        font-size: 1.1em; /* Küçük ekranlarda biraz daha büyük font */
        width: 100%; /* Tüm genişliği kapsasın */
    }

    main {
        padding-top: 50px; /* Fixed header için daha az boşluk */
    }

    .leftorta {
        height: 500px; /* Boyutu küçült */
        width: 95%; /* Genişliği artır */
        margin-left: 5%; /* Daha az boşluk */
    }

    h2 {
        font-size: 30px; /* Font boyutunu küçült */
        margin-bottom: 20px; /* Daha az boşluk */
    }
    .content {
       margin-left: -30%;
        width: 400px; /* İçerik alanının genişliğini artır */
    }
    .services {
        padding: 20px; /* Paddingi azalt */
    }

    .services h4 {
        font-size: 40px; /* Font boyutunu küçült */
        margin-bottom: 2%;
    }

    .service-container {
        flex-direction: column; /* Dikey düzen */
        align-items: center; /* Ortala */
    }

    .service {
        width: 60%; /* Genişliği artır */
        height: auto; /* Yüksekliği otomatik yap */
        margin-bottom: 20px; /* Kartlar arasında boşluk */
    }

    .service-image {
        flex: 1;
        overflow: hidden;
    }

    .service-image img {
        height: 200px; /* Görüntü yüksekliğini ayarla */
        object-fit: cover; /* Resmin kesilmesini engelle */
    }

    .service-content {
        padding: 15px; /* Paddingi azalt */
    }

    .service-content h3 {
        font-size: 1.2em; /* Başlık boyutunu küçült */
    }

    .service-content p {
        font-size: 0.9em; /* Paragraf boyutunu küçült */
    }
      footer {
        padding: 2%; /* Paddingi artırarak içeriği aç */
    }

    .footer-container {
        flex-direction: column; /* Dikey düzen */
        align-items: center; /* Ortala */
        margin-top: 1%; /* Üst boşluğu ayarla */
    }

    .social-media {
        margin: 5px 0; /* Dikey boşluk ekle */
    }

    .onem {
        margin: 5px 0; /* Dikey boşluk ekle */
    }

    .adres {
        margin: 5px 0; /* Dikey boşluk ekle */
    }

    .social-link {
        margin: 0 5px; /* Yan boşlukları azalt */
    }

    .social-link img {
        width: 2em; /* Görüntü boyutunu küçült */
        height: 2em; /* Görüntü boyutunu küçült */
    }

    .links {
        margin-bottom: 5%; /* Altındaki boşluğu artır */
        flex-direction: column; /* Dikey düzen */
        align-items: center; /* Ortala */
    }

    .links h5 {
        font-size: 0.9em; /* Başlık boyutunu küçült */
        text-align: center; /* Metni ortala */
    }

    .copyright {
        font-size: 0.7em; /* Telif hakkı metninin boyutunu küçült */
    }
    .zilresim {
        display: flex; /* Flex kutu düzeni kullan */
        flex-direction: column; /* Dikey düzen sağla */
        align-items: center; /* Ortala */
    }

    .zilresim img {
        width: 100%; /* Genişliği %100 yap */
        height: auto; /* Yüksekliği otomatik ayarla */
        margin-bottom: 10px; /* Resimler arasında boşluk ekle */
    }
    .iletisim-section {
        margin: 20px 0; /* Üst ve alt marginleri küçült */
    }
  
    .iletisim-container {
        flex-direction: column; /* Dikey düzen sağla */
        gap: 20px; /* Dikey boşlukları ayarla */
    }
  
    .iletisim-box {
        padding: 10px; /* Paddingi azalt */
        border-right: none; /* Sağ sınırı kaldır */
    }
  
    .iletisim-box:not(:last-child) {
        border-bottom: 1px solid #ddd; /* Alt sınır ekle */
        margin-bottom: 20px; /* Kutular arasında boşluk ekle */
    }
  
    .iletisim-box img {
        margin-top: 20px; /* Resim üst marginini küçült */
    }

    .iletisim-box h3 {
        font-size: 16px; /* Başlık boyutunu küçült */
    }
  
    .iletisim-box p {
        font-size: 12px; /* Metin boyutunu küçült */
    }

    .containerile {
        padding: 0 10px; /* Yan paddingleri küçült */
    }

    .iletisim {
        padding: 40px 0; /* Paddingi azalt */
    }

    .iletisim-baslik {
        font-size: 2rem; /* Başlık boyutunu küçült */
    }

    .button-iletisim {
        font-size: 1rem; /* Buton metni boyutunu küçült */
        padding: 10px 20px; /* Buton paddingini azalt */
    }
}
