/* -----------------------------------------------------------
   GLOBAL RESET
----------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  color: #000;
}

body {
  min-width: 320px;
}

/* -----------------------------------------------------------
   FULL-PAGE BACKGROUND (DIAGONAL BLACK → GREEN → YELLOW)
----------------------------------------------------------- */
body {
  background: linear-gradient(
      to bottom right,
      #000000 0%,
      #2ecc71 40%,
      #f4d03f 100%
  );
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

/* -----------------------------------------------------------
   PAGE WRAPPER
----------------------------------------------------------- */
.page-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
.hero-section {
  width: 100%;
  background: #000;
  border: 6px solid #2ecc71;
  padding: 40px 30px;
  margin-top: 10px;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-left {
  flex: 0 0 40%;
  text-align: center;
}

.hero-tagline-top,
.hero-tagline-bottom {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: white;
  text-align: center;
  letter-spacing: 1px;
  margin: 10px 0;
}

.hero-tagline-top { margin-bottom: 20px; }
.hero-tagline-bottom { margin-top: 20px; }

.hero-logo {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.hero-right {
  flex: 0 0 55%;
  color: #fff;
}

.stacked-title {
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 20px;
}

.learn { color: #f4d03f; }
.grow { color: #2ecc71; }
.succeed-red { color: #e74c3c; }

.hero-blurb {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  margin-bottom: 30px;
  max-width: 90%;
}

.enroll-box {
  background: #fff;
  color: #000;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}

.enroll-icon {
  width: 60px;
  height: auto;
}

.enroll-main {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: bold;
}

.enroll-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

/* -----------------------------------------------------------
   MAIN CONTENT AREA
----------------------------------------------------------- */
.content-wrapper {
  width: 100%;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.left-column,
.right-column {
  flex: 0 0 48%;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 25px;
  font-weight: bold;
}

/* SUBJECT GRID */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.subject-item {
  text-align: center;
}

.subject-icon {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
}

.red-bg { background: #e74c3c; }

.subject-icon img {
  width: 65%;
  height: auto;
}

.subject-label {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: bold;
}

.levels-line {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  text-align: center;
  margin: 20px 0;
}

/* CTA CIRCLE */
.cta-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #f4d03f;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.cta-main {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: bold;
}

.cta-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-top: 10px;
}

/* -----------------------------------------------------------
   RIGHT COLUMN BENEFITS
----------------------------------------------------------- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.benefit-icon {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 65%;
}

.benefit-label {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: bold;
}

/* -----------------------------------------------------------
   INFO SECTIONS
----------------------------------------------------------- */
.info-section {
  width: 100%;
  margin: 60px auto;
  text-align: center;
}

.info-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.info-line {
  width: 80px;
  height: 6px;
  background: #e74c3c;
  margin: 0 auto 20px auto;
}

.info-text {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto;
}

.info-list {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.video-wrapper {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* -----------------------------------------------------------
   CONTACT SECTION
----------------------------------------------------------- */
.contact-section {
  width: 100%;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 0 0 40%;
  text-align: center;
}

.contact-logo {
  width: 60%;
  max-width: 300px;
  margin-bottom: 20px;
}

.contact-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}

.contact-text {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 5px;
}

.contact-right {
  flex: 0 0 55%;
}

.contact-label {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 5px;
  display: block;
}

.contact-input {
  width: 100%;
  padding: 15px;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.contact-textarea {
  height: 200px;
}

.contact-button {
  width: 100%;
  padding: 20px;
  background: #2ecc71;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: bold;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
footer {
  width: 100%;
  margin: 40px auto;
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}


