/* === nav css == */
@media (max-width: 768px) {
  .logo-name h1 {
    font-size: 15px;
  }
  .navbar-toggler-icon {
    height: 1.2em;
    width: 1.2em;
  }
  .navbar-nav {
    margin-top: 20px;
  }
  #navbar-spacer {
    height: 70px;
    width: 100%;
  }
}
/*  == hero section media  */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-description {
    font-size: 1rem;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
    max-width: 300px;
    margin-bottom: 15px;
  }
}
/* == service section media === */
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/* ===== about media ===== */
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  .about-description {
    text-align: center;
  }
  .highlight {
    padding: 1rem;
  }
  .about-highlights {
    display: flex;
    flex-direction: column;
  }
}

/* contact section */

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* foooter section css === */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
