/* Background Image */
body {
  background-image: url('Images/FAQsnRevs.png') !important;
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* FAQs Section */
.faq-section {
  background: #fdfdfd;
  min-height: 100vh;
  padding: 10vh 0 0;
}

.faq-title h2 {
  font-family: "Poppins", sans-serif;
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}

.faq-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 60px;
  height: 2px;
  background: #8cbdd9;
  bottom: -25px;
  margin-left: -30px;
}

.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed #cee1f8;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
  background: #f1ddc1;
  padding-left: 10px;
}

.faq .card .card-header .faq-title {
  font-family: "Poppins", sans-serif;
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #3b566e;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
  width: 25px;
  height: 25px;
  line-height: 14px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #8cbdd9;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}

.faq .card .card-body {
  font-family: "Poppins", sans-serif;
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #5e778c;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #f3f8ff;
  text-align: justify;
}

.faq .card .card-body p {
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}

/* Reviews & Ratings Section */
.review-section {
  margin-top: -30px;
  padding: 50px 0;
  background: #f9f9f9;
  text-align: center;
}

.review-section h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
}

.review-section p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #5e778c;
  margin-bottom: 20px;
}

.rating {
  margin-top: -15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.star {
  font-size: 30px;
  color: gold;
  margin: 0 5px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.star:hover {
  transform: scale(1.3);
  color: darkorange;
}
