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

body {
    font-family: Cambria, Georgia, serif;
    line-height: 1.6;
  color: #333;
  background-color: #fff;
}

header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s ease-in-out, transform 15s ease-in-out;
}

.slider img.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  max-width: 700px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
    display: inline-flex;               /* 💡 Switch to flex for perfect centering */
    align-items: center;               /* vertically center text */
    justify-content: center;           /* horizontally center text */
    background: #B57EDC;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease;
    min-height: 56px;
    box-sizing: border-box;
  }
  .btn:hover {
    background: #A152C0;
  }
  .btn, .btn:visited {
    display: inline-block;
  }
  
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.feature {
  max-width: 300px;
}

.feature img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.features .feature img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}



.about {
    background-color: #f0f0f5;
    padding: 4rem 2rem;
  }
  
  .about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .about-image img {
    width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .about-text {
    flex: 1;
    min-width: 280px;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #5a5b9f;
  }
  
  .about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: left; 
  }




  .offer-icon {
    height: 22px;
    vertical-align: middle;
    margin-right: 0.5rem;
  }
  


.pricing,
.cta {
  padding: 4rem 2rem;
  text-align: center;
}

.pricing h2,
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing p,
.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch; /* makes all cards in a row the same height */
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }

.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 280px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
  }

  .pricing-card .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card.featured {
  border: 2px solid #5a5b9f;
  box-shadow: 0 6px 20px rgba(90, 91, 159, 0.2);
}

.badge {
  display: inline-block;
  background: #5a5b9f;
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.2rem;
  color: #5a5b9f;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.price-display {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin: 0.5rem 0 1rem;
  line-height: 1;
}

.pricing-card p {
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: left;
  color: gray;
  margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    text-align: left;
    flex-grow: 1; /* pushes the button to the bottom */
  }

.pricing-card ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.4rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5a5b9f;
  font-weight: 700;
}

.btn, .cta-button {
    display: inline-block;
    background: #5a5b9f;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 400;
    transition: background 0.3s ease;
  }
  
  .btn:hover, .cta-button:hover {
    background: #4e4e7a;
  }

.pricing-card button {
    background: #5a5b9f;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    align-self: center;
    margin-top: auto;
  }

.pricing-card button:hover {
  background: #9c5ed3;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
}

.cta {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f5e9ff, #e3d3fa); /* subtle lavender gradient */
  }



  .testimonials {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
  }
  .testimonials h2 {
    font-size: 2rem;
    color: #5a5b9f;
    margin-bottom: 2rem;
  }
  .testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .testimonial {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
  .testimonial.active {
    opacity: 1;
    position: relative;
  }
  .testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
  }
  .testimonial h4 {
    font-weight: bold;
    color: #444;
  }
  





@media (max-width: 820px) {
    .pricing-cards {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
  
    .hero-content {
        padding: 1.5rem;
      }

    .hero-content h1 {
      font-size: 2rem; /* Adjust header size for smaller screens */
    }
  
    .hero-content p {
      font-size: 1rem; /* Adjust paragraph size */
    }
  
    .about {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    
    .about-image img {
        width: 200px;
      }


      .about img {
        width: 70%;
        max-width: 300px;
        height: auto;
        margin: 0 auto 1.5rem auto;
        display: block;
      }

      .about-text {
        text-align: justify;
        max-width: 90%;
        margin: 0 auto;
        padding: 0 1rem;
      }

      .about-text h2 {
        text-align: center;
      }

    .btn {
      padding: 0.6rem 1.5rem; /* Adjust button padding for smaller screens */
      font-size: 0.9rem; /* Adjust button text size */
    }
  
    .pricing-card h3 {
      font-size: 1.2rem; /* Adjust the title size for better fit */
    }
  
    .pricing-card ul {
      font-size: 0.9rem; /* Reduce font size in the list */
    }
  
    .pricing, .cta {
        padding: 2rem 1rem;
      }

    .cta h2 {
      font-size: 1.5rem; /* Adjust CTA title for small screens */
    }
  
    .cta p {
      font-size: 1rem; /* Adjust CTA paragraph size */
    }

.btn, .cta-button {
  display: inline-block;
  background: #5a5b9f;
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover, .cta-button:hover {
  background: #9c5ed3;
}

    
  }

  .gallery {
  padding: 4rem 2rem;
  background-color: #f0f0f5;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  color: #5a5b9f;
  margin-bottom: 1rem;
}

.gallery p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mosaic img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.faq {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  color: #5a5b9f;
  margin-bottom: 2rem;
}

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

.faq-list details {
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

.faq-list details:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-list summary {
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 0.5rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #5a5b9f;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
