/* ===== Tablet Breakpoint ===== */
@media (max-width: 1024px) {
  .hero-content {
    gap: 2rem;
  }

  .project-card-img {
    flex: 0 0 240px;
    width: 240px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Mobile Breakpoint ===== */
@media (max-width: 768px) {
  .fixed-nav {
    padding: 0 1rem;
  }

  .nav-center {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-slogan::before,
  .hero-slogan::after {
    width: 1.2rem;
    margin: 0 0.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex-direction: column;
  }

  .project-card-img {
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-bg-img {
    opacity: 0.15;
  }
}
