.bg-color {
  background-color: #0d4a71 !important;
}

.bg-copyright {
  background-color: #0d4a71 !important;
}

/* .text-title-color {
  color: #ffc107 !important;
} */

/* HOME PAGE STYLES */
.topbar i {
    color: #0d6efd !important;
}

.swiper {
  width: 100%;
  height: 600px;
}
.swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
}
.slide-overlay {
  position: absolute;
  bottom: 40px;
  left: 5%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
}

.carousel-caption {
  padding: 0;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.carousel-caption .bg-dark {
  background: rgba(0, 0, 0, 0.6) !important;
}

.carousel img {
  margin: 0;
}

/* Fade-in effect */
.animate-caption {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-in-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.carousel-item {
  transition: opacity 0.5s ease-in-out;
}

.carousel-inner {
  overflow: hidden;
}

.carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(1.05) skewX(-1deg);
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1) skewX(0deg);
  position: relative;
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.carousel-caption .bg-dark {
  background: rgba(0, 0, 0, 0.6) !important;
  max-width: 700px;
  width: 100%;
}

.btn-orange {
  background-color: #ff5e00;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.btn-orange:hover {
  background-color: #e24d00;
  color: #fff;
}

.text-orange {
  color: #ff5e00;
}

/* ABOUT PAGE STYLES */

.about-hero {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../images/carousel-banner.jpg) center center no-repeat;
  background-size: cover;
}


