@font-face {
    font-family: 'myfont';
    src: url('/font/times.ttf') format('truetype');
  }

  /* @media (max-width: 768px) {
    .site-footer {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    } */

    @media (max-width: 768px) {
      .site-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px; /* ✅ Adds 10px vertical space between items */
      }
    
      .footer-right {
        text-align: center;
      }
    }
    
  
    .footer-right {
      text-align: center;
    }
  

  body, html {
    overflow-x: hidden;
  }
  
  
  body {
    font-family: 'MyCustomFont', sans-serif;
  }
  

body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #fff;
    color: #000;
    /* background: red; */
  }

  body {
    margin: 0;
    font-family: 'Merriweather', serif; /* example font */
  }
  
  .navbar {
    background-color: white;
    padding: 10px 30px;
    height: 100px;
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid #ccc; */
  }
  
  .navbar .logo img {
    height: 70px !important;
    padding: 10px 10;
    width: auto !important;
    margin-left: 50px;
  }
  
  
  
  .container {
    width: 80vw;           /* 80% of the viewport width */
    max-width: 80%;        /* fallback if you want relative to parent */
    margin: 0 auto;        /* centers horizontally */
    display: flex;
    justify-content: space-between; /* or space-around */
    align-items: center;
    padding: 60px 0;       /* reduce left-right padding since width is fixed */
    gap: 40px;
  }
  
  
  .text-content {
    max-width: 60%;
  }
  
  .reg-info {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
  }
  
  h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin: 0 0 20px;
    font-family: myfont;
  }
  
  .intro,
  .location {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
  }
  
  .logo img {
    width: 240px;
    height: auto;
  }
  
  .mission-section {
    text-align: center;
    padding: 80px 40px 40px;
    background-color: #fff;
    color: #000;
  }
  
  .mission-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: normal;
  }
  
  .mission-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .programs-section {
    text-align: center;
    padding: 60px 40px;
    background-color: #fff;
  }
  
  .programs-section h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: normal;
  }
  
  .subheading {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 40px;
  }
  
  .programs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .program-card {
    background-color: #f2f2f2;
    padding: 20px 25px;
    width: 220px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .program-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #000;
  }
  
  .program-card p {
    font-size: 0.95rem;
    color: #333;
  }

  .why-matters-section {
    text-align: center;
    padding: 60px 40px;
    background-color: #fff;
  }
  
  .heart-icon {
    font-size: 1.5rem;
    color: #8b1c68;
    margin-bottom: 10px;
  }
  
  .why-matters-section h2 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 20px;
  }
  
  .why-matters-section p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }

  .join-section {
    text-align: center;
    padding: 60px 40px;
    background-color: #fff;
  }
  
  .join-box {
    display: inline-block;
    border: 1.5px dashed #7d4ac8;
    padding: 30px 40px;
    border-radius: 8px;
    max-width: 700px;
  }
  
  .join-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #7d4ac8;
  }
  
  .join-box h2 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 10px;
  }
  
  .join-box p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
  }

  .contact-section {
    padding: 60px 40px;
    text-align: center;
    background-color: #fff;
  }
  
  .contact-section h3 {
    font-size: 1.3rem;
    font-weight: normal;
    margin-bottom: 40px;
  }
  
  .contact-container {
    display: flex;
    justify-content: space-around;
    align-items: center; /* Vertically centers both items */
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
  }  
  
  .contact-text {
    font-size: 1.1rem;
    max-width: 300px;
    text-align: left;
  }
  
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .contact-item {
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }
  
  .contact-item .icon {
    color: #7d4ac8;
    font-size: 1.1rem;
  }

  .site-footer {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-around; /* Add spacing between items */
    align-items: center;
    padding: 30px 40px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 20px;

  }  
  
  
  .footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .footer-left img {
    height: 50px;
  }
  
  .footer-left p {
    margin: 0;
    font-family: myfont;
    /* font-weight: bold; */
    line-height: 1.2;
  }
  
  .footer-right {
    text-align: right;
  }
  
  .footer-right p {
    margin: 0 0 5px 0;
  }
  
  .footer-right small {
    font-size: 0.75rem;
    color: #555;
  }
  
  section {
    border-top: 1px solid #000; /* thin black line */
    padding-top: 40px;
    margin-top: 40px;
  }

  /* section:first-of-type {
    border-top: none;
  } */
  