@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    margin-right: 12px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero .overlay {
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .convince-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .indian-carriers-text {
    font-size: 0.8rem;
    left: 70px;
    top: 20px;
  }

  header {
    padding: 10px 20px;
    flex-wrap: wrap;
  }

  .logo img {
    height: 40px;
  }

  .stat{
    max-width: unset;
  }

  .hamburger {
    display: flex;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .content-box {
    padding: 1rem;
  }

  .timeline-item {
    flex-direction: column !important;
    text-align: center;
  }

  .timeline-item .content,
  .timeline-item .date {
    width: 100% !important;
    margin-bottom: 1rem;
  }

  .timeline-item {
  flex-direction: column !important;
  text-align: center;
}
.timeline-item .date {
  order: -1; /* Move date above content if needed */
}

  .faq-item {
    width: 90%;
  }

  .background-overlay {
    padding: 1rem;
  }

  .social-icons {
    flex-direction: row;
    gap: 10px;
  }

  .partners-grid {
    display: grid;               /* Using Grid Layout */
    grid-template-columns: repeat(2, 1fr);  /* Two columns */
    gap: 15px;                   /* Add some gap between the items */
    padding: 10px;               /* Add padding for better spacing */
  }

  .partner-logo {
    text-align: center;          /* Align the logos and info */
  }

  .partner-info {
    margin-top: 10px;            /* Space between logo and text */
  }

}