/* ---------------- MOBILE RESPONSIVE ---------------- */
@media (max-width: 768px) {

  /* Section heading and paragraph center me aa jaye */
  .section {
    text-align: center;
    padding: 20px;
  }

  .section h2 {
    font-size: 2rem;
  }

  .section p {
    font-size: 1rem;
    margin: 0 auto 1.5rem;
    padding: 0 10px;
  }

  /* Cards ek ke neeche ek ho jayein */
  .card-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 15px;
  }

  .card {
    width: 90% !important;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .card > div:first-child {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }

  /* “Let's Connect” box adjust */
  .section div[style*="linear-gradient"] {
    padding: 1.5rem;
    text-align: center;
  }

  .section div[style*="linear-gradient"] h3 {
    font-size: 1.5rem;
  }

  .section div[style*="linear-gradient"] p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .btn-primary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #b89adf;
    color: white;
    border-radius: 8px;
    text-decoration: none;
  }
}

/* 🌐 Default hamburger hidden */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #dba8e2;
}

/* Mobile view styling */
@media (max-width: 768px) {

  nav {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 50px;
    border-radius: 8px;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: #333;
    font-size: 16px;
  }

 /* .nav-links a:last-child {
    border-bottom: none;
  }*/

  /* Hide the Calm Companion button nav on mobile */
  nav[style*="margin-right"] {
    display: none !important;
  }
}
