/* ================================
   GOOGLE FONTS
================================ */

body {
  font-family: 'Montserrat', sans-serif;
}

.hero-title,
.page-hero-title,
.nav-logo,
.footer-logo {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 3px;
}
/* ================================
   GLOBAL RESET & BASE STYLES
   Applies to every page
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #141414;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ================================
   NAVBAR — MINIMAL PILL STYLE
================================ */

#navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: #141414cc;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #ffffff15;
  border-radius: 99px;
  z-index: 9999;
  transition: all 0.3s ease;
}
.nav-logo img {
  height: 86px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
/* ================================
   HERO SECTION
================================ */

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay on top of video */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    #000000cc 40%,
    transparent 100%
  );
  z-index: 1;
}

/* Text sits on top of overlay */
.hero-content {
  position: absolute;
  bottom: 30%;
  left: 50px;
  z-index: 2;
  max-width: 550px;
}

.hero-tag {
  font-size: 13px;
  color: #ffffffaa;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-desc {
  font-size: 16px;
  color: #ffffffcc;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.btn-primary {
  background: #e50914;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #f40612;
  transform: scale(1.05);
}

.btn-secondary {
  background: #ffffff33;
  color: #ffffff;
  border: 2px solid #ffffff66;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: #ffffff55;
  transform: scale(1.05);
}
@media (max-width: 768px) {

  #hero {
    height: 80svh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-content {
    bottom: 15%;
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 16px;
    font-size: 13px;
  }

}
/* ================================
   VIDEO ROWS SECTION
================================ */

#video-rows {
  padding: 40px 0;
  background: #141414;
}

.video-row {
  margin-bottom: 40px;
  padding: 0 20px;
  position: relative;
}

.row-title {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;

}
@media (max-width: 768px) {

  /* Video rows heading */
  .row-title {
    font-size: 25px !important;
    padding: 0 16px;
    margin-bottom: 10px;
   text-align: center;
    }

  /* Section titles */
  .section-title {
    font-size: 18px !important;
  }

  /* Reels title */
  .reels-title {
    font-size: 16px !important;
  }

  /* Grid section title */
  .grid-title {
    font-size: 16px !important;
  }

}

/* ================================
   ROW CONTAINER — horizontal scroll
================================ */

.row-container {
  display: flex;
  gap: 10px;
  overflow-x: scroll;
  scroll-behavior: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.row-container::-webkit-scrollbar {
  display: none;
}

/* ================================
   VIDEO CARD
================================ */

.video-card {
  flex: 0 0 18%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.08);
  z-index: 10;
}

.card-thumb {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 6px;
  overflow: hidden;
  background: #2a2a2a;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button overlay — hidden by default */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000088;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show overlay on hover */
.video-card:hover .card-overlay {
  opacity: 1;
}

.play-btn {
  font-size: 32px;
  color: #ffffff;
}

.card-title {
  font-size: 13px;
  color: #ffffff;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.card-year {
  font-size: 12px;
  color: #ffffff66;
}

.card-rating {
  font-size: 12px;
  color: #e50914;
}
/* ================================
   VIDEO POPUP PLAYER
================================ */

/* Dark overlay covering full screen */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000cc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* When popup is active — show it */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* The popup box in the center */
.popup-box {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

/* When active — box scales up smoothly */
.popup-overlay.active .popup-box {
  transform: scale(1);
}

/* Close button */
.popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  background: #e50914;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 99999;
}

.popup-close:hover {
  background: #ff0000;
}

/* Video title */
.popup-title {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Video player */
#popup-video {
  width: 100%;
  border-radius: 6px;
  background: #000000;
  max-height: 500px;
}
/* ================================
   FOOTER — MINIMAL PILL STYLE
================================ */

#footer {
  padding: 20px 40px 30px;
  background: #0a0a0a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  border: 1px solid #ffffff11;
  border-radius: 99px;
  padding: 16px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.footer-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* Copyright */
.footer-copy p {
  font-size: 13px;
  color: #ffffff66;
  font-family: 'Montserrat', sans-serif;
}

/* Social Icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  color: #ffffff66;
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  #footer {
    padding: 16px 20px 24px;
  }

  .footer-inner {
    border-radius: 16px;
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
/* ================================
   PAGE HERO — used on all inner pages
================================ */

.page-hero {
  padding: 160px 50px 80px;
  text-align: center;
  background: linear-gradient(to bottom, #1a1a1a, #141414);
}

.page-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 18px;
  color: #ffffff88;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================================
   OUR STORY SECTION
================================ */

.about-story {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 50px;
}

.story-text {
  flex: 1;
}

.section-tag {
  font-size: 13px;
  color: #e50914;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}

.story-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-text p {
  font-size: 15px;
  color: #ffffff88;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Stats grid */
.story-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: #1e1e1e;
  border: 1px solid #ffffff11;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #e50914;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #ffffff66;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================
   TEAM SECTION
================================ */

.team-section {
  padding: 80px 50px;
  background: #0a0a0a;
}

.team-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #1e1e1e;
  border: 1px solid #ffffff11;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: #e50914;
}

/* Circle with initials */
.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e50914;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  color: #e50914;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: #ffffff66;
  line-height: 1.6;
}
/* ================================
   SERVICES SECTION
================================ */

.services-section {
  padding: 80px 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #1e1e1e;
  border: 1px solid #ffffff11;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #e50914;
}

/* Most popular badge */
.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e50914;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Featured card — red border */
.service-card.featured {
  border-color: #e50914;
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.service-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: #ffffff66;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  background: transparent;
  color: #e50914;
  border: 1px solid #e50914;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-btn:hover {
  background: #e50914;
  color: #ffffff;
}

/* ================================
   WHY CHOOSE US SECTION
================================ */

.why-section {
  padding: 80px 50px;
  background: #0a0a0a;
  text-align: center;
}

.why-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #1e1e1e;
  border: 1px solid #ffffff11;
  border-radius: 10px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: #ffffff66;
  line-height: 1.6;
}
/* ================================
   CONTACT SECTION
================================ */

.contact-section {
  padding: 80px 50px;
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   LEFT SIDE — Contact Info
================================ */

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 14px;
  color: #ffffff66;
  line-height: 1.8;
  margin-bottom: 40px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  font-size: 24px;
  margin-top: 2px;
}

.info-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item p {
  font-size: 14px;
  color: #ffffff66;
}

/* Social links */
.contact-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  background: #1e1e1e;
  color: #ffffff88;
  border: 1px solid #ffffff11;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  transition: background 0.2s ease,
              color 0.2s ease,
              border-color 0.2s ease;
}

.social-link:hover {
  background: #e50914;
  color: #ffffff;
  border-color: #e50914;
}

/* ================================
   RIGHT SIDE — Contact Form
================================ */

.contact-form {
  flex: 1;
  background: #1e1e1e;
  border: 1px solid #ffffff11;
  border-radius: 10px;
  padding: 40px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  color: #ffffff88;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #141414;
  border: 1px solid #ffffff22;
  border-radius: 6px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #e50914;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ffffff33;
}

.form-group select option {
  background: #1e1e1e;
  color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button */
.submit-btn {
  width: 100%;
  background: #e50914;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease,
              transform 0.2s ease;
}

.submit-btn:hover {
  background: #ff0000;
  transform: scale(1.02);
}
/* ================================
   PORTFOLIO FILTERS
================================ */

.portfolio-filters {
  display: flex;
  gap: 12px;
  padding: 0 50px 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #1e1e1e;
  color: #ffffff88;
  border: 1px solid #ffffff22;
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: #e50914;
  color: #ffffff;
}

.filter-btn.active {
  background: #e50914;
  color: #ffffff;
  border-color: #e50914;
}

/* ================================
   PORTFOLIO MASONRY GRID
================================ */

.portfolio-section {
  padding: 0 50px 80px;
}

.portfolio-grid {
  columns: 3;
  column-gap: 16px;
}

/* Each card breaks naturally like masonry */
.portfolio-card {
  break-inside: avoid;
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #1e1e1e;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: scale(1.02);
}

/* Make every 3rd card taller — random feel */
.portfolio-card:nth-child(3n+1) .portfolio-thumb {
  height: 280px;
}

.portfolio-card:nth-child(3n+2) .portfolio-thumb {
  height: 180px;
}

.portfolio-card:nth-child(3n) .portfolio-thumb {
  height: 220px;
}

.portfolio-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.08);
}

/* Overlay — shown on hover */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000aa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-play {
  font-size: 40px;
  color: #ffffff;
}

.portfolio-hover-title {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
}

/* Card bottom info */
.portfolio-info {
  padding: 12px 14px;
}

.portfolio-title {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6px;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-cat {
  font-size: 11px;
  color: #ffffff;
  background: #e50914;
  padding: 3px 10px;
  border-radius: 99px;
}

.portfolio-rating {
  font-size: 12px;
  color: #e50914;
}
/* ================================
   PORTFOLIO POPUP FIX
================================ */

#portfolio-popup .popup-box {
  width: 80%;
  max-width: 900px;
  max-height: 90vh;
  overflow: visible;
  position: relative;
}

#portfolio-popup #portfolio-video {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  background: #000;
  border-radius: 6px;
}
/* ================================
   MOBILE RESPONSIVE
   Screens smaller than 768px
================================ */

@media (max-width: 768px) {

  /* NAVBAR */
  #navbar {
    padding: 0 20px;
    height: 60px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    font-size: 20px;
  }

  /* HERO */
  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 20%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* VIDEO ROWS */
  .video-row {
    padding: 0 16px;
  }

  .video-card {
    flex: 0 0 45%;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 120px 20px 60px;
  }

  .page-hero-title {
    font-size: 36px;
  }

  .page-hero-sub {
    font-size: 15px;
  }

  /* ABOUT PAGE */
  .about-story {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* SERVICES PAGE */
  .services-section {
    padding: 40px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* PORTFOLIO PAGE */
  .portfolio-section {
    padding: 0 16px 40px;
  }

  .portfolio-grid {
    columns: 2;
    column-gap: 10px;
  }

  /* CONTACT PAGE */
  .contact-section {
    padding: 40px 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* FOOTER */
  #footer {
    padding: 40px 20px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  /* POPUP */
  .popup-box {
    width: 95%;
    padding: 16px;
  }

}

/* ================================
   VERY SMALL SCREENS
   Phones smaller than 480px
================================ */

@media (max-width: 480px) {

  .hero-title {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    columns: 1;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .video-card {
    flex: 0 0 70%;
  }

}
/* ================================
   SEARCH BOX
================================ */

#search-box {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  padding: 16px 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 998;
  transform: translateY(-200%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#search-box.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}


#search-input {
  flex: 1;
  background: #2a2a2a;
  border: 1px solid #ffffff22;
  border-radius: 6px;
  padding: 10px 16px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
}

#search-input:focus {
  border-color: #e50914;
}

#search-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

/* ================================
   HAMBURGER — hide on desktop
================================ */

.hamburger {
  display: none;
  font-size: 24px;
}

/* ================================
   MOBILE MENU
================================ */

#mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: #141414;
  padding: 20px;
  z-index: 997;
  display: none;
  border-top: 1px solid #ffffff11;
}

#mobile-menu.active {
  display: block;
}

#mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#mobile-menu ul li a {
  font-size: 16px;
  color: #ffffff;
  transition: color 0.2s ease;
}

#mobile-menu ul li a:hover {
  color: #e50914;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
/* ================================
   CLIENT LOGOS SECTION
================================ */

#clients {
  padding: 60px 0;
  background: #0a0a0a;
  overflow: hidden;
}

.clients-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Montserrat', sans-serif;
}

.clients-track-wrapper {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #ffffff11;
  border-bottom: 1px solid #ffffff11;
  padding: 24px 0;
}

.clients-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  border-right: 1px solid #ffffff11;
  height: 80px;
  white-space: nowrap;
  flex-shrink: 0;
}
.client-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    max-width: 140px;
    transition: opacity 0.3s ease;
}

.client-logo img:hover {
    opacity: 1;
}

.client-logo span {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff44;
  letter-spacing: 3px;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.client-logo:hover span {
  color: #ffffff;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.row-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.row-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000000cc;
  color: #ffffff;
  border: none;
  font-size: 40px;
  width: 40px;
  height: 80px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-arrow:hover {
  background: #e50914;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}
/* ================================
   INTRO SPLASH SCREEN
================================ */

#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#intro-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

#intro-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
/* ================================
   HOME SERVICES SECTION
================================ */

#home-services {
  padding: 80px 50px;
  background: #141414;
}

.home-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.home-services-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 4px;
}

/* 3 column grid */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

/* Each card */
.hs-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  height: 400px;
}

.hs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hs-card:hover img {
  transform: scale(1.05);
}

/* Dark gradient at bottom */
.hs-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to top,
    #000000cc,
    transparent
  );
}

/* Service name + count at bottom */
.hs-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
}

.hs-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.hs-card-count {
  font-size: 12px;
  color: #ffffffaa;
  font-family: 'Montserrat', sans-serif;
}

.hs-card-icon {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.7;
}

/* View All Button */
.home-services-btn-wrap {
  text-align: center;
}

.show-more-btn {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  transition: color 0.2s ease,
              border-color 0.2s ease;
}

.show-more-btn:hover {
  color: #e50914;
  border-color: #e50914;
}

/* Mobile */
@media (max-width: 768px) {
  #home-services {
    padding: 60px 20px;
  }
  .home-services-grid {
    grid-template-columns: 1fr;
  }
  .hs-card {
    height: 280px;
  }
}

/* ================================
   REELS SECTION
================================ */

#reels-section {
  padding: 60px 0 60px 50px;
  background: #141414;
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}

.reels-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-right: 50px;
}

.reels-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}

.reels-subtitle {
  font-size: 13px;
  color: #e50914;
  font-weight: 500;
}

.reels-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

/* Arrow buttons */
.reel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000000cc;
  color: #ffffff;
  border: none;
  font-size: 40px;
  width: 44px;
  height: 120px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-arrow:hover {
  background: #e50914;
}

.reel-left {
  left: 0;
}

.reel-right {
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

/* Scrollable track */
.reels-track {
  display: flex;
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 50px;
  -webkit-overflow-scrolling: touch;
}

.reels-track::-webkit-scrollbar {
  display: none;
}

/* Portrait card */
.reel-card {
  flex: 0 0 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  scroll-snap-align: center;
}

.reel-card:hover {
  transform: scale(1.05);
  z-index: 5;
}

.reel-thumb {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  background: #2a2a2a;
}

.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.reel-card:hover .reel-thumb img {
  transform: scale(1.08);
}

/* Dark gradient at bottom */
.reel-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, #000000ee, transparent);
  z-index: 1;
}

/* Play overlay */
.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.reel-card:hover .reel-overlay {
  opacity: 1;
}

.reel-play {
  font-size: 40px;
  color: #ffffff;
  background: #e5091488;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Info at bottom */
.reel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 12px;
  z-index: 2;
}

.reel-badge {
  display: inline-block;
  background: #e50914;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.reel-badge-new {
  background: #1a6e1a;
}

.reel-name {
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

/* Mobile */
@media (max-width: 768px) {
  #reels-section {
    padding: 40px 0 40px 20px;
  }
  .reel-card {
    flex: 0 0 140px;
  }
  .reel-thumb {
    height: 220px;
  }
}
/* ================================
   REELS POPUP
================================ */

#reels-popup {
  display: none;
  position: fixed;
  inset: 0;                          /* top/right/bottom/left = 0 */
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#reels-popup.active {
  display: flex;                     /* shows when JS adds .active */
}

.popup-inner {
  position: relative;
  width: 100%;
  max-width: 420px;                  /* portrait video — reel size */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

#reels-video {
  width: 100%;
  height: auto;
  max-height: 85vh;                  /* never taller than screen */
  display: block;
  object-fit: contain;
}

.popup-title {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #111;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.popup-close:hover {
  color: #e50914;
}

/* Mobile */
@media (max-width: 768px) {
  .popup-inner {
    max-width: 100%;                 /* full width on small screens */
  }

  #reels-video {
    max-height: 75vh;
  }
}