/* Reset and base */
    *, *::before, *::after {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      background-color: #fff9e7;
      font-family: 'Open Sans', sans-serif;
      color: #5b3b00;
      line-height: 1.6;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5 {
      font-family: 'Merriweather', serif;
      color: #8c6500;
      margin-top: 0;
      margin-bottom: 1rem;
    }
    p {
      margin-top: 0;
      margin-bottom: 1rem;
      color: #4a463a;
    }
    a {
      color: #a97800;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    a:hover, a:focus {
      color: #6b4d00;
      outline: none;
    }
    /* Container */
    .container {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding: 1.5rem 0 3rem;
    }
    /* Responsive Grid for sections */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    @media (max-width: 1024px) {
      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 767px) {
      .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

/* Header Styles */
.site-header {
  background-color: #fff8db;
  border-bottom: 2px solid #ddd;
  font-family: 'Poppins', sans-serif;
}

/* First Row Styles */
.header-top {
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 1rem;
}

.top-col {
  text-align: center;
  color: #5f5030;
}

.nav-center {
  font-size: 1.7rem;
  font-weight: bold;
  color: #8b0000;
  text-align: center;
  cursor: pointer;
}

.symbol {
  font-size: 3rem;
  color: #8b0000;
  cursor: pointer;
  text-align: center;
}

.logo img {
  height: 125px;
  cursor: pointer;
  border-radius: 50%;
}

.founder-trustees {
  text-align: center;
  color: #5f5030;
  font-size: 1rem;
  line-height: 1.4;
}

.founder-trustees strong {
  color: #8c6500;
}

/* Second Row Styles */
.header-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;               /*  Adds equal spacing between flex items */
  background-color: #fffaf0;
  padding: 0.8rem 1rem;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  justify-content: center;   /*  Centers horizontally */
  align-items: center;       /*  Centers vertically */
  gap: 2.5rem;               /*  THIS adds spacing between each <a> */
  text-align: center;
  font-size: 1.1rem;
}

.nav a {
  text-decoration: none;
  color: #5f5030;
  font-weight: bold;
  transition: 0.5s ease-in-out;
}

.nav a:hover {
  color: #8b0000;
  text-decoration: underline;
  text-transform: uppercase;
}

.nav a:focus {
  outline: 2px solid #8b0000;
  outline-offset: 2px;
}
.nav a:hover {
  color: #8b0000;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .header-top {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      "lang logo contact"
      "symbols logo contact";
    text-align: center;
  }

  .header-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-left, .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Hero Section */
.hero-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: #fff8db;
  color: #5f5030;
}

.hero-left {
  flex: 1 1 500px;
  padding: 2rem;
}

.hero-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #5f5030;
  line-height: 1.2;
}

.hero-left p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #5f5030;
}

.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #f7c600;
  outline: none;
}

.hero-right {
  flex: 1 1 400px;
  text-align: center;
  padding: 2rem;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}



/* Section Titles */
section > h2.section-title {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 0.5rem;
      font-family: 'Merriweather', serif;
      color: #8c6500;
      position: relative;
    }
section > h2.section-title::after {
      display: block;
      color: #a97800;
      font-size: 1.3rem;
      margin: 0.9rem auto 2.5rem auto;
      border-top: 1px solid #a97800;
      width: 60px;
}
.section-logo {
  display: block;
  margin: 0 auto 1rem auto; /* ✅ Centers the logo horizontally */
  width: 60px;
  opacity: 0.9;
}
h2.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-family: 'Merriweather', serif;
  color: #8c6500;
  position: relative;
}
h2.section-title::after {
  display: block;
  color: #a97800;
  font-size: 1.3rem;
  margin: 0.9rem auto 2.5rem auto;
  border-top: 1px solid #a97800;
  width: 60px;
}


    /* About Us Section */
    .about-text {
      margin-bottom: 2rem;
      font-size: 1.05rem;
      color: #5f5030;
      text-align: center;
      line-height: 1.5;
    }
    .about-container {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .mission-vision-values {
      flex: 1 1 350px;
      max-width: 600px;
    }
    .mission-vision-values h3 {
      font-size: 1.3rem;
      color: #8c6500;
      margin-top: 1.5rem;
      margin-bottom: 0.3rem;
    }
    .values-list {
      margin-left: 1rem;
      list-style-type: disc;
      color: #4a463a;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    /* Spiritual Guides */
    .spiritual-guides {
      background-color: #fff7cc;
      border: 2px solid #eddc8a;
      padding: 1.5rem;
      border-radius: 12px;
      font-size: 1rem;
      max-width: 350px;
      color: #5f5030;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
    }
    .spiritual-guide {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .spiritual-guide-icon {
      background-color: #d4c875;
      border-radius: 8px;
      padding: 0.55rem;
      font-size: 1.9rem;
      flex-shrink: 0;
      color: #59480f;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .spiritual-guide-info {
      flex-grow: 1;
      font-size: 0.95rem;
      color: #4a463a;
    }
    .spiritual-guide-info strong {
      color: #a97800;
      font-weight: 600;
      display: block;
      margin-bottom: 0.15rem;
    }


/* Sessions Section */
.session-focus {
  background-color: #fff9e7;
  padding: 4rem 1rem;
}

.session-focus .session-title {
  text-align: center;
  font-size: 2.2rem;
  color: #8c6500;
  font-family: 'Merriweather', serif;
  position: relative;
}
.session-subheading{
  text-align: center;
  font-size: 1.5rem;
  color: #a97800;
}

.session-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.session-card {
  background-color: #fff8db;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(189, 135, 18, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(189, 135, 18, 0.2);
}

.session-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.session-heading {
  font-size: 1.3rem;
  color: #8c6500;
  font-family: 'Merriweather', serif;
  margin: 1rem 1rem 0.2rem;
}

.session-subheading {
  font-weight: 600;
  color: #a97800;
  margin: 0 1rem 0.5rem;
}

.session-description {
  color: #4a463a;
  font-size: 1rem;
  padding: 0 1rem 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .session-focus .session-title {
    font-size: 2rem;
  }
  .session-image {
    height: 180px;
  }
}


    /* Services Section */
    .charity-container {
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }
    .initiatives, .get-involved {
      flex: 1 1 400px;
      min-width: 280px;
    }
    .initiative-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 1.3rem;
    }
    .initiative-icon {
      background-color: #fff7cc;
      border-radius: 50%;
      width: 2.8rem;
      height: 2.8rem;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.7rem;
      color: #b79f2e;
      flex-shrink: 0;
    }
    .initiative-text {
      color: #493f14;
      font-size: 1rem;
      flex-grow: 1;
      line-height: 1.3;
    }
    .initiative-text strong {
      color: #a97800;
      font-weight: 600;
      user-select: none;
      display: block;
      margin-bottom: 0.15rem;
    }
    /* Get Involved box */
    .get-involved-box {
      background-color: #fff8db;
      border: 2px solid #e1d490;
      border-radius: 10px;
      padding: 1.8rem 2rem;
      font-size: 1rem;
      color: #5f5030;
      box-shadow: 0 1px 4px rgb(177 155 24 / 0.25);
    }
    .get-involved-box ul {
      padding-left: 1rem;
      margin-bottom: 1.5rem;
      color: #5a4611;
    }
    .get-involved-box ul li {
      margin-bottom: 0.7rem;
      line-height: 1.3;
      user-select: none;
    }
    .get-involved-box ul li strong {
      font-weight: 700;
      color: #8a6a00;
    }
    .btn-contact {
      background-color: #bd8712;
      border: none;
      padding: 0.85rem 2rem;
      font-weight: 600;
      border-radius: 8px;
      color: white;
      cursor: pointer;
      box-shadow: 0 4px 12px rgb(189 135 18 / 0.6);
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .btn-contact:hover, .btn-contact:focus {
      background-color: #a37011;
      outline: none;
    }

    /* Events Section */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
      gap: 2rem;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 3rem;
    }
    .event-card {
      background-color: #fff8db;
      border-radius: 12px;
      box-shadow: 0 2px 5px rgb(189 135 18 / 0.15);
      padding: 1.3rem 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: box-shadow 0.3s ease;
      cursor: pointer;
    }
    .event-card:hover, .event-card:focus {
      box-shadow: 0 6px 25px rgb(189 135 18 / 0.25);
      outline: none;
    }
    .event-date {
      background-color: #f7f2b2;
      color: #b48c05;
      font-weight: 700;
      padding: 0.7rem 0.8rem;
      border-radius: 6px;
      display: inline-block;
      text-align: center;
      min-width: 50px;
      user-select: none;
      font-size: 0.85rem;
    }
    .event-date span {
      display: block;
      font-weight: 800;
      font-size: 1.15rem;
      line-height: 1;
      letter-spacing: 0.05em;
      margin-top: 2px;
    }
    .event-title {
      font-family: 'Merriweather', serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: #a97800;
      margin: 0;
      user-select: none;
    }
    .event-desc {
      color: #4a463a;
      font-size: 0.95rem;
      margin-top: 0;
      margin-bottom: 6px;
    }
    .event-location {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      color: #605230;
      font-size: 0.85rem;
      user-select: none;
    }
    .event-location .material-icons {
      font-size: 1.25rem;
      color: #a97800;
    }
    .event-register {
      font-weight: 700;
      font-size: 0.9rem;
      margin-top: 0.6rem;
      color: #a97800;
      user-select: none;
    }
    #btn-view-events {
      display: block;
      background-color: #bd8712;
      border: none;
      padding: 1rem 3rem;
      font-weight: 700;
      border-radius: 10px;
      color: white;
      cursor: pointer;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 5px 20px rgb(189 135 18 / 0.7);
      transition: background-color 0.3s ease;
      user-select: none;
      width: 250px;
      text-align: center;
    }
    #btn-view-events:hover, #btn-view-events:focus {
      background-color: #a37011;
      outline: none;
    }

/* Video Section */
.video-section {
  text-align: center;
  padding: 2rem 1rem;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  aspect-ratio: 16 / 9; /* ✅ Responsive video frame ratio */
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-description {
  max-width: 800px;
  margin: 0 auto;
  color: #5f5030;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
  background-color: #ffa4a4;
  text-align: center;
  padding: 3rem 1rem;
}

.review-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.review-nav {
  background: transparent;
  border-radius: 50px;
  width: 45px;
  font-size: 2rem;
  color: black;
  cursor: pointer;
  font-weight: bolder;
  transition: color 0.3s ease;
  display: flex-box;
  justify-content: space-between;
}
.review-nav:hover {
  color: #000000;
  background-color: rgb(255, 230, 0);
}

.review-content {
  font-size: 1.05rem;
  color: #070707;
  max-width: 700px;
  line-height: 1.6;
  font-weight: bold;
}

.review-author {
  font-weight: 700;
  margin-top: 1rem;
  color: #000000;
  font-weight: bold;
}

.review-count {
  font-size: 0.9rem;
  color: #000000;
  font-weight: bold;
}

footer a:hover {
  color: #533c00;
  text-decoration: underline;
}

.faq-section {
  background-color: #fffaf3;
  padding: 4rem 1rem;
  text-align: center;
}

.faq-section .section-title {
  font-size: 2.2rem;
  color: #8c6500;
  margin-bottom: 0.5rem;
}

.faq-section .section-logo {
  width: 60px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.faq-intro {
  color: #5f5030;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ddb700;
  margin-bottom: 1rem;
}

.faq-question {
  background-color: transparent;
  color: #533c00;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem;
  width: 100%;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 0.8rem;
  color: #5f5030;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0.8rem;
}

.faq-question:after {
  content: '+';
  float: right;
  color: #8c6500;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
  content: '-';
  transform: rotate(180deg);
}


/* Keyframe Animations */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
     transform: translateX(0);
    }
}
@keyframes scaleUp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}