/* ═══════════════════════════════════════════
   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);
  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);
  }
}

/* ══════════════════════════════════════
   FILM STRIP
══════════════════════════════════════ */
.film-strip {
  width: 100%;
  height: 36px;
  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;
}

/* ══════════════════════════════════════
   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: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  position: relative;
}

.n-log-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.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;
  cursor: pointer;
}

.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);
}

/* No underline on dropdown triggers */
.nav-dropdown-trigger::after {
  display: none;
}

.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 {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  width: 38px;
  height: 38px;
  z-index: 99999;
  pointer-events: auto;
}

.burger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.burger.open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open .burger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.burger:hover .burger-bar {
  background: var(--orange);
}

.nav-contact-mobile {
  display: none;
}

/* ══════════════════════════════════════
   DROPDOWN MENU
══════════════════════════════════════ */
.dropdownmenu {
  position: relative;
}

.dropdown-menu-header {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: #1a1a1a;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 8px;
  padding: 18px 0 8px;
  /* top padding bridges the gap so hover isn't lost */
  z-index: 999999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  list-style: none;
  animation: fadeInDown 0.2s ease;
}

.dropdown-menu-header li {
  margin: 0;
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.dropdown-item:hover {
  color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
}

/* Desktop: hover to open */
@media (min-width: 901px) {
  .dropdownmenu:hover .dropdown-menu-header {
    display: block;
  }
}

/* Mobile: click to open */
@media (max-width: 900px) {
  .dropdown-menu-header {
    text-align: center;
    position: static;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 4px 0;
    margin-top: 6px;
    animation: none;
  }

  .dropdownmenu.mob-open .dropdown-menu-header {
    display: block;
  }

  .dropdown-item {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* ══════════════════════════════════════
   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;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 50px;
}

.hero-headline {
  font-family: var(--font-rajdhanibd);
  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-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: var(--font-sourcesarifpro);
}

.highlight-text {
  position: relative;
  display: inline-block;
  color: #ff6a00;
  z-index: 1;
}

.highlight-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  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;
  width: 359px;
  height: 100vh;
  position: absolute;
  left: -4px;
  margin-bottom: 100px;
  rotate: 1deg;
}

/* ══════════════════════════════════════
   CONTAINER
══════════════════════════════════════ */
.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);
  text-align: center;
  letter-spacing: 0;
  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;
}

.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: 0;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 43px;
}

.process-text p {
  font-size: 19px;
  color: #000;
  line-height: 1.8;
  font-family: var(--font-sourcesarifpro);
}

.how-we-create:before {
  content: '';
  background: url('../images/d3.svg');
  display: block;
  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 0;
}

.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);
  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);
  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);
}

.ml-top {
  margin-bottom: 20px;
}

.ml-bottom {
  margin-top: 20px;
}

/* ══════════════════════════════════════
   STORYBOARD
══════════════════════════════════════ */
.storyboard {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
}

.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;
}

.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: scale(1.04);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark3);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  /* justify-content: space-between; */
  display: flex;
  width: 100%;
  gap: 10px;
}

.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;
  min-height: 320px;
  position: relative;
  z-index: 1;
}

.footer-left {
  align-content: end;
  position: relative;
  overflow: hidden;
}

.img-placeholder-left {
  position: absolute;
  left: 15px;
  bottom: 0;
}

.img-placeholder-left img {
  width: 85%;
}

.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: var(--font-rajdhanibd);
  font-size: clamp(22px, 3.0vw, 34px);
  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: #aaa;
  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-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;
}

.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 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.img-placeholder-right img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.footer-right:hover .img-placeholder-right img {
  transform: scale(1.04);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 16px 40px;
  text-align: center;
  font-size: 11px;
  color: #444;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.w20 {
  width: 30% !important;
}

.w80 {
  width: 40% !important;
}

.textright {
  text-align: right !important;
}

/* ══════════════════════════════════════
   SECTION TITLE / ANIMATIONS
══════════════════════════════════════ */
.section-title {
  font-family: var(--font-serif);
  line-height: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.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 (mobile nav)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-contact-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    padding: 28px 24px 36px;
    gap: 6px;
    z-index: 1000;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    animation: fadeInDown 0.25s ease;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
  }

  .nav-links.open .nav-link {
    text-align: center;
    padding: 10px 4px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-contact-mobile {
    display: inline-block;
    width: fit-content;
    margin-top: 12px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .footer-left,
  .footer-right {
    display: none;
  }

  .footer-center {
    padding: 40px 24px 32px;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
  }

  .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;
  }

  .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 – 767px
══════════════════════════════════════ */
@media (max-width: 767px) {

  .process-row,
  .process-row.reverse {
    flex-direction: column;
    gap: 24px;
  }

  .process-card {
    flex: none;
    width: 100%;
  }

  .process-text h3 {
    font-size: 40px;
  }
}

/* ══════════════════════════════════════
   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 – 575px
══════════════════════════════════════ */
@media (max-width: 575px) {
  .about-role {
    gap: 25px;
    flex-direction: column;
  }

  .w20 {
    display: none;
  }

  .w80 {
    width: 100% !important;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE – 400px
══════════════════════════════════════ */
@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;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE – 991px
══════════════════════════════════════ */
@media (max-width: 991px) {

  .about:before,
  .how-we-create:before {
    display: none;
  }

  .process-card {
    flex: none;
    /* width: 50%; */
  }

  .process-row,
  .process-row.reverse {
    gap: 24px;
  }

  .img-placeholder-left,
  .img-placeholder-right {
    display: none;
  }

  .w80 {
    width: 100% !important;
  }
}

@media (max-width: 1199px) {
  .img-placeholder-left img {
    width: 65%;
  }

  .img-placeholder-right {
    right: -89px;
    bottom: 0;
  }

  .img-placeholder-right img {
    width: 75%;
  }

  .footer-headline {
    font-size: clamp(28px, 3.0vw, 44px);
  }
}

/* ══════════════════════════════════════
   INNER PAGE SECTIONS (services/projects)
══════════════════════════════════════ */
.page-hero {
  /* background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%); */
  padding: 40px 24px 20px;
  text-align: center;
  /* border-bottom: 1px solid rgba(249,115,22,0.15); */
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-rajdhanibd);
  font-size: clamp(48px, 8vw, 70px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.page-hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #aaa;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-content-area {
  padding: 80px 0 100px;
  min-height: 400px;
}

.page-placeholder {
  text-align: center;
  padding: 80px 24px;
  color: #666;
}

.placeholder-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.page-placeholder h2 {
  font-family: var(--font-body);
  font-size: 24px;
  color: #888;
  margin-bottom: 12px;
}

.page-placeholder p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555;
  max-width: 440px;
  margin: 0 auto;
}

.inner-background {
  background: var(--gradient-hero) !important;
}

.herotextcolor {
  color: #5A3E2B;
  ;
}

.page-breadcrumb {
  position: relative;
  margin-top: 5px;
}

.page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 13px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.page-breadcrumb li a {
  color: var(--orange2);
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.page-breadcrumb li:after {
  position: absolute;
  content: "/";
  right: -6px;
  top: 1px;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  /* font-family: "Font Awesome 6 Pro"; */
  color: #000000;
}

.page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}

.page-breadcrumb li:last-child:after {
  position: absolute;
  /* content: "/"; */
  right: -6px;
  top: 1px;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  /* font-family: "Font Awesome 6 Pro"; */
  color: #000000;
  opacity: 0;
}

.how-we-create-inner {
  padding: 80px 0 10px;
}

.uc-title {
  width: 150px;
  height: 30px;
  border-radius: 50px;
  border: 1px solid var(--dark);
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 25px;
}

.uc-title-dot {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: var(--dark);
  margin-right: 4px;
}

/* ══════════════════════════════════════
   CONTACT SECTION (UPDATED WITH MAP)
══════════════════════════════════════ */

.contact-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-heading-wrap {
  align-items: center;
  margin-bottom: 70px;
  position: relative;
}

.section-heading-wrap .shape {
  position: absolute;
  left: -40px;
  top: -30px;
  opacity: 0.12;
  z-index: 0;
}

.sub-heading {
  font-family: var(--font-rajdhanibd);
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.title-2 {
  font-family: var(--font-rajdhanibd);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  color: var(--dark);
}

.title-2 span {
  color: var(--orange);
}

/* ═════════ LEFT SIDE ═════════ */

.request-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.request-item-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.request-item {
  flex: 1;
  min-width: 240px;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.request-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.request-item span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--font-body);
}

.request-item p,
.request-item a {
  display: block;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.7;
  font-family: var(--font-sourcesarifpro);
  transition: color 0.3s ease;
}

.request-item a:hover {
  color: var(--orange);
}

/* ═════════ MAP STYLING (NEW) ═════════ */

.contact-map {
  margin: 20px 0;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.05);
}

/* subtle overlay for premium look */
.contact-map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.12),
      transparent 60%);
  pointer-events: none;
}

/* ═════════ RIGHT SIDE FORM ═════════ */

.request-form-wrap {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 22px;
}

.form-item {
  margin-bottom: 18px;
}

.form-title {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--dark);
  font-family: var(--font-rajdhanibd);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 18px;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

textarea.form-control {
  height: 160px;
  padding-top: 18px;
  resize: none;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
  background: var(--white);
}

.form-control::placeholder {
  color: #777;
}

/* ═════════ BUTTON ═════════ */

.tl-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 14px;
  padding: 16px 26px;
  font-size: 14px;
  font-family: var(--font-rajdhanibd);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.35);
}

.tl-primary-btn:hover {
  background: var(--orange2);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.45);
}

.tl-primary-btn .icon {
  font-size: 14px;
}

/* Popup box */
.custom-swal-popup {
  border-radius: 16px !important;
  padding: 25px !important;
  font-family: Arial, sans-serif;
}

/* Title */
.custom-swal-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #222 !important;
}

/* Text */
.custom-swal-text {
  font-size: 16px !important;
  color: #555 !important;
}

/* Button */
.custom-swal-btn {
  background: #ff6600 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 25px !important;
  font-size: 14px !important;
  transition: 0.3s ease;
}

/* Button hover */
.custom-swal-btn:hover {
  background: #e65c00 !important;
}

.error {
  margin-left: 8px;
  background: transparent;
  color: red;
}

/* Popup box */
.sp-swal-popup {
  border-radius: 16px;
  padding: 25px;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Title */
.sp-swal-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

/* Text */
.sp-swal-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Button */
.sp-swal-btn {
  background-color: #F97316 !important;
  border-radius: 8px !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  font-weight: 600;
  transition: 0.2s ease;
}

/* Button hover */
.sp-swal-btn:hover {
  background-color: #ea580c !important;
  transform: translateY(-1px);
}