* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --poppins-font: "Poppins", sans-serif;
  --roboto-font: "Roboto", sans-serif;
  --black-text-one: #2e2e2e;
  --black-text-two: #4f4f4f;
  --black-text-three: #7a7a7a;
  --white-text: #ffffff;
  --white-text-two: #f5f5f5;
  --white-text-three: #dfdfdf;
}

.section-one {
  padding: 20px 20px 100px;
  background-image: linear-gradient(
    to right top,
    #ff0091,
    #ff2971,
    #ff4c53,
    #ff6c37,
    #f9881d,
    #f38f14,
    #ed9609,
    #e79d00,
    #ed9300,
    #f38900,
    #f97e00,
    #ff7100
  );
}

.section-two {
  padding: 100px 0;
}

.section-two-first {
  padding: 100px 0;
  background-color: rgb(160, 170, 68);
}

.gradient {
  background-image: linear-gradient(
    to right top,
    #a81b50,
    #d54442,
    #f17829,
    #f6b100,
    #e4eb12
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* background-color: rgb(142, 247, 255); */
  display: flex;
  justify-content: space-between;
}

.hero-left {
  width: 46%;
}

.hero-right {
  width: 50%;
}

.hero-title {
  font-family: var(--poppins-font);
  font-size: 50px;
  color: white;
  line-height: 1.2;
  margin-bottom: 40px;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-text {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--white-text-two);
  margin-top: 20px;
  max-width: 450px;
}

/* -------------- BUTTON ---------------- */
.hero-btn {
  text-decoration: none;
  padding: 10px 20px;
  background: linear-gradient(270deg, #25d366, #128c7e, #075e54);
  background-size: 600% 600%;
  font-family: var(--poppins-font);
  color: var(--white-text-two);
  margin-top: 50px;
  display: inline-block;
  border-radius: 8px;
  animation: gradientShift 6s ease infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.whatsapp-logo {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(7472%)
    hue-rotate(207deg) brightness(109%) contrast(106%);
  margin-right: 10px;
}

/* Gradient shifting animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* -------------- BUTTON ---------------- */

/* PENAMBAHAN STYLE UNTUK PROMO BOOTCAMP */
#bootcamp-promo-section {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.bootcamp-promo-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

@keyframes animate-gradient-text {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.bootcamp-title-promo {
  font-family: var(--poppins-font);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(-45deg, #d43f8d, #ff6b6b, #ff8c00, #c32aff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-gradient-text 8s ease infinite;
  margin-bottom: 20px;
}

.bootcamp-text-promo {
  font-family: var(--roboto-font);
  font-size: 1.1rem;
  color: var(--black-text-two);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn-promo-bootcamp {
  display: inline-block;
  text-decoration: none;
  font-family: var(--poppins-font);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(-45deg, #ff6b6b, #ff8c00, #ffaf60, #ff6b6b);
  background-size: 400% 400%;
  animation: animate-gradient-text 8s ease infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.btn-promo-bootcamp:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}
/* AKHIR PENAMBAHAN STYLE */

.title-section-two {
  font-family: var(--poppins-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-text-two);
  text-align: center;
  margin-bottom: 80px;
}

.title-section-three {
  font-family: var(--poppins-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-text-two);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

.title-section-four {
  font-family: var(--poppins-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-text-two);
  /* text-align: center; */
  margin-bottom: 50px;
  line-height: 1.2;
  max-width: 800px;
}

.title-section-five {
  font-family: var(--poppins-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-text-two);
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.2;
}

.title-section-six {
  font-family: var(--poppins-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-text-two);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-section-seven {
  font-family: var(--poppins-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-text-two);
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-section-eight {
  font-family: var(--poppins-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-text-two);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.container-four {
  max-width: 1200px;
  margin: 0 auto;
}

.reverse {
  flex-direction: row-reverse;
}

.coding {
  font-size: 50px;
  color: rgb(209, 15, 1);
}

.text-orange {
  font-size: 50px;
  color: orange;
}

.text-red {
  color: rgb(209, 15, 1);
}

.text-orange-only {
  color: orange;
}

.container-one {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.container-three {
  max-width: 1200px;
  margin: 0 auto;
}

.alasan-left {
  width: 46%;
}

.alasan-right {
  width: 46%;
}

.alasan-title {
  font-family: var(--poppins-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--black-text-two);
  margin-bottom: 30px;
}

.alasan-description {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--black-text-three);
  max-width: 400px;
  line-height: 1.6;
}

.container-alasan-coding {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.alasan-image {
  border-radius: 50%;
  max-width: 300px;
}

.container-sekolah {
  max-width: 1200px;
  margin: 0 auto;
}

.sekolah-title {
  font-family: var(--roboto-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--white-text-three);
  margin-top: 50px;
  margin-bottom: 20px;
}

.program {
  max-width: 280px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid red;
  /* padding-bottom: 20px; */
  height: 580px;
}

.image-offline-class {
  width: 100%;
}

.program-one {
  position: relative;
}

.program-one::after {
  content: "OFFLINE";
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 0;
  padding: 2px 5px 2px 10px;
  color: white;
  font-family: var(--roboto-font);
  background-color: orange;
  z-index: 5;
  font-size: 14px;
  border-radius: 4px 4px 0 0;
}

.program-two::after {
  content: "ONLINE";
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 0;
  padding: 2px 5px 2px 10px;
  color: white;
  font-family: var(--roboto-font);
  background-color: rgb(255, 81, 0);
  z-index: 5;
  font-size: 14px;
  border-radius: 4px 4px 0 0;
}

.program-two {
  position: relative;
}

.program-three::after {
  content: "ONLINE";
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 0;
  padding: 2px 5px 2px 10px;
  color: white;
  font-family: var(--roboto-font);
  background-color: rgb(255, 81, 0);
  z-index: 5;
  font-size: 14px;
  border-radius: 4px 4px 0 0;
}

.program-three {
  position: relative;
}

.program-four::after {
  content: "OFFLINE";
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 0;
  padding: 2px 5px 2px 10px;
  color: white;
  font-family: var(--roboto-font);
  background-color: orange;
  z-index: 5;
  font-size: 14px;
  border-radius: 4px 4px 0 0;
}

.program-four {
  position: relative;
}

.program-title {
  font-family: var(--poppins-font);
  color: var(--black-text-one);
  font-size: 18px;
  margin-top: 12px;
  padding-left: 6px;
  padding-right: 6px;
}

.program-description {
  font-family: var(--roboto-font);
  color: var(--black-text-three);
  font-size: 14px;
  margin-top: 8px;
  padding: 0 6px;
  line-height: 1.4;
}

.tebal {
  font-weight: 600;
}

.kotak-merah {
  background-color: rgb(255, 107, 107);
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-bottom: 3px;
  margin-right: 5px;
}

.pad-program {
  padding-left: 20px;
  padding-right: 20px;
}

.whatsapp-icon {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(63%) sepia(97%) saturate(1893%)
    hue-rotate(0deg) brightness(103%) contrast(104%);
}
.link-btn-program {
  text-decoration: none;
  position: absolute;
  display: inline-block;
  left: 54px;
  bottom: 20px;
}

.btn-program {
  border: 2px solid #ffa500;
  width: 160px;
  padding: 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  /* margin: 30px auto 0; */
  cursor: pointer;
  color: orange;
  background-color: white;
  font-family: var(--poppins-font);
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.whatsapp-icon {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(63%) sepia(97%) saturate(1893%)
    hue-rotate(0deg) brightness(103%) contrast(104%);
  transition: filter 0.3s ease;
}

/* Efek Hover */
.btn-program:hover {
  background-color: #ffa500;
  color: white;
}

.btn-program:hover .whatsapp-icon {
  filter: brightness(0) invert(1);
}

.container-logo-sekolah {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

/* .logo-aisba {
  max-width: 120px;
}

.logo-sma {
  max-height: 120px;
} */
.logo-sekolah {
  max-height: 80px;
}

.section-three {
  padding: 100px 0;
  background-color: rgb(255, 231, 231);
}

.section-four {
  padding: 100px 20px 200px;
}

.section-five {
  padding: 100px 20px;
}

.section-six {
  padding: 100px 20px;
  background-color: rgb(236, 236, 236);
}

.section-seven {
  padding: 100px 20px;
}

.section-eight {
  padding: 100px 20px 200px;
  /* background-color: rgb(255, 231, 231); */
}

.section-nine {
  padding: 100px 0;
  background-color: #dbffe8;
  rotate: -2deg;
  z-index: -1;
  position: relative;
  width: 95%;
}

.section-ten {
  padding: 100px 20px;
}

.text-deskripsi-berkembang {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--black-text-three);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 150px;
}

.container-berkembang {
  width: 100%;
  background-color: rgb(255, 231, 231);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.title-berkembang {
  font-family: var(--poppins-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-text-two);
  text-align: center;
  line-height: 1;
  margin-bottom: 16px;
}

.box {
  padding: 0 20px 20px 20px;
  /* background-color: #ff0000; */
  border-radius: 50%;
  width: 250px;
  height: 250px;
}

.deskripsi-berkembang {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--white-text-two);
  line-height: 1.6;
  text-align: center;
}

.box-fun {
  padding-top: 60px;
}

.box-project {
  padding-top: 40px;
}

.gradient-red {
  background-image: linear-gradient(
    to left top,
    #ff0000,
    #f75700,
    #ed7e00,
    #e19c00,
    #d6b61e
  );
}

.container-bahasa {
  padding: 40px 30px;
  /* background-color: rgb(255, 246, 230); */
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 3px solid red;
  border-radius: 20px;
}

.container-aplikasi {
  padding: 40px 30px;
  /* background-color: rgb(255, 246, 230); */
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border: 3px solid #ffa500;
  border-radius: 20px;
  margin-top: 50px;
}

.bahasa-title {
  font-family: var(--poppins-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--black-text-two);
  text-align: center;
}

.html-image {
  width: 120px;
}

.bahasa-description {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--black-text-three);
  line-height: 1.6;
  text-align: center;
}

.box-bahasa {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  max-width: 320px;
}

.html-image {
  margin-bottom: 24px;
}

.tebal {
  font-weight: bold;
}

.title-journey {
  font-family: var(--poppins-font);
  color: var(--black-text-one);
  font-size: 18px;
}

.text-deskripsi-journey {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--black-text-three);
  line-height: 1.6;
  margin-bottom: 100px;
  text-align: center;
}

.text-deskripsi-suasana {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--black-text-three);
  line-height: 1.6;
  margin-bottom: 80px;
}

.text-deskripsi-faq {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--black-text-three);
  line-height: 1.6;
  /* margin-bottom: 80px; */
  text-align: center;
}

.container-journey {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.container-accordion {
  max-width: 1200px;
  margin: 0 auto 100px;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.box-journey {
  max-width: 360px;
}

.supercoder-junior {
  width: 100%;
  border-radius: 20px;
}

.box-bottom {
  background-color: rgb(248, 248, 248);
  padding: 20px 20px 30px;
  border-radius: 16px;
  max-width: 320px;
  margin: -20px auto 0;
  z-index: 5;
  position: relative;
}

.journey-title {
  font-family: var(--poppins-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--black-text-two);
  margin-bottom: 10px;
  text-align: center;
}

.journey-description {
  font-family: var(--roboto-font);
  font-size: 14px;
  color: var(--black-text-three);
  line-height: 1.4;
  margin-bottom: 8px;
}

.journey-list li {
  font-family: var(--roboto-font);
  font-size: 14px;
  color: var(--black-text-three);
  margin-left: 20px;
}

.container-seven {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.container-eight {
  max-width: 1200px;
  margin: 0 auto;
}

.isi-testimoni {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--white-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.nama-testimoni {
  font-family: var(--roboto-font);
  font-size: 14px;
  color: var(--white-text);
  line-height: 1.6;
}

.testimoni-box-one {
  grid-row: 1 / 2;
  grid-column: 1 / 4;
  background-color: #e06351;
}

.testimoni-box-two {
  grid-row: 2 / 3;
  grid-column: 2 / 5;
  background-color: #4349e0;
}

.testimoni-box-three {
  grid-row: 1 / 2;
  grid-column: 4 / 5;
  background-color: #43e07a;
}

.testimoni-box-four {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  background-color: #e0b051;
}

.testimoni-box-one,
.testimoni-box-two,
.testimoni-box-three,
.testimoni-box-four {
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.marto20 {
  margin-top: 20px;
}

.pabo20 {
  padding-bottom: 20px;
}

.miring {
  font-style: italic;
}

.bobo-dashed {
  border-bottom: 2px var(--white-text-two) dashed;
  width: 100%;
}

.testimoni-box-one::after {
  content: "";
  width: 100px;
  height: 30px;
  position: absolute;
  display: inline-block;
  bottom: 10px;
  right: -30px;
  padding: 2px 5px 2px 10px;
  color: white;
  font-family: var(--roboto-font);
  background-color: #bad811;
  z-index: 5;
  font-size: 14px;
  rotate: -45deg;
}

.testimoni-box-two::after {
  content: "";
  width: 100px;
  height: 30px;
  position: absolute;
  display: inline-block;
  bottom: 10px;
  right: -30px;
  padding: 2px 5px 2px 10px;
  color: white;
  font-family: var(--roboto-font);
  background-color: #bad811;
  z-index: 5;
  font-size: 14px;
  rotate: -45deg;
}

.testimoni-box-three::after {
  content: "";
  width: 100px;
  height: 30px;
  position: absolute;
  display: inline-block;
  bottom: 10px;
  right: -30px;
  padding: 2px 5px 2px 10px;
  color: white;
  font-family: var(--roboto-font);
  background-color: #bad811;
  z-index: 5;
  font-size: 14px;
  rotate: -45deg;
}

.testimoni-box-four::after {
  content: "";
  width: 100px;
  height: 30px;
  position: absolute;
  display: inline-block;
  bottom: 10px;
  right: -30px;
  padding: 2px 5px 2px 10px;
  color: white;
  font-family: var(--roboto-font);
  background-color: #bad811;
  z-index: 5;
  font-size: 14px;
  rotate: -45deg;
}

.container-gallery {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.frame {
  width: 360px;
  max-height: 360px;
}

.gallery-item {
  width: 100%;
  display: block;
}

.small-frame {
  overflow: hidden;
  border-radius: 10px;
  background-color: red;
}

.small-frame {
  .gallery-item {
    transform: scale(1);
    transition: transform 0.4s ease;
  }
}

.frame:hover {
  .small-frame {
    .gallery-item {
      transform: scale(1.1);
      transition: all 0.4s ease;
    }
  }
}

#font-kecil {
  font-size: 14px;
}

.block {
  display: block;
}

/* -------------- ACCORDION ----------------- */

.accordion {
  max-width: 600px;
}

.accordion-item {
  margin-bottom: 5px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-header {
  background-color: #4349e0;
  padding: 10px;
  cursor: pointer;
  font-weight: 600;
  color: white;
  font-family: var(--poppins-font);
  display: flex;
  justify-content: space-between;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #5a5eeb;
  color: white;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--white-text-two);
  line-height: 1.6;
  padding: 0 10px; /* padding X saja saat tertutup */
}

.accordion-content.active {
  /* max-height akan diatur lewat JavaScript */
  padding: 10px;
}

.accordion-text {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--white-text-two);
  line-height: 1.6;
}

#arrow-up {
  display: none;
}

.hidden {
  display: none;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow-icon {
  transform: rotate(180deg);
}

/* ---------- ACCORDION FINISHED --------------------- */

.container-cta {
  max-width: 1200px;
  margin: 0 auto;
  background: #d1c03f;
  background: linear-gradient(
    36deg,
    rgba(209, 192, 63, 1) 0%,
    rgba(230, 98, 78, 1) 50%,
    rgba(209, 63, 131, 1) 100%
  );
  padding: 50px 30px;
  border-radius: 40px 10px 40px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.text-cta-atas {
  font-family: var(--poppins-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-text-two);
  text-align: center;
  margin-bottom: 20px;
}

.text-cta-bawah {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--white-text-two);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

#marset {
  margin-top: 20px;
}

/* ------------------------- FOOTER --------------------- */

.container-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  /* background-color: #4349e0; */
  display: flex;
  justify-content: space-between;
  /* background-color: #ffcbad; */
  border-radius: 20px 20px 0 0;
  align-items: end;
}

.image-footer {
  max-width: 160px;
  display: block;
}

.footer-text {
  font-family: var(--roboto-font);
  font-size: 14px;
  color: var(--black-text-three);
  line-height: 1.6;
  margin-top: 4px;
}

.footer-web {
  padding: 0 20px;
}

/* ------------------ UTILITY -------------------- */

#martas-one {
  margin-top: 86px;
}

#martas-two {
  margin-top: 38px;
}

#martas-three {
  margin-top: 85px;
}

.logo-atas {
  max-width: 120px;
  display: block;
  margin: 0 auto 100px;
}

.instagram-logo {
  width: 30px;
  margin-left: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(10%) sepia(75%) saturate(7490%)
    hue-rotate(2deg) brightness(83%) contrast(111%);
  transition: 0.4s;
}

.instagram-logo:hover {
  scale: 1.1;
}

/* --------------- MEDIA QUERY --------------------- */

@media (max-width: 1220px) {
  .hero-left {
    width: 40%;
  }
  .hero-right {
    width: 55%;
  }
  .hero-image {
    width: 100%;
  }
  .container-one {
    padding: 0 10px;
  }
  .contaier-gallery {
    flex-wrap: wrap;
  }
}

@media (max-width: 1180px) {
  .container-one {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-items: center;
    row-gap: 40px;
  }
  .program-four {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .container-journey {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    row-gap: 50px;
  }
}

@media (max-width: 1040px) {
  .hero-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .hero-btn {
    margin-top: 20px;
  }
  .hero-text {
    font-size: 14px;
  }
  .container-berkembang {
    flex-wrap: wrap;
    background-color: white;
    justify-content: center;
    gap: 20px;
    margin-bottom: 300px;
  }
  .text-deskripsi-berkembang {
    margin-bottom: 50px;
  }
}

@media (max-width: 890px) {
  .container-one {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-items: center;
  }
  .container-seven {
    display: block;
  }
  .testimoni-box-one,
  .testimoni-box-two,
  .testimoni-box-three {
    margin-bottom: 30px;
  }
}

@media (max-width: 860px) {
  .container {
    flex-direction: column;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .container-bahasa {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 450px;
  }
  .box-bahasa {
    margin-bottom: 30px;
  }

  .container-aplikasi {
    justify-content: center;
    flex-wrap: wrap;
    max-width: 450px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-right {
    margin-top: 50px;
  }
  .hero-title {
    text-align: center;
  }
  .hero-text {
    text-align: center;
    margin: 0 auto;
  }
  .hero-image {
    margin: 0 auto;
    display: block;
  }
  .container-logo-sekolah {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .logo-sekolah {
    max-height: 50px;
  }
  .logo-atas {
    margin-bottom: 50px;
  }
}

@media (max-width: 720px) {
  .container-gallery {
    flex-direction: column;
    align-items: center;
  }
  .frame {
    margin-bottom: 100px;
  }
  .text-deskripsi-suasana {
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  .text-deskripsi-faq {
    width: 300px;
    text-align: center;
    margin: 0 auto;
  }
  .title-section-eight {
    margin-left: -30px;
    padding: 0 30px;
  }
}

@media (max-width: 605px) {
  .container-one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container-alasan-coding {
    flex-direction: column;
  }
  .alasan-title {
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .alasan-left,
  .alasan-right {
    width: 100%;
  }
  .alasan-description,
  .alasan-title {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-three {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .container-berkembang {
    margin-bottom: 860px;
  }
  .text-deskripsi-faq {
    padding: 0 50px 0 10px;
  }
}

@media (max-width: 390px) {
  .text-orange {
    font-size: 40px;
  }
  .frame {
    width: 100%;
    margin-bottom: 70px;
  }
  .text-deskripsi-faq {
    width: 280px;
    padding: 0 50px 0 10px;
  }
}

@media (max-width: 370px) {
  .hero-title {
    font-size: 30px;
  }
  .logo-atas {
    max-width: 80px;
  }
  .instagram-logo {
    width: 26px;
  }
}

/* PENAMBAHAN MEDIA QUERY BARU */
@media (max-width: 460px) {
  .bootcamp-title-promo {
    font-size: 2.8rem; /* Perkecil font agar tidak terpotong */
    letter-spacing: 0;
  }
}
