/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Genel Ayarlar */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f6f8;
  color: #333;
  overflow-x: hidden;
}

/* Scroll Animasyonlar */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeLeft 1s forwards;
}
@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeRight 1s forwards;
}
@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Navbar */
.navbar {
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
}
.navbar-brand {
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 1px;
}
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

/* Hero Bölümü */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
  animation: fadeUp 1s ease-out;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 1.5s ease-out;
}
.btn-primary {
  background: #ffb703;
  border: none;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #ffa500;
  transform: scale(1.05);
}

/* Bölüm Başlıkları */
h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #0d6efd;
}

/* Kartlar */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.card-body {
  padding: 1.5rem;
}

/* Avantaj İkonları */
.icon-box i {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  color: #fff;
  padding: 2rem 1rem;
}
footer p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

/* Formlar */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    padding: 0 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}