@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;
  }
}

/* body CSS */
#body {
  padding: 40px;
  }

  .container {
    width: 70%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 auto;
  }

  .quote,
  .form {
    flex-basis: 50%;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .quote {
    background-color: #f9f9f9;
  }

  .form {
    background-color: #ffffff;
  }

  .quote h3,
  .form h3 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
  }

  .quote p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 0;
  }

  .form form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form label {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
  }

  .form select,
  .form button {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .form button {
    height: 40px;
    width: 150px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: rgba(170, 25, 25, 1);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .form button:hover {
    background-color: rgb(255, 255, 255);
    color: rgba(170, 25, 25, 1);
    border: 1px solid rgba(170, 25, 25, 1);
  }

  .form p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
  }
}
