ul {
  list-style-type: none;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;  /* Prevent horizontal scroll */
  background-color: black;
}
/* Overlay Background with Content */
.content {
  position: relative;
  background: url("img/background.jpg") no-repeat center center/cover;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.center-box {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: auto;
  padding: 100px 20px;
}

/* logo along with the language and sign in button */
.nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1250px;  /* Optional max width */
  margin: 0 auto;     /* Center horizontally */
  width: 100%;
  box-sizing: border-box; /* Prevent overflow from padding */
}
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-buttons select {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: 1px solid gray;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease;
}

.nav-buttons select:hover {
  border-color: white;
}

.sign-in {
  background-color: #e50914;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sign-in:hover {
  background-color: #f6121d;
}

.logo {
  width: 120px;
  height: auto;
}

.email-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.email-form input[type="email"] {
  width: 500px;
  height: 40px;
  background-color: black;
  color: white;
  border: 2px solid gray;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 16px;
}

.email-form button {
  width: 175px;
  height: 50px;
  background-color: red;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-form button:hover {
  background-color: #e50914;
}

.carousel-container {
  padding: 20px;
  position: relative;
  overflow: hidden;
  max-width: 1250px; /* or any width you prefer */
  margin: 0 auto;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.carousel {
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding: 0 40px; /* for spacing next to arrows */
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel ul {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.carousel li {
  flex: 0 0 auto;
  width: 200px; /* fixed poster width */
}

.carousel img {
  width: 100%;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}

.carousel img:hover {
  transform: scale(1.05);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

h3 {
  color: white;
  margin-left: 14%;
}
h4 {
  color: white;
}
p {
  color: white;
}
.reasonToJoin {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reasonToJoin ul {
  display: flex;
  gap: 12px;
  width: 75%;
}
h4 {
  font-size: 26px;
}
.reasonToJoin ul li {
  font-size: 20px;
  flex: 1;
  padding: 15px;
  background-image: linear-gradient(
    to right bottom,
    #132846,
    #322d50,
    #4e3256,
    #693656,
    #7f3d51
  );
  border-radius: 10px;
}
.email {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
input[type="email"] {
  width: 500px;
  height: 40px;
  background-color: black;
  color: white;
  border: 2px solid gray;
  vertical-align: middle;
  border-radius: 10px;
}
.getStarted {
  width: 175px; /* Adjust the width as needed */
  height: 50px;
  background-color: red;
  color: white;
  font-size: 24px;
  border: none;
  vertical-align: middle;
  border-radius: 10px;
}
.faq-container {
  max-width: 1250px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  color: #fff;
}

.faq-item {
  background-color: #303030; /* Netflix-style gray */
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: #303030;
  border: none;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  background-color: #303030;
  color: #dcdcdc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.5;
}

/* Footer Section */
.footer {
  padding: 40px 20px;
  background-color: #000;
  color: #aaa;
  text-align: center;
}

.footer .cta {
  margin-bottom: 30px;

  justify-content: center;
  align-items: center;

}

.footer .email-form {
  display: flex;

  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.footer .email-form input {
  padding: 10px;
  width: 250px;
  border-radius: 4px;
  border: none;
}

.footer .email-form button {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
}

.footer .questions {
  margin: 20px 0;
}

.footer a {
  color: #aaa;
  text-decoration: underline;
  font-size: 0.95em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  background-color: transparent;
  margin-bottom: 5px;
  transition: background-color 0.3s ease;
}
.footer-links li:hover {
  background-color: gray;
  cursor: pointer;
  color: white;
}

