/* === GENEL AYARLAR === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f2f2f2;
  color: #333;
}

header {
  background: #f2f2f2;
  padding: 1px 0;
  border-bottom: 1px solid #f2f2f2;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.about-section {
  margin-top: 60px;
  padding: 40px 20px;
}

.about-block {
  margin: 40px auto;
  max-width: 1000px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}
.logo {
  position: absolute;
  left: 20px;
  display: block;
    padding: 10px 0;
}
@media (max-width: 768px) {
  .logo {
    width: 100%;
    display: flex;
    justify-content: unset;
    align-items: center;
    padding: 10px 0;
  }
}
.menu {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
}


.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;     /* Yatay değil dikey hizalama */
    align-items: center;        /* Ortala */
    justify-content: center;
    padding: 10px 15px;
    gap: 10px;                  /* Öğeler arası boşluk */
  }
}

.logo img {
  height: 150px;
  max-height: 100%;
  width: auto;
  display: block;
  position: relative; /* opsiyonel: mutlak pozisyonlama yapılmayacaksa */
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .logo img {
    height: 90px;           /* Daha küçük logo */
    max-height: 90px;
    margin: 0 auto;         /* Ortalamak için */
  }
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 16px;
  z-index: 1001;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1100;
  }


  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    width: 100%;
    top: 60px;
    left: 0;
    padding: 10px 0;
    z-index: 1090;
  }

  .menu.active {
    display: flex;
  }
}

.menu li a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  padding: 8px 12px;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    width: 100%;
    top: 60px;
    left: 0;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.hero {
  position: relative;
  width: 100vw;
  height: 65vh;
  overflow: hidden;
  background-color: #f2f2f2;
}

  .hero-image {
  position: relative;
  top: 0; /* Boşluğu sıfırlar */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: auto;
  max-height: 1100px; /* İsteğe bağlı yükseklik sınırı */
  object-fit: cover;
  object-position: center;
  z-index: 1;
  background: transparent;
  margin-top: 0;
}



@media (max-width: 768px) {
  .hero-image {
    position: absolute;
    top: %;                   /* Görselin dikey konumu */
    left: 50%;                    /* Yatay ortalama için */
    transform: translateX(-50%);  /* Yalnızca yatayda ortala */
    width: 120%;
    height: auto;
    object-fit: cover;
    object-position: center;
    z-index: 1;
  }
}



.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.demo-button {
  position: absolute;
  top: 680%;
  left: -180%;
  padding: 14px 30px;
  background: #1e1f22;
  color: white;
  font-size: 16px;
  white-space: nowrap;
  min-width: 300px;
  text-align: center;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgb(5, 83, 186);
  z-index: 10;
}

@media (max-width: 768px) {
  .demo-button {
    position: absolute;        /* Konumu manuel belirlemen için sabit değil, mutlak konum */
    top: 610%;                  /* Yukarıdan mesafe - dilediğin gibi değiştir */
    left: 50%;                 /* Yatay ortalama için */
    transform: translateX(-50%);
    padding: 12px 24px;
    font-size: 14px;
    width: auto;
    max-width: 90%;
    min-width: 200px;
    text-align: center;
    border-radius: 12px;
    z-index: 11;
  }
}



button:hover {
  background-color: #005f61;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* === STATISTICS === */
#statistics {
  background: #e6e6e6;
  padding: 40px 20px;
  text-align: center;
}

.user-list {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 45s linear infinite;
  padding: 10px 0;
}

.user-list span {
  display: inline-block;
  margin: 0 24px;
  font-weight: 600;
  color: #017E84;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.user-list span:hover {
  transform: scale(1.1);
  color: #005f61;
}

@keyframes scroll-left {
  0%   { transform: translateX(5%); }   /* Eskiden: 100% */
  100% { transform: translateX(-100%); }
}



/* === UYGULAMALAR - 6x4 SABİT TABLO === */
.apps-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.apps-header h2 {
  font-size: 28px;
  color: #714B67;
  margin-bottom: 10px;
}

.apps-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.apps-icon-grid-fixed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.app-icon-box {
  background: white;
  border-radius: 12px;
  padding: 10px 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
  min-height: 13px;
}

.app-icon-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 5px;
}

.app-icon-box span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.app-icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .apps-icon-grid-fixed {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .apps-icon-grid-fixed {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === METİN + VİDEO ALTERNATİF BLOKLAR === */
.text-video-alternating {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 6px 20px;
  background: #fff;
  align-items: center;
}

.tv-overlap-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 420px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.overlap-img {
  position: absolute;
  width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.img1 { top: 0px; left: 0px; z-index: 1; }
.img2 { top: 30px; left: 140px; z-index: 2; }
.img3 { top: 40px; left: 280px; z-index: 3; }
.img4 {
  top: 220px;
  left: 20px;
  z-index: 4;
  width: 370px !important; /* eski 320px yerine daha büyük */
  height: auto;
}
.img5 {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 800px;
  height: auto;
}

@media (max-width: 768px) {
  .img5 {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin: 30px auto;
    max-width: 90%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .tv-overlap-container {
    height: auto;
  }
  .overlap-img {
    position: static;
    width: 40%;
    margin: 10px auto;
    display: block;
  }
}

.tv-block {
  text-align: center;
  max-width: 800px;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.tv-block-4 {
  text-align: center;
  max-width: 800px;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}
@media (max-width: 768px) {
  .tv-block-4 {
    max-width: 10%;
    padding: 20px;
    transform: none;         /* Yukarıdan inme animasyonunu kaldır */
    opacity: 1;              /* Animasyonu geçici olarak kapat */
    animation: none;         /* Fade-in yok */
    text-align: left;        /* İstersen left yapabilirsin */
    margin: 0 auto;
  }
}
.tv-block-3 {
  text-align: center;
  max-width: 800px;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}
@media (max-width: 768px) {
  .tv-block-3 {
    max-width: 30%;
    padding: 20px;
    transform: none;         /* Yukarıdan inme animasyonunu kaldır */
    opacity: 1;              /* Animasyonu geçici olarak kapat */
    animation: none;         /* Fade-in yok */
    text-align: left;        /* İstersen left yapabilirsin */
    margin: 0 auto;
  }
}


.tv-text h3 {
  font-size: 24px;
  color: #714B67;
  margin-bottom: 20px;
  font-weight: 600;
}

.tv-video video {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .tv-text h3 {
    font-size: 20px;
    padding: 0 10px;
  }
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === REFERANSLAR === */
#referanslar {
  background: #e6e6e6;
  padding: 20px 0;
  text-align: center;
  overflow: hidden;
}

.scrolling-logos {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  align-items: center;
  animation: scrollLeft 40s linear infinite;
  width: max-content;
}


.referans-item {
  flex: 0 0 auto;
  text-align: center;
  margin: 0 20px; /* önce 40'tı, boşluğu azaltır */
}


.referans-item img {
  width: var(--referans-logo-boyutu, 90px);
  height: auto;
  display: block;
  margin: 0 auto 10px;
  transition: transform 0.3s ease;
}



.referans-item:hover img {
  transform: scale(1.1);
}

.referans-item p {
  margin: 0;
  font-weight: 600;
  color: #017E84;
  font-size: 14px;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.scrolling-logos {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 40s linear infinite;
}

@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.referans-item {
  flex: 0 0 auto;
  text-align: center;
  margin: 0 40px;
}

.referans-item img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  transition: transform 0.3s ease;
}

.referans-item:hover img {
  transform: scale(1.1);
}

.referans-item p {
  margin: 0;
  font-weight: 600;
  color: #017E84;
  font-size: 14px;
}


.referans-button {
  margin-top: 20px;
}

.referans-button a {
  background: #714B67;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.referans-button a:hover {
  background: #5d3c56;
}

/* === FOOTER === */
/* FOOTER */
.footer-full {
  background: #714B67;
  color: white;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  margin-top: 0;
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-full p {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links a {
  color: #fff;
  text-decoration: underline;
  margin: 0 8px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.footer-social img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1); /* Beyaz ikon rengi */
}

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

.footer-contact-button {
  padding: 8px 16px;
  background-color: #017E84;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s ease;
}

.footer-contact-button:hover {
  background-color: #005f61;
}




/* === BAŞLIK VURGUSU === */
.highlighted-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.highlighted-heading .normal {
  font-weight: 400;
  color: #222;
}

.highlighted-heading .highlight {
  font-family: 'Caveat', cursive;
  background: linear-gradient(transparent 70%, #ff6b6b 70%);
  padding: 0 4px;
  font-size: 36px;
  color: #111;
}
.user-showcase {
  width: 100vw; /* tüm ekran genişliği */
  padding: 100px 0 120px;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .highlighted-heading {
    font-size: 24px;          /* Mobilde yazı boyutu küçülür */
    padding: 0 12px;
    word-break: break-word;     /* Uzun kelimeleri satıra sığdırır */
  }
}

.user-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  animation: floatGrid 60s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  transform: translateX(-25%);
  z-index: 1;
  opacity: 0.2;
}

.user {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #ccc;
}

.user.avatar {
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

.user.square.purple {
  background-color: #714B67;
  border-radius: 0;
}

.user.square.light {
  background-color: #eaeaea;
  border-radius: 0;
}

.user-message {
  position: relative;
  z-index: 2;
  background: white;
  display: inline-block;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.user-message h2 {
  font-family: 'Caveat', cursive;
  font-size: 36px;
  color: #111;
  margin-bottom: 10px;
}

.user-message p {
  font-size: 16px;
  color: #333;
}

@keyframes floatGrid {
  0% {
    transform: translateX(-25%) translateY(0);
  }
  50% {
    transform: translateX(-20%) translateY(10px);
  }
  100% {
    transform: translateX(-25%) translateY(0);
  }
}
/* === GENEL AYARLAR === */
body {
  margin: ;
  font-family: 'Poppins', sans-serif;
  background: #f2f2f2;
  color: #333;
}



.user-showcase {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.user-floating-grid {
  position: absolute;              /* Sayfa akışından çıkar, üst konteynerine göre serbest konumlanır */
  top: 0;                          /* Üst kenara yapışır */
  left: 50%;                       /* Yatayda sayfanın ortasına gelir */
  transform: translateX(-50%);    /* Kendi genişliğinin yarısı kadar sola kaydırılarak tam ortalanır */
  width: 100%;                    /* Konteynerin tam genişliğini kaplar */
  max-width: 850px;               /* Ancak en fazla 859px genişliğe ulaşabilir */
  height: 325px;                  /* Sabit 325px yükseklik verir */
  display: grid;                  /* Grid yapısı kullanılarak içeriği sütun-satır düzeninde yerleştirir */
  grid-template-columns: repeat(6, 1fr); /* 6 eşit sütun oluşturur */
  grid-template-rows: repeat(4, 1fr);    /* 4 eşit satır oluşturur */
  gap: 36px;                      /* Kutular arasında 36px boşluk bırakır */
  opacity: 0.15;                  /* Saydamlık %15: Arka plandaki öğeleri hafifçe gösterir */
  z-index: 1;                     /* Diğer içeriklere göre katman sırası (altta kalır) */
  perspective: 800px;            /* 3D dönüş efektleri için derinlik oluşturur */
}


.user-tile {
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 6s infinite ease-in-out;
  animation-delay: calc(var(--i) * 0.3s);
}

.user-tile:nth-child(3n) {
  animation: cubeRotateAlt 6s infinite ease-in-out;
}
/* === SIKÇA SORULAN SORULAR (FAQ) STİLİ === */
.faq-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fafafa;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(1, 126, 132, 0.1);
}

.faq-item h3 {
  color: #017E84;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .responsive-full-element {
    z-index: 3;
    position: absolute;
    height: 100vh;
    width: 100vw;
    padding: 0;
    border: 0;
    margin: 0;
    left: 0;
    top: 0;
    touch-action: pan-x pan-y;
    overflow: hidden;
    box-sizing: border-box;
  }
}
/* === İLETİŞİM TABLO STİLLERİ === */
.iletisim-tablo-container {
  margin-top: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.iletisim-tablo-baslik {
  color: #017E84;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.iletisim-tablo {
  width: 100%;
  font-size: 15px;
  line-height: 1.6;
  border-collapse: collapse;
}

.iletisim-tablo td {
  padding: 10px 14px;
  border: 1px solid #ccc;
  vertical-align: top;
}

.iletisim-tablo tr:nth-child(even) {
  background-color: #f2f2f2;
}

.iletisim-tablo a {
  color: #017E84;
  text-decoration: none;
}

.iletisim-tablo a:hover {
  text-decoration: underline;
}
 @media (max-width: 768px) {
  .iletisim-tablo-container {
    padding: 16px;
    box-shadow: none;
  }
  .iletisim-tablo td {
    display: block;
    padding: 6px 0;
    border: none;
  }

  .iletisim-tablo td strong {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
  }

  .iletisim-tablo a {
    word-break: break-word;
  }
}

.faq-item p {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-container {
    margin: 40px 10px;
    padding: 30px 15px;
  }

  .faq-item {
    padding: 18px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 14px;
  }
}
.user-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  transition: transform 1s;
}

.user-face.back {
  transform: rotateY(180deg);
}

@keyframes cubeRotate {
  0%, 100% { transform: rotateY(0); }
  50% { transform: rotateY(180deg); }
}

@keyframes cubeRotateAlt {
  0%, 100% { transform: rotateX(0); }
  50% { transform: rotateX(180deg); }
}

.user-message {
  position: relative;
  z-index: 2;
  background: white;
  padding: 3px 4px;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  display: inline-block;
  max-width: 350px;
}

.user-message h2 {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  color: #111;
  margin-bottom: 14px;
}

.user-message p {
  font-size: 15px;
  color: #444;
}

@m.user-floating-grid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 12px;
  height: 65px;
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* 12 sütun */
  grid-template-rows: repeat(5, 1fr);     /* 5 satır */
  gap: 8px;
  opacity: 0.15;
  z-index: 1;
  perspective: 800px;
}

.user-tile {
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 6s infinite ease-in-out;
  animation-delay: calc(var(--i) * 0.3s);
}

.user-tile:nth-child(3n) {
  animation: cubeRotateAlt 6s infinite ease-in-out;
}

.user-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  transition: transform 1s;
}

.user-face.back {
  transform: rotateY(180deg);
}

@keyframes cubeRotate {
  0%, 100% { transform: rotateY(0); }
  50% { transform: rotateY(180deg); }
}

@keyframes cubeRotateAlt {
  0%, 100% { transform: rotateX(0); }
  50% { transform: rotateX(180deg); }
}

@media (max-width: 768px) {
  .user-floating-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(10, 1fr);
    height: auto;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
main {
  flex: 1;
}
.menu {
  transition: all 0.3s ease;
}
.menu-toggle {
  position: relative;
  right: -150px;
  top: 0px;
  z-index: 1001;
}


.demo-button {
  font-size: 21px;
  padding: 12px 24px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: #714B67;
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.feature-card img {
  margin-top: 10px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #714B67;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.feature-button:hover {
  background-color: #5e3d58;
}
.cta-container {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  background-color: #714B67;
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background-color: #5e3c58;
  transform: translateY(-3px);
}

.cta-subtext {
  font-size: 13px;
  color: #444;
  margin-top: 10px;
  line-height: 1.5;
}
@keyframes infiniteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.video-carousel {
  background: #f2f2f2;
  padding: 40px 0;
}

.video-slider-container {
  width: 100vw;
  overflow: hidden;
  position: relative;
  background: #f2f2f2;
  padding: 40px 0;
}

.video-slider-content {
  display: flex;
  gap: 40px;
  animation: marquee 60s linear infinite;
  width: max-content;
}

@keyframes marquee {
  -30%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.video-card {
  flex: 0 0 auto;
  width: 320px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.05);
}


.video-card h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}


.video-card h4 {
  font-size: 16px;
  color: #111;
  margin-bottom: 8px;
}

.neon-button-container {
  text-align: center;
  margin-top: 30px;
}

.neon-button {
  position: relative;
  display: inline-block;
  background-color: #000;
  color: #00f0ff;
  text-decoration: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff;
  animation: blink 1s infinite alternate;
  transition: background-color 0.3s ease;
  z-index: 1;
}

@keyframes blink {
  0%   { opacity: 1; }
  100% { opacity: 0.7; }
}

.neon-button .glow-border {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid #00f0ff;
  border-radius: 12px;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff;
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
}

@keyframes rotateBorder {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* === TV BLOKLARI AYRI === */
.tv-block-1 .img1 { top: 0px; left: 0px; width: 280px; z-index: 1; }
.tv-block-1 .img2 { top: 30px; left: 160px; width: 300px; z-index: 2; }
.tv-block-1 .img3 { top: 60px; left: 320px; width: 280px; z-index: 3; }
.tv-block-1 .img4 { top: 240px; left: 40px; width: 580px; z-index: 4; }

.tv-block-2 .img5 {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  z-index: 5;
}

  .map-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 450px;
  }

  .map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
  }

  @media (max-width: 768px) {
    .map-wrapper {
      height: 300px; /* Mobilde daha kısa görünüm */
    }
  }

/* Mobil görünüm için */
@media (max-width: 768px) {
  .tv-block-1 .img1,
  .tv-block-1 .img2,
  .tv-block-1 .img3,
  .tv-block-1 .img4,
  .tv-block-2 .img5 {
    position: static !important;
    width: 90% !important;
    margin: 20px auto !important;
    display: block !important;
  }
}
.tv-block-5 .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 sütun */
  gap: 24px;
  margin-top: 40px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .tv-block-5 .feature-grid {
    grid-template-columns: 1fr; /* Tek sütun */
    gap: 32px; /* Daha fazla dikey boşluk */
    padding: 0 16px;
  }

  .tv-block-5 .feature-card {
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
  }

  .tv-block-5 .feature-card img {
    width: 100%;
    height: auto;
    margin-top: 12px;
  }

  .tv-block-5 .feature-button {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 12px;
    display: inline-block;
  }
}

/* === UYGULAMALAR TABLO STİLİ === */
.uygulamalar.main.yeni {
  background: #ffffff;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
}

.uygulamalar.main.yeni h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #017E84;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.uygulamalar.main.yeni h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #444;
  border-left: 4px solid #017E84;
  padding-left: 12px;
}

.uygulamalar.main.yeni p {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: justify;
}

.uygulamalar.main.yeni ul {
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid #ddd;
}

.uygulamalar.main.yeni ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Responsive yapı */
@media (max-width: 768px) {
  .uygulamalar.main.yeni {
    padding: 30px 15px;
  }

  .uygulamalar.main.yeni h1 {
    font-size: 26px;
  }

  .uygulamalar.main.yeni h2 {
    font-size: 20px;
  }

  .uygulamalar.main.yeni p,
  .uygulamalar.main.yeni ul li {
    font-size: 14px;
  }
}


document.querySelectorAll("#mainMenu a").forEach(link => {
  link.addEventListener("click", () => {
    document.getElementById("mainMenu").classList.remove("active");
  });
}
