  *{
      margin: 0px;
    }

    /* nav */

    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.logo {
  height: 100px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e50914;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #111, #000);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
  z-index: 999;
  
}


.mobile-menu.active {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  
}

.mobile-menu li {
  font-size: 26px;
  letter-spacing: 3px;
  margin: 18px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: menuFade 0.6s forwards;
  
}
.mobile-menu a{
    text-decoration: none;
    color: #fff;
}

.mobile-menu a:hover {
  color: #e50914;
}

.mobile-menu.active li {
  animation-delay: calc(var(--i) * 0.08s);
}

@keyframes menuFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SOCIAL */
.socials {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 25px;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar {
    padding: 0 30px;
  }
}

    /*========== nav close============== ===========================================*/
/* ===============================herosection ========================================= */
    .hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
    min-height: 600px;
  overflow: hidden;
  background: #000;
}

/* VIDEO */
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%),
    radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 120px;
  animation: heroFade 1.4s ease forwards;
}

.hero-line {
  width: 60px;
  height: 3px;
  background: #e50914;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

/* TAGS */
.hero-tags {
  display: flex;
  gap: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  
}
.hero-tags a{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.hero-tags a:hover{
  color: #e50914;
}


.hero-tags span {
  color: #bbb;
  position: relative;
}

.hero-tags span::after {
  content: "|";
  position: absolute;
  right: -14px;
  color: #444;
}

.hero-tags span:last-child::after {
  display: none;
}

.hero-tags .active {
  color: #e50914;
}

/* ANIMATION */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    padding-left: 30px;
    padding-bottom: 80px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-video {
    height: 90vh;
  }
}



    /* ============== gallery===================================================================== */
.project-section {
  background-color: #000;
  color: #fff;
  padding: 60px 40px;
  font-family: 'Oswald', sans-serif;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  border-left: 3px solid #e50914;
  padding-left: 20px;
}

.section-title {
  font-size: 42px;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.filter-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
}

.filter-item {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 1px;
}

.filter-item.active {
  color: #e50914;
}

.separator {
  color: #444;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  height: 500px;
  width: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.project-card {
  position: absolute;
  width: 270px;
  height: 390px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* 3D Positioning */


.project-card.far-left {
  transform: translateX(-450px) translateZ(-200px) rotateY(35deg);
  z-index: 1;
  opacity: 0.4;
  filter: grayscale(0.5);
}

.project-card.mid-left {
  transform: translateX(-250px) translateZ(-100px) rotateY(20deg);
  z-index: 2;
  opacity: 0.7;
}

.project-card.center {
  transform: translateX(0) translateZ(100px) rotateY(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 0 50px rgba(255,255,255,0.1);
}

.project-card.mid-right {
  transform: translateX(250px) translateZ(-100px) rotateY(-20deg);
  z-index: 2;
  opacity: 0.7;
}

.project-card.far-right {
  transform: translateX(450px) translateZ(-200px) rotateY(-35deg);
  z-index: 1;
  opacity: 0.4;
  filter: grayscale(0.5);
}

.project-card:hover {
  opacity: 1;
  filter: grayscale(0);
}

.nav-btn {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 100;
  transition: transform 0.3s, color 0.3s;
  padding: 20px;
}

.nav-btn:hover {
  color: #e50914;
  transform: scale(1.2);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

@media (max-width: 1024px) {
  .project-card { width: 240px; height: 340px; }
  .project-card.far-left { transform: translateX(-300px) translateZ(-150px) rotateY(35deg); }
  .project-card.far-right { transform: translateX(300px) translateZ(-150px) rotateY(-35deg); }
}


/* Tablets */
@media (max-width: 900px) {
  .carousel-wrapper {
    height: 420px;
  }

  .project-card {
    width: 220px;
    height: 320px;
  }

  .project-card.far-left,
  .project-card.far-right {
    opacity: 0;
    pointer-events: none;
  }

  .project-card.mid-left {
    transform: translateX(-160px) translateZ(-80px) rotateY(15deg);
  }

  .project-card.mid-right {
    transform: translateX(160px) translateZ(-80px) rotateY(-15deg);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .carousel-wrapper {
    height: 360px;
  }

  .project-card {
    width: 200px;
    height: 300px;
  }

  .project-card:not(.center) {
    opacity: 0;
    pointer-events: none;
  }

  .project-card.center {
    transform: translateX(0) translateZ(0);
  }

  .nav-btn {
    padding: 10px;
  }
}



/* =========================================================footer=========================== */
.premium-footer {
  position: relative;
  background:
    linear-gradient(180deg, #000000 0%, #070707 60%, #0a0a0a 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 90px 0 0;
  border-top: 1px solid rgba(229, 9, 20, 0.18);
  overflow: hidden;
}

/* subtle cinematic top glow */
.premium-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(229, 9, 20, 0.6),
    transparent
  );
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* LOGO / BRAND */
.footer-logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  letter-spacing: 2.5px;
  color: #e50914;
}

.footer-logo p {
  color: #9a9a9a;
  margin-top: 14px;
  line-height: 1.8;
  font-size: 15px;
  max-width: 260px;
}

/* SECTION TITLES */
.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 13px;
  margin-bottom: 26px;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

/* small red accent under title */
.footer-nav h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 22px;
  height: 2px;
  background: #e50914;
}

/* NAV */
.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 14px;
}

.footer-nav a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #e50914;
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* CONTACT */
.footer-contact p,
.contact-item {
  color: #9a9a9a;
  line-height: 1.8;
  font-size: 14.5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-item .icon {
  width: 18px;
  height: 18px;
  fill: #e50914;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item a {
  color: #9a9a9a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffffff;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(229, 9, 20, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: white; */
  color: #e50914;
  text-decoration: none;
  transition: all 0.35s ease;
}

.social-icons a:hover {
  background: #e50914;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow:
    0 10px 30px rgba(229, 9, 20, 0.45),
    0 0 0 6px rgba(229, 9, 20, 0.08);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 80px;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid rgba(229, 9, 20, 0.15);
  letter-spacing: 1px;
}
.footer-bottom a{
  text-decoration: none;
  color: #e50914;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav h4::after,
  .footer-contact h4::after,
  .footer-social h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
  }
}

/* ============================about page============================================== */






/*=========================== contact page===================================================== */

.contact-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* LEFT SIDE */
.contact-info {
  padding: 100px 80px;
}

.contact-info h2 {
  font-size: 48px;
  color: #e50914;
  margin-bottom: 20px;
}

.contact-info p {
  color: #aaa;
  line-height: 1.8;
  max-width: 420px;
}

.info-block {
  margin-top: 40px;
}

.info-block h4 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
}

.info-block p {
  color: #999;
  font-size: 15px;
}

/* RIGHT SIDE */
.contact-form {
  background: linear-gradient(180deg, #0a0a0a, #000);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 18px;
}

input {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(229,9,20,0.3);
  color: #fff;
  outline: none;
}
/* SELECT BOX */
select {
  width: 100%;
  padding: 14px;
  background-color: #000;
  color: #ffffff;
  border: 1px solid rgba(229, 9, 20, 0.4);
  outline: none;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* OPTION DROPDOWN */
select option {
  background-color: #000;
  color: #ffffff;
}

/* OPTION HOVER (some browsers) */
select option:hover,
select option:checked {
  background-color: #e50914;
  color: #ffffff;
}

/* REMOVE BLUE HIGHLIGHT (Chrome fix) */
select:focus {
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.3);
}

/* CUSTOM ARROW */
.input-group {
  position: relative;
}

.input-group::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #e50914;
  pointer-events: none;
}


input::placeholder {
  color: #777;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-group p {
  margin-bottom: 10px;
  font-size: 14px;
}

.checkbox-group label {
  display: inline-block;
  margin-right: 16px;
  font-size: 14px;
  color: #aaa;
}

button {
  margin-top: 30px;
  padding: 16px;
  background: #e50914;
  border: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  box-shadow: 0 0 30px rgba(229,9,20,0.6);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 60px 30px;
  }
}

/* =================map section ============================================= */

.studio-map-section {
  /* background: radial-gradient(circle at top, #0b0b0b, #000); */
  background-color: #000;
  padding: 100px 40px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.studio-map-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.section-tag {
  color: #e50914;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: inline-block;
}

.studio-info h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.studio-info p {
  color: #b5b5b5;
  line-height: 1.8;
  max-width: 420px;
}

.studio-details {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.studio-details strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.studio-details span {
  color: #9a9a9a;
  font-size: 14px;
}

/* MAP */
.studio-map {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 30px 80px rgba(229, 9, 20, 0.25);
}

.studio-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(90%) contrast(1.2);
}

/* SUBTLE RED OVERLAY */
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.2),
    rgba(229,9,20,0.15)
  );
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .studio-map-container {
    grid-template-columns: 1fr;
  }

  .studio-map {
    height: 300px;
  }

  .studio-info h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .studio-map-section {
    padding: 70px 20px;
  }
}

/* =============================showcase   page================================================= */


/* =========================
   MOVIE SECTION
========================= */

html,body{
    width: 100%;
    overflow-x: hidden;
}

.container {
  padding-top: 120px; /* space for fixed navbar */
}
.movie-section {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 80px 40px;
  background: #000;
}

/* SECTION TITLE */
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: #e50914;
}

/* =========================
   GRID
========================= */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
}

/* =========================
   CARD
========================= */
.movie-card {
  background: linear-gradient(180deg, #111, #0b0b0b);
  border-radius: 18px;
  border: 1px solid rgba(229, 9, 20, 0.25);
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.movie-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(229, 9, 20, 0.35);
  border-color: #e50914;
}

/* =========================
   INNER FLEX LAYOUT
========================= */
.movie-card-inner {
  display: flex;
  align-items: stretch;
  height: 100%;
}

/* =========================
   IMAGE (LEFT)
========================= */
.movie-image {
  width: 180px;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.movie-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* FULL COVER */
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.movie-card:hover .movie-image img {
  transform: scale(1.08);
}

/* YEAR BADGE */
.movie-year {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e50914;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2;
}

/* =========================
   CONTENT (RIGHT)
========================= */
.movie-info {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

/* TITLE */
.movie-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* META */
.movie-meta {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 14px;
}

.movie-meta i {
  color: #e50914;
  margin-right: 6px;
}

/* PRODUCTION */
.movie-production {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #bbb;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  border-left: 3px solid #e50914;
  border-radius: 6px;
  margin-bottom: 20px;
}

.movie-production i {
  color: #e50914;
}

/* =========================
   BUTTONS
========================= */
.movie-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* TRAILER */
.btn-trailer {
  background: #e50914;
  color: #fff;
}

.btn-trailer:hover {
  background: #ff1f2d;
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.45);
}

/* SHOWREEL */
.btn-showreel {
  border: 2px solid #e50914;
  color: #fff;
}

.btn-showreel:hover {
  background: rgba(229, 9, 20, 0.12);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.35);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
  .movie-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }

  .movie-image {
    width: 160px;
    min-width: 160px;
  }
}

/* =========================
   MOBILE
========================= */


@media (max-width: 768px) {

    .movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

  .movie-section {
    padding: 40px 20px;
  }

  .movie-card-inner {
    flex-direction: row;
    width: 100%;
  }

 .movie-image {
    width: 120px;        /* 🔥 reduce width */
    min-width: 120px;
    flex-shrink: 0;
  }

    .movie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* FULL COVER */
    object-position: center;
  }

  .movie-info {
    padding: 20px;
  }

    .movie-title,
  .movie-meta,
  .movie-production {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .movie-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .movie-image {
    height: 220px;
  }
}

  .page-title {
            font-size: 42px;
            text-align: center;
            margin-bottom: 60px;
            color: #fff;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: #e50914;
        }
 
        

