body {
  background-color: #f4f4f4;
  font-family: 'Segoe UI', sans-serif;
}

header h1 {
  font-size: 2rem;
}

.card {
  border-radius: 10px;
}

footer {
  font-size: 0.9rem;
  color: #555;
}
.hero h1 {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.card-title {
  font-weight: bold;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .carousel-caption h5 {
    font-size: 1.2rem;
  }
  .carousel-caption p {
    font-size: 0.9rem;
  }
}

.hero-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 90%;
  padding: 20px;
}

.carousel-fade .carousel-item {
  transition: opacity 2.5s ease-in-out;
}

.navbar .btn {
  font-weight: 500;
  padding: 6px 12px;
}

.modal-content {
  border-radius: 10px;
}
.modal-header {
  border-bottom: none;
}
.btn-outline-danger {
  font-weight: 500;
}