 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #fffdf7;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    header {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                  url('../images/temple.jpeg') no-repeat center/cover;
      height: 80vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      animation: fadeIn 2s ease-in-out;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 15px;
    }

    header p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
    }

    section {
      padding: 60px 10%;
    }

    .about {
      /* display: flex; */
      /* align-items: center; */
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .story{
      display: flex;
      /* align-items: center; */
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .mid{
      text-align: center;
      font-weight: 700;
    }

    .temple{
      border-radius: 15px !important;
      width: 100% !important;
    }

    .about img {
      /* width: 100%; */
      max-width: 400px;
      /* border-radius: 15px; */
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      transform: translateY(40px);
      opacity: 0;
      transition: all 1s ease;
    }

    .about-text {
      flex: 1;
      transform: translateY(40px);
      opacity: 0;
      transition: all 1s ease;
    }
    .Mission{
        cursor: pointer;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: scale(1);
  opacity: 1;
  transition: all 0.4s ease;
  border-radius: 15px !important;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

    .card h3 {
      margin-bottom: 15px;
      color: #b35c00;
    }

    .team {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .team-member {
      text-align: center;
      transform: translateY(40px);
      opacity: 0;
      transition: all 1s ease;
    }

    .team-member img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 4px solid #f2d28b;
    }

    .cta {
      background: #f8e5b7;
      padding: 60px 20px;
      text-align: center;
      border-radius: 20px;
      margin: 40px 10%;
      transform: scale(0.9);
      opacity: 0;
      transition: all 1s ease;
    }

    .cta h2 {
      margin-bottom: 15px;
    }

    .cta button {
      background: #b35c00;
      color: #fff;
      border: none;
      padding: 12px 25px;
      font-size: 1rem;
      border-radius: 25px;
      cursor: pointer;
      transition: 0.3s;
    }

    .cta button:hover {
      background: #8a4600;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .show {
      opacity: 1 !important;
      transform: none !important;
    }