/* Base Styles */

*, *::before, *::after {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
iframe {
  max-width: 100%;
  height: auto;
}
.logo img {
  height: 40px;
  width: auto;
}
.responsive-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1cm;
  background-color: black;
}
.responsive-video-wrapper iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
.banner {
  background-color: #00bf63;
  color: white;
  text-align: center;
  padding: 10px;
  position: relative;
}
.banner button {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
.navbar {
  background: black;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar a {
  color: white;
}
.navbar .btn {
  background: #00bf63;
  padding: 8px 16px;
  font-weight: bold;
}
.hero {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
  text-align: center;
}
.hero .btn {
  background: #00bf63;
  color: white;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
}
.video-section {
  padding: 20px;
}
.info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 60px 40px;
  background: #fff;
}
.info-boxes .box {
  flex: 1 1 calc(33.33% - 20px);
  min-width: 280px;
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 191, 99, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-boxes .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 191, 99, 0.25);
}
.info-boxes .box h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
}
.info-boxes .box p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}
.products-section {
  background: black;
  color: white;
  padding: 40px 20px;
}
.course-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.course-card {
  background: white;
  color: black;
  padding: 10px;
  width: 30%;
  min-width: 280px;
}
.course-card button {
  background: #00bf63;
  color: white;
  font-weight: bold;
  padding: 8px 16px;
  cursor: pointer;
}
.faq-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
}

.testimonial-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background: white;
  padding: 20px 25px;
  width: 30%;
  min-width: 280px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 191, 99, 0.15);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 191, 99, 0.2);
}

.testimonial-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.testimonial-content .text {
  flex: 1;
}

.testimonial-content strong {
  display: block;
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 5px;
}

.testimonial-content p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.testimonial-content img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #00bf63;
}


.faq-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 191, 99, 0.15);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: #000;
  box-sizing: border-box;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 10px;
}

.faq-question .arrow {
  font-size: 1rem;
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 25px 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.about-section {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
  background: #fff;
  align-items: center;
}
.about-section img {
  width: 200px;
}
.faq-section {
  background: #f4f4f4;
  padding: 40px 20px;
}
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 191, 99, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 30px; /* 👈 adds more space on left & right */
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: #000;
  box-sizing: border-box;
}

.host-section {
  background-color: #000;
  padding: 80px 20px;
  color: #fff;
}

.host-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00bf63;
  margin-bottom: 50px;
}

.host-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.host-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.host-image img {
  max-width: 100%;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 255, 150, 0.2);
}

.host-details {
  flex: 1;
  color: #fff;
}

.host-details ul {
  list-style: none;
  padding-left: 0;
}

.host-details li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 25px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #ddd;
}

.host-details li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #00bf63;
  font-size: 1rem;
  top: 3px;
}

.host-details strong {
  color: #fff;
  font-weight: 700;
}

.contact-flexbox {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
  flex-wrap: wrap;
}

.contact-form-box {
  flex: 1 1 45%;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 191, 99, 0.1);
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
}

.contact-form-box button {
  background-color: #00bf63;
  color: white;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-box button:hover {
  background-color: #009f53;
}

.social-box {
  flex: 1 1 45%;
  background: #000;
  color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  background-image: url('images/social-bg.png'); /* optional background image */
  background-size: cover;
  background-position: center;
}

.social-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.social-box p {
  font-size: 16px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .host-content {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }

  .host-title {
    font-size: 2rem;
  }

  .host-details li {
    font-size: 1.1rem;
  }

  .host-image img {
    max-height: none;
    width: 90%;
  }
}

.contact-section {
  padding: 40px 20px;
}
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px;
}
/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}
.popup-content input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.popup-content button {
  padding: 12px 20px;
  margin-top: 10px;
  background-color: #00bf63;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .navbar ul {
    flex-direction: row;
    gap: 10px;
  }
  .navbar ul li:not(:last-child) {
    display: none;
  }
  .navbar ul li:last-child {
    margin-left: auto;
  }
  .info-boxes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .info-boxes .box,
  .course-card,
  .testimonial {
    width: 100%;
  }
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-section img {
    width: 80%;
    max-width: 250px;
  }
  .course-grid,
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  .faq-item button {
    font-size: 16px;
  }
  .testimonial-grid {
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.testimonial {
  width: 100%;
}

  body {
    font-size: 16px;
  }
  iframe {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .contact-flexbox {
    flex-direction: column;
    padding: 20px;
  }

  .contact-form-box,
  .social-box {
    flex: 1 1 100%;
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .faq-question {
    padding: 20px 16px;
  }
}
