/* ═══════════════════════════════════════════
   SHREEPARIJAI – style.css
   ═══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --orange:   #F97316;
  --orange2:  #FB923C;
  --gold:     #F59E0B;
  --dark:     #5A3E2B;
  --dark2:    #1A1A1A;
  --dark3:    #111111;
  --mid:      #2A2A2A;
  --light:    #F5F0EB;
  --white:    #FFFFFF;
  --pink-bg:  #F9E8E8;
  --gradient-hero: linear-gradient(160deg, #fce4d6 0%, #f9c5c5 40%, #e8d5f5 100%);
  --gradient-cta: linear-gradient(135deg, #3b1c0c 0%, #1a0a05 100%);
  --film-hole: #1a1a1a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-rajdhani:'Rajdhani', serif;
  --font-rajdhanibd:'Rajdhanibd', serif;
  --font-sourcesarifpro:'sourcesarifpro', serif;
  --font-sourcesarifprobd:'sourcesarifprobd', serif;
}


 @font-face {
    font-family: "Rajdhani";
    src: url(../fonts/rajdhani.ttf);
  }
  
  @font-face {
      font-family: "Rajdhanibd";
      src: url(../fonts/rajdhani.bold.ttf);
    }
    
  @font-face {
      font-family: "sourcesarifpro";
      src: url(../fonts/source-serif-pro.regular.ttf);
    }
   @font-face {
      font-family: "sourcesarifprobd";
      src: url(../fonts/source-serif-pro.semibold.ttf);
    }
  

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  /* background: url(assets/images/back.png) no-repeat center center/cover; */
  color: var(--dark);
  overflow-x: hidden;
  height: 100%;
  background: #F8CFE5;
background: radial-gradient(circle, rgba(248, 207, 229, 1) 0%, rgba(252, 234, 232, 1) 23%, rgba(245, 185, 197, 1) 34%, rgba(254, 238, 231, 1) 56%, rgba(245, 200, 212, 1) 74%, rgba(227, 206, 244, 1) 98%);
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ══════════════════════════════════════
   KEYFRAME ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
/* @keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
} */
/* @keyframes filmScroll {
  from { background-position-x: 0; }
  to   { background-position-x: 48px; }
} */

/* ══════════════════════════════════════
   FILM STRIP
══════════════════════════════════════ */
.film-strip {
  width: 100%;
  height: 36px;
  /* background: #fff; */
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.film-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 12px,
    var(--dark3) 12px,
    var(--dark3) 14px,
    #333 14px,
    #333 34px,
    var(--dark3) 34px,
    var(--dark3) 36px
  );
  border-top: 3px solid #333;
  border-bottom: 3px solid #333;
  /* animation: filmScroll 0.6s linear infinite; */
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(249,115,22,0.2);
  animation: fadeInDown 0.5s ease both;
  height: 100px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo-img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ccc;
  text-transform: uppercase;
  transition: color 0.2s, letter-spacing 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--orange); }

.btn-contact {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-contact:hover {
  background: var(--orange2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(249,115,22,0.4);
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
  transition: transform 0.2s;
}
.burger:hover { transform: scale(1.1); }



/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  place-items: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-video-wrap {
  padding: 2%;
  position: relative;
  width: 1200px;
  height: 400px;
  overflow: hidden;
  margin-top: 35px;
  animation: scaleIn 0.8s ease 0.3s both;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.4s ease;
}

.hero-bg-img.static {
  opacity: 1;
  z-index: 1;
  filter: brightness(0.55);
}

.hero-bg-img.gif {
  opacity: 0;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: pulseRing 2.5s ease-out infinite;
}
.play-btn:hover {
  background: rgba(249,115,22,0.35);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  font-size: 24px;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-video-wrap:hover .hero-bg-img.gif { opacity: 1; }
.hero-video-wrap:hover .hero-bg-img.static { opacity: 0; }

.hero-text {
  max-width: 700px;
  text-align: center;
  padding: 48px 24px 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-sub {
    place-self: center;
    width: 85%;
    font-family: var(--font-rajdhanibd);
    font-size: 45px;
    /* letter-spacing: 0.12em; */
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 50px;
}

.hero-headline {
  font-family: var(--font-rajdhanibd);
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.04em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  font-size: 45px;
}

.hero-desc {
    font-size: 20px;
    color: #555;
    line-height: 29px;
    margin-bottom: 28px;
    font-family: var(--font-sourcesarifpro);
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 20px 15px 22px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  font-family: var(--font-rajdhanibd);
}
.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.5);
}


/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  overflow: hidden;
  padding: 40px 35px 100px 35px;
  display: flex;
  position: relative;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-left {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeInLeft 0.8s ease both;
}

.about-camera {
  right: 35px;
  width: 18%;
  height: auto;
  position: relative;
  transition: transform 0.4s ease;
}
/* .about-camera:hover { transform: rotate(-4deg) scale(1.04); } */

.about-role {
  display: flex;
  margin: auto;
  gap: 25px;
}

.about-tagline {
  align-items: self-end;
  display: flex;
  flex-direction: column;
  font-size: 55px;
  line-height: 1.1;
  color: #444;
  /* font-family: ui-serif; */
  font-family: var(--font-sourcesarifpro);
}

.highlight-text {
  position: relative;
  display: inline-block;
  color: #ff6a00;
  z-index: 1;
}
.highlight-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 22px;
  background: #f4c067;
  border-radius: 8px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease 0.2s;
}
.highlight-text.visible::after,
.about.visible .highlight-text::after { transform: scaleX(1); }

.about-right {
  animation: fadeInRight 0.8s ease both;
}
.about-right h2 {
  font-family: var(--font-serif);
  font-size: clamp(70px, 8vw, 110px);
  line-height: 0.9;
}

.orange-text { color: #ff6a00; }
.white-text  { color: #333; }

.about:before {
    content: '';
    background: url('../images/d1.svg');
    display: block;
    /* border: 10px solid red; */
    width: 359px;
    height: 100vh;
    position: absolute;
    left: -4px;
    margin-bottom: 100px;
    rotate: 1deg;
}



/* ══════════════════════════════════════
   CONTAINER UTILITY
══════════════════════════════════════ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HOW WE CREATE
══════════════════════════════════════ */
.how-we-create { padding: 80px 0 10px; }

.section-heading {
    font-family: var(--font-rajdhanibd);
    font-size: clamp(20px, 3vw, 28px);
    /* font-weight: 800; */
    text-align: center;
    letter-spacing: 0px;
    color: var(--dark);
    margin-bottom: 14px;
    font-size: 34px;
}
.section-sub {
    font-size: 24px;
    color: black;
    text-align: center;
    line-height: 32px;
    margin-bottom: 36px;
    font-family: var(--font-sourcesarifpro);
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border-radius: 10px;
  margin: 0 auto 64px;
  width: fit-content;
  background:
    linear-gradient(#f3eeea, #f3eeea) padding-box,
    linear-gradient(90deg, #c084fc, #f97316) border-box;
  border: 2px solid transparent;
  flex-wrap: wrap;
  gap: 4px;
}

.tab {
  background: transparent;
  border: none;
  padding: 9px 19px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  letter-spacing: 0.04em;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.tab.active {
  background: #000;
  color: #fff;
  transform: none;
}
.tab:not(.active):hover { color: #000; background: rgba(0,0,0,0.06); }

.process-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 72px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.process-row.visible { opacity: 1; transform: translateY(0); }
.process-row.reverse { flex-direction: row-reverse; }

.process-card {
  flex: 0 0 48%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.process-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.process-card img { width: 100%; height: 100%; object-fit: cover; }

.card-light  { background: #f0eae0; }
.card-dark   { background: #1e1a2e; }
.card-purple { background: #2a1a3e; }
.card-dark2  { background: #1a1a1a; }

.process-text { flex: 1; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.process-text h3 {
    font-family: var(--font-rajdhanibd);
    font-size: 37px;
    font-weight: 800;
    letter-spacing: 0px;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 43px;
}
.process-text p {
  font-size: 19px;
  color: #000000;
  line-height: 1.8;
  font-family: var(--font-sourcesarifpro);
}
.how-we-create:before {
    content: '';
    background: url('../images/d3.svg');
    display: block;
    /* border: 10px solid red; */
    width: 359px;
    height: 100vh;
    position: absolute;
    right: -49px;
    margin-bottom: 100px;
    rotate: 6deg;
    background-repeat: no-repeat;
}

/* ══════════════════════════════════════
   MULTIPLE LAYERS
══════════════════════════════════════ */
.multiple-layers {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
}
.ml-content {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ml-text {
  font-family: var(--font-display);
  font-size: clamp(60px, 14vw, 160px);
  letter-spacing: 0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(100,60,40,0.18);
  text-stroke: 2px rgba(100,60,40,0.18);
  user-select: none;
  text-align: center;
  width: 100%;
}
.ml-text.bottom { margin-top: -10px; }

.ml-video-wrap {
  position: relative;
  width: min(600px, 90vw);
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  margin: 0px 0;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ml-video-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.ml-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.play-sm { width: 52px; height: 52px; }
.play-sm .play-icon { font-size: 18px; }
.ml-top{
  margin-bottom: 20px;
}
.ml-bottom{
  margin-top: 20px;
}

/* ══════════════════════════════════════
   STORYBOARD / TESTIMONIALS
══════════════════════════════════════ */
.storyboard {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  /* background: linear-gradient(135deg, #f6c6d8, #c7b6e6); */
}

.storyboard h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-family: var(--font-rajdhanibd);
}

.subtitle {
  max-width: 650px;
  margin: auto;
  margin-bottom: 50px;
  font-family: var(--font-sourcesarifpro);
  font-size: 21px;
}

.bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 849px;
  z-index: 0;
  pointer-events: none;
}
.bg-glow svg { width: 100%; height: 100%; overflow: visible; }

.canvas {
  position: relative;
  width: 1000px;
  height: 500px;
  margin: auto;
  z-index: 2;
}

.connections { position: absolute; width: 100%; height: 100%; }
.connections line {
  stroke: #8a8a8a;
  stroke-width: 2;
  stroke-dasharray: 6;
  opacity: 0.6;
}

.node { position: absolute; }
.node img { width: 60px; height: 60px; border-radius: 50%; }

.node1 img { box-shadow: 0 0 20px orange; }
.node2 img { box-shadow: 0 0 20px red; }
.node4 img { box-shadow: 0 0 20px orange; }
.node5 img { box-shadow: 0 0 20px cyan; }
.node6 img { box-shadow: 0 0 20px orange; }

.center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.node1 { top: 80px;    left: 120px;  }
.node2 { top: 230px;   left: 260px;  }
.node3 { bottom: 40px; left: 120px;  }
.node4 { top: 120px;   right: 250px; }
.node5 { top: 220px;   right: 120px; }
.node6 { bottom: 50px; right: 120px; }

.bubble {
  position: absolute;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bubble:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

.small { width: 120px; }

.node1 .bubble { top: -10px; left: 80px;  }
.node2 .bubble { top: -10px; left: 70px;  }
.node3 .bubble { top: -10px; left: 80px;  }
.node6 .bubble { top: -10px; right: 80px; }

/* Staggered float for nodes */
.node {
  animation: float 4s ease-in-out infinite;
}
.node1 { animation-delay: 0s;    }
.node2 { animation-delay: 0.6s;  }
.node3 { animation-delay: 1.2s;  }
.node4 { animation-delay: 0.3s;  }
.node5 { animation-delay: 0.9s;  }
.node6 { animation-delay: 1.5s;  }
.center { animation-delay: 0.4s; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner { padding: 12px; }

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-body);
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(249,115,22,0.5);
}
.btn-cta:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.6);
}
.cta-img-wrap { flex: 0 0 auto; }
.cta-camera {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  transition: transform 0.4s ease;
}
/* .cta-camera:hover { transform: rotate(-3deg) scale(1.04); } */
.cta-camera:hover {transform: scale(1.04); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark3);
  font-family: 'Barlow', sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  justify-content: space-between;

}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  /* grid-template-columns: 381px 1fr 482px; */
  min-height: 320px;
  position: relative;
  z-index: 1;
}

.footer-left {
  align-content: end;
  position: relative;
  overflow: hidden;
}

.img-placeholder-left {
    /* width: 100%; */
    /* height: 100vh; */
    position: absolute;
    left: 15px;
    bottom: 0px;
}
.img-placeholder-left img {
    width: 85%;
    /* height: 100%; */
    /* object-position: right bottom; */
    /* display: block; */
    /* transition: transform 0.6s ease; */
    /* position: absolute; */
    /* left: 30px; */
    /* bottom: 0px; */
}
.footer-left:hover .img-placeholder-left img { transform: scale(1.04); }

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px 32px;
}

.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo {
  height: 90px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.footer-logo:hover { transform: scale(1.05); }

.footer-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1;
  margin-bottom: 10px;
}

.footer-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(14px, 1.8vw, 20px);
  color: #aaaaaa;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.footer-form {
  display: flex;
  width: 100%;
  max-width: 480px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--orange);
  margin-bottom: 24px;
  transition: box-shadow 0.3s ease;
}
.footer-form:focus-within {
  box-shadow: 0 0 0 4px rgba(249,115,22,0.2);
}

.footer-email {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--white);
  outline: none;
}
.footer-email::placeholder { color: #666; font-style: italic; }

.btn-subscribe {
  background: var(--orange);
  border: none;
  padding: 13px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.btn-subscribe:hover { background: var(--orange2); }
.btn-subscribe:active { transform: scale(0.98); }

.footer-social { display: flex; gap: 14px; align-items: center; }

.social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(249,115,22,0.35);
}

.footer-right {
  text-align: -webkit-right;
  align-self: end;
  position: relative;
  overflow: hidden;
}

.img-placeholder-right {
    /* width: 100%; */
    /* height: 100%; */
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.img-placeholder-right img {
    width: 100%;
    /* height: 100vh; */
    object-fit: cover;
    /* object-position: left center; */
    /* display: block; */
    transition: transform 0.6s ease;
}
.footer-right:hover .img-placeholder-right img { transform: scale(1.04); }

.footer-bottom {
  position: relative;
  z-index: 1;
  /* border-top: 1px solid #1e1e1e; */
  padding: 16px 40px;
  text-align: center;
  font-size: 11px;
  color: #444;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  /* background: var(--darker); */
}

/* ══════════════════════════════════════
   SECTION TITLE (reusable)
══════════════════════════════════════ */
.section-title { font-family: var(--font-serif); line-height: 1; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.fade-up-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s;    }
.fade-up-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s;  }
.fade-up-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s;  }
.fade-up-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s;  }
.fade-up-children.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s;  }
.fade-up-children.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s;  }

/* ══════════════════════════════════════
   RESPONSIVE – 1024px
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 260px 1fr 320px;
  }
  .about-tagline { font-size: 42px; }
  .about-right h2 { font-size: clamp(54px, 7vw, 90px); }
  .canvas { width: 90vw; }
}

/* ══════════════════════════════════════
   RESPONSIVE – 900px
══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .btn-contact { display: none; }
  .burger { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 24px;
    gap: 20px;
    z-index: 999;
    animation: fadeInDown 0.25s ease;
  }
  .nav-links.open .btn-contact { display: inline-block; width: fit-content; }

  /* Process */
  /* .process-row,
  .process-row.reverse {
    flex-direction: column;
    gap: 24px;
  } */
  /* .process-card { flex: none; width: 100%; } */

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }
  /* .cta-camera { width: 180px; } */

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .footer-left,
  .footer-right {
    display: none; /* hide side images on mobile */
  }
  .footer-center { padding: 40px 24px 32px; }
  .footer-social { flex-direction: row; justify-content: center; }

  /* About */
  .about-inner { flex-direction: column; text-align: center; }
  .about-left  { flex-direction: column; align-items: center; }
  .about-camera { width: 80px; }
  .about-tagline { font-size: 50px; align-items: center; }
  .about-right h2 { font-size: clamp(48px, 10vw, 80px); text-align: center; }

  /* Storyboard */
  .testimonials-grid { min-height: auto; }
  .testimonial-bubble { position: static; max-width: 100%; margin-bottom: 16px; }
  .center-avatar-wrap { position: static; transform: none; display: flex; justify-content: center; margin: 24px 0; }
  .testimonials-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Canvas */
  .canvas {
    width: 95vw;
    height: auto;
    min-height: 380px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE – 768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-video-wrap {
    width: 90%;
    height: 300px;
  }
  .hero-sub { font-size: 24px; }
  .hero-desc { font-size: 16px; }

  .tabs { flex-wrap: wrap; justify-content: center; }
  .tab  { padding: 8px 14px; font-size: 12px; }

  .section-sub { font-size: 18px; }

  .footer-form { flex-direction: column; }
  .footer-email { text-align: center; }
  .btn-subscribe { padding: 13px; }
}

/* ══════════════════════════════════════
   RESPONSIVE – 600px
══════════════════════════════════════ */
@media (max-width: 600px) {
  .hero-video-wrap { height: 220px; width: 95%; }
  .play-btn { width: 56px; height: 56px; }

  .ml-text { font-size: 44px; }
  .process-text h3 { font-size: 18px; }
  .step-num { font-size: 36px; }

  .how-we-create { padding: 48px 0; }
  .about { padding: 32px 16px; }
  .storyboard { padding: 48px 12px; }

  .hero-text { padding: 32px 16px 40px; }
  .btn-primary { font-size: 13px; padding: 13px 16px; }
  .btn-cta { padding: 12px 24px; font-size: 13px; }
}

/* ══════════════════════════════════════
   RESPONSIVE – 400px (extra small)
══════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-sub { font-size: 18px; width: 95%; }
  .hero-headline { font-size: 36px; }
  .ml-text { font-size: 34px; }
  .about-tagline { font-size: 24px; }
  .footer-headline { font-size: 26px; }
  .footer-sub { font-size: 13px; }
}



.strip{
background: url('../images/strip.png');
height: 24px;
background-repeat: repeat-x;
width: 100%;
}


 .footer{
  display: flex;
  width: 100%;
  gap: 10px;
 }
 .w20{
  width: 30% !important;
 }
 .w80{
  width: 40% !important;
 }
 .textright{
  text-align: right !important;
 }