/* Import a clean Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
background-color: #13130c;
  color: #1f2937;
  line-height: 1.6;
}

/* Container for sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.header {
  background-color: #13130c;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 10px 40px;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-left img.logo {
  height: 70px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  margin-left: auto;
  align-items: center;
}

.menu-center{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    gap: 10px;
    margin-left: 30px;
}

.menu-link a {
  text-decoration: none;
  color: #cab24f;
  font-weight: 600;
  padding: 8px 12px;
  transition: color 0.3s;
}

.menu-link a:hover {
  color: #6b28a2;
}






.btn-book-free-session {
  padding: 10px 18px;
  background-color: #6b28a2;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-book-free-session:hover {
  background-color: #cab24f;
}
.btn-book-free-session2 {
    background-color: #13130c;
    color: white;
    font-weight: 600;
    font-size: large;
    border: none;
    border-radius: 6px;
    padding: 20px 40px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-book-free-session2:hover {
  background-color: #cab24f;
}




/* Glide Slideshow */
.glide {
  margin: 0;
  
}

.glide__slide img {
  width: 100%;
  display: flex;
  border-radius: 8px;
    background-color: #ddb81c70;

}

/* Intro Section */
.intro {
  padding: 60px 40px;
  text-align: center;
  background-color: #ddb81c70;
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1f2937;
}

.intro p {
  font-size: 1.125rem;
}

/* Programs Section */
.programs {
  padding: 60px 40px;
background: linear-gradient(rgba(194, 167, 55, 0.6), rgba(194, 167, 55, 0.85)),url(images/bg-ready-to-get-started.png);  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.programs h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1f2937;
}

.program-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.program {
  flex: 1 1 300px;
  padding: 20px;
  background-color: transparent;
  transition: transform 0.3s;
}

.program:hover {
  transform: translateY(-5px);
}

.program h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #374151;
}

.program p {
  font-size: 1rem;
  color: #1f2937;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 40px;
  background-color: #ffffff;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1f2937;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.testimonial {
  max-width: 800px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Call to Action Section */
.cta {
  padding: 60px 40px;
  background-color: #6b28a2;
  text-align: center;
  color: #ffffff;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.125rem;
  margin-bottom: 30px;
}

/* FAQ Section */
.faq {
  padding: 60px 40px;
  background-color: #6b28a2;
  text-align: center;
  color:white;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 60px 40px;
  background-color: #f9fafb;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1f2937;
}

.contact p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
  height: 150px;
}

/* Footer Styling */
.footer {
  background-color: #13130c;
  color: #f9fafb;
  text-align: center;
  padding: 30px 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-top {
    flex-direction: column;
    padding: 10px 20px;
  }
  
  .menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .intro, .programs, .testimonials, .cta, .faq, .contact {
    padding: 40px 20px;
  }
  
  .intro h1 {
    font-size: 2rem;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
}
