/* ================================
   Mobile Overrides (max 768px)
   ================================ */
@media (max-width: 768px) {

  /* HERO SECTION */
  .hero {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 60px 4% 40px !important;  /* closer to navbar */
    background-attachment: scroll;
  }

  .hero-content {
    max-width: 95%;
    text-align: left;
  }

  /* Break hero title into 4 lines */
  .hero-title .mobile-line {
    display: block;         
    font-size: 2.5rem;       /* default size for other lines */
    line-height: 1.2;        
    margin-bottom: 6px;     
  }

  .hero-title .mobile-line:first-child {
    font-size: 2.8rem;       /* bigger size for "India's First" */
    font-weight: 700;        
  }

  .hero-title {
    text-align: left;       
    margin-top: 40px;        /* closer to navbar */
  }

  .hero-subtitle {
  font-size: 1.1rem;
  margin-top: 6px;    /* tighter gap with title */
  margin-bottom: 20px; /* push subtitle away from CTA */
  line-height: 1.4;
}

.cta-button {
  margin-top: 10px;   /* ensures button doesn’t stick to subtitle */
}


  /* NAVIGATION */
  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  nav ul li a {
    font-size: 1rem;
  }

  /* OTHER SECTIONS */
  section {
    padding: 40px 5%;
  }

  h2 {
    font-size: 1.4rem;
  }

  p {
    font-size: 1rem;
  }
}


/* ======================
   End of Mobile Styles
   ====================== */