:root {
  --bg-black: #050505;
  --bg-dark: #0a0a0a;
  --bg-darker: #020202;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --gold: #d4af37;
  --gold-hover: #b4932a;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;

  /* Cinematic Grain Texture Overlay */
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    z-index: 9999;
    opacity: 0.05;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gold {
  color: var(--gold);
}

.text-xs {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bg-darker {
  background-color: var(--bg-darker);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--bg-black);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 20px;
  background: #0a0a0a;
  padding: 20px;
  border: 1px solid #333;
  width: 200px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
}

/* Hero Section */
/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #111 0%, #050505 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  animation: rotate 60s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.separator {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
}

.company-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #ccc;
}

.company-intro p {
  margin-bottom: 20px;
}

.specialties-tagline {
  margin-top: 30px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 15px 0;
  display: inline-block;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.about-image .img-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(45deg, #151515, #1a1a1a);
  border: 1px solid var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.about-image .img-placeholder::after {
  content: "🎬";
  font-size: 4rem;
  opacity: 0.3;
  z-index: 0;
}

/* Support for real image inside */
.about-image .img-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-dark);
  padding: 40px 20px;
  text-align: center;
  border: 1px solid #1a1a1a;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-card p {
  color: var(--text-secondary);
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Portfolio Work */
.subsection-title {
  margin: 40px 0 20px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-size: 1.5rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #1a1a1a;
}

.project-img {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
  position: relative;
  /* Required for absolute positioning of inner img */
  overflow: hidden;
}

.project-img::before {
  content: "🎥";
  font-size: 2rem;
  opacity: 0.3;
  margin-bottom: 10px;
  z-index: 0;
}

/* Support for real images inside the div */
.project-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  background: #000;
  /* Fill gaps with black */
}

.project-card:hover .project-img {
  background: linear-gradient(180deg, #222 0%, #111 100%);
  opacity: 1;
  /* Keep opacity 1 so image is visible */
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  transform: translateY(100%);
  background: rgba(0, 0, 0, 0.8);
  transition: var(--transition);
}

.project-card:hover .project-info {
  transform: translateY(0);
}

/* Client Marquee */
.client-section {
  overflow: hidden;
  background: var(--bg-darker);
  padding: 50px 0;
  position: relative;
}

.client-section::before,
.client-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.client-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-darker), transparent);
}

.client-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-darker), transparent);
}


.client-marquee {
  white-space: nowrap;
}

.logo {
  display: flex;
  /* Added flex to align image and text */
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
  z-index: 1001;
  /* Ensure logo is above overlay */
}

.marquee-content {
  display: flex;
  /* Force horizontal alignment */
  align-items: center;
  /* Vertically center logos */
  gap: 50px;
  /* Consistent spacing */
  width: max-content;
  /* Ensure container fits all items */
  /* Ensure logos stay in one line */
  animation: scroll 40s linear infinite;
  /* Adjusted speed for full traverse */
}

/* Remove span styles and add img styles */
.marquee-content img {
  height: 80px;
  /* Increased size as requested */
  width: auto;
  /* margin: 0 40px;  Removed margin in favor of gap in flex container */
  /* Removed aggressive filters so user's logos show as-is */
  transition: var(--transition);
  /* Removed background as requested */
  /* Temporary fix: add white bg in case logos are transparent black */
}

.marquee-content img:hover {
  transform: scale(1.05);
  /* Removed opacity change on hover since base is now 1 */
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
    /* Start from off-screen right */
  }

  100% {
    transform: translateX(-100%);
    /* Scroll to off-screen left */
  }
}

/* Contact */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.contact-info h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center content */
  gap: 15px;
  font-size: 1.5rem;
  /* Increase size for impact */
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: var(--bg-dark);
  border: 1px solid #333;
  color: white;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #1a1a1a;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}