/* ==================== GENEL AYARLAR ==================== */
body {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: #fff;
  color: #212529;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/* ==================== NAVBAR ==================== */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: bold;
  color: whitesmoke !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd !important;
}

.nav-link.active {
  background-color: rgba(13, 110, 253, 0.15);
  border-radius: 6px;
  font-weight: 600;
}

/* ==================== CAROUSEL ==================== */
.carousel-item img {
  object-fit: cover;
  height: 100vh;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: center;
  padding: 0 1.5rem;
}

.carousel-caption h1 {
  font-size: clamp(2rem, 6vw, 80px);
  font-weight: 700;
  color: #0d6efd;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.carousel-caption p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.carousel-caption .btn {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

/* ==================== HİZMET KARTLARI ==================== */
.card {
  border-radius: 1rem;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

/* ==================== NEDEN BİZ? ==================== */
section ul li i {
  color: #0d6efd;
}

/* === Footer Stil === */
.footer {
  background-color: #212529;
  color: #dee2e6;
  font-size: 0.95rem;
}

.footer a.footer-link {
  color: #adb5bd;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer a.footer-link:hover {
  color: #0d6efd;
  text-decoration: none;
}

.footer-icon {
  color: #ffffff;
  font-size: 1.25rem;
  margin-right: 15px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-icon:hover {
  color: #0d6efd;
  transform: scale(1.2);
}

.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobil uyum */
@media (max-width: 576px) {
  .footer .col-md-4 {
    text-align: center;
  }

  .footer-icon {
    margin-right: 10px;
  }

  .footer a.footer-link {
    text-align: center;
  }
}
/* ==================== FOOTER ==================== */
footer {
  background-color: #212529;
  color: #fff;
  font-size: 0.95rem;
  padding: 2rem 0;
  text-align: center;
}

footer a {
  color: #ffffff;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.7;
}

/* ==================== RESPONSIVE AYARLAR ==================== */
@media (max-width: 768px) {
  .carousel-caption {
    padding: 0 1rem;
  }

  .carousel-caption h1 {
    font-size: 9vw;
  }

  .carousel-caption p {
    font-size: 4.5vw;
  }

  .carousel-caption .btn {
    font-size: 4vw;
    padding: 0.5rem 1.2rem;
  }

  .card {
    margin-bottom: 1.5rem;
  }
}
