/* ==========================================================================
   GLOBAL VARIABLES & STYLES
   ========================================================================== */
:root {
  --bg-black: #050507;
  --bg-card: #101014;
  --border-color: #1c1c24;

  --accent-orange: #ff5500;

  --text-white: #ffffff;
  --text-muted: #8c8c9a;

  --font-main: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Portfolio Section Styling */
.portfolio {
  width: 100%;
  padding: 40px 0 60px 0;
  background-color: #000000;
  color: #ffffff;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-header h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-header p {
  font-size: 13px;
  color: #888888;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* 2-Column Split Rows */
.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 0; /* Continuous edge-to-edge layout */
}

.portfolio-row {
  display: flex;
  width: 100%;
  min-height: 420px;
  align-items: center;
}

/* Reverse orientation for alternating items */
.portfolio-row.reverse {
  flex-direction: row-reverse;
}

.portfolio-media, 
.portfolio {
  flex: 1;
  width: 50%;
  height: 420px;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  background-color: #000000;
}

.portfolio h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.portfolio p {
  font-size: 13px;
  color: #999999;
  line-height: 1.6;
  max-width: 420px;
}

/* Explore More Pill Button */
.portfolio-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.explore-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #cccccc;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .portfolio-row,
  .portfolio-row.reverse {
    flex-direction: column;
    min-height: auto;
  }

  .portfolio-media, 
  .portfolio{
    width: 100%;
    height: 280px;
  }

  .portfolio {
    padding: 40px 24px;
    height: auto;
    text-align: center;
    align-items: center;
  }
}
/* Why Choose Us Section Base */
.why-us-section {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 40px 80px 40px;
  text-align: center;
  box-sizing: border-box;
}

/* Header Typography */
.why-us-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.why-us-subtitle {
  font-family: Arial, Helvetica, sans-serif;
  color: #a0a0a0;
  font-size: 0.9rem;
  max-width: 650px;
  margin: 0 auto 50px auto;
  line-height: 1.4;
}

/* 4-Column Grid */
.why-us-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Card Base & Motion Styles */
.why-us-card {
  flex: 1;
  height: 440px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
  box-sizing: border-box;
  background-color: #111111;
  
  /* Smooth Motion Transitions */
  border: 1.5px solid transparent;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  cursor: pointer;
}

/* Card Hover: Orange Border Accent & Elevation */
.why-us-card:hover {
  border-color: #ff5500;
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.2);
}

/* Background Image Scaling */
.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-us-card:hover .card-img {
  transform: scale(1.08);
}

/* Dark Gradient Overlay for Contrast */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 1;
}

/* Text Content Wrapper */
.card-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
  transition: transform 0.4s ease;
}

/* Orange Accent Bar */
.card-accent-line {
  display: block;
  width: 32px;
  height: 3px;
  background-color: #ff5500;
  margin-bottom: 12px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.why-us-card:hover .card-accent-line {
  width: 48px;
}

/* Card Title */
.card-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}

/* Hover Description Reveal Motion */
.card-description {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  color: #cccccc;
  margin-top: 8px;
  line-height: 1.4;
  
  /* Collapsed initial state */
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.why-us-card:hover .card-description {
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules for Tablet & Mobile */
@media (max-width: 900px) {
  .why-us-grid {
    flex-wrap: wrap;
  }
  .why-us-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 260px;
    height: 380px;
  }
}

@media (max-width: 550px) {
  .why-us-card {
    flex: 1 1 100%;
  }
}

/* Image scaling inside card */
.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Bottom shadow overlay for legible text */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

/* Content wrapper overlaid at bottom of card */
.card-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
}

/* Orange Accent Line */
.card-accent-line {
  display: block;
  width: 32px;
  height: 3px;
  background-color: #ff5500;
  margin-bottom: 12px;
  border-radius: 2px;
}

/* Card Title Typography */
.card-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Sections */
.section-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 30px;
  width: 100%;
}

/* Explicitly shared layout */
.section-container,
.find-us-wrapper,
.policy-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.find-us-wrapper {
  width: 100%;
  max-width: 1200px; /* Matches your section-container max-width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-subtitle,
.section-title,
.find-us-title {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Explicit color safeguards */
.section-subtitle,
.form-subtext,
.workflow-card p,
.standard-card p,
.mv-description,
.story-text,
.footer-description,
.footer-links a,
.connect-address,
.connect-contact-info,
.policy-intro,
.policy-card p {
  color: var(--text-muted);
}

.section-title,
.form-main-title,
.footer-title,
.policy-main-title,
.policy-card h2,
.mv-title {
  color: var(--text-white);
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: var(--accent-orange);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 85, 0, 0.4);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   AMBIENT ORANGE BACKGROUND LIGHT GLOWS
   ========================================================================== */
.glow-orange {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(255, 85, 0, 0.16) 0%,
    rgba(255, 85, 0, 0.04) 45%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.glow-hero {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.glow-top-left {
  top: 10%;
  left: -150px;
}
.glow-center {
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
}
.glow-middle-left {
  top: 60%;
  left: -200px;
}
.glow-bottom-right {
  bottom: 5%;
  right: -150px;
}

/* ==========================================================================
   STACKED NAVBAR (LOGO ABOVE NAV LINKS)
   ========================================================================== */
/* Navbar Base Styling */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    padding: 1rem 2rem; /* Initial vertical padding */
    transition: all 0.3s ease-in-out;
}

/* Scrolled State (Shortens the header length/height) */
#navbar.scrolled {
    padding: 0.4rem 2rem; /* Shrinks the padding significantly when scrolling */
    background: rgba(0, 0, 0, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack logo on top of links */
    align-items: center;
    gap: 0.6rem; /* Tightens the gap between the logo and navbar links */
    transition: gap 0.3s ease-in-out;
}

/* Reduces gap further when scrolled */
#navbar.scrolled .nav-container {
    gap: 0.3rem; 
}

/* Logo Image Styling */
.logo-img {
    height: 85px; /* Adjust this to your preferred default size */
    width: auto;
    display: block;
    mix-blend-mode: screen; /* Blends out the black box background */
    transition: height 0.3s ease-in-out;
}

/* Shrinks logo height smoothly on scroll */
#navbar.scrolled .logo-img {
    height: 40px; 
}

/* Navbar Link Styling - Updated Font Size */
.nav-links a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 14px; /* Bumped up from 10px/11px for optimal readability */
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

/* Adjust spacing and logo scale if needed */
.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
/* Hero Container Stacked Vertically */
.hero {
  display: flex;
  flex-direction: column; /* Stacks text on top, video below */
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #000000;
}

/* Top Text Styles */
/* Container styling for headline */
.hero-content h1 {
  position: relative;
  z-index: 2;
}

/* Orange radial glow positioned directly behind "Cinema" */
/* Keep your existing heading CSS, just add the span styling below */

.orange-glow {
  position: relative;
  display: inline-block;
  color: #ffffff; /* Keeps your exact existing text color */
}

.orange-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle, 
    rgba(255, 85, 0, 0.6) 0%, 
    rgba(255, 85, 0, 0.25) 40%, 
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

/* Showcase Section */
.showcase-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 60px 20px;
  text-align: center;
}

.showcase-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 4px;
  margin: 20px 0 40px 0;
  text-transform: uppercase;
}

/* 3-Column Card Layout */
/* 3-Column Card Layout */
.cards-grid {
  display: flex;
  justify-content: center;
  align-items: center; /* Keeps cards aligned uniformly */
  gap: 20px;
  width: 100%;
  max-width: 1100px;
}

.showcase-card {
  flex: 1;
  height: 250px; /* Forces all 3 cards to match the left card's height */
  border-radius: 20px;
  overflow: hidden;
  background-color: #111111;
}

.showcase-card video {
  width: 100%;
  height: 100%; /* Fills the card fully */
  object-fit: cover; /* Crops video to fit without stretching */
  display: block;
}

/* Responsive view for mobile screens */
@media (max-width: 768px) {
  .cards-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .showcase-card {
    width: 100%;
    max-width: 360px;
    height: 480px;
  }
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid #ff5500;
  border-radius: 20px;
  color: #ff5500;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.hero-content p {
  color: #a0a0a0;
  font-size: 1.1rem;
  margin: 0;
}

/* Bottom Video Styles */
.hero-video-container {
  width: 500%;
  max-width: 100%; /* Limits max width for a clean look */
  border-radius: 16px; /* Smooth rounded corners */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
/* Heading ("Our Values") */
h1, h2, .heading {
  font-family: 'Prata', 'Playfair Display', serif;
  font-weight: 400;
}

/* Body Text */
p {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.8;
}

/* Navigation / Small Caps ("ABOUT", "CONTACT US") */
.nav-item {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}
/* ==========================================================================
   1. OUR STORY & MISSION/VISION SECTION
   ========================================================================== */
.story-container {
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
  position: relative;
  text-align: center;
}

.watermark-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.story-text {
  position: relative;
  z-index: 2;
  font-size: 1.15rem;
  color: #e5e5eb;
  line-height: 1.8;
  font-weight: 400;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  align-items: stretch;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
/* Card Container Styling */
.mv-card {
  background: #121212;                 /* Dark box fill */
  border-radius: 16px;                 /* Proper rounded box corners */
  padding: 2.5rem 2rem;
  text-align: center;
  
  /* Removes bottom, left, and right borders */
  border: none;                        
  
  /* Top accent line + top glowing shadow */
  border-top: 2px solid #ff6600;      
  box-shadow: 0 -12px 25px -5px rgba(255, 102, 0, 0.3);
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 -16px 35px -5px rgba(255, 102, 0, 0.5);
}

/* Text Colors & Spacing */
.orange-text,
.mv-subtitle {
  color: #ff6600 !important;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mv-title {
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.mv-description {
  color: #b3b3b3;
  line-height: 1.6;
}

/* ==========================================================================
   2. OUR WORKFLOW TIMELINE SECTION
   ========================================================================== */
.workflow-wrapper {
  position: relative;
  margin-top: 4rem;
}

.workflow-line {
  position: absolute;
  top: 25px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: rgba(255, 85, 0, 0.4);
  z-index: 1;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.workflow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 50px;
  height: 50px;
  background: var(--accent-orange);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.6);
  border: 3px solid var(--bg-black);
  position: relative;
  z-index: 3;
}

.workflow-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.2rem 1.5rem;
  width: 100%;
  min-height: 190px;
  overflow: hidden;
  text-align: left;
}

.workflow-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
  color: var(--text-white);
}

.workflow-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.card-bg-num {
  position: absolute;
  right: 1rem;
  bottom: -0.5rem;
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 1;
}
/* ==========================================================================
   3. EXCELLENCE STANDARDS SECTION (Fixed Horizontal Layout)
   ========================================================================== */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 3.5rem;
  z-index: 2;
  position: relative;
  width: 100%;
}

.standard-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  min-height: 220px;
}

.standard-card .orange-bar {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--accent-orange);
  margin: 0 auto 1.2rem auto;
  border-radius: 2px;
}

.standard-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 2;
  color: var(--text-white);
  line-height: 1.2;
}

.standard-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.standard-card .card-bg-num {
  position: absolute;
  right: 1rem;
  bottom: -0.5rem;
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 1;
}
/* ==========================================================================
   CLIENT MARQUEE CSS
   ========================================================================== */
.marquee-wrapper-double {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #ffffff;
  border-top: 2.5px solid var(--accent-orange);
  border-bottom: 2.5px solid var(--accent-orange);
  position: relative;
  padding: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.marquee-container::after,
.marquee-container::before {
  display: none !important;
  content: none !important;
}

/* Force the clients section to break out full width */
#clients.section-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
}

/* Keep the section titles centered and padded nicely */
#clients .section-subtitle,
#clients .section-title {
    text-align: center;
    padding: 0 2rem;
}

/* Make sure the double marquee wrapper spans full screen width */
#clients .marquee-wrapper-double {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  flex-wrap: nowrap;
}

.client-card-light {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}

.client-card-light:hover {
  transform: scale(1.08);
}

.client-card-light img {
  max-width: 160px;
  max-height: 85px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-card-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  min-width: 200px;
  height: 90px;
}

.client-card-text span {
  color: #111111;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.marquee-left {
  animation: scrollLeft 45s linear infinite;
}

.marquee-right {
  animation: scrollRight 25s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.stats-section {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-card {
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid rgba(255, 106, 0, 0.15);
    border-radius: 20px;
    padding: 45px 20px;
    width: 23%;
    text-align: center;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #ff6a00;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 900px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .stat-card {
        width: 80%;
        margin-bottom: 20px;
    }
}
    /* Reset and global styles */
/* Core Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #000000;
  color: #ffffff;
  padding-top: 100px; /* Offset for fixed header */
  padding-bottom: 60px;
}

/* Translucent Fixed Navbar Fix */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Container */
#navbar {
  width: 100%;
  background-color: #000000;
  padding: 1.5rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation Menu List */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

/* Navigation Items (HOME, SERVICES, PORTFOLIO, ABOUT, CONTACT) */
.nav-links a {
  font-family: 'Prata', 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}


/* Optional Center Tagline (matches Playfair Display Italic) */
.nav-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color:#ffffff;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

/* Page Layout Container */
.container {
  width: 96%;
  max-width: 1600px;
  margin: 0 auto;
}

/* Section Formatting */
.section {
  margin-top: 50px;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
}

.section-title h1,
.section-title h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title p {
  font-size: 10px;
  color: #888888;
  letter-spacing: 1.2px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* 3-Column Wide Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Expanded Aspect Placard Cards */
.card {
  width: 100%;
  aspect-ratio: 16 / 7; /* Wide panorama frame matching target design */
  border-radius: 10px;
  overflow: hidden;
  background-color: #0b0b0b;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.card img,
.card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card {
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 120px;
  }

  .nav-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    aspect-ratio: 16 / 9;
  }
}
/* ==========================================================================
   CONTACT & FORM SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* Changed minmax to 0 so columns shrink properly */
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 4rem;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* Allows input fields to scale down fluidly */
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.contact-card form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.map-card-container {
  width: 100%;
  max-width: 100%; /* Changed from 850px to stretch across the full grid width */
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
}

.map-card-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #14141a;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--accent-orange);
  color: #fff;
  border-color: var(--accent-orange);
}

.form-main-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--text-white);
}

.form-subtext {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}


input,
textarea {
  width: 100%;
  padding: 0.9rem;
  background: #060608;
  border: 1px solid #1a1a22;
  border-radius: 8px;
  color: #fff;
  font-size: 0.88rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.btn-orange-submit {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 85, 0, 0.15); /* Softer semi-transparent orange background */
  color: var(--accent-orange);         /* Matches the accent orange text/border tone */
  font-weight: 800;
  border: 1px solid var(--accent-orange); /* Matches the call icon border style */
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.btn-orange-submit:hover {
  background: var(--accent-orange);
  color: #fff;
  opacity: 1;
}

/* -- Contact header (CONNECT WITH US) -- */
.contact-header {
  margin-bottom: 3.5rem;
}

.main-contact-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  color: var(--text-white);
}

.main-contact-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* -- Small orange tag label used inside contact cards -- */
.card-tag {
  color: var(--accent-orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}

.card-brand-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.card-brand-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* -- Nested "Connect" box inside the left contact card -- */
.nested-connect-box {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.connect-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.connect-row strong {
  display: block;
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.connect-row p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.icon-pin,
.icon-mail,
.icon-phone {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background: #030305;
  border-top: 1px solid var(--border-color);
  padding: 5rem 2rem 2rem 2rem;
  position: relative;
  z-index: 2;
  font-family: var(--font-main);
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  font-family: var(--font-main);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Changes from 2 columns to 4 columns in a single row */
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 4rem;
}

.footer-container > div,
.brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.footer-logo img {
  height: 70px;
  width: auto;
  border-radius: 6px;
  display: block;
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

.footer-title {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-white);
}

.connect-address,
.connect-contact-info {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: #101014;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-socials a i {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

.footer-socials a:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  color: #555562;
  font-size: 0.8rem;
}

/* ==========================================================================
   PRIVACY POLICY PAGE STYLES
   ========================================================================== */
.policy-page-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 11rem 2rem 6rem 2rem;
}

.policy-main-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.policy-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 3rem auto; /* Added 3rem bottom margin to create space before the placards */
  line-height: 1.7;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  align-items: stretch;
  gap: 2rem;
}

.policy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  text-align: center;
}

.policy-card .orange-bar {
  display: block;
  width: 45px;
  height: 3px;
  background-color: var(--accent-orange);
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}

.policy-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.policy-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.policy-grid .full-width-card {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

/* ==========================================================================
   RESPONSIVE LAYOUT (single, clean media query)
   ========================================================================== */
@media (max-width: 600px) {
  .nav-links {
    gap: 1rem;
  }

  .workflow-grid,
  .standards-grid,
  .footer-container,
  .policy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .watermark-title {
    font-size: 3.5rem;
  }

  .policy-main-title {
    font-size: 3rem;
  }

  .main-contact-title {
    font-size: 2.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .workflow-line {
    display: none;
  }
}