* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Jost", sans-serif;
  background: #0b0b0b;
  color: #f0f0f0;
  overflow-y: auto; /* allow page scroll */
  height: auto;
  min-height: 100vh;
}

/* ----- hero / video background ----- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* ====== TOP NAV ====== */
.nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100 !important;
  padding: 18px 30px;
  width: 100%;
  pointer-events: auto;
  flex-shrink: 0;
}
.desktop-nav .row {
  --bs-gutter-x: 0;
  align-items: center;
}
.desktop-nav a {
  color: #ffff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 18px !important;
  font-weight: 500;
  transition: 0.3s ease;
  opacity: 0.6;
  position: relative;
  padding-bottom: 4px;
}
.desktop-nav a:hover {
  color: #4da3ff;
  opacity: 1;
}
.desktop-nav a.active {
  color: #4da3ff !important;
  opacity: 1 !important;
}
.desktop-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #4da3ff;
  border-radius: 4px;
  animation: fadeInUnderline 0.4s ease;
}
.logo-img {
  width: 90px;
  height: 60px;
  filter: brightness(1.1);
  transition: 0.2s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  width: 100%;
}
.hamburger-btn {
  background: transparent;
  border: none;
  color: #f0f0f0;
  font-size: 1.8rem;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0f0f0fdd;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  padding: 2rem 1.5rem;
  z-index: 999;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.7);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open {
  transform: translateX(0);
  display: flex;
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.menu-logo {
  height: 40px;
  filter: brightness(1.1);
}
.close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
}
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.menu-links a {
  color: #eee;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 1px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

/* ----- cinema frame (now scrollable with page) ----- */
.cinema-frame {
  position: relative;
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 90px 40px 30px 40px;
  min-height: 100vh;
  width: 100%;
}

.frame-top-left,
.frame-top-right {
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 2px;
  color: #b0b0b0;
  text-shadow: 0 2px 6px black;
  flex-shrink: 0;
  pointer-events: auto;
}
.frame-top-left {
  align-self: flex-start;
}
.frame-top-right {
  align-self: flex-end;
  margin-top: -20px;
}

/* SCROLLABLE CENTER CONTENT — no scroll inside, page scrolls */
.hero-center {
  flex: 1 1 auto;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 20px 0 40px 0;
}

.about-content {
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  text-align: left;
  pointer-events: auto;
}

/* ====== ABOUT CONTENT STYLES ====== */
.about-content .badge-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #4da3ff;
  padding: 4px 16px;
  border-radius: 40px;
  margin-bottom: 1.2rem;
}
.about-content h1 {
  font-weight: 200;
  font-size: 2.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-content h1 span {
  color: #4da3ff;
  font-weight: 300;
}
.about-content .section-desc {
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.3;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.vm-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid 4da3ffq (255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  transition: 0.3s;
}
.vm-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #b8a6d444;
}
.vm-card .vm-icon {
  font-size: 2rem;
  color: #4da3ff;
  margin-bottom: 0.8rem;
  display: block;
}
.vm-card h4 {
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: white;
}
.vm-card p {
  font-weight: 200;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #b5b5b5;
  margin: 0;
}

.values-section {
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
}
.values-section h4 {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4da3ff;
  margin-bottom: 1rem;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.value-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: 0.3s;
}
.value-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #b8a6d433;
}
.value-item .val-icon {
  font-size: 1.5rem;
  color: #4da3ff;
  display: block;
  margin-bottom: 0.5rem;
}
.value-item .val-label {
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
  justify-content: center;
  flex-wrap: wrap;
}
.about-stats .stat-item {
  text-align: center;
}
.about-stats .stat-number {
  font-size: 1.6rem;
  font-weight: 200;
  letter-spacing: 2px;
  color: #4da3ff;
}
.about-stats .stat-label {
  font-size: 0.6rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-top: 2px;
}

/* ===== BACK HOME BUTTON ===== */
.back-home {
  position: fixed;
  top: 28px;
  left: 30px;
  z-index: 200;
  pointer-events: auto;
}
.back-home a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.back-home a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-4px);
  color: #fff;
}
.back-home i {
  font-size: 20px;
}

/* ===== FOOTER – tall, full info, copyright centered bottom ===== */
.footer-bottom {
  position: relative;
  z-index: 20;
  width: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 30px 16px 30px;
  pointer-events: auto;
  flex-shrink: 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 16px 40px;

  margin: 0 auto;
}

/* Left: company info */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 200;
  color: #c5c5c5;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.footer-info .brand {
  font-weight: 400;
  color: #f0f0f0;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.footer-info i {
  color: #4da3ff;
  width: 20px;
  font-size: 0.85rem;
}
.footer-info .info-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-info a {
  color: #c5c5c5;
  text-decoration: none;
  transition: 0.2s;
}
.footer-info a:hover {
  color: #4da3ff;
}

/* Center: logo + nav links */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo-small {
  height: 50px;
  filter: brightness(1.2);
  opacity: 0.9;
  transition: 0.2s;
}
.footer-logo-small:hover {
  opacity: 1;
  filter: brightness(1.4);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}
.footer-links a {
  color: #b5b5b5;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  transition: 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.footer-links a:hover {
  color: #4da3ff;
  border-bottom-color: #4da3ff;
}

/* Right: social */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  color: #b0b0b0;
  font-size: 1.15rem;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.footer-social a:hover {
  color: #fff;
  background: #4da3ff22;
  border-color: #4da3ff66;
  transform: translateY(-3px);
}

/* Bottom: copyright centered full width */
.footer-copy-wrap {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-copy {
  font-size: 0.7rem;
  font-weight: 200;
  color: #777;
  letter-spacing: 1.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: flex;
  }
  .cinema-frame {
    padding: 80px 20px 20px 20px;
  }
  .about-content {
    padding: 2rem;
  }
  .about-content h1 {
    font-size: 2rem;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .back-home {
    top: 20px;
    left: 15px;
  }
  .back-home a {
    padding: 8px 14px;
    font-size: 14px;
  }
  .back-home i {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
  .footer-info {
    align-items: center;
    font-size: 0.8rem;
  }
  .footer-info .info-row {
    justify-content: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-links {
    gap: 8px 14px;
  }
  .footer-links a {
    font-size: 0.7rem;
  }
  .footer-copy-wrap {
    padding-top: 10px;
    margin-top: 4px;
  }
}

@media (max-width: 576px) {
  .cinema-frame {
    padding: 75px 12px 10px 12px;
  }
  .about-content {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .about-content h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  .about-content .section-desc {
    font-size: 0.9rem;
  }
  .about-stats {
    gap: 1.2rem;
  }
  .about-stats .stat-number {
    font-size: 1.2rem;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .vm-card {
    padding: 1rem;
  }
  .vm-card p {
    font-size: 0.8rem;
  }
  .back-home {
    top: 14px;
    left: 10px;
  }
  .back-home a {
    padding: 6px 12px;
    font-size: 12px;
  }
  .back-home i {
    font-size: 15px;
  }
  .frame-top-left,
  .frame-top-right {
    font-size: 0.5rem;
  }

  .footer-bottom {
    padding: 20px 14px 12px 14px;
  }
  .footer-grid {
    gap: 10px;
  }
  .footer-info {
    font-size: 0.7rem;
  }
  .footer-logo-small {
    height: 38px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .footer-links a {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }
  .footer-links {
    gap: 4px 12px;
  }
  .footer-copy {
    font-size: 0.6rem;
  }
  .footer-copy-wrap {
    padding-top: 8px;
    margin-top: 2px;
  }
}

@media (max-width: 400px) {
  .about-content {
    padding: 1rem;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-stats {
    gap: 0.8rem;
  }
  .about-stats .stat-number {
    font-size: 1rem;
  }
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.35s ease;
}

.val-icon i,
.val-label {
  color: #ffffff;
  transition: all 0.35s ease;
}

/* Hover Effect */
.value-item:hover {
  background: rgba(255, 214, 153, 0.12);
  border-color: #4da3ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(216, 180, 107, 0.25);
}

/* Icon becomes light beige */
.value-item:hover .val-icon i {
  color: #4da3ff;
  transform: scale(1.2);
}

/* Text becomes light beige */
.value-item:hover .val-label {
  color: #4da3ff;
}
/* ----- CORE VALUES SECTION (replaced) ----- */
.values-section {
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
}
.values-section h4 {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4da3ff;
  margin-bottom: 1.2rem;
  text-align: center;
}
/* CORE VALUES GRID — 2 columns on desktop */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: default;
  transition: all 0.35s ease;
}
.val-icon i {
  color: #ffffff;
  font-size: 1.5rem;
  transition: all 0.35s ease;
  min-width: 2rem;
}
.val-label {
  color: #f0f0f0;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
  font-size: 1rem;
}
.value-item .val-desc {
  font-weight: 200;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #b5b5b5;
  margin: 0;
  margin-top: 4px;
  grid-column: 1 / -1;
  display: none;
}
.value-item-wrap {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 20px;
  transition: all 0.35s ease;
  cursor: default;
}
.value-item-wrap:hover {
  background: rgba(255, 214, 153, 0.08);
  border-color: #4da3ff;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(77, 163, 255, 0.15);
}
.value-item-wrap .val-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.value-item-wrap .val-icon i {
  color: #fff;
  font-size: 1.5rem;
  transition: 0.3s;
  min-width: 2rem;
}
.value-item-wrap:hover .val-icon i {
  color: #4da3ff;
  transform: scale(1.1);
}
.value-item-wrap .val-label {
  color: #f0f0f0;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-size: 1rem;
  transition: 0.3s;
}
.value-item-wrap:hover .val-label {
  color: #4da3ff;
}
.value-item-wrap .val-desc {
  font-weight: 200;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #c0c0c0;
  margin: 6px 0 2px 0;
  padding-left: 2.5rem;
  border-left: 1px solid #333;
  padding-left: 1.2rem;
}
.values-intro {
  font-weight: 200;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 1.8rem;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 1rem;
}

/* ===== MOBILE RESPONSIVE - ONE PER ROW ===== */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 16px;
  }

  .value-item-wrap {
    padding: 16px 18px;
    border-radius: 14px;
  }

  .value-item-wrap .val-header {
    gap: 14px;
    margin-bottom: 8px;
  }

  .value-item-wrap .val-icon i {
    font-size: 1.4rem;
    min-width: 2rem;
  }

  .value-item-wrap .val-label {
    font-size: 1rem;
    font-weight: 400;
  }

  .value-item-wrap .val-desc {
    font-size: 0.8rem;
    padding-left: 1rem;
    margin-top: 4px;
    border-left: 2px solid rgba(77, 163, 255, 0.3);
  }

  /* Override the inline style for Collaboration item */
  .value-item-wrap[style*="grid-column: span 2"] {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
  }

  .values-intro {
    font-size: 0.9rem;
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .values-section h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }
}

/* Extra small devices - even better spacing */
@media (max-width: 480px) {
  .values-grid {
    gap: 12px;
  }

  .value-item-wrap {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .value-item-wrap .val-header {
    gap: 12px;
    margin-bottom: 6px;
  }

  .value-item-wrap .val-icon i {
    font-size: 1.2rem;
    min-width: 1.6rem;
  }

  .value-item-wrap .val-label {
    font-size: 0.9rem;
  }

  .value-item-wrap .val-desc {
    font-size: 0.75rem;
    padding-left: 0.8rem;
    line-height: 1.5;
  }

  .values-intro {
    font-size: 0.85rem;
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
  }

  .values-section h4 {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
}
