* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.parent {
  position: relative;
}
.fixedMenuBar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  height: 100px;
  z-index: 99;
  width: 100%;
  padding: 15px 30px;
  background-color: rgba(
    237,
    248,
    252,
    0.8
  );
  backdrop-filter: blur(10px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 30px;
}

.infoButton {
  background: linear-gradient(90deg, #003366 0%, #4c90ff 100%);
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 30px;
}
.infoButton:hover {
  background: linear-gradient(90deg, #004387 0%, rgb(58, 133, 255) 100%);
}
#heroSection {
  height: 100vh;
}
#productCard {
  width: 500px;
  max-height: 710px;
}
.review-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.review-quote {
  font-style: italic;
  color: #333;
}

.blockquote-footer {
  font-size: 0.9rem;
  color: #6c757d;
}

.review-card:hover {
  transform: scale(1.01);
}
#mainFooter{
 background-color: black; 
 margin-top: 100px;
 margin-bottom: 100px;
 color: white;
}

