@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Splash Screen   */

.spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;         
  height: 100vh;        
  background-color: rgba(0, 0, 0); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Üstte görünmesi için */
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #fff #0000; /* Yarı beyaz, yarı saydam */
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Gizlendiğinde opacity ile kaybolsun */
.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}


#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1000;
  overflow: hidden; /* Linebackground'ın dışına taşmayı önler */
}


* {
  margin: 0;
  padding: 0%;
  box-sizing: border-box;
}

body {
  height: 100vh;
  
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1%;
  background-color: white; /* Arka plan eklenerek içerik ile karışması önlenir */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Gölge ile header belirginleştirilir */
  z-index: 1000; /* Header'ın diğer içeriklerin üzerinde olması sağlanır */
}

header .navbar {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 20px;
}

.navbar .logo {
  height: 2.5em;
  width: auto;
}

.navbar .logo span {
  color: #e06a00;
}

.navbar .menu-links {
  list-style-type: none;
  display: flex;
  gap: 40px;
  font-size: medium;
}

.navbar a {
  color: #000000;
  text-decoration: none;
  transition: 0.4s ease;
}

.navbar a:hover {
  color: #3e72c0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Header yüksekliği kadar boşluk ekleniyor */
.hero-section {
  max-height: fit-content;
  display: block;
  justify-content: center; /* Yatayda ortalama */
  align-items: center;
}

  .hero-section .linebackground {
    margin-top: 1%;
    overflow: hidden; /* Linebackground'ın dışına taşmayı önler */
    z-index: -1000; 
    min-height: fit-content;
    }


.hero-section .content {
  
  width: 50%;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  
}



.hero-section .content h1 {
  margin-top: 15vh;
  font-size:  40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Kenar gölgesi */
}

/* Bize Ulaşın */

.hero-section .content h2 {
  line-height: 1.5; /* Satır yüksekliği */
  margin: 6vh 0 6vh 0;
  text-align: center;
  color: white;
  font-size:  20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Kenar gölgesi */
}

.hero-section .content2 {

  max-width: 1200px;
  padding-left: 15em;
  padding-bottom: 1em;
  margin: 0 auto;
  text-align: left;

}

.content2 .instagram {

  text-decoration: none; 
  color: rgb(255, 255, 255); 
  font-size: x-small;
}

.content2 .instagram-icon {

  width: 3%; 
  height: auto; 
  vertical-align: middle;
}

.content2 .mail {

  text-decoration: none; 
  color: rgb(255, 255, 255); 
  font-size: x-small
}

.content2 .mail-icon {

  width: 2.5%; 
  height: auto; 
  vertical-align: middle;
}


  /* Genel blog bölümü */
/* Blog Section - Modern Tasarım */
.blog-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 60px 5%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ff9500, #ffaa00);
}

.blog-section h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.blog-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ff9500);
  border-radius: 2px;
}

/* Blog Container - Modern Grid Layout */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Blog Card - Modern Card Tasarımı */
.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 123, 0, 0.1);
  max-height: 650px;
  height: 100%;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ff9500, #ffaa00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 123, 0, 0.2);
  border-color: rgba(255, 123, 0, 0.3);
}

.blog-card:hover::before {
  transform: scaleX(1);
}

/* Blog Image - Modern Image Container */
.blog-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  cursor: pointer;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

/* Blog Card Content */
.blog-card h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin: 24px 24px 16px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
  cursor: pointer;
}

.blog-card:hover h3 {
  color: #ff7b00;
}

/* Blog Card Content Wrapper for Scrollable Text */
.blog-card-text-wrapper {
  flex: 1;
  overflow-y: auto;
  max-height: 220px;
  margin: 0 24px 20px 24px;
  padding-right: 8px;
  min-height: 0;
}

.blog-card p {
  font-size: 1rem;
  color: #5a6c7d;
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.blog-card p:last-child {
  margin-bottom: 0;
}

/* Custom Scrollbar for Blog Card */
.blog-card-text-wrapper::-webkit-scrollbar {
  width: 6px;
}

.blog-card-text-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.blog-card-text-wrapper::-webkit-scrollbar-thumb {
  background: #ff7b00;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.blog-card-text-wrapper::-webkit-scrollbar-thumb:hover {
  background: #ff9500;
}

/* Read More Button - Modern Button */
.read-more {
  display: inline-block;
  margin: 0 24px 24px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff7b00 0%, #ff9500 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.read-more:hover {
  background: linear-gradient(135deg, #ff9500 0%, #ff7b00 100%);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
  transform: translateY(-2px);
}

.read-more:hover::before {
  left: 100%;
}

.read-more:active {
  transform: translateY(0);
}

/* Homepage Preview Sections */
.platforms-preview-section,
.apps-preview-section,
.blog-preview-section {
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.platforms-preview-section {
  background: #ffffff;
}

.apps-preview-section {
  background: #ffffff;
}

.blog-preview-section {
  background: #ffffff;
}

.platforms-preview-section::before,
.apps-preview-section::before,
.blog-preview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ff9500, #ffaa00);
}

.platforms-preview-container,
.apps-preview-container,
.blog-preview-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ff9500);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff7b00 0%, #ff9500 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #ff9500 0%, #ff7b00 100%);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
  transform: translateY(-2px);
}

.view-all-btn:hover::before {
  left: 100%;
}

.view-all-btn:active {
  transform: translateY(0);
}

 /* Platform Sayfası - Modern Tasarım */

.platform-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 60px 5%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ff9500, #ffaa00);
}

.platform-section h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.platform-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ff9500);
  border-radius: 2px;
}

/* Platform Container - Modern Grid Layout */
.platform-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Platform Card - Modern Card Tasarımı */
.platform-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 123, 0, 0.1);
  max-height: 650px;
  height: 100%;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7b00, #ff9500, #ffaa00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.platform-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 123, 0, 0.2);
  border-color: rgba(255, 123, 0, 0.3);
}

.platform-card:hover::before {
  transform: scaleX(1);
}

/* Platform Image - Modern Image Container */
.platform-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  cursor: pointer;
}

.platform-card:hover .platform-image {
  transform: scale(1.1);
}

.platform-image-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: -30px auto 0;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.platform-card:hover .platform-image-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Platform Card Content */
.platform-card h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin: 40px 24px 16px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
  cursor: pointer;
}

.platform-card:hover h3 {
  color: #ff7b00;
}

/* Platform Card Content Wrapper for Scrollable Text */
.platform-card-text-wrapper {
  flex: 1;
  overflow-y: auto;
  max-height: 220px;
  margin: 0 24px 20px 24px;
  padding-right: 8px;
  min-height: 0;
}

.platform-card p {
  font-size: 1rem;
  color: #5a6c7d;
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.platform-card p:last-child {
  margin-bottom: 0;
}

/* Custom Scrollbar for Platform Card */
.platform-card-text-wrapper::-webkit-scrollbar {
  width: 6px;
}

.platform-card-text-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.platform-card-text-wrapper::-webkit-scrollbar-thumb {
  background: #ff7b00;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.platform-card-text-wrapper::-webkit-scrollbar-thumb:hover {
  background: #ff9500;
}

/*   Anasayfadaki diger sayfalardan çekilen alanlar */

.blog-preview {

  margin: 3% 8% 0 8%;

}

/*             */


    #menu-btn{
      color: #000000;
      cursor: pointer;
      display: none;
    }

    #close-menu-btn {
      display: none;
      position: absolute;
      right: 20px;
      top: 20px;
      cursor: pointer;
    }

    .footer {
      background-color: rgb(30, 30, 30); 
      padding-bottom: 1%;
      color: white; 
      text-align: center; 
      
    }


    
/* Contact Section - Modern Tasarım */
.contact-section {
  background: #ffffff;
  padding: 80px 5%;
  min-height: calc(100vh - 160px);
  margin-bottom: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info Card */
.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  border: 1px solid rgba(255, 123, 0, 0.1);
  position: sticky;
  top: 100px;
}

.info-card-header h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.info-card-header h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff7b00, #ff9500);
  border-radius: 2px;
}

.info-card-content {
  margin-bottom: 30px;
}

.info-card-content p {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 15px;
}

.info-card-content p:last-child {
  margin-bottom: 0;
}

.info-card-content strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Contact Info Items */
.contact-info-items {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(255, 123, 0, 0.05);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff7b00 0%, #ff9500 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
}

.contact-info-text h4 {
  font-size: 0.9rem;
  color: #5a6c7d;
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-text a {
  font-size: 1rem;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: #ff7b00;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  border: 1px solid rgba(255, 123, 0, 0.1);
}

.form-card-header h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.form-card-header h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff7b00, #ff9500);
  border-radius: 2px;
}

.form-card-header p {
  font-size: 0.95rem;
  color: #5a6c7d;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #2c3e50;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff7b00;
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Submit Button */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff7b00 0%, #ff9500 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ff9500 0%, #ff7b00 100%);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
  transform: translateY(-2px);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn svg {
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translateX(4px);
}


    /* İletişim */

    .social-media-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin: 2%;
    }
    
    .social-media-links p {
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .tooltip-container {
      display: flex;
      justify-content: center;
      gap: 15px;
    }
    
    .tooltip {
      position: relative;
      display: inline-block;
      text-align: center;
    }
    
    .icon {
      width: 24px;
      height: 24px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    
    .icon:hover {
      transform: scale(1.2);
    }
    
    .tooltip-text {
      visibility: hidden;
      background-color: #555;
      color: #fff;
      text-align: center;
      padding: 5px;
      border-radius: 4px;
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      user-select: text;
      opacity: 0;
      transition: opacity 0.3s ease, visibility 0s 0.3s; /* Gecikmeli kapanma */
    }
    
    .tooltip:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
      transition-delay: 0s; /* Hızlıca açılmasını sağlar */
    }
    
    .tooltip:not(:hover) .tooltip-text {
      transition-delay: 0.3s; /* Geç kapanmasını sağlar */
    }
    
    
    
    

    /* ////////////////////////////////////// */

    @media screen and (max-width: 900px) {


      
/* Splash Screen   */

.spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;         
  height: 100vh;        
  background-color: rgba(0, 0, 0); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Üstte görünmesi için */
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #fff #0000; /* Yarı beyaz, yarı saydam */
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Gizlendiğinde opacity ile kaybolsun */
.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

      * {
        margin: 0;
        padding: 0%;
        box-sizing: border-box;
      }

      body {
        height: 100vh;
        
      }
      

      header.show-mobile-menu:before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(5px);
      }

      #close-menu-btn, #menu-btn {
        display: block;

      }
      

      .navbar .menu-links {
        position: fixed;
        left: -260px;
        top: 0;
        flex-direction: column;
        width: 260px;
        height: 100vh;
        background: #fff;
        padding: 70px 40px 0px;
      }

      header.show-mobile-menu .navbar .menu-links {
        left: 0;
      }

      .navbar a{
        color: #000000;

      }

      /* Hero-Section İçeriği Genel Ayarlar */
      .hero-section .content {
        width: 100%;  /* ya da auto */
        margin: 0;    /* soldan boşluk olmasın */
        text-align: left; /* sola dayalı hale getirmek için */
        padding: 0.5rem;  /* isterseniz biraz iç boşluk verin */
      }
    

      /* Başlık (h1) Ayarları */
      .hero-section .content h1 {
        margin-top: 5em 0;
        font-size: 40px;      /* Mevcut font boyutu */
        text-align: center;     /* Ortalamayı kaldırıp sola yasla */
      }

      /* Alt Başlık / Açıklama (h2) Ayarları */
      .hero-section .content h2 {
        margin: 4em 0 3em 0;            /* Varsayılan boşlukları kaldır */
        text-align: center;     /* Sola yasla */
        font-size: 14px;      /* Mobilde okunabilir boyut */
      }
    


      /* Bize Ulaşın */

      .content2 {
        font-size: 1rem;
        align-content: left;
        padding-bottom: 1rem;
      }


      .social-media-links .icon {
        width: 24px; /* İkon boyutunu ayarlar */
        height: 24px; /* İkon boyutunu ayarlar */
        margin: 0 10px; /* İkonlar arasındaki boşluk */
        vertical-align: middle; /* İkonların düzgün hizalanması */
        transition: transform 0.3s ease; /* Hover efektini sağlar */
      }
      
      .social-media-links .icon:hover {
        transform: scale(1.2); /* İkonun büyümesi için hover efekti */
      }

        
        /* Blog Section - Responsive Tasarım */
        .blog-section {
          padding: 40px 3%;
        }
      
        .blog-section h2 {
          font-size: 2rem;
          margin-bottom: 30px;
        }
      
        .blog-container {
          grid-template-columns: 1fr;
          gap: 25px;
          padding: 10px 0;
        }
      
        .blog-card {
          max-width: 100%;
          max-height: 600px;
        }
      
        .blog-card:hover {
          transform: translateY(-8px) scale(1.01);
        }
      
        .blog-image {
          height: 220px;
        }
      
        .blog-card h3 {
          font-size: 1.4rem;
          margin: 20px 20px 12px;
        }
      
        .blog-card-text-wrapper {
          max-height: 200px;
          margin: 0 20px;
          padding-right: 6px;
        }
        
        .blog-card p {
          font-size: 0.95rem;
          margin: 0 0 16px 0;
        }
        
        .blog-card p:last-child {
          margin-bottom: 0;
        }
      
        .read-more {
          font-size: 0.9rem;
          padding: 12px 28px;
          margin: 0 20px 20px;
        }

        /* Homepage Preview Sections - Responsive */
        .platforms-preview-section,
        .apps-preview-section,
        .blog-preview-section {
          padding: 50px 3%;
        }

        .section-header h2 {
          font-size: 2rem;
          margin-bottom: 12px;
        }

        .section-subtitle {
          font-size: 1rem;
          margin-bottom: 25px;
        }

        .view-all-btn {
          font-size: 0.9rem;
          padding: 12px 28px;
        }

      /* Platform Section - Responsive Tasarım */
      .platform-section {
        padding: 40px 3%;
      }
    
      .platform-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
      }
    
      .platform-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 10px 0;
      }
    
      .platform-card {
        max-width: 100%;
        max-height: 600px;
      }
    
      .platform-card:hover {
        transform: translateY(-8px) scale(1.01);
      }
    
      .platform-image {
        height: 220px;
      }
    
      .platform-image-icon {
        width: 50px;
        height: 50px;
        margin: -25px auto 0;
      }
    
      .platform-card h3 {
        font-size: 1.4rem;
        margin: 30px 20px 12px;
      }
    
      .platform-card-text-wrapper {
        max-height: 200px;
        margin: 0 20px;
        padding-right: 6px;
      }
      
      .platform-card p {
        font-size: 0.95rem;
        margin: 0 0 16px 0;
      }
      
      .platform-card p:last-child {
        margin-bottom: 0;
      }
    
      .read-more {
        font-size: 0.9rem;
        padding: 12px 28px;
        margin: 0 20px 20px;
      }

      /* Contact Section Responsive */
      .contact-section {
        padding: 40px 3%;
      }

      .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .contact-info-card {
        position: static;
        padding: 30px 20px;
      }

      .contact-form-card {
        padding: 30px 20px;
      }

      .info-card-header h3,
      .form-card-header h3 {
        font-size: 1.5rem;
      }

      .contact-icon {
        width: 40px;
        height: 40px;
      }

      .contact-info-text h4 {
        font-size: 0.85rem;
      }

      .contact-info-text a {
        font-size: 0.95rem;
      }

      .form-group input,
      .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
      }

      .submit-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
      }

}

/* Language Dropdown Styles */
.navbar .menu-links li:has(#langToggle) {
  position: relative;
}

#langToggle {
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease;
}

#langToggle:hover {
  color: #3e72c0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#langDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 120px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
}

#langDropdown a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

#langDropdown a:last-child {
  border-bottom: none;
}

#langDropdown a:hover {
  background-color: #f5f5f5;
  color: #3e72c0;
}
