/* 1) Global Resets and Base Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
  }
  
  /* 2) Generic Section Styling */
  .section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff; /* Removed min-height and flex for better mobile scaling */
  }
  
  /* 3) Headings, Sub-Headings, and Paragraphs */
  .section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #8c78a0; /* Main heading color */
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .section .sub-heading {
    font-size: 2rem;
    margin: 30px 0;
    color: #8c78a0; /* Sub-heading color */
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .section h3 {
    font-size: 1.8rem;
    margin: 20px 0 15px;
    color: #8c78a0; /* H3 color */
    font-weight: 600;
  }
  
  .section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* 4) CTA Buttons */
  .cta-button {
    background-color: #8c78a0; /* Primary CTA color */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 10px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  .cta-button:hover {
    background-color: #7b6792; /* Darker purple on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(123, 103, 146, 0.3);
  }
  
  /* Secondary CTA Button */
  .cta-button.secondary {
    background-color: #a08cb8; /* Lighter complementary purple for secondary button */
    box-shadow: 0 3px 10px rgba(160, 140, 184, 0.1);
  }
  .cta-button.secondary:hover {
    background-color: #93759c; /* Slightly darker on hover */
    box-shadow: 0 6px 15px rgba(147, 117, 156, 0.3);
  }
  
  /* 5) Hero Section */
  #hero {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 20px 100px;
    position: relative;
    overflow: hidden;
  }
  #hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.8), rgba(160, 140, 184, 0.3));
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  .header-logo {
    max-width: 250px;
    margin: 20px auto 60px;
    display: block;
    animation: zoomInFade 1.5s ease-in;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.1));
    border: 2px solid #b8a2d0; /* Purple border for cultural touch */
    border-radius: 10px;
  }
  @keyframes zoomInFade {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  .headline {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a !important;
    line-height: 1.2;
  }
  .subtext {
    font-size: 1.3rem;
    margin-bottom: 50px;
    font-weight: 500;
    color: #1a1a1a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* 6) About Section */
  .about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* 7) Vision Section */
  .vision-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  .vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
  }
  .vision-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .check-icon {
    font-size: 2rem;
    color: #8c78a0;
    margin-bottom: 15px;
  }
  .vision-card p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
  }
  .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  .quote {
    font-style: italic;
    color: #8c78a0;
    font-size: 1.2rem;
    margin-top: 20px;
  }
  
  /* 8) Why AUM Aarambh? */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
  }
  .benefit-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .benefit-card i {
    font-size: 2rem;
    color: #8c78a0;
    margin-bottom: 15px;
  }
  .benefit-card p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
  }
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* 9) Courses Section */
  .course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
  }
  .course-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .course-card:hover {
    transform: translateY(-5px);
  }
  .course-card h3 {
    color: #8c78a0;
    margin-bottom: 15px;
  }
  .course-card p {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
  }
  
  /* 10) Video Showcase */
  #video-showcase {
    background-color: #fafafa;
  }
  .video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  .video-grid iframe {
    width: 560px;
    max-width: 100%;
    height: 315px;
    border: none;
  }
  .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
  }
  .gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .gallery-img:hover {
    transform: scale(1.05);
  }
  
  /* 11) Our Location */
  .location-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .map-container {
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
  }
  
  /* 12) Contact */
  .contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .contact-link {
    color: #8c78a0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-link:hover {
    color: #7b6792;
  }
  
  /* 13) Footer */
  .footer {
    background-color: #8c78a0;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }
  
  /* 14) Mobile Responsiveness */
  @media (max-width: 768px) {
    .section {
      padding: 40px 10px;
    }
    .section h2, .section .sub-heading {
      font-size: 2rem;
    }
    .section h3 {
      font-size: 1.5rem;
    }
    .section p {
      font-size: 1rem;
    }
    #hero {
      padding: 100px 10px 60px;
    }
    .header-logo {
      max-width: 250px;
      margin: 15px auto 30px;
    }
    .headline {
      font-size: 2.2rem;
    }
    .subtext {
      font-size: 1rem;
    }
    .vision-grid, .benefits-grid, .course-cards, .image-gallery {
      grid-template-columns: 1fr;
    }
    .vision-content, .vision-card, .benefit-card, .course-card {
      padding: 15px;
    }
    .check-icon, .benefit-card i {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    .vision-card p, .benefit-card p, .course-card p {
      font-size: 1rem;
      line-height: 1.5;
    }
    .video-grid {
      flex-direction: column;
      align-items: center;
    }
    .video-grid iframe {
      width: 100%;
      height: 200px;
    }
    .gallery-img {
      height: 200px;
    }
    .fab.fa-whatsapp {
        font-size: 1.2rem; /* Adjust size as needed */
        color: #25d366; /* WhatsApp green */
    }
  }
  