body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

.top-bar {
  background-color: #B71C1C;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-bar a {
  color: white;
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: center;
  background-color: white;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.navbar a {
  color: #B71C1C;
  padding: 15px 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.navbar a:hover {
  background-color: #f2f2f2;
}

.content {
  padding: 30px;
  text-align: center;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 20px auto;
  height: auto;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider img {
  flex-shrink: 0;
  width: 150px;
  height: 100px;
  margin: 0 8px;
  border-radius: 6px;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(183, 28, 28, 0.8);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  z-index: 2;
  border-radius: 50%;
}

.arrow-left { left: 5px; }
.arrow-right { right: 5px; }

.slider-content, .about-section, .services, .map-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  color: #333;
}

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

.service-box {
  width: 280px;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background: #fafafa;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* BİZ KİMİZ KARTI */
.bizkimiz-section {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.bizkimiz-title {
  font-size: 28px;
  font-weight: bold;
  color: #B71C1C;
  margin-bottom: 30px;
}

.bizkimiz-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.bizkimiz-card {
  background: #fff;
  border-radius: 10px;
  max-width: 600px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease;
}

.bizkimiz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.bizkimiz-card h3 {
  color: #B71C1C;
  font-size: 22px;
  margin-bottom: 15px;
}

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

.btn-kimiz {
  display: inline-block;
  margin-top: 20px;
  background-color: #B71C1C;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-kimiz:hover {
  background-color: #a31414;
}

footer {
  background-color: #B71C1C;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  margin-top: 40px;
}

footer a {
  color: white;
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  text-decoration: none;
  z-index: 9999;
}

@media (max-width: 768px) {
  .slider img {
    width: 120px;
    height: 80px;
  }
  .service-box {
    width: 90%;
  }
  .bizkimiz-card {
    padding: 20px;
    width: 90%;
  }
}

/* Animasyon */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slider-gallery {
  position: relative;
  max-width: 800px;
  margin: 30px auto;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.gallery-track img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(183, 28, 28, 0.8);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px 16px;
  z-index: 10;
  border-radius: 50%;
}

.gallery-arrow.left { left: 10px; }
.gallery-arrow.right { right: 10px; }

@media (max-width: 768px) {
  .gallery-arrow {
    padding: 8px 12px;
    font-size: 20px;
  }
}

