/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Navbar Styles */
.navbar {
  background-color: #000;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-text {
  font-size: 30px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.navbar li {
  display: inline-block;
  padding: 0 20px;
}

.nav-item a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  padding: 5px 10px;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-item a:hover {
  color: orange;
  border-bottom: 2px solid orange;
}

/* Navbar Brand */
.navbar-brand img {
  height: 70px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.1);
}

/* Hero Section */
.container-fluid {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url('images/back3.jpg');
  height: 150vh;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.container-fluid h1 {
  font-size: 50px;
  font-weight: bold;
  margin: 0;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.container-fluid p {
  font-size: 18px;
  margin-top: 15px;
  color: #ffcc00;
}

.container-fluid .signupbutton {
  margin-top: 20px;
}

.signupbutton button {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.signupbutton button:hover {
  background-color: #ffcc00;
  transform: scale(1.1);
}

/* Jumbotron */
.jumbotron {
  margin-top: 7%;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.jumbotron h1 {
  color: black;
  font-weight: bold;
  margin-bottom: 10px;
}

.jumbotron p {
  font-size: 18px;
  color: #555;
}

/* Row Images */
.row img {
  height: 60px;
  width: 60px;
  margin-left: calc(50% - 30px); /* Center the image */
  margin-bottom: 20%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.page-footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.page-footer a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s;
}

.page-footer a:hover {
  color: orange;
}
