.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.custom-card {
  margin-bottom: 20px;
}

.text {
  text-align: center;
  font-weight: bold;
}

.notice {
  font-weight: bold;
}

/* Custom styles for the card */
.card {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px #4ee1f2;
}

.card-body {
  padding: 1.5rem;
}

.icon {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease-in-out;
}

.icon img {
  width: 30px;
  height: 30px;
  margin-right: 1rem;
}

.icon a:hover {
  color: #4ee1f2;
}

/* Additional styles */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 20px; /* Adjust padding as needed */
}

.contact-info {
  background-color: #2345a0; /* Gray background color */
  padding: 20px; /* Adjust padding as needed */
  border-radius: 10px;
  width: 100%; /* Ensure both sections are equal width */
}

.carousel-section {
  display: flex;
  justify-content: center;
  padding: 20px; /* Adjust padding as needed */
}

.carousel-container {
  width: 100%; /* Ensure both sections are equal width */
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
