
.hero-section {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 1rem;
  max-width: 800px;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-button {
  background: linear-gradient(to right, #ed2121, #8c1f1f);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  color: white;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Animasyon */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive ayarlamalar */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-button {
    font-size: 1.1rem;
  }
}
.card {
  @apply bg-white rounded-xl overflow-hidden shadow-lg transition-all duration-300 transform;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.card:hover::before {
  opacity: 1;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
  @apply rounded-t-xl;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  @apply p-6;
}

.card-title {
  @apply text-xl font-bold text-gray-800 mb-3 relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card-desc {
  @apply text-sm text-gray-600 leading-relaxed;
  font-size: 15px;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}

/* Fade animation for cards */
@keyframes fadeUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.card {
  animation: fadeUp 1s ease forwards;
}

/* Responsive iyileştirme */
@media (max-width: 768px) {
  .card-img {
    height: 180px;
  }
}

.step-clean {
  @apply bg-white p-8 rounded-xl text-center shadow-md transition-all duration-300;
}

.step-clean:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #3b82f6; /* Tailwind: blue-500 */
  margin-bottom: 1rem;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 1rem;
}

.step-title {
  @apply text-xl font-semibold text-gray-900 mb-2;
}

.step-desc {
  @apply text-sm text-gray-600;
  font-size: 15px;
  line-height: 1.6;
}
.step-title {
  font-size: 1rem; /* Mobilde daha az yer kaplaması için */
}

.step-desc {
  font-size: 14px;
}
header img:hover {
  transform: scale(1.05) rotate(-2deg);
  transition: 0.3s ease;
}
a {
  text-decoration: none;
}
h1 {
  font-family: 'Inter', sans-serif;
}

section p {
  line-height: 1.75;
}
.page-hakkimizda {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-hakkimizda main {
  flex-grow: 1;
}
.box-card {
  @apply bg-white rounded-xl border border-gray-200 shadow-md p-8 text-center transition-all duration-300 hover:shadow-lg hover:-translate-y-1;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
