/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-weight: 700;
  color: #007bff;
  letter-spacing: 1px;
}
.navbar-nav .nav-link {
  margin-right: 15px;
  color: #333 !important;
  font-weight: 500;
}
.nav-link.active {
  color: #007bff !important;
}

.btn-get-started,
.btn-login {
  background-color: #dc3545;
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  transition: 0.3s;
}
.btn-get-started:hover,
.btn-login:hover {
  background-color: #c82333;
}

/* Hero Section */
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#hero .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}
#hero .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
#hero .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}
#hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}
#hero p {
  font-size: 18px;
  margin-bottom: 25px;
}
.btn-read-more {
  background-color: #dc3545;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
  transition: 0.3s;
}
.btn-read-more:hover {
  background-color: #c82333;
}
