@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #fff;
  color: #202020;
}

li,
a {
  font-weight: 500;
  font-size: 1rem;
  color: #202020;
  text-decoration: none;
}

button {
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
}

.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav-links li a {
  transition: all 0.3s ease 0s;
}

.nav-links li a:hover {
  color: #e92f05;
}

button {
  padding: 9px 25px;
  background-color: #e92f05;
  border: 2px solid #e92f05;
  border-radius: 45px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

button:hover {
  background-color: #202020;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../assets/img/imag.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.hero .content {
  padding: 1.4rem 7%;
  max-width: 60rem;
}

.hero .content h1 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.4;
  color: #202020;
}

.hero .content h1 span {
  color: #e92f05;
  background: linear-gradient(to right, #e92f05, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .content p {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 100;
}

.hero .content .btn-trend {
  padding: 0.5rem 1.2rem;
  margin-right: 4px;
  border: 2px solid #e92f05;
  color: #e92f05;
  background-color: transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero .content .btn-trend:hover {
  background-color: #f44300;
  color: white;
}

.hero .content .btn-cta {
  padding: 0.5rem 1.2rem;
  margin-right: 4px;
  border: 2px solid #e92f05;
  color: #fff;
  background-color: #e92f05;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero .content .btn-cta:hover {
  background-color: #fff;
  color: #e92f05;
}

/* SECTION 2 */
.section-2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #fff;
  padding: 4rem 1rem;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-2-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.section-2-text {
  flex: 1;
}

.section-2-text h1 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.4;
  color: #e92f05;
  background: linear-gradient(to right, #e92f05, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-2-text .highlight {
  color: #202020;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: flex-start;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item h4 {
  margin-bottom: 0.3rem;
  color: #333;
}
.feature-item p {
  color: #5b5b5b;
  font-size: 0.95rem;
}

.section-2-image-wrapper {
  flex: 1;
  position: relative;
}

.image-stack {
  position: relative;
  max-width: 400px;
  margin: auto;
}
.main-img {
  width: 100%;
  border-radius: 10px;
  z-index: 3;
  position: relative;
}

.shadow-card.orange-1,
.shadow-card.orange-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transform: rotate(-2deg);
  z-index: 1;
  background: rgba(241, 103, 34, 0.2);
}
.shadow-card.orange-1 {
  top: 10px;
  left: 10px;
  background-color: #f16722;
  opacity: 0.4;
}
.shadow-card.orange-2 {
  top: 20px;
  left: 20px;
  background-color: #f16722;
  opacity: 0.2;
}

.card-stats {
  position: absolute;
  top: 25%;
  left: 5%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  z-index: 4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 80%;
}
.stat h3 {
  color: #e22e00;
  font-size: 1.3rem;
  margin: 0;
}
.stat h3 span {
  color: #e92f05;
  background: linear-gradient(to right, #e92f05, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: normal;
  font-size: 1rem;
}
.stat p {
  margin: 0.2rem 0 1rem;
  font-size: 0.85rem;
  color: #555;
}
.line {
  border-top: 1px solid #ddd;
  margin: 0.5rem 0;
}

/* SECTION 3 */
.section-3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  padding: 4rem 1rem;
}

.section-3-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.testimonial-imgs {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  object-fit: cover;
}
.testimonial-imgs img {
  max-width: auto;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  flex: 1;
  max-width: 600px;
}

.testimonial-content h1 {
  font-size: 3em;
  font-weight: 700;
  color: #202020;
  margin-bottom: 1rem;
}
.testimonial-content .highlight {
  color: #e92f05;
  background: linear-gradient(to right, #e92f05, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.author {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #f44300;
}

.author span {
  font-weight: 400;
  color: #555;
}

.quote {
  color: #444;
  font-size: 1rem;
  margin: 1rem 0 2rem;
  line-height: 1.6;
}

.dot-line {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
}
.dot {
  width: 16px;
  height: 6px;
  background: #eee;
  border-radius: 5px;
}
.dot.active {
  background: #e92f05;
  width: 30px;
}

.logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.logo-list img {
  height: 25px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-list img:hover {
  transform: scale(1.1);
}

/* SECTION 4 */
.section-4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 4rem 1rem;
  background-color: #fff;
}

.section-4-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-4-header .member-count {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.4;
  color: #e92f05;
  background: linear-gradient(to right, #e92f05, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-4-header h1 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0.5rem 0;
  color: #202020;
}
.section-4-header h1 span {
  color: #e92f05;
  background: linear-gradient(to right, #e92f05, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-4-header .subtext {
  max-width: 600px;
  margin: auto;
  color: #5b5b5b;
}

.program-filters {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  border: 1px solid #e92f05;
  background: transparent;
  color: #e92f05;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background-color: #e92f05;
  color: #fff;
}

/* Course Cards */
.course-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.course-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}
.course-card:hover {
  transform: translateY(-5px);
}
.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.card-body {
  padding: 1rem;
}
.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.rating {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}
.description {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.8rem;
}
.tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tag {
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}
.tag.green {
  background: #d9fdd3;
  color: #2e7d32;
}
.tag.blue {
  background: #e1f0ff;
  color: #1565c0;
}

.author-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.name {
  font-weight: 600;
  margin: 0;
}
.role {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}
.price {
  font-weight: bold;
  font-size: 1rem;
}
.price span {
  font-weight: normal;
  font-size: 0.8rem;
  color: #5b5b5b;
}

.explore-btn {
  text-align: center;
  margin-top: 3rem;
}

.btn-orange-outline {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid #e92f05;
  color: #e92f05;
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-orange-outline:hover {
  background: #e92f05;
  color: white;
}

/* SECTION 5 */
.section-5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}

.section-5-header h1 {
  margin: 0;
  font-size: 3em;
  color: #202020;
}
.section-5-header .highlight {
  color: #e92f05;
  background: linear-gradient(to right, #e92f05, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 2rem;
}

.section-5-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Left feature */
.feature-list {
  flex: 1;
  max-width: 220px;
  text-align: left;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon-circle {
  background: #ffe8e0;
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-circle img {
  width: 24px;
  height: 24px;
}
.feature-item p {
  font-weight: 500;
  color: #333;
}
.feature-list hr {
  margin: 1.2rem 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Middle image */
.community-image {
  flex: 1;
  max-width: 500px;
}
.community-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Right content */
.join-box {
  flex: 1;
  max-width: 300px;
  text-align: left;
}
.join-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.join-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
}
.btn-orange {
  display: inline-block;
  background: #e92f05;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border: 2px solid #e92f05;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-orange:hover {
  background-color: white;
  color: #f44300;
}

/* SECTION 6 */
.section-6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 4rem 1rem;
  background: radial-gradient(circle, #cccccc 0%, #ffffff 100%);
}

.section-6-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-6-header h1 {
  color: #e92f05;
  background: linear-gradient(to right, #e92f05, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3em;
  font-weight: 700;
}
.section-6-header h1 span {
  color: #e92f05;
}
.section-6-header h2 {
  font-size: 3em;
  font-weight: 700;
  color: #202020;
  margin: 0.2rem 0;
}
.section-6-header p {
  max-width: 650px;
  margin: 0 auto;
  color: #5b5b5b;
  font-size: 0.95rem;
}

/* Cards */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-content {
  padding: 1rem;
}
.blog-content h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.blog-content p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 1rem;
}
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-author img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-author span {
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-outline-orange {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid #e92f05;
  color: #e92f05;
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline-orange:hover {
  background: #e92f05;
  color: white;
}

.explore-blog {
  text-align: center;
  margin-top: 3rem;
}

/* FAQ */
.faq-section {
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 4rem 1rem;
  background: radial-gradient(circle, #cccccc 0%, #ffffff 100%);
}

.faq-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left title */
.faq-left {
  flex: 1 1 300px;
}
.faq-left h1 {
  font-size: 3em;
  font-weight: 700;
  color: #202020;
  line-height: 1.4;
}
.faq-left h1 span {
  color: #e92f05;
  background: linear-gradient(to right, #e92f05, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Accordion right side */
.faq-right {
  flex: 2 1 600px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

/* Accordion component */
.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  color: #202020;
  width: 100%;
  background: none;
  border: none;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  color: #f44300;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
}

.accordion-body {
  font-size: 1rem;
  padding: 0 1rem 1rem;
  color: #202020;
  display: none;
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

/* BANNER */
.banner-section {
  background: #fff;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #202020;
}

.banner-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.banner-text {
  flex: 1 1 500px;
}

.banner-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.banner-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #202020;
}

.banner-button {
  background-color: #e92f05;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border: 1px solid #e92f05;
  border-radius: 10px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease 0s;
}

.banner-button:hover {
  background-color: #fff;
  color: #e92f05;
}

.banner-image {
  flex: 1 1 400px;
  text-align: center;
}

.banner-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* FOOTER */
.footer {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #fff;
  padding: 40px 20px;
  color: #202020;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  flex: 1 1 200px;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

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

.footer-menu {
  flex: 1 1 180px;
}

.footer-menu h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #202020;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer-menu ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #797979;
  line-height: 1.4;
}
