/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    background: white;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 30px;
  }

  .badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    white-space: nowrap;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form-col,
  .contact-info-col {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .logo-text span {
    display: none;
  }
  .client-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  .client-logo {
    padding: 15px;
    height: 80px;
  }

  .service-row,
  .service-row-reversed {
    flex-direction: column;
    gap: 30px;
  }

  .service-content,
  .service-image {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .header-container {
    padding: 15px;
  }

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  nav ul li {
    margin: 15px 0;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  .about-container {
    flex-direction: column-reverse;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .service-row {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 480px) {
    .logo{
        max-width: 80%;
    }
  .logo-text h1{
    font-size: 1.1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form > button {
    padding: 0.5rem 25px !important;
    margin-top: 20px;
  }
  .founder-column > div:nth-child(2) {
    margin-inline: auto;
  }
}
