    /* Hide desktop nav links and show hamburger on mobile */
@media (max-width: 991px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: block !important;
    font-size: 2.5rem;

    cursor: pointer;
  }
}

/* Show desktop nav and hide hamburger on larger screens */
@media (min-width: 992px) {
  .nav-links {
    display: flex !important;
  }

  .hamburger {
    display: none !important;
  }
}

/* <!-- About Section  --> */
  @media (max-width: 1024px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
    .about-text, .about-image {
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 28px;
    }
    .founder-text {
      font-size: 16px;
      padding: 0 10px;
    }
    .header-col {
      font-size: 22px;
    }
    .about-text p {
      font-size: 15px;
    }
    .btn {
      padding: 10px 20px;
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .section-title {
      font-size: 22px;
    }
    .header-col {
      font-size: 18px;
    }
    .about-text p {
      font-size: 14px;
    }
  }

/* <!-- Meet Our Founder  --> */
  @media (max-width: 1024px) {
    .section-title {
      font-size: 28px;
    }
    .founder-text {
      font-size: 15px;
    }
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 24px;
    }
    .founder-text {
      font-size: 14px;
      padding: 0 15px;
    }
  }

  @media (max-width: 480px) {
    .section-title {
      font-size: 20px;
    }
    .founder-text {
      font-size: 13px;
    }
    .founder-img {
      margin-bottom: 15px;
    }
  }

  .founder-img img {
    transition: transform 0.3s ease;
  }
  .founder-img img:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {

  /* make sure the page scales correctly */
  body, html {
    width: 100%;
    overflow-x: hidden;
  }

  /* hero section */
  .about-hero {
    background-position: center top;
    background-size: cover;
    text-align: center;
    padding: 70px 15px;
  }
  .about-hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .about-hero p {
    font-size: 1rem;
  }

  /* about section */
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
  }
  .about-text, .about-image {
    width: 100%;
  }
  .about-image img {
    max-width: 90%;
    margin: 20px auto;
  }

  /* founder section */
  .founder-section {
    padding: 40px 20px;
    text-align: center;
  }
  .founder-section h2 {
    font-size: 1.6rem;
  }
  .founder-section .row {
    flex-direction: column;
  }
  .founder-section img {
    width: 100%;
    max-width: 320px;
    margin: 15px auto;
    display: block;
  }

  /* floating buttons */
  .floating-social {
    bottom: 10px;
    right: 10px;
  }
  .floating-social a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}


