:root{
  --color-onyx: #000000;
  --color-navy: #4A5568;
  --color-teal: #00D4AA;
  --color-gray: #9E9E9E;
  --color-beige: #D4B896;
  --color-cream: #F5F3F0;
  --color-pearl: #FFFFFF;
  --color-gold: #D4AF37;
  --color-orange: #ff6b35;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: var(--color-onyx);
  line-height: 1.6;
}

/* Header Styles - Minimalist Dark Style */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2c3e50;
  backdrop-filter: none;
  border-bottom: none;
  padding: 20px 40px;
  box-shadow: none;
  transition: all 0.3s ease;
}

header.scrolled {
  background: #2c3e50;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

header.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 12px 20px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

nav a:hover {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

nav a.active {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Services dropdown */
.services-dropdown {
  position: relative;
}

/* Dropdown arrow icons */
.services-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s ease;
}

.services-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: rgba(20, 30, 48, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.services-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  background: transparent;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: normal;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  min-height: 75vh;
  height: 75vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.hero-top {
  background: transparent;
  color: var(--color-pearl);
  display: block;
  text-align: center;
  padding: 120px 0 0 0;
  position: relative;
  z-index: 2;
}

.hero-bottom {
  background: transparent;
  color: var(--color-pearl);
  display: block;
  text-align: center;
  padding: 20px 0 0;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 22px;
  opacity: 0.95;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Scroll Reveal Animation - Smooth Fade & Slide */
.scroll-blur-section {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

.scroll-blur-section.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* Staggered child element animations */
.scroll-blur-section .about-content,
.scroll-blur-section .about-image,
.scroll-blur-section .process-header,
.scroll-blur-section .process-card,
.scroll-blur-section .card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-blur-section.revealed .about-content,
.scroll-blur-section.revealed .about-image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.scroll-blur-section.revealed .process-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.scroll-blur-section.revealed .process-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.scroll-blur-section.revealed .process-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.scroll-blur-section.revealed .process-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.scroll-blur-section.revealed .process-card:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.scroll-blur-section.revealed .card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.scroll-blur-section.revealed .card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.scroll-blur-section.revealed .card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Interactive hover effects on revealed sections */
.scroll-blur-section.revealed:hover {
  transform: translateY(0) scale(1.01);
  transition: transform 0.3s ease;
}

.scroll-blur-section.revealed .process-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.scroll-blur-section.revealed .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* About Section */
.about-section {
  padding: 120px 40px;
  background: #f8f9fa;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h3 {
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.1;
  font-style: italic;
}

.about-content h2 .highlight {
  color: var(--color-gold);
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}

.cta-button {
  background: #2c3e50;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #1a252f;
  transform: translateY(-2px);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--color-gold);
  color: white;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
}

/* Process Section */
.process-section {
  padding: 120px 40px;
  background: #ffffff;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-header {
  margin-bottom: 80px;
}

.process-header h3 {
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.process-header h2 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.1;
  font-style: italic;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.process-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.process-icon {
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.process-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  font-style: italic;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.process-cta {
  background: #2c3e50;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.process-cta:hover {
  background: #1a252f;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .process-steps-section .grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .process-steps-section .card {
    padding: 40px 25px !important;
  }
  
  .process-steps-section .icon {
    width: 60px !important;
    height: 60px !important;
  }
  
  .process-steps-section .icon svg {
    width: 30px !important;
    height: 30px !important;
  }
  
  nav {
    gap: 4px;
  }
  
  nav a {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .header-logo {
    font-size: 16px;
  }
  
  .logo-image {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
  }
  
  nav a {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  .header-logo span {
    display: none;
  }
}

/* Showreels Section */
#showreels {
  padding: 80px 60px;
  background: #f8f9fa;
}

.showreels-container {
  max-width: 1400px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-height: 90vh; /* optional max height */
  aspect-ratio: 16/9; /* keeps video proportional */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

#showreelVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


/* Video Overlay */
#videoOverlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.left-border {
  position: absolute;
  left: 0; top: 0;
  width: 8px;
  height: 100%;
  background: var(--color-gold);
  z-index: 1;
  border-radius: 8px 0 0 8px;
}

/* Play Button */
#playButton {
  width: 100px; height: 100px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 30px solid #333;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 6px;
}

/* Title Overlay */
.title-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: white;
}

.title-overlay h2 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 0;
  font-style: italic;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.title-overlay p {
  font-size: 18px;
  opacity: 0.9;
}


/* Video Controls */
#videoControls {
  position: absolute;
  bottom: 20px;
  left: 20px; right: 20px;
  display: none;
  background: rgba(0,0,0,0.7);
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.controls-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

#pauseButton {
  width: 40px; height: 40px;
  background: var(--color-gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#pauseButton div {
  width: 3px; height: 16px;
  background: white;
  margin-right: 2px;
}

#pauseButton div:last-child {
  margin-right: 0;
}

#progressBar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

#progress {
  height: 100%;
  background: var(--color-gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s;
}

#timeDisplay {
  color: white;
  font-size: 14px;
  min-width: 80px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #showreels { 
      padding: 60px 30px; 
      
  }
  #playButton { 
      width: 80px; height: 80px; 
      
  }
  
  .title-overlay{
  bottom: 20px;
    left: 20px;
    right: 20px;
  }
  
  .title-overlay h2, .title-overlay p { 
     
      
  }
  #videoControls { 
      padding: 12px; 
      
  }
}

@media (max-width: 480px) {
  #showreels { padding: 40px 20px; }
  #playButton { width: 60px; height: 60px; }
  #timeDisplay { font-size: 12px; min-width: 60px; }
}


/* Footer Styles */
.footer {
  background: #1a2332;
  color: white;
  padding: 60px 20px 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-column h4 {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #D4AF37;
}

.footer-brand .brand-title {
  color: #D4AF37;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-brand .brand-description {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

.footer-contact {
  display: block;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-contact span {
  margin-right: 10px;
  font-size: 18px;
}

.footer-contact:hover {
  background: rgba(212,175,55,0.15);
  border-color: #D4AF37;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.footer-column ul {
  list-style: none;  
  padding-left: 0;    
  margin: 0;         
}
