/* Genel Ayarlar */

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
  background-color: #f9f9f9;
  overflow-x: hidden; /* Yatay kaydırmayı engeller */
  height: auto; /* Sayfanın yüksekliğini dinamik yapar */
}

/* Hamburger Menü */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
}
nav {
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0 auto;
  transform: translateX(-100px); /* Menüyü sola kaydırma */
}
.mobile-menu {
  display: none; /* Menüyü gizler */
}
.menu li {
  margin-left: 20px;
}

.menu a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.menu a:hover {
  color: #00bcd4;
}

.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: white;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}
@media (max-width: 768px) {
  /* Mobil Menü */
  .mobile-menu {
    position: absolute;
    top: 49, 5px;
    left: -300px;
    height: 96%;
    width: 250px;
    background-color: #333;
    color: white;
    overflow-y: auto;
    transition: left 0.5s;
    padding: 20px;
    z-index: 5;
  }
  .mobile-menu {
    display: flex; /* Menüyü gizler */
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    position: absolute;
  }

  .mobile-menu li {
    margin: 20px 0;
  }

  .mobile-menu a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    display: block;
  }

  .mobile-menu a:hover {
    color: #00bcd4;
  }

  .mobile-menu.active {
    left: 0px;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobil Görünüm */
@media (max-width: 768px) {
  .hamburger {
    display: flex; /* Mobil cihazlarda hamburger simgesini göster */
  }

  .whatsapp-button {
    bottom: 20px; /* Ekranın alt kısmına 20px mesafe */
    left: 15px; /* Mobil cihazlarda biraz daha içeriye kaydır */
  }

  .whatsapp-button .whatsapp {
    width: 50px; /* Mobilde daha küçük bir ikon */
    height: 50px;
  }

  .whatsapp-button .whatsapp img {
    width: 50px; /* İkon boyutunu daha da küçültüyoruz */
    height: 50px;
  }

  .guvence {
    width: 90%; /* Kutu genişliği %90 olacak şekilde ayarlandı */
    padding: 10px; /* Daha küçük padding */
    margin: 10px; /* Daha az margin */
    box-sizing: border-box; /* Padding ve border genişlik hesaplamasına dahil edildi */
  }

  .guvence h2 {
    font-size: 1.25rem; /* Başlık boyutu daha da küçültüldü */
  }

  .guvence ul li {
    font-size: 0.8rem; /* Metin boyutu daha da küçültüldü */
  }
}

/* Hero Alanı */
.hero {
  position: relative;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#typing-text {
  position: absolute;
  top: 40%; /* Yatayda ortalar */
  left: 50%; /* Dikeyde ortalar */
  transform: translate(-50%, -50%);
  color: white;
  font-size: 36px;
  z-index: 2;
  text-align: center;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Videoyu her şeyin altına yerleştir */
}

.hero .button {
  padding: 10px 30px;
  background: #333;
  color: #fff;
  border-radius: 5px;
  border: solid #fff 1px;
  margin-top: 300px;
  opacity: 0.8;
  transition: 0.2s all;
  text-decoration: none;
  position: absolute;
  z-index: 3; /* Videoyu her şeyin altına yerleştir */
}

.hero .button:hover {
  background-color: #000000;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 40px; /* Yazı ile buton arasında boşluk */
}

.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.services {
  padding: 40px;
  text-align: center;
  background-color: #f9f9f9;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 10px 0;
}

.service-item p {
  font-size: 1rem;
  color: #666;
  margin: 10px 0 20px;
}

.service-item .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.service-item .button:hover {
  background-color: #0056b3;
}

/* WhatsApp Butonu */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px; /* Sol alt köşede */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* WhatsApp Logo */
.whatsapp-button img {
  width: 50%;
  height: 50%;
  z-index: 2;
  position: relative;
}

/* Animasyonlu Çember */
.circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: pulse 1.5s infinite;
  z-index: 1;
}

/* Hover Efekti */
.whatsapp-button:hover {
  transform: scale(1.1); /* Büyüme efekti */
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7); /* Parlama efekti */
}

/* Çember Animasyonu */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Güvence kısmı stil */
.guvence {
  background-color: #eeeeee; /* Aynı arka plan rengi */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  margin: 20px auto;
  max-width: 400px; /* Kutu genişliği */
  border: 1px solid #f0f0f0; /* Kutu kenarlığı */
  margin-top: 100px;
}

.guvence h2 {
  font-size: 2rem;
  color: #000000;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.guvence p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}

.guvence ul {
  list-style-type: none;
  padding: 0;
}

.guvence ul li {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 15px;
}

.guvence ul li strong {
  color: #010203;
  font-weight: bold;
}

.guvence p:last-child {
  text-align: center;
  font-style: italic;
  color: #000000;
}
footer {
  background-color: #222;
  color: #fff;
  padding: 50px 20px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  margin-top: 150px;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.footer-card {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.footer-card:hover {
  transform: translateY(-10px);
  background-color: #444;
}
.footer-card h4 {
  margin-bottom: 10px;
  color: #fff;
}
.footer-card p {
  font-size: 14px;
  color: #bbb;
}
.footer-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: #007bff;
}
.footer-rights {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #aaa;
}
.footer-about {
  grid-column: span 2;
  background-color: #444;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.footer-about:hover {
  transform: translateY(-10px);
  background-color: #555;
}
.footer-about h4 {
  color: #fff;
}
.footer-about p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

/* Mobile responsive design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer-about {
    grid-column: span 1;
  }
  .footer-social a {
    font-size: 16px;
  }
  .footer-card p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer-card {
    padding: 15px;
  }
  .footer-about p {
    font-size: 12px;
  }
  .footer-social {
    gap: 10px;
  }

  .hero .button {
    margin-top: 300px;
  }
}
/* Kutu içi tasarım için genel stil */
.stock-management-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.stock-management {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}

.stock-left {
  flex: 1;
  padding-right: 20px;
}

.stock-left .stock-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.stock-right {
  flex: 1;
  padding-left: 20px;
}

.stock-right h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.stock-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.stock-right h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.stock-right ul {
  list-style-type: none;
  padding: 0;
}

.stock-right ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.stock-right ul li strong {
  color: #007bff;
}

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

  .stock-left,
  .stock-right {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* Sektöre Özel Web Siteleri */
.industry-specific-websites {
  background-color: #fff;
  padding: 30px;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.industry-specific-websites h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.sector-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.sector-card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  width: 30%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

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

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

.sector-card p {
  font-size: 14px;
  color: #555;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .stock-management-benefits {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stock-management-benefits img {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .sector-card {
    width: 100%;
    margin-bottom: 20px;
  }

  .stock-management-benefits ul li,
  .sector-card p {
    font-size: 14px;
  }

  .stock-management-benefits h3,
  .industry-specific-websites h3 {
    font-size: 20px;
  }
}
.container {
  max-width: 700px;
  margin: 20px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: auto;
}

.content-section {
  padding: 15px 20px;
}

.content-section h1 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.content-section p {
  margin-bottom: 10px;
  text-align: justify;
  font-size: 0.9rem;
}

.advantages {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.advantages li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  background: #f9f9f9;
  padding: 8px 10px;
  border-left: 4px solid #3498db;
  border-radius: 4px;
}

.conclusion {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
  color: #2c3e50;
  font-size: 0.95rem;
}
body {
  font-family: "Arial", sans-serif;
  color: #333;
  background-color: #f4f4f4;
  line-height: 1.4;
}
.service-container {
  position: relative;
  text-align: center; /* Yazıyı ortaladım */
}

.service-video {
  position: relative;
  width: 70%; /* Videonun boyutunu küçülttük */
  max-width: 1100px; /* Maksimum genişlik */
  margin: 100px auto; /* Videoyu biraz aşağıya indirdim */
}

.service-video video {
  width: 100%;

  height: auto; /* Yükseklik otomatik olarak ayarlanır */
}

.discount-overlay {
  position: absolute;
  top: -90px; /* Yazıyı yukarıya taşıdım */
  left: 50%;
  transform: translateX(-50%);
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobil uyumluluk */
@media (max-width: 1350px) {
  .service-video {
    width: 90%; /* Mobilde video boyutunu biraz küçülttüm */
    margin: 70px auto; /* Videoyu daha yukarı aldım */
  }

  .discount-overlay h2 {
    font-size: 16px; /* Mobilde yazı boyutunu küçülttüm */
  }
}

@media (max-width: 1350px) {
  .discount-overlay h2 {
    margin-top: 40px;
    font-size: 14px; /* Çok küçük ekranlarda yazı boyutunu daha da küçülttüm */
  }
}

/* Mobile Uyumluluk */
@media (max-width: 1068px) {
  .container {
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .content-section {
    padding: 10px 15px;
  }

  .content-section h1 {
    font-size: 1.5rem;
  }

  .content-section p,
  .advantages li {
    font-size: 0.85rem;
  }

  .advantages li {
    padding: 6px 8px;
  }

  .conclusion {
    font-size: 0.9rem;
  }
}
