.custom-col .card {
  border: none;
  transition: box-shadow 0.3s ease;
}

.custom-col .card:hover {
  box-shadow: 0 12px 24px rgba(9, 30, 62, 0.3);
  transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 42, 64, 0.85);
  z-index: 1;
}

.content {
  padding-top: 50px; 
  padding-bottom: 50px;
}

.custom-btn {
  background-color: #06a3da;
  border-color: #06a3da;
  color: aliceblue;
  font-size: 14px;
  max-width: 150px;
  min-width: 100px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-btn:hover {
  background-color: #F57E57;
  color: white;
}

.separator {
  height: 3px;
  width: 100px;
  background-color: #091e3e;
  margin: 30px auto;
  border-radius: 2px;
}

.custom-col {
  position: relative;
}

.custom-circle {
  width: 50px;
  height: 50px;
  background-color: #091e3e;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  left: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  z-index: 2;
}

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


