/* index.css */

/* Genel ayarlar */
body {
  background-color: #0d1b2a;
  color: #cbd5e1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  min-height: 100vh;
}

/* Slider karartma ve yazı */
.carousel-caption {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #cbd5e1;
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
  padding-left: 3rem;
  padding-right: 3rem;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-caption.visible {
  opacity: 1;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 900;
}

.carousel-caption p {
  font-size: 1.5rem;
  margin-top: 10px;
  font-weight: 700;
}

/* Slider yükseklik küçültüldü */
.slider-img {
  height: 450px;
  object-fit: cover;
}

/* Parlak kutu */
.bright-box {
  background: rgba(97, 218, 251, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(97, 218, 251, 0.4);
  border: 1px solid rgba(97, 218, 251, 0.3);
  color: #cbd5e1;
  transition: box-shadow 0.3s ease;
}

.bright-box:hover {
  box-shadow: 0 12px 40px rgba(97, 218, 251, 0.7);
}

/* Vizyon & Misyon kartları */
.vm-card {
  background: rgba(97, 218, 251, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(97, 218, 251, 0.4);
  border: 1px solid rgba(97, 218, 251, 0.3);
  color: #cbd5e1;
  transition: box-shadow 0.3s ease;
  text-align: center;
}

.vm-card:hover {
  box-shadow: 0 12px 40px rgba(97, 218, 251, 0.7);
}

.vm-card h3 {
  color: #61dafb;
  margin-bottom: 20px;
}

.vm-card p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Hizmetlerimiz kartları */
.service-card {
  background: rgba(97, 218, 251, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(97, 218, 251, 0.4);
  border: 1px solid rgba(97, 218, 251, 0.3);
  color: #cbd5e1;
  transition: box-shadow 0.3s ease, transform 0.3s ease;

  margin-bottom: 30px; /* Kutular arasında dikey boşluk */
  margin-right: 30px; /* Kutular arasında dikey boşluk */
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(97, 218, 251, 0.7);
  transform: translateY(-6px);
}

.service-card h5 {
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  font-size: 1rem;
  color: #d1e7f7;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
  }
}
