/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  font-family: Arial;
}

/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(129, 113, 113, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

/* Logo */
.logo {
  height: 40px;
  width: auto;
}

/* Sign In Button */
.signin {
  background-color: #e50914;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signin:hover {
  background-color: #f6121d;
}
.hero {
  position: relative;
  height: 100vh;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 50px;
  overflow: hidden;
}

.hero-bg .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(191, 174, 174, 0.65);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-subtext {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.email-form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.input-group {
  position: relative;
}

.email-input {
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  width: 300px;
  font-size: 1rem;
}

.email-label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #999;
  pointer-events: none;
  transition: all 0.2s ease;
}

.email-input:focus + .email-label,
.email-input:not(:placeholder-shown) + .email-label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  color: #e50914;
  background-color: #000;
  padding: 0 5px;
}

.get-started-btn {
  background-color: #e50914;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.get-started-btn:hover {
  background-color: #f6121d;
}

.arrow-icon {
  margin-left: 8px;
}
.features-section {
  background-color: #000;
  color: #fff;
  padding: 60px 5%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  min-width: 300px;
}

.feature-text h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}


.feature-media {
  flex: 1;
  position: relative;
  min-width: 250px;
}

.feature-media img {
  width: 80%;
  max-width: 70%;
  display: block;
  z-index: 10;
  position: relative;
  align-items: center;

}

.video-container {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 68%;
  height: 80%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* FAQ SECTION */
.faq-section {
  background-color: #000;
  color: #fff;
  padding: 60px 5%;
  text-align: center;
}

.faq-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background-color: #303030;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #303030;
  color: #fff;
  padding: 20px;
  font-size: 1.2rem;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #444;
}

.faq-answer {
  background-color: #303030;
  padding: 0 20px 20px;
  display: none; /* You can toggle this with JS for accordion */
}

.faq-cta {
  margin-top: 50px;
}

.email-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.input-container {
  position: relative;
}

.input-container input {
  padding: 15px;
  font-size: 1rem;
  border: none;
  outline: none;
  border-radius: 4px;
  width: 300px;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  transition: 0.2s ease;
}

.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
  top: 5px;
  font-size: 0.8rem;
  color: #e50914;
}

.email-form button {
  background-color: #e50914;
  color: #fff;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background-color: #111;
  color: #888;
  padding: 60px 5%;
  font-size: 0.9rem;
}

.footer h4 {
  margin-bottom: 20px;
  color: #ccc;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links p {
  margin: 8px 0;
  cursor: pointer;
}

.footer-links p:hover {
  text-decoration: underline;
}

.footer-lang {
  margin-bottom: 20px;
}

.footer-lang select {
  padding: 10px;
  background: #000;
  color: #fff;
  border: 1px solid #333;
  border-radius: 4px;
}

.footer-bottom {
  text-align: center;
  color: #666;
}

  
