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 */
}
.services-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  position: relative;
  padding: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

.service-card h3 {
  font-size: 1.5rem;
  color: #007bff;
  margin: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0 20px;
  margin: 0;
}

.service-card ul li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.service-card .cta {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
  text-align: center;
}

.service-card .cta:hover {
  background: #0056b3;
}
/* WhatsApp Butonu */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10;
}

.whatsapp img {
  width: 50px;
  height: 50px;
}
/* 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;
}

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

  .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;
  }
}

/* Hizmetlerimiz başlığı stil */
.services-header {
  text-align: center;
  margin-top: 50px; /* Başlıkla içeriğin arasında boşluk bırakır */
}

.services-header h1 {
  font-size: 2.5em; /* Başlık boyutunu büyütür */
  font-weight: bold;
  color: #333; /* Başlık rengini belirler */
  text-transform: uppercase; /* Başlığı büyük harf yapar */
  padding: 20px 0; /* Başlık etrafında boşluk bırakır */
}
/* Hizmetlerimiz başlığı stil */
.services-header {
  text-align: center;
  margin-top: 50px; /* Başlıkla içeriğin arasında boşluk bırakır */
}

.services-header h1 {
  font-size: 1.5em; /* Başlık boyutunu küçültür */
  font-weight: bold;
  color: #333; /* Başlık rengini belirler */
  text-transform: uppercase; /* Başlığı büyük harf yapar */
}
.discount-banner {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff5733;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
