@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;
  }
}
.button-box {
  width: 300px;
  margin: 35px auto;
  position: relative;
  border-radius: 30px;
  background: #898989;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.toggle-btn {
  padding: 10px 40px;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
  position: relative;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: white;
}

#btn {
  left: 0;
  top: 0;
  position: absolute;
  width: 50%;
  height: 100%;
  background: rgba(170, 25, 25, 1);
  border-radius: 30px;
  transition: 0.5s;
}

.details-container {
  display: none;
  margin-top: 20px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 20px;
  background-color: #f0f0f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
