@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");

* {
  font-family: "Poppins", sans-serif;
}
.red {
  color: rgba(170, 25, 25, 1);
}

p {
  font-size: 12px;
  font-weight: 100;
}

body {
  background-color: white;
}

#logo {
  height: 50px;
  width: 50px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
  height: 90px;
}

.navbar-brand {
  color: #000;
  font-weight: bold;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.navbar-nav .nav-item {
  list-style: none;
  padding: 0 40px;
  position: relative;
}

.navbar-nav .nav-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: black;
  transition: 0.3s ease;
}

.navbar-nav li:last-child button {
  height: 35px;
  width: 100px;
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid black;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  color: black;
  transition: 0.3s ease;
}

.navbar-nav li:last-child button:hover {
  color: rgba(170, 25, 25, 1);
  border-color: rgba(170, 25, 25, 1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: rgba(170, 25, 25, 1);
}

.navbar-nav .nav-link.active::after {
  content: "";
  width: 50%;
  height: 2px;
  background: rgba(170, 25, 25, 1);
  position: absolute;
  bottom: -4px;
  left: 25px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-item {
    padding: 10px;
  }

  .navbar-nav .nav-link {
    text-align: center;
  }
  .navbar-collapse {
    display: none;
    text-align: center;
    background-color: #f8f9fa; /* Add background color here */
  }

  .navbar-collapse.show {
    display: block;
  }
}

/* About us CSS */

header.bg-danger {
  background-color: rgba(170, 25, 25, 1);
  padding: 20px;
}

header h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  color: #fff;
}

.container {
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 20px;
}

.container h5 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.container p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.container ul {
  list-style-type: disc;
  margin-left: 20px;
}

.container li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.custom-line {
  border: none;
  height: 2px;
  background-color: #b5b5b5;
  margin: 20px 10px;
}

.Contactus {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.Contactus h5 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.Contactus p {
  font-size: 16px;
  margin-bottom: 5px;
  color: #555;
}

.Contactus p:last-child {
  margin-bottom: 0;
}

.Contactus a {
  color: rgba(170, 25, 25, 1);
  text-decoration: none;
}

.Contactus a:hover {
  text-decoration: underline;
}
