:root{
  --primary: #00c2c7;   /* attığın turkuaz renk */
  --dark: #0b1220;      /* koyu lacivert */
  --white: #ffffff;  /* beyaz */
  --text: #0f172a;
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body{
  background: var(--white);
  color: #0f172a;
}



header{
  background: var(--white);
  border-bottom: 4px solid rgba(0,194,199,.25);
  padding: 18px 0;
}
.header-actions{
  display: flex;
  align-items: center;
  gap: 12px;   
}


.cta-btn{
  height: 44px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--primary);
  color: #fff;

  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;

  transition: transform .15s ease, box-shadow .15s ease;
}

.cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,194,199,.35);
}


.container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 72px;
  width: 160px;     /* sabit alan */
  object-fit: contain;
  display: block;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu li {
  cursor: pointer;
}

.dropdown { position: relative; }

/* Menü satırını tek hizada tut */
.menu {
  align-items: center;
}

/* Tüm menü linkleri aynı ölçüde olsun */
.menu > li,
.menu > li > span {
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  height: 44px;        /* hepsi aynı yükseklik */
  padding: 0 10px;     /* hepsi aynı yatay boşluk */
  line-height: 1;      /* “Solutions” zıplamasın */
  font-size: 19px;     /* punto */
  font-weight: 600;
}
.menu > li:hover,
.menu > li > span:hover{
  color: var(--primary);
}
/* Dropdown trigger’a özel eski padding/transform varsa sıfırla */
.dropdown-trigger{
  padding: 0 10px;     /* yukarıdakiyle aynı */
  transform: none;
}

.dropdown-trigger{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}

.dropdown:hover .dropdown-trigger{
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.dropdown-menu{
  position: absolute;
  top: calc(100% + 12px);
  left: 0;

  width: 360px;                 /* BÜYÜTTÜK */
  background: var(--white);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 12px;

  display: none;
  z-index: 1000;

  box-shadow: 0 18px 50px rgba(0,0,0,.45);

  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  
}
/* HOVER KOPMASIN DİYE GÖRÜNMEZ KÖPRÜ */
.dropdown-menu::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;     /* menü ile dropdown arasındaki boşluk */
  height: 12px;   /* boşluk kadar */
}


.dropdown:hover .dropdown-menu{
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li{
  padding: 14px 14px;           /* daha ferah */
  font-size: 15px;              /* daha büyük */
  line-height: 1.2;
  border-radius: 12px;
  cursor: pointer;

  color: var(--text);
  transition: background .18s ease, transform .18s ease;
}

.dropdown-menu li:hover{
  background: rgba(0,194,199,.10);
  color: var(--primary);
  transform: translateX(2px);
}

.dropdown-menu {
  list-style: none;   /* noktaları kaldırır */
  margin: 0;
  padding: 12px;
}

.dropdown-menu li {
  list-style: none;   /* garanti olsun diye */
}



#langBtn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 5px 10px;
  cursor: pointer;
  position: relative;
  left: -12px;
 
}
#langBtn:hover{
    
    background: var(--primary);
    color: var(--white);
    
    
}



.brands {
  overflow: hidden;
  background: var --white;
  padding: 20px 0;
}

.marquee {
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}
.hero{
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,.88) 0%, rgba(11,18,32,.55) 55%, rgba(11,18,32,.20) 100%);
}

.hero-inner{
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.hero-inner h1{
  font-size: 48px;
  line-height: 1.05;
  max-width: 720px;
  margin-left:38px;
}

.hero-inner p{
  margin-top: 14px;
  font-size: 18px;
  opacity: .9;
  max-width: 620px;
  margin-left:38px;
}

.hero-actions{
  margin-top: 26px;
  display: flex;
  gap: 14px;
 
 margin-left:38px;
  flex-wrap: wrap;
}

.btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}



.btn-primary{
  background: var(--primary);
  color: #fff;
}

.btn-ghost{
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  
}
.btn-ghost:hover{
    
    
    background: rgba(0,194,199,.15);   
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
    
}
.btn-primary:hover{
  background: #00b4b9; 
  box-shadow: 0 10px 28px rgba(0,194,199,.45);
  transform: translateY(-1px);
}
.btn:hover{
  transform: translateY(-1px);
}

.services{
  padding: 80px 0;
  background: #fff;
}

.services h2{
  font-size: 32px;
  margin-bottom: 32px;
}

.services-viewport{
    
  margin-top: 28px;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px; /* scrollbar için nefes */
  scroll-behavior: smooth;
  width: 100%;
  justify-content: center;
}

.services-track{
  display: flex;
  gap: 24px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  transition: transform .8s ease;
  
}


.services{
  padding: 70px 0 80px;
  background: #fff;
}

.services-title{
  margin: 0 0 18px;
  
  transform: translate(0px, 24px);
  text-align: center;       /* sol üst */
  font-size: 28px;
  white-space: nowrap;
  line-height: 1.1;
  font-weight: 800;
  margin-left:-96px;
  margin-top:20px;
}


/* KART */
.service-card{
  min-width: calc(25% - 18px); /* aynı anda 4 kart */
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.service-card h3{
  margin-top: 18px;
  font-size: 18px;
}

.service-card p{
  margin: 10px 0 16px;
  font-size: 14px;
  color: #555;
}

/* DAHA FAZLA BİLGİ (text gibi) */
.service-card .more{
  font-size: 14px;
  color: var(--primary);
  cursor: pointer;
  text-decoration: underline;
}

/* Hover kart hissi */
.service-card:hover{
  transform: translateY(-4px);
  transition: .3s ease;
}
/* Normal kart */
.services-viewport::-webkit-scrollbar{
  display: none;
}
.services-viewport{
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promo{
  padding: 70px 0;
  background: #fff;
}

.promo-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.promo-left{
  flex: 1;
  max-width: 520px;
}

.promo-left h2{
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 900;
}

.promo-left p{
  margin: 0 0 18px;
  color: #556;
  font-size: 15px;
  line-height: 1.6;
}

.promo-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.promo-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,194,199,.35);
  filter: brightness(1.05);
}

.promo-right{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.promo-right img{
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  object-fit: cover;
  margin-left:12px;
}











/* Responsive */
@media (max-width: 900px){
  .promo-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .promo-right{
    width: 100%;
    justify-content: flex-start;
  }
  .promo-right img{
    max-width: 100%;
  }
}



.partners{
  padding: 70px 0 70px;
  background: #fff;
}

.partners-title{
    transform: TranslateX(-14px);
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
   text-align:center;
    
    
    
}

.partners-viewport{
  overflow-x: auto;     /* SAĞ–SOL SCROLL */
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 8px; 
  
}

.partners-track{
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  transition: transform .8s ease;
  will-change: transform;
}

.partners-track img{
  height: 56px;           /* hepsi aynı boy */
  width: auto;
  opacity: .85;
  filter: grayscale(1);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.partners-track img:hover{
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.partners-viewport::-webkit-scrollbar{ display:none; }
.partners-viewport{ scrollbar-width:none; -ms-overflow-style:none; }

/* Dropdown linkleri: default mavi/altçizgiyi kapat */
.dropdown-menu a{
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 12px 16px;
  font-weight: 600;
}

/* Hover görünümü (2. fotodaki gibi) */
.dropdown-menu a:hover{
  background: rgba(0,0,0,.06);
}

/* Liste boşlukları */
.dropdown-menu{
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.dropdown-menu li{
  margin: 0;
}


/* Çözümler sayfası genel konteyner */
.solution-page .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Başlık + kısa açıklama alanı */
.solution-hero{
  padding: 36px 0 18px;
}
.solution-hero h1{
  margin: 0 0 10px;
  font-size: 46px;
  line-height: 1.05;
}
.solution-hero p{
  margin: 0;
  max-width: 860px;
  font-size: 18px;
  line-height: 1.6;
}

/* İçerik: sol (genel bakış) + sağ (kutular) dengesi */
.solution-content{
  padding: 24px 0 40px;
}
.solution-content .container{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 36px;
  align-items: start;
}

/* “Genel Bakış” bloğu */
.solution-content h2{
  margin: 0 0 12px;
  font-size: 26px;
}
.solution-content p{
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  max-width: 820px;
}

/* Sağ kutular */
.solution-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
}
.solution-box{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.solution-box h3{
  margin: 0 0 10px;
  font-size: 20px;
}
.solution-box ul{
  margin: 0;
  padding-left: 18px;
}
.solution-box li{
  margin: 6px 0;
}

/* Mobil */
@media (max-width: 900px){
  .solution-content .container{
    grid-template-columns: 1fr;
  }
  .solution-hero h1{ font-size: 34px; }
}


/* Çözümler sayfasında Genel Bakış alt alta gelsin */
.solution-content .container{
  display: block; /* grid'i iptal ediyoruz */
}

/* Genel Bakış başlığı */
.solution-content h2{
  margin-bottom: 12px;
}

/* Genel Bakış metni */
.solution-content p{
  max-width: 900px;
  margin-bottom: 32px;
}

/* Sağdaki kutular (Neler Sağlar / Hangi Alanlarda) */
.solution-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}



/* Hero alanını tek kolon yap */
.solution-hero .container{
  display: block;
}

/* Başlık */
.solution-hero h1{
  margin-bottom: 16px;
  
}

/* Üstte sağda duran kısa açıklama → alta gelsin */
.solution-hero p{
  max-width: 900px;
  margin: 0 0 28px 0;
  font-size: 18px;
  line-height: 1.6;
}

.menu{
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu li{
  list-style: none;
  pointer-events: auto;   
}

.menu li a{
  display: block;         
  pointer-events: auto;
  color: inherit;
  text-decoration: none;
}

.menu li::before,
.menu li::after{
  pointer-events: none;
}


.contact-section{
  padding: 80px 0;
  background: #f8f9fb;
}

.contact-section h2{
  font-size: 38px;
  margin-bottom: 12px;
}

.contact-desc{
  max-width: 600px;
  margin-bottom: 40px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li{
  margin-bottom: 18px;
}

.contact-info strong{
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact-form button{
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: #00c2c7;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* Mobil */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

/* Contact alanı sol tarafı dikey hizala */
.contact-section .contact-grid{
  align-items: flex-start;
}

/* Başlık ve açıklama her zaman en üstte */
.contact-section h2{
  margin-top: 0;
}

.contact-desc{
  margin-top: 8px;
  margin-bottom: 32px;
  max-width: 420px;
}

/* Sol taraf içeriği üstten başlasın */
.contact-info{
  margin-top: 0;
}

/* Mobilde de düzgün aksın */
@media (max-width: 900px){
  .contact-desc{
    max-width: 100%;
  }
}




.solutions-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-left:-8px;
}

.solution-card{
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: all .35s ease;
}

.solution-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.solution-card h3{
  padding: 18px 18px 6px;
  font-size: 18px;
}

.solution-card span{
  padding: 0 18px 18px;
  display: block;
  font-size: 14px;
  color: #00c2c7;
}

/* Hover efekti (premium hissi) */
.solution-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

/* Mobil */
@media(max-width: 900px){
  .solutions-grid{
    grid-template-columns: 1fr;
  }
}

/* Çözümler sayfası: ortala */
.solutions-grid-section{
  padding: 50px 0;
}

.solutions-grid-section .container{
  max-width: 1100px;   /* isteğe göre: 1000-1200 arası */
  margin: 0 auto;
}

/* Grid'i ortala */
.solutions-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px)); /* kart genişliği sabit gibi */
  gap: 28px;
  justify-content: center;  /* 🔥 grid'i sayfanın ortasına alır */
}

/* Mobil */
@media (max-width: 1000px){
  .solutions-grid{
    grid-template-columns: repeat(2, minmax(0, 320px));
  }
}
@media (max-width: 650px){
  .solutions-grid{
    grid-template-columns: 1fr;
  }
}

.herosol{
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image: url("assets/herosol.png");
  background-size: cover;
  background-position: center;
}

.herosol-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,.88) 0%, rgba(11,18,32,.55) 55%, rgba(11,18,32,.20) 100%);
}

.herosol-inner{
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.herosol-inner h1{
  font-size: 85px;
  line-height: 1.05;
  max-width: 720px;
  font-weight:600;
  
}

.herosol-inner p{
  margin-top: 14px;
  font-size: 18px;
  opacity: .9;
  max-width: 620px;
}

.herosol-actions{
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}



.btn-primary{
  background: var(--primary);
  color: #fff;
}

.btn-ghost{
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  
}
.btn-ghost:hover{
    
    
    background: rgba(0,194,199,.15);   
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
    
}
.btn-primary:hover{
  background: #00b4b9; 
  box-shadow: 0 10px 28px rgba(0,194,199,.45);
  transform: translateY(-1px);
}
.btn:hover{
  transform: translateY(-1px);
}


.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
  padding: 12px 14px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: .25s ease;
  pointer-events: none;
  max-width: 320px;
}
.toast.show{
  opacity: 1;
  transform: translateY(0);
}
.toast.ok{ border-left: 4px solid #00c2c7; }
.toast.fail{ border-left: 4px solid #ff4d4f; }


*{ box-sizing: border-box; }
img{ max-width: 100%; height: auto; display: block; }

.container{
  width: min(1120px, 100% - 32px); /* ortalı + mobilde padding */
  margin-inline: auto;
}

html{ scroll-behavior: smooth; }

.solutions-grid{
  display: grid;
  gap: 28px;
  justify-content: center; /* sayfada ortalar */
  grid-template-columns: repeat(3, minmax(0, 320px));
}

@media (max-width: 1024px){
  .solutions-grid{
    grid-template-columns: repeat(2, minmax(0, 320px));
  }
}

@media (max-width: 680px){
  .solutions-grid{
    grid-template-columns: minmax(0, 1fr);
  }
}


h1{
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1.1;
}
h2{
  font-size: clamp(22px, 2.2vw, 38px);
  line-height: 1.2;
}
p{
  line-height: 1.6;
}



header nav ul{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;         /* 🔥 küçük ekranda bozulmayı önler */
  justify-content: flex-end;
}

/* Ortak container çizgisi */
.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER hizası */
.site-header{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo: bir tık sola */
.logo-wrap{
  display: flex;
  align-items: center;
  margin-left: -16px;   /* 👈 logo 1 tık sola */
}

.logo-wrap img{
  height: 100px;        /* logonun boyu burada sabitlenirse daha premium durur */
  width: auto;
  display: block;
}

/* Menü */
.main-nav .menu{
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
/* Hizmet Alanlarımız kartları - responsive ve düzgün görünüm */
.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
  justify-items: stretch;
}

/* Kartlar */
.service-card{
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Eğer wrapper'da ortalama/translate varsa iptal */
.services-grid,
.service-card{
  transform: none;
}

/* SERVICES: yatay scroll kalsın ama ortalı dursun */
.services-viewport{
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;

  /* sağa kaymayı yapan şeyler varsa temizle */
  transform: none !important;

  /* premium: scrollbar görünümü (opsiyonel) */
  -webkit-overflow-scrolling: touch;
}

/* Track: flex + scroll */
.services-track{
  display: flex;
  gap: 24px;

  /* sağa kayıklığı bitiren kritikler */
  width: 100%;
  max-width: 100%;
  margin: 0;

  /* kartların container içinde “doğru” başlaması */
  padding: 0 16px; /* istersen 24px yap */

  /* slider’dan kalma translate varsa öldür */
  transform: none !important;
  translate: none !important;

  /* scroll-snap (istersen) */
  scroll-snap-type: x mandatory;
}

/* Kart */
.service-card{
  flex: 0 0 320px;       /* kart genişliği (280-360 arası deneyebilirsin) */
  scroll-snap-align: start;
  margin: 0;
}

/* Mobilde kart biraz daralsın */
@media (max-width: 700px){
  .service-card{ flex-basis: 280px; }
  .services-track{ padding: 0 12px; }
}



/* === SERVICES SLIDER HİZALAMA FIX === */

.services{
  overflow: hidden;
}

.services-viewport{
  width: 100%;
  overflow-x: auto;
}

.services-track{
  display: flex;
  gap: 24px;

  /* KRİTİK SATIRLAR */
  max-width: 1120px;          /* container ile aynı */
  margin-left: auto;
  margin-right: auto;

  padding-left: 0;            /* soldan kaymayı bitirir */
  padding-right: 0;

  transform: none !important; /* slider’dan kalan kaydırmaları öldür */
}

/* Kart genişliği */
.service-card{
  flex: 0 0 320px;
}

/* PARTNERS MARQUEE */
.partners{
  padding: 60px 0;
  overflow: hidden;
}

.partners-viewport{
  overflow: hidden;
  width: 100%;
}

.partners-track{
  display: flex;
  align-items: center;
  gap: 60px;

  width: max-content;
  animation: partners-scroll 45s linear infinite;
}

.partners-track img{
  height: 60px;
  width: auto;
  opacity: 0.75;
  transition: opacity .6s ease;
}

.partners-track img:hover{
  opacity: 1;
}

/* Animasyon */
@keyframes partners-scroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* Mobilde biraz yavaş ve küçük */
@media (max-width: 768px){
  .partners-track{
    animation-duration: 40s;
  }
  .partners-track img{
    height: 32px;
  }
}

/* Biz Kimiz hizalama */
.about-section,
.about-content,
.about-text{
  width: 100%;
}

.about-section .container{
  padding-left: 0;   /* hero + header çizgisiyle hizalar */
}
/* Biz Kimiz başlığı */
.about-title{
  color: #00c2c7;   /* turkuaz */
  font-weight: 700;
  margin-bottom: 100px;
}

.about-text{
    
    margin-bottom:;
    
    
    
}

.about-simple{
  padding: 60px 0;
  background: #fff;
}

/* Başlık */
.about-title{
  color: #00c2c7;          /* turkuaz */
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Yazı alanı */
.about-text{
  max-width: 100%;
}

.about-text p{
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 15px;
  color: #111;
}
/* About: tek kolon (başlık üstte, metin altta) */
.about-simple .container{
  display: block !important;          /* flex/grid varsa kapat */
}

.about-title{
  display: block;
  width: 100%;
  color: #00c2c7;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 18px 0;
}

.about-text{
  display: block;
  width: 100%;
  max-width: 900px;                   /* ister 1000 yap */
}

.about-text p{
  margin: 0 0 14px 0;
  line-height: 1.7;
}


/* =========================
   MOBILE POLISH PACK
   ========================= */

/* Genel: taşmayı bitir */
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* Container mobil padding */
.container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
@media (max-width: 900px){
  .header-inner{ gap: 12px; }
  .main-nav .menu{
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 14px;
  }
  .logo-wrap img{ height: 36px; }
}

/* HERO */
@media (max-width: 900px){
  .hero{ min-height: auto; }
  .hero-content{ margin-left: 0 !important; }
  .hero h1{ font-size: 34px; line-height: 1.1; }
  .hero p{ font-size: 14px; }
  .hero-buttons{ gap: 10px; flex-wrap: wrap; }
}

/* HİZMET ALANLARIMIZ: yatay scroll kalsın, mobilde düzgün */
@media (max-width: 900px){
  .services-viewport{ overflow-x: auto; }
  .services-track{
    padding: 0 12px;
    gap: 14px;
  }
  .service-card{ flex: 0 0 260px; }
}

/* SOLUTIONS GRID: 3 -> 2 -> 1 */
@media (max-width: 1000px){
  .solutions-grid{ grid-template-columns: repeat(2, minmax(0, 320px)); }
}
@media (max-width: 650px){
  .solutions-grid{ grid-template-columns: 1fr; }
}

/* ABOUT (Biz Kimiz): metin rahat okusun */
@media (max-width: 900px){
  .about-title{ font-size: 30px; }
  .about-text{ max-width: 100%; }
  .about-text p{ font-size: 14px; }
}

/* PARTNERS: logolar taşmasın */
@media (max-width: 900px){
  .partners-track{ gap: 32px; }
  .partners-track img{ height: 28px; }
}
/* =========================
   MOBILE FIX PACK
   ========================= */
@media (max-width: 900px){

  /* HEADER: logo görünsün + menü yatay kaydırmalı olsun */
  .site-header{ position: sticky; top: 0; z-index: 9999; background:#fff; }
  .header-inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
  }

  .logo-wrap{ flex: 0 0 auto; margin-left: 0 !important; }
  .logo-wrap img{ height: 34px; width:auto; display:block; }

  .main-nav{ flex: 1 1 auto; overflow: hidden; }

  .main-nav .menu{
    display:flex;
    flex-direction: row !important;   /* dikey listeyi öldür */
    flex-wrap: nowrap !important;      /* alt alta düşmesin */
    gap: 10px;
    justify-content: flex-start !important;

    overflow-x: auto;                  /* yatay kaydır */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 0;
    margin: 0;
  }
  .main-nav .menu::-webkit-scrollbar{ display:none; }

  .main-nav .menu li{ flex: 0 0 auto; }
  .main-nav .menu a{
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    white-space: nowrap;
  }

  /* HERO: daha doğal dursun */
  .hero{ min-height: auto !important; padding: 26px 0 !important; }
  .hero-content{ margin-left: 0 !important; max-width: 100% !important; }
  .hero h1{ font-size: 34px !important; line-height: 1.12 !important; }
  .hero p{ font-size: 14px !important; }

  .hero-buttons{ display:flex; flex-wrap: wrap; gap: 10px; }
  .hero-buttons .btn{ width: 100%; }  /* butonlar alt alta (premium) */

  /* SOLUTIONS: tek tek değil, mobilde 2 kolon */
  .solutions-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    justify-content: stretch !important;
  }
  .solution-card img{ height: 140px !important; }
  .solution-card h3{ font-size: 15px !important; }

}

/* daha küçük ekranda 1 kolona düşsün */
@media (max-width: 520px){
  .solutions-grid{ grid-template-columns: 1fr !important; }
}

/* Mobile dropdown menu */
.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.menu-btn{
  display:none;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 18px;
  line-height: 1;
}

.mobile-menu{
  display:none;
  border-top: 1px solid rgba(0,0,0,.06);
  background:#fff;
}

.mobile-menu a{
  display:block;
  padding: 14px 16px;
  text-decoration:none;
  color:#111;
  font-weight: 600;
}

/* Açık hali */
.mobile-menu.open{ display:block; }

/* MOBIL */
@media (max-width: 900px){
  .menu-btn{ display:inline-flex; }

  /* masaüstü menüyü kapat */
  .main-nav{ display:none !important; }

  /* butonlar sıkışmasın */
  .promo-btn{ display:none; } /* istersen mobilde gizleyelim, menü içine koyabiliriz */
}

/* =========================
   MOBILE HEADER FIX
   ========================= */
@media (max-width: 900px){

  .site-header{ background:#fff; position: sticky; top:0; z-index:9999; }
  .header-inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
  }

  /* Logo */
  .logo-wrap{ flex: 0 0 auto; }
  .logo-wrap img{ height: 34px; width:auto; display:block; }

  /* Sağ aksiyonlar tek sırada ve aralıklı */
  .header-actions{
    display:flex;
    align-items:center;
    gap: 10px;
    flex: 0 0 auto;
  }

  /* EN butonu küçülsün */
  .lang-btn{
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 13px;
  }

  /* birdepo mobilde header'dan çıksın (menüye koyacağız) */
  .promo-btn{ display:none !important; }

  /* Hamburger */
  .menu-btn{
    width: 44px;
    height: 44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius: 12px;
  }

  /* Masaüstü menüyü mobilde kapat */
  .main-nav{ display:none !important; }
}

/* =========================
   SERVICES TITLE FIX
   (başlık sağdan kesilmesin)
   ========================= */
@media (max-width: 900px){
  .services .container{ overflow: visible !important; }
  .services h2,
  .services-title,
  .section-title{
    text-align: left !important;
    width: 100% !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    transform: none !important;
    margin-top:14px;

   
    
  }
}


/* MOBİL: Çözümler kutuları ortalı dursun */
@media (max-width: 900px){
  .solutions-grid{
    display: grid;
    grid-template-columns: 1fr;   /* tek tek kalsın */
    justify-items: center;        /* ✅ kartları ortalar */
    gap: 16px;
  }

  .solution-card{
    width: min(92vw, 420px);      /* ✅ ekrana göre ideal genişlik */
    margin: 0 auto;              /* ✅ ekstra garanti */
  }
}

@media (max-width: 900px){
  .services-title{
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left:-40px;
  }
}
@media (max-width: 900px){
  .services-title{
    margin-right:24px;
  }
}

@media (max-width: 900px){
  .services-title{
    margin-top: 40px !important;
  }
}

/* HERO slider arka plan */
.hero{
  background-image: none !important; /* eski tek görseli kapat */
}

.hero-slider{
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
  transition: transform 1s ease;
}

.hero-slide.active{
  transform: translateX(0);
  z-index: 1;
}

.hero-slide.prev{
  transform: translateX(-100%);
}

/* Hero içeriği üstte kalsın */
.hero > .container{
  position: relative;
  z-index: 1;
}

.hero{ background-image:none !important; position: relative; }
.hero-slider{
  position:absolute; inset:0;
  overflow:hidden; z-index:0;
}
.hero-track{
  height:100%;
  display:flex;
  transition: transform 900ms ease;
  will-change: transform;
}
.hero-track img{
  width:100%;
  height:100%;
  flex: 0 0 100%;
  object-fit: cover;
  display:block;
}

/* hero içeriği üstte kalsın */
.hero > .container{ position:relative; z-index:2; }


.triple-image-section{
  width: 100%;
  padding: 60px 0;
}

/* grid */
.triple-images{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 84px;
  max-width: 1300px;   /* ✅ görselleri küçültür */
  margin-left: 0;      /* container hizası */
}

/* görseller */
.triple-images img{
  width: 100%;
  height: 260px;       /* ✅ boy küçültme */
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Mobil */
@media (max-width: 900px){
  .triple-images{
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .triple-images img{
    height: 220px;
  }
}

.triple-images img{
  height: 260px;          /* ihtiyacına göre */
  object-fit: contain;    /* ✅ crop yok */
  background: #fff;       /* boşluk olursa temiz dursun */
  padding: 8px;           /* opsiyonel */
  border-radius: 12px;
}

.triple-image-section,
.triple-images{
  overflow: visible !important;
  height: 260px;
  gap: 96px;
}


.about-map-section{
  padding: 80px 0 60px;
  background: #fff;
}

/* logo hizası + premium görünüm */
.map-wrapper{
  width: 100%;
  max-width: 1100px;   /* görseli çok büyütmez */
  margin-left: 0;      /* logo çizgisiyle hizalı */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.map-wrapper iframe{
  width: 100%;
  height: 420px;
  display: block;
  border: none;
}

/* Mobil */
@media (max-width: 900px){
  .map-wrapper iframe{
    height: 300px;
  }
}



@media (max-width: 900px){
  .triple-image-section .triple-images{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .triple-image-section .triple-images img{
    height: 200px;
  }
}
@media (max-width: 900px){
  .triple-image-section .triple-images{
    flex-direction: row;  /* alt alta */
    gap: 4px;
  }

  .triple-image-section .triple-images img{
    width: 100%;
    max-width: 120px;         /* 🔥 çok büyümesin */
    height: auto;             /* taşma yok */
    margin: 0 auto;           /* ortala */
    
  }
  
  
  /* === TRIPLE IMAGE MOBILE ROW FIX === */
@media (max-width: 900px){

  .triple-image-section .triple-images{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 🔥 zorla 3 yan yana */
    gap: 10px;
  }

  .triple-image-section .triple-images img{
    width: 100%;
    height: 90px;            /* 🔥 mobilde küçük */
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
  }
}

.site-footer{
  text-align:center !important;
  padding:30px 20px !important;
  font-size:14px !important;
  color:#666 !important;
  background:#f8f8f8 !important;
  line-height:1.6 !important;
  text-decoration:none !important;
}
.site-footer a{ color:inherit !important; text-decoration:none !important; }

