body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(180deg, #1f2a44 0%, #162038 100%);
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Make sure content sits above texture */
body > :not(.texture-overlay) {
  position: relative;
  z-index: 1;
}

/* BACKGROUND TEXTURE OVERLAY */
.texture-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.24;
  z-index: 0;
}



/* LOGO SECTION */
.logo-container {
  text-align: center;
  padding: 40px 0 15px 0;
  background-color: transparent;
}

.main-logo {
  width: 350px;
  height: auto;
  filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.4));
  transition: transform 0.4s ease;
}

.main-logo:hover {
  transform: scale(1.05);
}

/* NAVIGATION */
nav {
  text-align: center;
  padding: 20px 0;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  display: inline-block;
  margin: 0 30px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff2e8b;
}

/* PINK DIVIDER */
.pink-divider {
  height: 2px;
  width: 100%;
  background-color: #ff2e8b;
  margin-bottom: 40px;
  box-shadow: 0 0 12px #ff2e8b;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 100px 20px 80px 20px;
}

.hero h1 {
  font-size: 48px;
  color: #ff2e8b;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background-color: #ff2e8b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #e02678;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 46, 139, 0.4);
}

/* SECTION SPACING */
section {
  padding: 80px 20px;
  text-align: center;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* PORTFOLIO */
.media-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.media-grid img,
.media-grid video {
  width: 300px;
  border-radius: 8px;
}

/* FOOTER */
footer {
  background-color: #162038;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .grid-3 {
    flex-direction: column;
    align-items: center;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }
}.logo-small {
  width: 80px;
  height: auto;
}

/* SCROLL FADE IN */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.what-we-do {
  text-align: center;
  padding: 120px 20px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.what-we-do h2 {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}
.changing-word {
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-weight: bold;
  color: #ff4da6; /* pink accent */
}

.dynamic-text {
  font-size: 40px;
  font-weight: bold;
  margin-top: 20px;
}

.changing-word {
  color: #ff2e8b;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;   /* Adjust for your page layout */
  margin: 30px auto;
  aspect-ratio: 16 / 9;  /* Maintains 16:9 ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}