/* General Styles */
.main_container {
  background-color: #26282a;
  height: 120vh;
  width: 100vw;
  padding-left: 14rem;
  padding-right: 14rem;
}

.youtube_funnel h5 {
  color: #80d028;
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 27px;
  margin: 0;
  padding-top: 5px;
  align-items: center;
}

.youtube_funnel h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: white;
  font-size: 35px;
  margin: 20px 0 0;
  line-height: 1.2;
}

.youtube_funnel .funnel {
  color: #80d028;
  text-decoration: underline;
}

.youtube_funnel p {
  font-family: "Poppins", sans-serif;
  color: white;
}

.youtube_funnel h6 {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 20px;
}

.youtube_funnel .video_button {
  /*background-image: url("./images/btn.jpg");
  background-size: cover;*/
  background-color: #ffffff;
  border-radius: 15px;
}

.youtube_funnel .red_button {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background-color: red;
  color: white;
  border: none;
  border-radius: 4px;
  width: 420px;
  height: 35px;
}

.video_watch {
  text-align: center;
  background-color: #26282a;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video_watch h1 {
  margin-bottom: 20px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  font-size: 60px;
  color: white;
}

.video_watch iframe {
  margin-bottom: 20px;
}

#timerContainer {
  margin-top: 20px;
  color: aliceblue;
}

#buttonContainer {
  display: none;
  margin-top: 20px;
}

.red_button {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background-color: red;
  color: white;
  border: none;
  border-radius: 4px;
  width: 660px;
  height: 35px;
}

/* Modal */
.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-header h2,
.modal-header p {
  color: black;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.modal-header .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.modal-header {
  border-bottom: none;
}

.form-container {
  text-align: center;
}

.form-container h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.form-container p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.popup_button {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background-color: red;
  color: white;
  border: none;
  border-radius: 4px;
  width: 100%;
  height: 45px;
}

.error-message {
  position: absolute;
  left: 0;
  bottom: -20px; /* Position below the input field */
  color: red;
  font-size: 15px; /* Smaller font size */
  font-weight: 500;
}
/* Thanks Section */
.thanks h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: white;
  font-size: 40px;
}

.thanks .book {
  color: #80d028;
}

.thanks p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: white;
  font-size: 20px;
}

.stars {
  font-size: 20px; /* Adjust the font size as per your need */
}

.full-star {
  color: gold; /* Full gold stars */
}

.half-star {
  display: inline-block;
  position: relative;
}

.gold {
  color: gold; /* Gold part of the half star */
}

.white {
  position: absolute;
  top: 0;
  left: 50%;
  color: white; /* White part of the half star */
  z-index: -1; /* Make sure the white part stays behind the gold */
}

.videos h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.video_frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 20px 0;
}
.video_frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
