body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #ffffff;
  color: #1f1f1f;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
}

.navbar.sticky-top {
  background: #fff !important;
  box-shadow: none;
}

.nav-link {
  color: #8a8a8a;
  transition: 0.2s ease;
}

.nav-link:hover {
  color: #1f1f1f;
}

.nav-link.active {
  color: #1f1f1f;
}

.hero-section {
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05;
}

.hero-desc {
  max-width: 560px;
  color: #777;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-character {
  max-height: 550px;
}

.service-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.05;
}

.section-space {
  padding: 120px 0;
}

.section-title-left {
  font-size: 64px;
  font-weight: 500;
  margin: 0px;
}

.client-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.05;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 2rem;
  justify-items: center;
  align-items: center;
  padding: 0 2rem;
}

.client-item {
  background-color: transparent;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.client-item:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.client-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-item:hover .client-logo {
  filter: grayscale(0%);
}

/* ✅ Smaller, softer caption text */
.client-name {
  font-size: 0.75rem; /* smaller font */
  letter-spacing: 0.5px;
  color: #6c757d !important;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
  justify-items: center;
  align-items: center;
  /* padding: 0 2rem; */
}

.work-item {
  background-color: transparent;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.work-item:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.work-logo {
  width: auto;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.work-item:hover .work-logo {
  filter: grayscale(0%);
}

/* ✅ Smaller, softer caption text */
.work-name {
  font-size: 16px; /* smaller font */
  letter-spacing: 0.5px;
  color: #6c757d !important;
  text-transform: capitalize;
}

.about-lead {
  font-style: italic;
  color: #777;
}

#about p {
  line-height: 1.5;
}

.about-character {
  max-height: 500px;
}

.contact-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05;
}

.contact-subtitle {
  color: #777;
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
}

.contact-character {
  max-height: 500px;
}

.footer-section {
  background: #fff;
  border-top: 1px solid #ececec;
  padding-top: 48px;
}

.footer-section h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-section a {
  display: block;
  text-decoration: none;
  color: #666;
  margin-bottom: 6px;
  transition: 0.2s;
}

.footer-section p {
  color: #666;
  line-height: 1.5;
}

.footer-spacer {
  height: 24px;
}

.footer-section a:hover {
  color: #111;
}

.footer-social {
  margin-top: 48px;
  padding: 8px;
  border-top: 1px solid #efefef;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline;
  margin: 0;
}

.footer-social span {
  color: #bbb;
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-title,
  .contact-title,
  .section-title-left {
    font-size: 48px;
  }

  .section-title {
    font-size: 48px;
  }

  .hero-desc {
    font-size: 18px;
  }

  .hero-character,
  .about-character,
  .contact-character {
    margin-top: 40px;
    max-height: 420px;
  }

  .section-space {
    padding: 80px 0;
  }
}
