@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200,300,400,500&family=Martel+Sans:wght@300,400,600,700,800,900&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
html,body{
  height: 100%;
}
body {
  background-color: black;
}
.main {
  background-image: url("assets/images/bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: max(1200px, 100vw);
  height: 90vh;
  position: relative;
}
.main .box {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);
}

nav {
  max-width: 80vw;
  justify-content: space-between;
  margin: auto;
  display: flex;
  align-items: center;
  height: 65px;
}
nav img {
  color: red;
  height: 50px;
  width: 114px;
  position: relative;
  z-index: 10;
}
nav button {
  position: relative;
  z-index: 10;
}
.tt {
  height: calc(100% - 62px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px 80pxpx;
  gap: 20px;
  color: white;
  position: relative;
}
.tt > :first-child {
  font-family: "Martel Sans", sans-serif;
  text-align: center;
  font-weight: 900;
  font-size: 48px;
}
.tt > :nth-child(2) {
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
}
.tt > :nth-child(3) {
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.rule {
  height: 4px;
  background-color: rgb(51, 50, 50);
}
.flex {
  display: flex;
  gap: 12px;
}
.btn {
  font-weight: 400;
  background-color: rgba(23, 23, 23, 0.9);
  color: white;
  border: 1px solid rgba(246, 238, 238, 0.45);
  padding: 6px 24px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}
.dropdown {
  font-weight: 400;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid rgba(0, 0, 0,);
  padding: 8px 40px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  appearance: none;
  position: relative;
  z-index: 20;
}
.tt-btn {
    font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 16px;
}
.main input {
  padding: 16px 170px 8px 16px;
  color: white;
  font-size: 12px;
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  border: 1px solid rgba(246, 238, 238, 0.35);
  background-color: rgb(23, 23, 23, 0.5);
  font-weight: 600;
}
.btn-red {
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: white;
  background-color: red;
}
.btn-red-sm {
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: white;
  background-color: red;
  padding: 8px 24px;
}
.first {
  display: flex;
  justify-content: center;
  max-width: 70vw;
  margin: auto;
  color: white;
  align-items: center;
}
.secImg {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.secImg img {
  width: 100%;
  position: relative;
  z-index: 2;
}

.secImg video {
  position: absolute;
  top: 20%;
  left: 13%;
  width: 83%;
  height: 60%;
  z-index: 1;
  object-fit: cover;
}

section.first > div {
  display: flex;
  flex-direction: column;
  padding: 34px 0;
}

section.first > div :nth-child(1) {
  font-size: 48px;
  font-weight: bolder;
}

section.first > div :nth-child(2) {
  font-size: 24px;
}
@media (max-width: 900px) {
  .first {
    flex-direction: column;
    text-align: center;
  }

  section.first > div:first-child {
    padding: 20px;
  }

  section.first > div:first-child span:first-child {
    font-size: 32px;
    font-weight: 700;
  }

  section.first > div:first-child span:nth-child(2) {
    font-size: 18px;
  }

  .secImg {
    max-width: 400px;
    margin: auto;
  }
}

@media (max-width: 600px) {
  section.first > div:first-child span:first-child {
    font-size: 24px;
  }

  section.first > div:first-child span:nth-child(2) {
    font-size: 16px;
  }

  .secImg {
    max-width: 320px;
  }
}

.container {
  padding: 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-title {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  margin-left: 20px;
}

.trending-wrapper {
  position: relative;
  margin-bottom: 20px;
  padding-top: 40px;
}

.curved-border {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(
    180deg,
    rgba(255, 0, 300, 0.3) 0%,
    transparent 100%
  );
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: inset 0 2px 8px rgba(25, 0, 200, 0.2);
}

.trending-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 60px 20px 20px 20px;
  scroll-behavior: smooth;
  position: relative;
}
.trending-carousel::-webkit-scrollbar {
  height: 6px;
}

.trending-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.trending-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 0, 0.5);
  border-radius: 3px;
}

.trending-item {
  position: relative;
  flex-shrink: 0;
  width: 250px;
  height: 350px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.trending-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.trending-number {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), -2px -2px 8px rgba(0, 0, 0, 0.8);
  z-index: 2;
  letter-spacing: -8px;
  line-height: 1;
}
.trending-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}
.trending-item:hover {
  transform: scale(1.08) translateY(-20px);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.4);
}

.trending-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.trending-item:hover::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.trending-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.trending-item:hover .trending-title {
  opacity: 1;
}
.trending-item:hover .trending-number {
  opacity: 0;
  transform: scale(0.8);
}
h2 {
  color: white;
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  z-index: 20;
}
.more-reasons {
  margin-top: 50px;
  margin-bottom: 60px;
}
.cards-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.reason-card {
  padding-top: 4px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  background: linear-gradient(135deg, #1e1d1d, #201d4d);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 190px;
}

.reason-card span {
  display: block;
}

span.first {
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
  font-size: 24px;
  margin-left: 8px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 0%;
}

span.second {
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  margin-left: 8px;
}
.reason-card span:last-child {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-card svg {
  width: 100%;
  height: 100%;
}
.faq{
  background: black;
  color: white;
  padding: 34px;
}
.faq-box{
  display: flex;
  background-color: rgb(54, 53, 53);
  padding:24px;
  max-width: 80vw;
  margin: 10px auto;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  position: relative;
  cursor: pointer;
  
}
.faq-box:hover{
  transition: all 0.4s ease-in-out;
  background-color:rgb(93, 93, 92);
}
.faq-box span {
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", sans-serif;
}
.faq h2{
font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,sans-serif;
  font-size: 24px;
  font-weight: 500;
}
footer{
  color: white;
  margin-left: 48px;
  
}
footer span{
  max-width: 60vw;
  margin: auto;
}
.footer {

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-item{
  margin: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.questions{
  margin: 10px 16px;
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
footer a{
  Color:rgba(255, 255, 255, 0.7);
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.footer-bottom{
  margin-top: 24px;
  margin-left: 16px;
  min-height: 20vw;
  
}
.footer-bottom.dropdown{
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.footer-bottom p{
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  margin-top: 24px;
}
.footer-bottom span{
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color:rgba(255, 255, 255, 0.5)
}
