.services-section {
  padding: 60px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #e0e0e0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  width: 320px;
  color: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
  text-align: center;
}


.service-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}


/* Responsive for small screens */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }

  .services-section h2 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}


/*  gallery */
.gallery-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
  color: #000;
}

.gallery-section h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.gallery-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  justify-content: center;
  align-items: center;
  padding: 40px;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
}
  

/* testmional */


.review-section {
  background: #111;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Georgia', serif;
  overflow: hidden;
}

.review-section .container {
  max-width: 800px;
  margin: auto;
}

.slider {
  display: flex;
  flex-direction: row;
  gap: 60px;
  transition: transform 0.5s ease-in-out;
  animation: slide 60s infinite linear;
  width: max-content;
}

.review {
  min-width: 100%;
  text-align: center;
}

.stars {
  font-size: 24px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.text {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.author {
  font-weight: bold;
  font-size: 18px;
  color: #ddd;
}

/* Auto slide animation */
@keyframes slide {
  0%   { transform: translateX(0); }
  10%  { transform: translateX(0); }
  20%  { transform: translateX(-100%); }
  30%  { transform: translateX(-100%); }
  40%  { transform: translateX(-200%); }
  50%  { transform: translateX(-200%); }
  60%  { transform: translateX(-300%); }
  70%  { transform: translateX(-300%); }
  80%  { transform: translateX(-400%); }
  90%  { transform: translateX(-400%); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .text {
    font-size: 18px;
  }
  .review {
    min-width: 100%;
  }
}





.testimonial-container {
      display: flex;
      margin: 0;
      font-family: 'Georgia', serif;
      background: url('https://images.unsplash.com/photo-1588776814546-ec7e4a358429?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
      color: rgb(7, 7, 7);
      justify-content: center;
      align-items: center;
      height: 50vh;
      padding: rem;
      background: #ffff;
      flex-direction: column;
      text-align: center;
       padding-bottom: 80px;
    }

    .testimonial {
      max-width: 800px;
      margin: 0 auto;
      transition: opacity 1s ease;
      opacity: 0;
      position: absolute;
    }

    .testimonial.active {
      opacity: 1;
      position: relative;
    }

    .stars {
      color: #060606;
      font-size: 1.5rem;
    }

    .quote {
      font-size: 1.3rem;
      margin: 1rem 0;
    }

    .user-info {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1rem;
    }

    .user-info img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 1rem;
      object-fit: cover;
      border: 2px solid rgb(5, 5, 5);
    }

    @media (max-width: 600px) {
      .quote {
        font-size: 1rem;
      }

      .testimonial-container {
        padding: 1rem;
      }
    }



   /* Example of section above footer */
    .previous-section {
      padding: 100px 20px;
      background-color: #070707;
      text-align: center;
    }

    footer {
      background-color: #7E22CE; /* Midnight Blue */
      color: white;
      padding: 50px 20px 30px;
      margin-top: 80px; /* Top space from previous section */
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .footer-section {
      flex: 1;
      min-width: 260px;
    }

    .footer-section h2,
    .footer-section h3 {
      margin-bottom: 10px;
      font-weight: bold;
    }

    .footer-section p {
      color: #080808;
      margin: 8px 0;
    }

    .social-icons a {
      margin-right: 10px;
      font-size: 1.5rem;
      color: white;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #87CEFA;
    }

    .email-input {
      padding: 12px;
      border-radius: 10px;
      border: none;
      width: 100%;
      max-width: 400px;
      margin: 10px 0;
      font-size: 1rem;
    }

    .submit-button {
      background-color: #222;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .submit-button:hover {
      background-color: #444;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 0.9rem;
      color: #bbb;
    }

    .footer-bottom a {
      color: #ccc;
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .footer-section {
        max-width: 100%;
      }

      .email-input {
        width: 100%;
      }
    }


    /* SERVICES PAGE */


     .services-section {
      padding: 60px 20px;
      max: width 1500PX;
      margin: auto;
      background: #fff;
    }

    .services-section h1 {
      text-align: center;
      font-size: 3rem;
      margin-bottom: 15px;
    }

    .services-section p.description {
      text-align: center;
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .services-grid {
      display: flex;
      gap: 40px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }

    .services-image {
      flex: 1;
      min-width: 300px;
    }

    .services-image img {
      width: 100%;
      border-radius: 30px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .services-list {
      flex: 1;
      min-width: 300px;
    }

    .service-item {
      margin-bottom: 30px;
    }

    .service-item h3 {
      margin: 0;
      font-size: 1.3rem;
      font-weight: bold;
    }

    .service-item p {
      margin-top: 8px;
      font-size: 1rem;
      color: #555;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .services-grid {
        flex-direction: column;
      }

      .services-section h1 {
        font-size: 2.2rem;
      }

      .services-section p.description {
        font-size: 1rem;
      }
    }



    /* blog page */


    #blogHeader {
  text-align: center;
  padding: 60px 20px 20px;
  border-bottom: 1px solid #ddd;
  
}


    .main-content {
      padding: 40px 20px;
      margin: 15 auto;
      
    }

    .blog-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .blog-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
    }

    .blog-content h2 {
      margin: 0 0 10px;
      font-size: 1.3rem;
      color: #222;
    }

    .blog-content p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }

    .blog-footer {
      padding: 0 20px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: #999;
    }

    .blog-footer a {
      text-decoration: none;
      color: #4b0082;
      font-weight: bold;
    }

    @media (max-width: 480px) {
      header h1 {
        font-size: 2rem;
      }

      .blog-content h2 {
        font-size: 1.1rem;
      }
    }

    /* healing */

     .healing-section {
      text-align: center;
      padding: 50px 20px;
      background-color: white;
      color: #000;
    }

    .healing-section h1 {
      font-size: 48px;
      margin-bottom: 10px;
    }

    .healing-section p {
      font-size: 18px;
      color: #555;
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .image-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 0 20px;
    }

    .image-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    .image-grid .grid-item {
      flex: 1 1 300px;
      max-width: 300px;
      overflow: hidden;
    }

    /* Larger center image */
    .image-grid .center-item {
      flex: 2 1 600px;
      max-width: 600px;
    }

    @media (max-width: 768px) {
      .healing-section h1 {
        font-size: 36px;
      }

      .image-grid {
        flex-direction: column;
        align-items: center;
      }

      .image-grid .grid-item,
      .image-grid .center-item {
        max-width: 100%;
        flex: 1 1 100%;
      }
    }



     .section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 50px 20px;
      background-color: #fff;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .content {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      width: 100%;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .text {
      flex: 1;
      max-width: 50%;
      padding: 20px;
    }

    .text h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .text p {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.6;
    }

    .button {
      display: inline-block;
      margin-top: 30px;
      padding: 15px 25px;
      background-color: #4CAF50;
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      border-radius: 30px;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .button:hover {
      background-color: #45a049;
    }

    .images {
      flex: 1;
      max-width: 45%;
      display: flex;
      gap: 15px;
      flex-direction: column;
    }

    .images img {
      width: 100%;
      border-radius: 15px;
      object-fit: cover;
      height: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .section {
        flex-direction: column;
      }

      .text {
        max-width: 100%;
        margin-bottom: 30px;
      }

      .images {
        max-width: 100%;
      }

      .images img {
        width: 100%;
      }
    }





    .contact-section {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 60px 30px;
      flex-wrap: wrap;
      animation: fadeIn 1.5s ease-in;
      background-color: #fff;
      color: #000;
    }

    .contact-left,
    .contact-right {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .contact-left h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .contact-left p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
    }

    .contact-left strong {
      display: block;
      margin-top: 15px;
      font-size: 1rem;
    }

    .contact-left span {
      color: #777;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    form input,
    form textarea {
      padding: 15px;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 10px;
      font-family: inherit;
      width: 100%;
    }

    form textarea {
      resize: vertical;
      min-height: 120px;
    }

    form button {
      padding: 15px 25px;
      background-color: #222;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    form button:hover {
      background-color: #444;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .contact-left,
      .contact-right {
        max-width: 100%;
      }

      form {
        align-items: stretch;
      }
    }



    /*================= about us page==================== */


.sacred-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeIn 1.4s ease-in;
  background-color: #fff;
  color: #000;
  margin-top: 50px;
}

.sacred-text {
  flex: 1;
  min-width: 280px;
}

.sacred-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sacred-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 40px;
  max-width: 600px;
}

.stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-item {
  font-size: 1rem;
}

.stat-item h2 {
  font-size: 2.5rem;
  margin: 0;
  color: #111;
}

.stat-item span {
  color: #555;
}

.sacred-image {
  flex: 1;
  min-width: 280px;
}

.sacred-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Full mobile optimization */
@media (max-width: 768px) {
  .sacred-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .sacred-text h1 {
    font-size: 2rem;
  }

  .sacred-text p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .stats {
    justify-content: center;
    gap: 30px;
  }

  .stat-item h2 {
    font-size: 2rem;
  }

  .sacred-image {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .sacred-text h1 {
    font-size: 1.8rem;
  }

  .sacred-text p {
    font-size: 0.95rem;
  }

  .stat-item h2 {
    font-size: 1.6rem;
  }

  .stat-item span {
    font-size: 0.85rem;
  }
}
