/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
    box-sizing: border-box;
    background-color: #fff;
}
a:focus{
    outline: none;
}

/* Header Section */
header {
    position: relative;
    color: #fff;
    overflow: hidden;
    height: calc(100vh - env(safe-area-inset-bottom));
    padding: 20px 40px;
    box-sizing: border-box;
}

.header-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    height: 15%;
    padding: 5% 5%;    
    overflow: hidden;
}


.logo {
    z-index: 10;
    height: 100%;
}

header nav {
    z-index: 10;

}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.mobile-nav{
    display: none;
}

header nav a{
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.lang{
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
    margin-left: 30px;
}

.lang a{
    margin: 0;
}

header nav a:hover {
    color: #ffcc00;
}




header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
/*     z-index: -1; */
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
    pointer-events: none; 
} 



/* Mobil Uyumluluk */

/*Telefon Ekranı*/
@media (max-width: 768px){
    .menu-icon {/*mobile menu*/
        display: block;
        top: 15%; /* Üstte hizalama */
        right: 10%; /* Sağda hizalama */
        font-size: 1.8rem; /* Buton boyutunu ayarla */
        color: #fff; /* Buton rengi */
        cursor: pointer;
        margin: 0;
        padding: 0;
        z-index: 10;
    }
    nav {/*desktop menu*/
        display: none;
    }

    header {
        height: calc(50vh - env(safe-area-inset-bottom));
    }
    
}


/* Section Styles */
.section {
    padding: 50px 20px;
    background: #f9f9f9;
}

.section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}



/* Contact Section */
.contact {
    background: #eee;
    padding: 50px;
}

.contact form {
    max-width: 500px;
    margin: auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact button {
    padding: 10px 20px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}



/* Clients Section */
.clients-section {
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.clients-intro {
    text-align: center; /* Metni ortalar */
    max-width: 70%; /* İçeriğin genişliğini sınırlar */
    padding: 20px 0; /* Üst ve alt boşluk ekler */
}

.clients-intro h1{
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.clients-intro h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.clients-intro p {
    font-size: 1rem;
}

.clients-logos {
    display: grid;
    width: 60%;
    grid-template-columns: repeat(8, 1fr); /* 6 sütun */
    gap: 10px;
    padding: 0 60vh; /* Sağ ve sol kenarlardan 10px boşluk */
    justify-content: center;
    align-items: center;
    margin-top: 2%;
}

.clients-logos a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Client Card */
.client-card {
    padding: 20px; /* Kartın iç boşluğu */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover animasyonu */
    width: 100px; /* Kart genişliği */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    place-items: center;
    border-radius: 10px;
}

.client-card:hover {
    transform: scale(1.05); /* Hover durumunda büyütme */
}

.client-card img {
    max-width: 100%; /* Görsel genişliği kartı aşmasın */
    height: auto;
    display: block;
    margin: 0 auto; /* Görseli ortala */
}


/* Mobil Versiyon */
@media (max-width: 768px) {
    .clients-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 6 sütun */
        gap: 10px;
        padding: 0 60vh; /* Sağ ve sol kenarlardan 10px boşluk */
        justify-content: center;
        align-items: center;
        margin-top: 2%;
    }
    .clients-intro h2 {
        font-size: 1.2rem;
    }

    .clients-intro h1 {
        font-size: 2.2rem;
    }
}

    .sticky-header {
        background-color: #fff;
        padding: 1% 10%;
        position: fixed;
        top: -100px;
        left: 0;
        width: 100%;
        height: 10%;
        z-index: 999;
        transform: translateY(-100%); /* Varsayılan olarak gizli */
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }
    .sticky-header.visible {
        top: -7px;
        transform: translateY(0);
    }

    .sticky-header-flex{
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        height: 100%;
    }
    
    .sticky-header-flex{
        width: 100%;
        display: flex;
        padding: 0;
    }

    .menu-icon-flex{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    .menu-icon-sticky {
        display: none;
        font-size: 1.8rem; /* Buton boyutunu ayarla */
        color: #fd8914; /* Buton rengi */
        cursor: pointer;
        z-index: 10;
        
    }

    .logo-flex{
        display: flex;
        justify-content: flex-start;
        width: auto;
    }

    .logo-sticky{
        margin-top: 50px;
        width: 50%;
        height: auto;
        z-index: 1001;
        background-color: #fff;
        border-radius: 80px;
        padding: 5px;
    }
    .nav-sticky{
        z-index: 10;
    }

    .nav-sticky a{
        color:#fd8914;
        text-decoration: none;
        margin-left: 20px;
        font-size: 1rem;
        font-weight: bold;
        transition: color 0.3s;
        z-index: 1000;
    }

    .nav-sticky .lang{
        margin-left: 30px;
    }

    .nav-sticky .lang a{
        margin: 0;
    }

    @media (max-width:768px){

        .sticky-header {
            padding: 2% 10%;
            height: 10%;
        }
        .nav-sticky{
            display: none;
        }
        
        .menu-icon-sticky {
            display: block;
        }
        
        .sticky-header.visible {
            transform: translateY(-3px);
        }

        .logo-flex{
            justify-content: flex-end;
            padding-left: 30%;
        }
        .logo-sticky{
            width: 85%;
        }

    }
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: auto; /* Hero kısmının yüksekliği */
    background-color: #fd8914;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 20px 40px 70px 40px;
    color: white;
    box-sizing: border-box;
    border-radius: 0 0 60px 60px;
    margin-bottom: 100px;
}

.hero-content {
    max-width: 900px; /* Metin genişliği */
    padding: 20px;
}

.hero-title {
    font-size: 3rem; /* Başlık boyutu */
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif; 
    font-style: italic; 
    color: black;
}

.hero-p {
    font-size: 1.3rem; /* Metin boyutu */
    font-family: "Noto Sans", serif !important;
    line-height: 1.2;
    color: white;
    
}

.header-wave{
    position: absolute;
    width: 100%;
    top: -9%;
    left: 0;
    height: 10%;
    z-index: 2;
    overflow: hidden;
}

#more-hero-text{
    opacity: 0;
    max-height: 0;
    margin: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease; /* Geçiş efektleri */
}


#more-hero-text.visible {
    opacity: 1; /* Görünür */
    max-height: 500px; /* Yükseklik (içeriğe göre artırılabilir) */
    margin: 5% 0;
}



.hero-read-more-btn{
    display: inline-block;
    padding: 12px 24px; /* Buton boyutu */
    color: #fff;
    background-color: transparent;
    font-size: 16px; /* Yazı boyutu */
    font-weight: bold; /* Yazı kalınlığı */
    text-align: center; /* Yazıyı ortalama */
    border: 2px solid #fff;
    border-radius: 8px; /* Köşeleri yuvarlatma */
    transition: all 0.3s ease; /* Geçiş animasyonu */
    cursor: pointer; /* Tıklanabilir işareti */
    margin: 5% 0 0 0;
    z-index: 999;
    position: relative;
}

.hero-read-more-btn:hover{
    transform: translateY(-2px); /* Hover'da yukarı kayma efekti */
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto; /* Mobilde içerik boyutuna göre otomatik */
        padding: 15px; /* Daha dar padding */
        border-radius: 0 0 30px 30px;
    }

    .hero-content {
        max-width: 90%;
        height: auto;
    }

    .hero-p {
        max-width: 100%;
        text-align: justify;
        margin: 0 auto;
        font-size: 0.9rem; 
        line-height: 1.2;
    }

    .hero h3 {
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    #more-hero-text.visible {
        padding-bottom: 120px;
    }
}
.menu {
    position: fixed;
    top: -200%; /* Başlangıçta gizli */
    left: 0;
    width: 100%;
    height: calc(100vh - env(safe-area-inset-bottom));
    background-color: #fd8914;
    color: white;
    z-index: 999;
    transition: top 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9998;
  }

  /* Menü Kapatma Butonu */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
  }
  
  /* Menü Bağlantıları */
  .menu-links {
    list-style: none;
    text-align: center;
    padding: 0;
  }
  
  .menu-links li {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-links li img{
    display: none;
    max-width: 30px;
    max-height: 30px;
    margin-right: 10px;
  }
  
  .menu-links li a {
    
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .menu-links li:hover img{
    display: block;
  }
  
  .menu-links li a:hover {
    color: #ffcc00;
  }
  
  /* Açılır Menü Aktif */
  .menu.active {
    top: 0; /* Menü tamamen açılır */
  }

  .menu .lang{
    
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
    margin-left: 30px;
}

.menu .lang a{
    color: white;
    margin: 0;
    text-decoration: none;
}

menu .lang a:hover{
  color:#ffcc00;
}
.whatwedo-section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0;
    margin-bottom: 50px;
}

.whatwedo-title{
    font-size: 3.5rem;
    text-align: center;
    font-style: italic;
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    margin: 0;
}

.whatwedo-background{
    margin-top: 5%;
    width: 60%;
    height: 250px;
    background-color: #273c67;
    padding: 20px;
    color: white;
    border-radius: 30px;
}

.whatwedo-card-container {
    display: flex;
    gap: 20px;
    width: 70%;
    height: auto;
    padding: 30px 70px;
}

.whatwedo-card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40%;
    height: auto;
    background-color: white;
    border-radius:20px;
    background-color: #fd8914;
    color: #fff;
    align-self: start;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animasyon geçişleri */
    border: 2px solid #fff;
    transform: rotate(2deg);
}
.whatwedo-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transform: rotate(0deg);
  }

.card-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 150vh;
    margin-top: 30px;
}

.card-icon img{
    width: 10vh;
    padding: 10px;
}

.card-title{
    max-height: 10vh;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.card-p{
    height: 15vh;
    align-self: flex-end;
    text-align: center;
    font-family: "Noto Sans", serif;
}

.card-p p{
    padding: 0 30px 20px 30px;
}

.card-button{
    font-size: 0.8rem;
    font-weight: bold;
    height: 33vh;
    padding: 10px;
    text-align: center;
    
}

.whatwedo-background h1{
    margin-top: 4%;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    font-style: italic;
}

.arrows{
    width: 62%;
    height: 50%;
}

.scratch{
    width: 30%;
    height: 40%;
}

.overlay-btn{
  display: none;
}

/* .overlay-btn a{
    display: inline-block;
    padding: 12px 24px;
    background-color: #fd8914 ;
    color: white; 
    font-size: 16px; 
    font-weight: bold; 
    text-align: center; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease; 
    cursor: pointer; 
    text-decoration: none;
    border: 2px solid #fff;
}

.overlay-btn a:hover {
    background-color: #ffcc00; 
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); 
    transform: translateY(-2px); 
  }

  .overlay-btn a:active {
    transform: translateY(0); 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  }

.overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    border-radius:20px;
  }

  .whatwedo-card:hover .overlay {
    bottom: 0;
    height: 100%;
  } */
/* 
  .organization-overlay{
    background-image: url(imgs/organization.jpg);
  }

  .tech-sup-overlay{
    background-image: url(imgs/technical_support.jpg);
  }

  .personal-overlay{
    background-image: url(imgs/personnel_support.jpg);
  }

  .stand-overlay{
    background-image: url(imgs/exhibition_stands.jpg);
  }
 */
 

  @media (max-width: 768px) {
    .whatwedo-section{
      padding: 25% 0;
    }
    .whatwedo-card-container {
      display: none;
    }

    .whatwedo-section h1{
      font-size: 2.5rem;
    }
    .scratch{
      width: 80%;
    height: 40%;
    }
    .arrows {
      display: none;
    }

  }


  .whatwedo-about{
    display: flex;
    width: 80%;
    margin: 0 auto 150px auto;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
  }

  .whatwedo-about img{
    height: 500px;
  }

  .whatwedo-about-title{
    font-style: italic;
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    height: 60px;
    align-content: center;
    margin: 40px auto;
  }

  .whatwedo-about-card{
    width: 20%;
  }

  .whatwedo-p{
    font-family: "Patrick Hand", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
  }

  @media (max-width: 768px){
    .whatwedo-about{
      flex-direction: column;
      align-items: center;
    }

    .whatwedo-about-divider{
      display: none;
    }

    .whatwedo-about-card{
      width: 90%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
    }

    .whatwedo-about-title{
      width: 90%;
      margin: 20px auto;
    }

    .whatwedo-p{
      width: 200px;
    }
  }
.gallery-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 100px 0;
    text-align: center;
  }
  .grid-container {
    columns: 5 200px;
    column-gap: 1.5rem;
    width: 80%;
    margin: 1px auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(250px, 1fr)); /* 250px genişlikte kutular */
    gap: 15px;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    gap: 20px;
    div {
      margin: 0 1.5rem 1.5rem 0;
      display: inline-block;
      width: 100%;
      box-shadow: 5px 5px 5px rgba(#fd8914);
      transition: all .25s ease-in-out;
      &:hover img {
        filter: grayscale(0);
      }
      &:hover {
        border-color: gray;
      }
      img {
        width: 100%;
        height: 250px; /* Sabit yükseklik belirle (örneğin 250px) */
        object-fit: cover; /* Resim, çerçeveye tam sığacak şekilde kırpılır */
        /*filter: grayscale(100%);*/
        transition: all .25s ease-in-out;
        border: 2px solid grey;
        padding: 5px;
        border-radius: 8px;
        text-align: center;
      }
      p {
        margin: 5px 0;
        padding: 0;
        text-align: center;
        font-style: italic;
      }
    }
  }

  .gallery-container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
   .grid-item:hover{
	border: 2px solid orange;
}
  .gallery-btn {
    display: inline-block;
    padding: 12px 24px; /* Buton boyutu */
    background-color: #fd8914 ;
    color: white; /* Yazı rengi */
    font-size: 16px; /* Yazı boyutu */
    font-weight: bold; /* Yazı kalınlığı */
    text-align: center; /* Yazıyı ortalama */
    border: none; /* Kenarlık kaldırma */
    border-radius: 8px; /* Köşeleri yuvarlatma */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    transition: all 0.3s ease; /* Geçiş animasyonu */
    cursor: pointer; /* Tıklanabilir işareti */
    margin-top: 20px;
  }

  .gallery-btn:hover {
    background-color: #ffcc00; /* Hover durumu için gradyan ters çevirme */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Hover durumunda gölgeyi büyütme */
    transform: translateY(-2px); /* Hover'da yukarı kayma efekti */
  }

  .gallery-title{
    font-size: 3.5rem;
    text-align: center;
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    margin: 0;
  }
  
  
  @media (max-width: 768px) {

    .grid-container{
      grid-template-columns: repeat(1, minmax(250px, 1fr));
    }

    .gallery-title{
      font-size: 2.5rem;
    }
}
  
  
  
.services-carousel {
    display: none;
    position: relative;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 5%;
    touch-action: pan-y;
  }

  .services-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .services-carousel-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-color: #fd8914;
    color: white;
    padding: 0 5%;
    box-sizing: border-box;
  }

  .services-carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    padding: 0 5%;
    box-sizing: border-box;
    z-index: 5;
    pointer-events: none; /* Buton dışındaki alan tıklanamaz */

  }

  .services-carousel-button {
    background-color: rgba(0, 0, 0, 0.0);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
    pointer-events: auto; /* Ama butonların kendisi tıklanabilir */

  }

  .services-carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.0);
  }

  .carousel-card-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 150vh;

}

.carousel-card-icon img{
    width: 10vh;
    padding: 10px;
}

.carousel-card-title{
    max-height: 10vh;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.carousel-card-p{
    height: 15vh;
    align-self: flex-end;
    text-align: center;
    font-family: "Noto Sans", serif;
}

.carousel-card-p p{
    padding: 0 30px 20px 30px;
}

.carousel-explore-btn{
    display: inline-block;
    padding: 12px 24px; /* Buton boyutu */
    color: #fff;
    background-color: transparent;
    width: 30%;
    font-size: 16px; /* Yazı boyutu */
    font-weight: bold; /* Yazı kalınlığı */
    text-align: center; /* Yazıyı ortalama */
    border: 2px solid #fff;
    border-radius: 8px; /* Köşeleri yuvarlatma */
    transition: all 0.3s ease; /* Geçiş animasyonu */
    cursor: pointer; /* Tıklanabilir işareti */
    margin: 0 auto;
    text-decoration: none;
    font-family: "Noto Sans", serif;
    z-index: 199;
    position: relative;
}


  @media (max-width: 768px) {
    
    .services-carousel {
      display: block;
    }
  }
.ourvision{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    margin: 150px auto;
    padding-bottom: 150px;
    padding-top: 100px;
    box-sizing: border-box;
}

.ourvision-maintitle{
    text-align: center;
    font-size: 2.5rem;
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    margin: 0;
}
.ourvision-maintitle-scratch{
    width: 30%;
    margin: 0 auto;
}
.ourvision-div{
    display: flex;
    flex-direction: column;
    margin: 0 2%;
    background-color: #fff;
    width: 100%;
    height: 200px;
    padding: 50px;
    border-radius: 30px;
    border: 2px solid #fd8914;
    text-align: center;
    transform: rotate(2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animasyon geçişleri */
}

.ourvision-div:hover{
    transform: rotate(0deg);
}
.ourvision-title{
    margin: 0;
    font-size: 1.5rem;
    font-family: "Noto Sans", serif !important;
    font-weight: bold;
}

.ourvision-content{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.ourvision-p{
    width: 100%;
    height: 100%;
    font-family: "Noto Sans", serif !important;
}
@media (max-width: 768px){
    .ourvision{
        width: 100%;
        margin: 0 auto;
        padding-bottom: 100px;
    }

    .ourvision-content{
        display: none;
    }

    .ourvision-div{
        width: 60%;
    }

    .ourvision-title{
        text-align: center;
        font-size: 1.0rem !important;
    }
    .ourvision-p{
        width: 100%;
        text-align: center;
    }

    .ourvision-maintitle-scratch{
        width: 60%;
        margin: 0 auto;
    }
}
:root {
    --primary-bg: #1e1e1e;
    --text-light: #ffffff;
    --accent: #c4af8d;
    --input-bg: #fff;
    --button-bg: #a32020;
    --font-main: 'Poppins', sans-serif;
}

.footer {
    background-color: var(--primary-bg);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-main);
}
.footer-container {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
    width: 100%;
}
.footer-section {
    flex: 1;
    min-width: 280px;
    box-sizing: border-box;
}
.footer h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.footer ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 16px;
    display: block;
    margin: 8px 0;
    transition: 0.3s;
}
.footer ul li a:hover {
    color: var(--accent);
}
.form-container {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 5px;
}
.form-container form {
    display: flex;
    flex-direction: column;
}
.form-container label {
    color: var(--text-light);
    margin-bottom: 5px;
}
.newsletter input,
.newsletter textarea {
    padding: 12px;
    margin-bottom: 15px;
    background: var(--input-bg);
    border: 1px solid #333;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    width: 90%;
}
.form-container textarea {
    height: 120px;
}
.form-container button {
    background-color: var(--button-bg);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.form-container button:hover {
    background-color: #8b1a1a;
}
.footer-bottom {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.8;
}

.social-icons{
    margin: 10px 0;
}

.social-icons a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    margin-right: 10px;
}

.map iframe {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 15px;
    width: 100%;
    height: 200px;
}

.newsletter button {
    background-color: #fd8914; 
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.newsletter button:hover {
    background-color: #e07810;
}
.footer-content-left{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-content-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.footer h3{
    font-size: 1.8rem;
    color: #fd8914; 
    margin-bottom: 15px;
}

@media (max-width:768px){
    .footer-container{
        flex-direction: column;
    }

    .footer-content-left{
        align-items: center;
        text-align: center;
        order: 3;
    }

    .footer-content-center{
        order: 1;
    }
    
    .footer-content-right{
        align-items: center;
        text-align: center;
        order: 2;
    }

}

/* 
.footer {
    background-color: #1e1e1e; 
    color: #fff; 
    padding: 100px 20px;
    font-family: 'Quicksand', sans-serif;
    width: 100%;
}


.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-center{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
    text-align: left; 
    padding: 40px;
}

.footer-left h3, .footer-right h3 {
    font-size: 1.8rem;
    color: #fd8914; 
    margin-bottom: 15px;
}

.footer-left p, .footer-right p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-form {
    max-width: 100%;
}

.footer-form input, .footer-form textarea {
    width: 89%;
    padding: 8px; 
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem; 
}

.footer-form button {
    background-color: #fd8914; 
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.footer-form button:hover {
    background-color: #e07810;
}


.map iframe {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 15px;
    width: 100%;
    height: 200px;
}

.footer-menu-links{
    padding: 0;
    list-style: none;
}

.footer-menu-links a{
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.footer-menu-links li{
    margin: 10px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fd8914; 
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; 
        align-items: center;
    }

    .footer-left, .footer-right {
        max-width: 100%; 
        margin-bottom: 20px;
        padding: 10px;
    }

    .footer-form {
        max-width: 95%; 
    }
}
 */
.study-case-container {
  padding: 50px 0;
  text-align: center;
  margin-bottom: 150px;
}
.study-case-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}
.swiper-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.swiper-wrapper{
  height: auto !important;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
}
.custom-pagination {
  margin-top: 15px;
  font-weight: bold;
}

.swiper-slide {
  user-select: none;          /* Metin seçimini engeller */
  -webkit-user-drag: none;    /* Görsel sürüklemeyi kapatır */
  outline: none;              /* Mavi kenarlığı engeller */
}

.swiper-slide img {
  pointer-events: none;       /* Görsel üzerine tıklamayı pasifleştirir (isteğe bağlı) */
}

.swiper-slide:focus,
.swiper-slide:active {
  outline: none !important;   /* Her türlü focus kenarlığını kaldır */
}


.swiper-button-next,
  .swiper-button-prev {
    color: orange;
  }
@media (max-width: 768px) {
  .swiper-container { 
    width: 30%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,28%);
  }

  .custom-pagination{
    margin-top: -100px;
  }

  .swiper-slide img {
    max-height: 300px;
  }

  .studycase-scratch{
    width: 80% !important;
    height: 40% !important;
    margin-bottom: 30px !important;
  }
}
.ourvision-carousel {
  display: none;
  position: relative;
  width: 90%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 10px;
  margin: 5% auto;
  touch-action: pan-y;
  }

  .ourvision-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .ourvision-carousel-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-width: 100%;
    height: 380px;
    padding: 0 5%;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 30px;
    padding: 10px; /* İç boşluk */
  box-shadow: inset 0 0 0 2px #fd8914; /* İç kenarlık */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ourvision-carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    padding: 0 5%;
    box-sizing: border-box;
    z-index: 999;
  }

  .ourvision-carousel-button {
    background-color: rgba(0, 0, 0, 0.0);
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
    z-index: 9;
  }

  .ourvision-carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.0);
  }

  .ourvision-carousel-title{
    box-sizing: border-box;
    max-width: 100%;
  }
  
  .ourvision-carousel-p{
    max-width: 75%;
    box-sizing: border-box;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    
    .ourvision-carousel {
      display: block;
    }
  }
.ourservices{
    width: 100%;
    padding: 100px 0;
    background-color: #fd8914;
    border-radius: 60px;
}

.ourservices-container{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    color: white;
}

.ourservices-title{
    margin: 0 auto 30px auto;
    font-size: 2.8rem;
}

.ourservices-item{
    margin: 30px auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.ourservices-content h1{
    margin: 0;
}

.ourservices-img{
    max-width: 30%;
    padding: 20px;
}

.ourservices-content{
    max-width: 70%;
    padding: 20px;
}

.ourservices-img img{
    max-width: 100%;
    border-radius: 20px;
    border: 2px solid white;
}

.img-right{
    order:2;
    transform: rotate(2deg);
}
.content-right{
    order:1;
    text-align: right;
}

.left-image{
    transform: rotate(-2deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ourservices-container{
        width: 90%;
    }

    .ourservices-item{
        flex-direction: column;
    }

    .ourservices-title{
        font-size: 2.5rem;
    }

    .ourservices-img{
        max-width: 70%;
        padding: 20px;
        order: 1;
    }

    .ourservices-content{
        max-width: 80%;
        order: 2;
        text-align: justify !important;
    }
    
    .ourservices-content h1{
        text-align: center !important;
    }
    
    
}
