


/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: 23, 190, 219, 0.8;
  /* Light Green */
  color: #333;
  background-image: url('https://t3.ftcdn.net/jpg/02/11/97/88/360_F_211978880_hc410XQCDAmGo103E8m6nFz6uXEKYqb6.jpg');
  /* Background Image */
  background-size: cover;
  background-attachment: fixed;
  margin: 0;
  /* padding-top: 56px; */
  /* Space for fixed navbar */
}

/* Header Styles */
.header {
  background: rgba(23, 190, 219, 0.8);
  /* Light Green with Opacity */
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  animation: fadeIn 2s ease-in-out;
}

.header p {
  font-size: 1.5rem;
  margin-bottom: 0;
  animation: fadeIn 2s ease-in-out;
}

/* Keyframes for Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Section Styles */
.section {
  padding: 60px 0;
  background-color: #ffffff;
  border-top: 5px solid #d3d3d33b;
  /* Light Green Border */
}

.section h2 {
  font-size: 2.5rem;
  color: #a3d9a2;
  /* Light Green */
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  animation: slideIn 2s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.7);
  transition: transform 0.5s ease-in-out;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  animation: fadeIn 2s ease-in-out;
}

.carousel-caption h5 {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1.1rem;
  color: #ffffff;
}

/* Card Styles */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card img {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

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

/* Footer Styles */
.footer {
  background-color: rgb(9 71 72);
  /* Light Green */
  color: #ffffff;
  /* White */
  padding: 40px 0;
  text-align: center;
}

.footer a {
  color: #ffffff;
  /* White */
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .header h1 {
    font-size: 2.5rem;
  }

  .header p {
    font-size: 1.2rem;
  }

  .section h2 {
    font-size: 2rem;
  }
}