* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }

    body {
      line-height: 1.6;
      color: #333;
      background-color: #f4f4f9;
    }

    /* Navbar */
    .navbar {
      background-color: #2c3e50;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    .navbar .logo {
      color: #fff;
      font-size: 1.8rem;
      font-weight: bold;
      text-decoration: none;
      animation: slideUp 1s ease-in-out;
    }

    .menu-toggle {
      display: none;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 2rem;
      animation: slideUp 1s ease-in-out;
    }

    .navbar ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      transition: color 0.3s ease;
      animation: slideUp 1s ease-in-out;
    }

    .navbar ul li a:hover {
      color: #3498db;
    }
     
    .home {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  animation: fadeIn 1s ease-in;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('./spiritual-awakening-concept.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  margin-top: 77px;
}

.home-content h1 {
  font-size: 5rem; /* increased size */
  color: #ffffff; /* new plum brand color */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  animation: slideUp 1s ease-in-out;
  margin-top: -30px;
}


.home-content p {
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2rem;
  font-family: 'Arial', sans-serif;
  animation: slideUp 1s ease-in-out;
}

.home .btn {
    background-color: #2c3e50; /* dark slate blue */
    color: #fff;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    margin-bottom: 4rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-in-out;
  }
  
  .home .btn:hover {
    background-color: #3498db; /* soft vibrant teal */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fade In Animation */
.animate-fade {
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

.animate-fade-delay {
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

    /* Services Section */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f4f7f6;
      color: #1a3c34;
    }

    .services {
      padding: 60px 20px;
      background-color: #f9f9f9;
      text-align: center;
      
    }

    .services h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      position: relative;
    }

    .services h2::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #16a085;
      margin: 10px auto 30px;
    }
 .service-section{
  display: flex;
  justify-content: center;
 }
    .service-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      width: 70%;
     

    }

    .service-card {
      background-color: #fff;
      width: 100%;
      max-width: 280px;
      border-radius: 10px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      text-align: left;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease-out;
      transition-delay: var(--delay, 0s);
    }

    .service-card.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .service-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      transition: opacity 0.3s ease;
    }

    .service-card:hover img {
      opacity: 0.9;
    }

    .service-text {
      padding: 15px;
    }

    .service-text h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .service-text p {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #555;
    }

    .duration {
      margin-top: 10px;
      font-size: 0.9rem;
      color: #16a085;
      font-weight: 500;
    }

/* Mobile: default (1 per row) */
.service-card {
  flex: 0 0 100%;
}

/* Tablet: 2 per row */
@media (min-width: 600px) and (max-width: 899px) {
  .service-card {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Desktop: 4 per row */
@media (min-width: 900px) {
  .service-card {
    flex: 0 0 calc(25% - 20px);
  }
}


    .hidden-service {
      display: none;
    }
    
    /* View More button style */
    .view-more-container {
      margin-top: 30px;
      text-align: center;
    }
    
    #viewMoreBtn {
      padding: 0.7rem 1.5rem;
      font-size: 1rem;
      color: #fff;
      background-color: #16a085;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      transition: background 0.3s ease;
    }
    
    #viewMoreBtn:hover {
      background-color: #12876f;
    }
    
    

    /* cta section */

    .cta-section {
        background-color: #eef3ea; /* light mint green like the image */
        padding: 4rem 1rem;
        text-align: center;
      }
      
      .cta-box {
        background-color: #ffffff;
        max-width: 1000px;
        margin: 0 auto;
        border-radius: 20px;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      }
      
      .cta-icon {
        background-color: #fbe9e7; /* soft red circle */
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #e74c3c;
        font-size: 1.5rem;
        flex-shrink: 0;
      }
      
      .cta-text h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
      }
      
      .cta-text p {
        margin: 0.3rem 0 0;
        font-size: 0.95rem;
        color: #555;
      }
      
      .cta-button .cta-btn {
        padding: 0.6rem 1.6rem;
        border: 2px solid #e74c3c;
        border-radius: 30px;
        color: #e74c3c;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
      }
      
      .cta-button .cta-btn:hover {
        background-color: #e74c3c;
        color: #fff;
      }
      
      @media (max-width: 768px) {
        .cta-box {
          flex-direction: column;
          text-align: center;
          opacity: 0;
          transform: translateY(30px);
          transition: all 0.8s ease-out;
        }
      
        .cta-button {
          margin-top: 1rem;
        }
      }

      .cta-box.animate-in {
        opacity: 1;
        transform: translateY(0);
      }

    /* Why Taqvish Section */
    .why-taqvish {
      padding: 5rem 2rem;
      /* background: linear-gradient(180deg, #6a9ca8 0%, #6d889e 100%); */
      background-color: #2980b9;
      color: #ffffff;
      text-align: center;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-out;
    }

     .why-taqvish.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    .why-taqvish h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }

    .why-taqvish p {
      max-width: 800px;
      margin: 0 auto 2rem;
      font-size: 1.2rem;
    }

    /* Specialties Section */
    .specialties {
      padding: 5rem 2rem;
      text-align: center;
      background-color: #fff;
    }

    .specialties h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }

    .specialty-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .specialty-list li {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    /* Contact Section */
    .contact {
      padding: 5rem 2rem;
      background-color: #f4f4f9;
      text-align: center;
    }

    .contact h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }

    .contact form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .contact.visible h2,
    .contact.visible form {
     opacity: 1;
     transform: translateY(0);
}

    .contact input,
    .contact textarea {
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }

    .contact button {
      background-color: #3498db;
      color: #fff;
      padding: 0.8rem;
      border: none;
      border-radius: 5px;
      font-size: 1.2rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .contact button:hover {
      background-color: #2980b9;
    }

    .privacy-note {
      font-size: 0.9rem;
      color: #555;
      margin-top: 10px;
    }
    

    /* Animation keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial hidden state */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When visible */
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

    
    /* Footer */
    /* .footer {
      background-color: #2c3e50;
      color: #fff;
      text-align: center;
      padding: 2rem;
    }

    .footer p {
      font-size: 1rem;
    } */

    .footer {
      background-color: #2c3e50;
      color: #fff;
      text-align: center;
      padding: 2rem;
      animation: fadeIn 1s ease-in;
      transform: translateY(50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .footer.animate-in {
      opacity: 1;
      transform: translateY(0);
    }
    
    .footer-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .footer a {
      color: #1abc9c;
      text-decoration: none;
      margin: 0 5px;
    }
    
    .footer a:hover {
      text-decoration: underline;
    }
    
    .footer-info p,
    .footer-social p {
      margin: 0.5rem 0;
      font-size: 0.95rem;
    }
    
    .footer p {
      font-size: 1rem;
      margin: 0.5rem 0;
    }
    
    /* ✅ NEW: Social icon container */
    .footer-social {
      margin-top: 1rem;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      align-items: center;
    }
    
    /* ✅ NEW: Social icons styling */
    .footer-social img {
      width: 30px;
      height: 30px;
      transition: transform 0.3s ease;
    }
    
    .footer-social img:hover {
      transform: scale(1.2);
    }
    
    /* ✅ NEW: Logo styling */
    .footer-logo {
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }
    
    .slide-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .slide-up.animate-in {
      opacity: 1;
      transform: translateY(0);
    }
      

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes slideUp {
      from {
        transform: translateY(50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .navbar {
        flex-wrap: wrap;
        margin-bottom: 20px;
      }

      .navbar ul {
        flex-direction: column;
        width: 100%;
        display: none;
        padding-top: 1rem;
      }

      .navbar ul.show {
        display: flex;
      }

      .navbar ul li {
        width: 100%;
        padding: 0.5rem 0;
      }

      .navbar ul li a {
        font-size: 1rem;
        padding-left: 0.5rem;
      }

      .home h1 {
        font-size: 2rem;
      }

      .home .btn {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
      }

      .services h2,
      .why-taqvish h2,
      .specialties h2,
      .contact h2 {
        font-size: 2rem;
      }

      .why-taqvish p,
      .specialty-list li {
        font-size: 1rem;
      }

      .contact form {
        width: 100%;
        padding: 0 1rem;
      }
    }

    @media (max-width: 480px) {
      .home h1 {
        font-size: 80px;
      }

      .navbar .logo {
        font-size: 1.5rem;
      }

      .navbar ul li a {
        font-size: 0.9rem;
      }

      .contact input,
      .contact textarea {
        font-size: 0.9rem;
      }

      .contact button {
        font-size: 1rem;
      }

      .specialty-list li {
        font-size: 1rem;
      }
    }

    /* Optional: Ensure no shrinking on smaller devices */
    @media (max-width: 768px) {
      .home h1 {
        font-size: 3rem; /* Same size */
      }
    }

    @media (max-width: 480px) {
      .home h1 {
        font-size: 3rem; /* Same size */
      }
    }

    .whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: inline-block;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 60px;   /* adjust size as needed */
  height: auto;
  display: block;
  border-radius: 50%;
}


