* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: radial-gradient(circle at 50% 30%, #000000, #050505 70%);
    color: #f5f5f5;
  }
  /* ✅ FORCE FULL WEBSITE TO USE ONE BACKGROUND */
section,
.hero,
.services,
.box-section,
.flip-section,
.contact,
footer {
  background: transparent !important;
}




  /* ✅ GLITCH EFFECT */
.glitch {
    position: relative;
    font-weight: 900;
    color: #f5f5f5;
    animation: glitch-skew 3.5s infinite linear alternate-reverse;
  }
  
  /* BEFORE LAYER */
  .glitch::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 0;
    color: #ffffff;
    text-shadow: -2px 0 rgb(218, 160, 160);
    clip: rect(44px, 550px, 90px, 0);
    animation: glitch-anim 3.5s infinite linear alternate-reverse;
  }
  
  /* AFTER LAYER */
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 0;
    color: #ffffff;
    text-shadow: -2px 0 rgb(0, 0, 0);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 3s infinite linear alternate-reverse;
  }
  
  /* ✅ GLITCH KEYFRAMES */
  @keyframes glitch-anim {
    0%   { clip: rect(42px, 9999px, 44px, 0); transform: skew(0.3deg); }
    20%  { clip: rect(12px, 9999px, 85px, 0); transform: skew(0.8deg); }
    40%  { clip: rect(82px, 9999px, 120px, 0); transform: skew(0.2deg); }
    60%  { clip: rect(25px, 9999px, 55px, 0); transform: skew(0.6deg); }
    80%  { clip: rect(65px, 9999px, 90px, 0); transform: skew(0.1deg); }
    100% { clip: rect(10px, 9999px, 45px, 0); transform: skew(0.4deg); }
  }
  
  @keyframes glitch-anim2 {
    0%   { clip: rect(12px, 9999px, 65px, 0); transform: skew(-0.3deg); }
    20%  { clip: rect(85px, 9999px, 140px, 0); transform: skew(-0.7deg); }
    40%  { clip: rect(25px, 9999px, 70px, 0); transform: skew(-0.2deg); }
    60%  { clip: rect(95px, 9999px, 120px, 0); transform: skew(-0.6deg); }
    80%  { clip: rect(10px, 9999px, 40px, 0); transform: skew(-0.1deg); }
    100% { clip: rect(60px, 9999px, 100px, 0); transform: skew(-0.4deg); }
  }
  
  @keyframes glitch-skew {
    0%   { transform: skew(0deg); }
    100% { transform: skew(5deg); }
  }
  
  

  /* ✅ CINEMATIC NAVBAR */
.cinema-navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    height: 64px;
    padding: 0 24px;
    border-radius: 50px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  }
  
  /* ✅ LEFT BRAND */
  .cinema-left {
    color: #cfcfcf;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
  }
  
  /* ✅ CENTER BUTTON GROUP */
  .cinema-center {
    display: flex;
    gap: 12px;
  }
  
  /* ✅ BASE BUTTON */
  .cinema-btn {
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
  }
  
  /* ✅ OUTLINE BUTTONS */
  .cinema-btn.outline {
    color: #ddd;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
  }
  
  .cinema-btn.outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
  }
  
  
  /* ✅ FILLED BUTTON */
  .cinema-btn.fill {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #000;
    font-weight: bold;
    border: none;
    box-shadow: 0 0 20px rgba(255,120,24,0.5);
  }
  
  .cinema-btn.fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,120,24,0.6);
  }
  
  /* ✅ RIGHT TAG */
  .cinema-right {
    color: #bbb;
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: 0.8;
  }
  

  /* ✅ CINEMATIC MARS HERO */
.mars-hero {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 30%, #2a2a2a, #050505 70%);
    color: #f5f5f5;
    overflow: hidden;
    padding: 120px 10%;
  }
  
  /* ✅ TOP BAR TEXT */
  .mars-top {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.7;
  }
  
  /* ✅ MAIN TITLE */
  .mars-title {
    font-size: clamp(80px, 18vw, 260px);
    font-weight: 900;
    letter-spacing: -8px;
    margin-top: 80px;
    line-height: 0.9;
  }
  
  /* ✅ SUBTEXT */
  .mars-sub {
    max-width: 700px;
    font-size: 13px;
    margin-top: 30px;
    line-height: 1.6;
    opacity: 0.8;
  }
  
  /* ✅ SCROLL */
  .mars-scroll {
    margin-top: 40px;
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 2px;
  }
  
  /* ✅ PLANET IMAGE */
  .mars-planet {
    position: absolute;
    bottom: -665px;
  left: -120px;
  width: 969px;
    filter: drop-shadow(0 0 80px rgba(255,80,0,0.4));
    z-index: 10;
  }
  
  /* ✅ GLASS CARD */
  .mars-card {
    position: absolute;
    right: 180px;
    bottom: 120px;
    width: 242px;
    padding: 18px;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    color: #fff;
  }
  
  
  /* ✅ HERO */
  .hero {
    margin-top: 80px;
    height: 90vh;
    background: linear-gradient(to right, #1b263b, #415a77);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  /* ✅ HIDE MOBILE UI ON DESKTOP */
.hamburger {
    display: none;
  }
  
  .mobile-menu {
    display: none;
  }
  
  
  .hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  
  .hero .btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  /* ✅ VIDEO HERO BACKGROUND */
.hero-video {
    position: relative;
    overflow: hidden;
  }
  
  .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
  }


  
  /* ✅ MOBILE ADJUST */
  @media (max-width: 768px) {
    .glow-device {
      position: relative;
      right: auto;
      bottom: auto;
      width: 220px;
      margin: 40px auto 0;
    }
  }
  
  
  /* ✅ DARK OVERLAY FOR READABILITY */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      rgba(13, 27, 42, 0.65),
      rgba(13, 27, 42, 0.85)
    );
    z-index: 1;
  }
  
  /* ✅ HERO CONTENT ABOVE VIDEO */
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  
  /* ✅ SECTIONS */
  section {
    padding: 80px 10%;
  }
  
  /* ✅ SERVICES */
  .services h2,
  .contact h2,
  .flip-section h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    font-weight: bold;
  }
  
  /* ✅ BOX */
  .box-section {
    height: 100vh;
    background: #0d1b2a;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .animated-box {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00f5d4, #4361ee);
    border-radius: 20px;
  }
  
  /* ✅ FLIP */
  .flip-section {
    text-align: center;
  }
  
  .container {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
  }
  
  .square {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
  }
  
  .gradient-blue { background: linear-gradient(135deg, #4361ee, #4895ef); }
  .gradient-pink { background: linear-gradient(135deg, #f72585, #b5179e); }
  
  /* ✅ CONTACT */
  .contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  
  .contact input,
  .contact textarea {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .contact button {
    padding: 12px;
    background: #1b263b;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  /* ✅ FOOTER */
  footer {
    background: #0d1b2a;
    color: white;
    text-align: center;
    padding: 15px;
  }


  /* ================================
   ✅ CINEMATIC EQUIPMENT SECTION
================================ */

.equipment-section {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    align-items: center;
    padding: 140px 8% 120px;
    background: radial-gradient(circle at 50% 30%, #2a2a2a, #050505 70%);
    color: #fff;
    overflow: hidden;
  }
  
  .equipment-left {
    z-index: 2;
  }
  
  .equipment-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #ff7a18;
    opacity: 0.8;
  }
  
  .equipment-title {
    font-size: clamp(48px, 7vw, 110px);
    font-weight: 900;
    line-height: 0.95;
    margin: 20px 0;
  }
  
  .equipment-desc {
    max-width: 420px;
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.8;
  }
  
  .equipment-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .equipment-image {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 40px 120px rgba(255,120,24,0.45));
  }
  
  .equipment-right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .equipment-card {
    width: 200px;
    padding: 18px;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    display: flex;
    justify-content: space-between;
  }
  
  .equipment-tabs {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    margin-left: 80px;
    position: relative;
    z-index: 9999;
    width: 150%;
  }
  
  .equipment-tabs span {
    padding: 12px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.25);
    color: #aaa;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  
  /* ✅ FESTIVAL LIGHT SWEEP */
  .equipment-tabs span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255,170,60,0.4),
      transparent
    );
    transition: 0.6s;
  }
  
  /* ✅ ACTIVE TAB */
  .equipment-tabs span.active {
    color: #000;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    box-shadow:
      0 0 25px rgba(255,140,40,0.6),
      0 0 60px rgba(255,120,24,0.35);
    border: none;
  }
  
  /* ✅ ACTIVE LIGHT SWEEP */
  .equipment-tabs span.active::before {
    left: 120%;
  }
  
  /* ✅ HOVER POP */
  .equipment-tabs span:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 35px rgba(255,140,40,0.45);
  }
  

  .process-section {
    padding: 100px 8%;
    background: radial-gradient(circle at 50% 30%, #1a1a1a, #050505 70%);
    color: white;
    text-align: center;
  }
  
  .process-title {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .process-sub {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 60px;
  }
  
  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  /* ✅ CARD */
  .process-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255,122,24,0.5);
  }
  
  /* ✅ IMAGE */
  .process-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
  }
  /* ✅ FLOATING WATER EFFECT BASE */
.process-card {
    position: relative;
    border: 1px solid rgba(255, 140, 40, 0.25);
    box-shadow: 0 0 0 rgba(255, 122, 24, 0);
    transition: box-shadow 0.3s ease, border 0.3s ease;
    will-change: transform;
  }
  
  /* ✅ GLOW ON "COLLISION" */
  .process-card.glow-hit {
    border: 1px solid rgba(255, 160, 60, 0.9);
    box-shadow:
      0 0 14px rgba(255, 122, 24, 0.6),
      0 0 40px rgba(255, 122, 24, 0.35);
  }
  
  /* ✅ NUMBER BADGE */
  .process-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: black;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 12px;
    font-weight: bold;
  }
  
  /* ✅ TEXT */
  .process-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .process-card p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
  }
  
  /* ✅ MOBILE */
  @media (max-width: 768px) {
    .process-grid {
      grid-template-columns: 1fr;
    }
  
    .process-title {
      font-size: 26px;
    }
  }
  
  
  /* ✅ MOBILE VERSION */
  @media (max-width: 768px) {
    .equipment-section {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 120px 6% 140px;
    }
  
    .equipment-center {
      order: -1;
      margin-bottom: 40px;
    }
  
    .equipment-image {
      max-width: 260px;
    }
  
    .equipment-desc {
      margin: auto;
    }
  
    .equipment-tabs {
        flex-wrap: wrap;
        gap: 23px;
        justify-content: center;
        margin-left: -78px;
      }
  }
  



  /* =========================================
   ✅ MOBILE RESPONSIVE (iPhone 11 & below)
   ========================================= */
@media (max-width: 768px) {

   /* ✅ HAMBURGER ICON */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
  }
  
  .hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    display: block;
    transition: 0.3s ease;
  }
  
  /* ✅ MOBILE MENU PANEL */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: right 0.4s ease;
    z-index: 998;
  }
  
  .mobile-menu a {
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
  }
  
  /* ✅ ACTIVE STATE */
  .mobile-menu.active {
    right: 0;
  }
  
  /* ✅ HAMBURGER ANIMATION */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* ✅ MOBILE VIEW CONTROL */
  @media (max-width: 768px) {
  
    .cinema-center,
    .cinema-right {
      display: none;
    }
  
    .hamburger {
      display: flex;
    }
  }
  
  
    /* ✅ MARS HERO MOBILE */
    .mars-hero {
      padding: 100px 6%;
      min-height: 100vh;
    }
  
    .mars-title {
      font-size: 54px;
      letter-spacing: -3px;
      margin-top: 100px;
      line-height: 1;
    }
  
    .mars-sub {
      font-size: 13px;
      line-height: 1.5;
      max-width: 100%;
      margin-top: 75px;
    }
  
    .mars-planet {
      width: 540px;
      left: -232px;
      bottom: -377px;
    }
  
    .mars-card {
      right: 20px;
      bottom: 60px;
      width: 150px;
      font-size: 10px;
      padding: 14px;
    }
  
    /* ✅ HERO VIDEO MOBILE */
    .hero {
      height: 100vh;
      margin-top: 0;
    }
  
    .hero h1 {
      font-size: 28px;
    }
  
    .hero p {
      font-size: 13px;
    }
  
    .hero .btn {
      padding: 10px 22px;
      font-size: 13px;
    }
  
    /* ✅ SERVICES MOBILE */
    section {
      padding: 60px 6%;
    }
  
    .service-grid {
      grid-template-columns: 1fr;
    }
  
    .card {
      font-size: 14px;
      padding: 20px;
    }
  
    /* ✅ ANIMATED BOX MOBILE */
    .animated-box {
      width: 140px;
      height: 140px;
    }
  
    /* ✅ FLIP SECTION MOBILE */
    .container {
      flex-direction: column;
      gap: 20px;
    }
  
    .square {
      width: 100px;
      height: 100px;
    }
  
    /* ✅ CONTACT FORM MOBILE */
    .contact form {
      width: 100%;
    }
  
    .contact input,
    .contact textarea {
      font-size: 14px;
    }
  
    .contact button {
      font-size: 14px;
    }
  
    /* ✅ FOOTER MOBILE */
    footer {
      font-size: 12px;
    }
  }
  
  .mars-sub-slider {
    position: relative;
    height: 55px;   /* bigger height for bigger text */
    overflow: hidden;
    font-size: 20px;   /* bigger text */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 40px;
    margin-left: 25%;
  }
  
  .mars-sub-slider {
    position: relative;
    height: 70px; /* more vertical space */
    overflow: hidden;
    margin-top: 40px;
  
    display: flex;
    justify-content: center;
    align-items: center;
  
    perspective: 1000px; /* enables 3D depth */
  }
  
  /* Each line */
  .mars-sub-slider span {
    position: absolute;
    font-size: 24px;       /* Bigger text */
    font-weight: 700;
    text-align: center;
    width: 100%;
  
    /* Premium gradient text */
    background: linear-gradient(90deg, #ff512f, #f09819, #ffba59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    opacity: 0;
    transform: rotateX(90deg) translateZ(40px); /* 3D depth */
    transition:
      opacity 0.8s ease,
      transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  /* Active visible line */
  .mars-sub-slider span.active {
    opacity: 1;
    transform: rotateX(0deg) translateZ(0px);
  }
  