/* Base Style */
body {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  background-color: #fdfdfd;
  color: #333;
}

a {
  text-decoration: none;
}

.bg-primary {
  background-color: #0e2744 !important;
}

.btn-danger {
  background-color: #b30000 !important;
  border: none;
}

.btn-danger:hover {
  background-color: #8b0000 !important;
}

h2 {
  font-weight: 700;
  color: #0e2744;
}
/* Hero Slider */
.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.hero-slide::after{
  content: '';
  clear: both;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  background-color: rgba(2, 6, 68, .3);
  z-index: -1;
}
.carousel-caption {
  bottom: 20%;
  text-align: left;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  animation: fadeInDown 1s ease;
  background-color: rgba(255, 255, 255, 1.0);
  display: inline-block;
  padding: 5px;
}

.carousel-caption p {
  font-size: 1.2rem;
  animation: fadeInUp 1s ease;
  background-color: rgba(255, 255, 255, 1.0);
  display: inline-block;
  padding: 5px;
}

.carousel-caption a {
  background-color: rgba(2, 6, 68, 1.0);
  color: white !important;
}
.carousel-caption a:hover {
  background-color: white!important;
  color:  rgba(2, 6, 68, 1.0)!important;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards */
.service-card {
  background-color: white;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #b30000;
}

/* Team */
#team img {
  transition: transform 0.4s ease;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

#team img:hover {
  transform: scale(1.05);
}

/* Footer */
footer h5 {
  font-weight: bold;
  margin-bottom: 15px;
}

footer a {
  color: white;
  transition: 0.3s;
}

footer a:hover {
  color: #ffc107;
}

footer input[type="email"] {
  border-radius: 5px;
  padding: 10px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-caption {
    text-align: center;
    bottom: 10%;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}
#mybrand h2 {
  font-weight: 700;
  color: #0e2744;
}

.mybrand-logo {
  max-height: 80px;
  transition: transform 0.3s ease;
  margin: auto;
}

.mybrand-logo:hover {
  transform: scale(1.1);
}

.mybrand-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
