* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #1f1f1f;
  color: #fbfbfb;
}

a {
  text-decoration: none;
}

.our-service-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background: #213a80;
  overflow: hidden;
}

.our-service-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 560px;
  z-index: 0;

  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.75) 0%,   /* light top for navbar */
      rgba(200, 220, 255, 0.55) 25%,  /* soft transition */
      rgba(33, 58, 128, 0.7) 55%,     /* your blue tone */
      #213a80 100%                    /* solid base */
    ),
    url("/media/video-production-background-img.png");

  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.navbar,
.our-service-title,
.our-service-links,
.footer {
  position: relative;
  z-index: 5;
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 50;
  width: min(100% - 120px, 1120px);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.filmmakers-logo {
  width: 32px;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 56px;
}

.nav-toggle,
.nav-toggle-label,
.nav-item-contact-mobile {
  display: none;
}

.hamburger-icon {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: #002868;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-item-home,
.nav-item-about-us,
.nav-item-our-work,
.nav-item-our-service {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #002868;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.nav-menu a.active {
  color: #18357b;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
}

.nav-contact-button.active {
  background: #0f255c;
}

.nav-item-home:hover,
.nav-item-about-us:hover,
.nav-item-our-work:hover,
.nav-item-our-service:hover,
.nav-contact-button:hover {
  transform: scale(1.08); /* zoom in a bit */
  color: lightblue
}

.nav-contact-button {
  min-width: 130px;
  height: 42px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18357b;
  border-radius: 999px;
  transition: all 0.5s ease;
}

.nav-contact-button:active {
  background: #2a4d98;
}

.button-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #fbfbfb;
  text-transform: uppercase;
}

.our-service-title {
  max-width: 760px;
  margin: 42px auto 0;
  padding: 100px;
  text-align: center;
}

.our-service-title h1 {
  margin-bottom: 12px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  color: #fbfbfb;
}


.hero {
  width: 100%; 
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2; /* Keeps text above the dark overlay */
}

.hero h1 {
  color: #ffffff;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  .navbar {
    padding: 23px 24px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-links .big a {
    font-size: 16px;
  }

  .nav-btn a {
    font-size: 14px;
    padding: 10px 16px;
  }
}


.services-section::before {
  content: '';
  position: absolute;
  inset: 0;

  z-index: 0;
}

.services-section > * {
  position: relative;
  z-index: 1;
}

/* ── Services Section ── */
.services-section {
  background-image: url('./asset/images/our-service.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 50px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  padding-top: 100px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  margin-top: -90px;
  position: relative;
  z-index: 3;
}

.service-card {
  background: rgba(10, 42, 94, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  gap: 40px;
  min-height: 260px;   /* 👈 controls height */
  max-height: 300px;   /* 👈 prevents growing */
  overflow: hidden;    /* 👈 prevents expansion */
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.11);
}

.service-info {
  flex: 1.9;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.service-info h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 6px 0;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;

}


.service-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  max-width: 700px;
  max-height: 3.2em;
  overflow: hidden;
  margin-bottom: 20px;
}


.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 10px 20px;
  width: fit-content;
}

.price-tag .label {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.8);
}

.price-tag .amount {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}


.site-footer {
  width: 100%;
  background-color: #0a2a5e; /* Matching your dark blue theme */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer {
  width: 100%;
  padding-bottom: 14px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-bottom: 24px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  transition: background-color 0.5s ease, transform 0.5s ease;
}

.footer-social-link:hover {
  background: #355486;
}

.footer-social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.footer-social-link:hover img {
  transform: scale(1.05);
}


.footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
}

.footer-menu a {
  font-size: 11px;
  font-weight: 700;
  color: #002868;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.footer-menu a:hover {
  color: lightblue;
}


.footer-copyright {
  text-align: center;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    cursor: pointer;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(220px, calc(100vw - 24px));
    padding: 16px;
    border-radius: 16px;
    background: rgba(24, 53, 123, 0.96);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    z-index: 25;
  }

  .nav-toggle:checked ~ .nav-menu {
    display: flex;
  }

  .nav-menu .nav-item-contact-mobile {
    display: inline-flex;
  }

  .nav-menu a {
    color: #fbfbfb;
    font-size: 12px;
    font-weight: 700;
  }

  .nav-menu a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 6px 12px;
    text-decoration: none;
  }

  .nav-contact-button {
    display: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-socials {
    gap: 25px;
  font-family: 'Times New Roman', Times, serif;
  }
}

@media (max-width: 1024px) {
  .navbar {
    width: calc(100% - 48px);
    padding-top: 18px;
  }

  .filmmakers-logo {
    width: 28px;
  }

  .nav-menu {
    gap: 28px;
  }

  .nav-item-home,
  .nav-item-about-us,
  .nav-item-our-work,
  .nav-item-our-service {
    font-size: 10px;
  }

  .nav-contact-button {
    min-width: 112px;
    height: 38px;
  }

  .button-label,
  .footer-menu a {
    font-size: 10px;
  }

  .our-service-title {
    padding: 48px 24px 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .services-section {
    padding: 64px 24px 56px;
    gap: 18px;
  }

  .service-card {
    padding: 24px 28px;
    gap: 24px;
    min-height: 220px;
  }

  .service-info h2 {
    font-size: 20px;
  }

  .service-info p {
    font-size: 14px;
  }

  .price-tag .amount {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 24px);
    padding-top: 16px;
  }

  .filmmakers-logo {
    width: 24px;
  }

  .nav-menu {
    gap: 14px;
  }

  .nav-item-home,
  .nav-item-about-us,
  .nav-item-our-work,
  .nav-item-our-service {
    font-size: 8px;
  }

  .nav-contact-button {
    min-width: 86px;
    height: 30px;
    padding: 0 14px;
  }

  .button-label {
    font-size: 7px;
  }

  .our-service-title {
    margin-top: 20px;
    padding: 16px 12px 8px;
  }

  .our-service-title h1,
  .hero h1 {
    font-size: 24px;
  }

  .services-section {
    padding: 36px 12px 28px;
    margin-top: -20px;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    max-height: none;
    padding: 18px;
    gap: 16px;
    border-radius: 18px;
  }

  .service-info h2 {
    font-size: 16px;
  }

  .service-info p {
    font-size: 11px;
    max-height: none;
    margin-bottom: 10px;
  }

  .price-tag {
    padding: 8px 14px;
  }

  .price-tag .label {
    font-size: 8px;
  }

  .price-tag .amount {
    font-size: 18px;
  }

  .service-image {
    width: 100%;
    justify-content: center;
  }

  .service-image img {
    max-width: 100%;
  }

  .footer-social-link {
    width: 32px;
    height: 32px;
  }

  .footer-social-link img {
    width: 14px;
    height: 14px;
  }

  .footer-menu {
    gap: 14px;
    padding: 6px 12px;
  }

  .footer-menu a {
    font-size: 7px;
  }

  .footer-copyright {
    font-size: 6px;
  }
}
@media (max-width: 768px) {

  .scroll-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px;

    width: 100%;
    height: auto;

    overflow: visible;
    padding: 20px;
  }

  .card {
    width: 100%;
    height: 280px;

    flex: unset;
    scroll-snap-align: unset;
  }

}