@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #49BBBD;
  --primary-light: rgba(73, 187, 189, 0.15);
  --primary-hover: #3da8aa;
  --secondary: #F48C06;
  --secondary-light: #FFF3E5;
  --text-dark: #252641;
  --text-muted: #696984;
  --bg-light: #FAFAFC;
  --white: #FFFFFF;
  --card-shadow: 0px 10px 60px rgba(38, 45, 118, 0.08);
  --btn-shadow: 0px 8px 24px rgba(73, 187, 189, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Nunito', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── GENERAL LAYOUT ─── */
section {
  padding: 80px 10%;
  position: relative;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 40px;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10%;
  background: transparent;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: var(--white);
  padding: 15px 10%;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  transform: rotate(-10deg);
}

.nav-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
}

nav.not-scrolled .nav-logo-text {
  color: var(--white);
}

.nav-logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

nav.not-scrolled .nav-links a {
  color: var(--white);
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--primary);
}

nav.not-scrolled .nav-links a:hover {
  color: var(--secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-nav-login {
  padding: 10px 30px;
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}

.btn-nav-login:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--btn-shadow);
}

.btn-nav-signup {
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav-signup:hover {
  background: var(--white);
  color: var(--primary);
}

nav.scrolled .btn-nav-signup {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

nav.scrolled .btn-nav-signup:hover {
  background: var(--primary-hover);
}

/* ─── HERO ─── */
.hero {
  background-color: var(--primary);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  width: 100%;
  align-items: center;
}

.hero-left {
  z-index: 10;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 25px;
}

.hero-left h1 .accent-orange {
  color: var(--secondary);
}

.hero-left p {
  font-size: 18px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 550px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-hero-join {
  padding: 15px 35px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-hero-join:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-play-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
}

.btn-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.btn-play svg {
  fill: var(--primary);
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.btn-play-wrap:hover .btn-play {
  transform: scale(1.1);
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
  position: relative;
}

/* Floating Elements on Hero */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  z-index: 5;
  color: var(--text-dark);
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}

.fc-text {
  display: flex;
  flex-direction: column;
}

.fc-text b {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.fc-text span {
  font-size: 11px;
  color: var(--text-muted);
}

.fc-students {
  top: 15%;
  left: -20px;
  animation: floatAnim 4s ease-in-out infinite;
}

.fc-students .fc-icon {
  background: #3da8aa;
}

.fc-congratulations {
  bottom: 25%;
  right: -30px;
  animation: floatAnim 4.5s ease-in-out infinite 0.5s;
}

.fc-congratulations .fc-icon {
  background: var(--secondary);
}

.fc-class {
  bottom: 12%;
  left: -40px;
  padding: 12px 16px;
  border-radius: 16px;
  flex-direction: row;
  align-items: center;
  animation: floatAnim 5s ease-in-out infinite 1s;
}

.fc-class-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.fc-class-details {
  display: flex;
  flex-direction: column;
}

.fc-class-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.fc-class-subtitle {
  font-size: 10px;
  color: var(--text-muted);
}

.btn-fc-join {
  background: #E84855;
  color: var(--white);
  border: none;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 10px;
}

.fc-mini-chart {
  top: 25%;
  right: 15px;
  width: 42px;
  height: 42px;
  background: #E84855;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0px 6px 15px rgba(232, 72, 85, 0.35);
  animation: floatAnim 3.5s ease-in-out infinite 0.8s;
  z-index: 5;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Wave Curve Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(120% + 1.3px);
  height: 90px;
  transform: rotateY(180deg);
}

.wave-divider .shape-fill {
  fill: var(--white);
}

/* ─── OUR SUCCESS ─── */
.our-success {
  background: var(--white);
  text-align: center;
}

.success-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ─── ALL IN ONE SOFTWARE ─── */
.all-in-one {
  background: var(--white);
  text-align: center;
}

.aio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.aio-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.aio-card:hover {
  transform: translateY(-8px);
}

.aio-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--white);
  font-size: 28px;
}

.aio-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.aio-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── WHAT IS KEMUDI ─── */
.what-is {
  background: var(--white);
}

.wi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.wi-card {
  position: relative;
  border-radius: 20px;
  height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 30px;
}

.wi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(37, 38, 65, 0.45);
  z-index: 1;
}

.wi-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.wi-card:hover img {
  transform: scale(1.05);
}

.wi-title {
  font-size: 22px;
  font-weight: 700;
  z-index: 2;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.wi-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid var(--white);
  background: transparent;
  cursor: pointer;
  z-index: 2;
  text-decoration: none;
  transition: all 0.2s;
}

.wi-btn:hover {
  background: var(--white);
  color: var(--text-dark);
}

.wi-btn.filled {
  background: var(--primary);
  border-color: var(--primary);
}

.wi-btn.filled:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
}

/* ─── CLASSROOM FEATURES ─── */
.classroom-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.cr-left {
  display: flex;
  flex-direction: column;
}

.cr-learn-more {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  margin-top: 15px;
}

.cr-learn-more:hover {
  color: var(--primary-hover);
}

.cr-right {
  position: relative;
}

.cr-image-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.cr-image-frame img {
  width: 100%;
  display: block;
}

.cr-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.cr-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--primary);
  margin-left: 4px;
}

.cr-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.cr-decor-1 {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  top: -15px;
  left: -15px;
  z-index: -1;
}

.cr-decor-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--primary-light);
  border-radius: 20px;
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

/* ─── OUR FEATURES REDESIGN ─── */
.our-features-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.of-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.of-visual-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 450px;
  position: relative;
}

.of-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.of-video-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.of-video-item img {
  width: 100%;
  display: block;
}

.of-video-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 500;
}

.of-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.of-btn-present {
  background: #38BDF8;
  color: var(--white);
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.of-btn-call {
  background: #E84855;
  color: var(--white);
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.of-right {
  display: flex;
  flex-direction: column;
}

.of-list {
  list-style: none;
  margin-top: 20px;
}

.of-list-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.of-list-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
}

.of-list-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.of-list-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TOOLS FOR TEACHERS AND LEARNERS ─── */
.tools-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tools-left {
  display: flex;
  flex-direction: column;
}

.tools-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.tools-image-wrap {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.tools-image-wrap img {
  width: 100%;
  display: block;
}

/* ─── ASSESSMENTS & QUIZZES ─── */
.assessments-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.assessments-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.quiz-mock-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 380px;
  position: relative;
}

.quiz-badge {
  background: #EBEBFF;
  color: #7C3AED;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.quiz-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.quiz-img-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.quiz-img-container img {
  width: 100%;
  display: block;
}

.quiz-success-alert {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatAnim 4s ease-in-out infinite;
}

.quiz-success-icon {
  width: 32px;
  height: 32px;
  background: #34D399;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-success-text {
  display: flex;
  flex-direction: column;
}

.quiz-success-text b {
  font-size: 12px;
  font-weight: 700;
}

.quiz-success-text span {
  font-size: 10px;
  color: var(--text-muted);
}

.assessments-right {
  display: flex;
  flex-direction: column;
}

/* ─── CLASS MANAGEMENT ─── */
.class-mgmt-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.class-mgmt-left {
  display: flex;
  flex-direction: column;
}

.class-mgmt-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.gradebook-mock {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 460px;
}

.gb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.gb-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.gb-btn-export {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.gb-btn-export:hover {
  background: var(--primary-hover);
}

.gb-row {
  display: grid;
  grid-template-columns: 40px 1.5fr 1fr 1fr;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F5;
}

.gb-row.header-row {
  border-bottom: 2px solid #E4E4EB;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-muted);
}

.gb-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.gb-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.gb-bar-wrap {
  width: 80%;
  height: 6px;
  background: #F0F0F5;
  border-radius: 10px;
  overflow: hidden;
}

.gb-bar {
  height: 100%;
  border-radius: 10px;
}

.gb-score {
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

/* ─── ONE-ON-ONE DISCUSSIONS ─── */
.one-on-one-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.one-on-one-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.discussion-mock-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 440px;
  position: relative;
}

.disc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.disc-video {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.disc-video img {
  width: 100%;
  display: block;
}

.disc-avatar-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--white);
  padding: 4px;
  border-radius: 50%;
  display: flex;
}

.disc-avatar-overlay img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.disc-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(37, 38, 65, 0.5);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
}

.one-on-one-right {
  display: flex;
  flex-direction: column;
}

/* ─── ABOUT US SECTION ─── */
.about-us {
  background-color: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  max-width: 100%;
}

.about-main-img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  display: block;
}

.about-badge-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  border-left: 5px solid var(--primary);
}

.ab-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.ab-txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.about-right {
  display: flex;
  flex-direction: column;
}

.about-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.value-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.value-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ─── PRICING SECTION ─── */
.pricing {
  background-color: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 40px rgba(38, 45, 118, 0.12);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: var(--white);
}

.pricing-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.pc-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--secondary-light);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.pc-header {
  margin-bottom: 30px;
}

.pc-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pc-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 40px;
}

.pc-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
}

.pc-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.pc-features li i.fa-check {
  color: var(--primary);
  font-size: 14px;
}

.pc-features li i.fa-times {
  color: #ccc;
  font-size: 14px;
}

.pc-features li.disabled {
  color: var(--text-muted);
  opacity: 0.6;
}

.btn-pricing {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid #DCDCE5;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-card.featured .btn-pricing {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--btn-shadow);
}

.pricing-card.featured .btn-pricing:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.pricing-card:not(.featured) .btn-pricing:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--btn-shadow);
}


/* ─── CAREERS SECTION ─── */
.careers {
  background-color: var(--white);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.career-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid #EAEAEA;
  transition: all 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0px 15px 35px rgba(73, 187, 189, 0.08);
}

.cc-header {
  margin-bottom: 15px;
}

.cc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cc-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.cc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.cc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #F0F0F5;
}

.cc-loc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.cc-loc i {
  color: var(--secondary);
  margin-right: 5px;
}

.btn-career-apply {
  padding: 8px 18px;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-career-apply:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--btn-shadow);
}

.login-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.login-features li .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.login-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 480px;
  justify-self: center;
}

.login-card-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-card-logo {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin: 0 auto 15px;
  transform: rotate(-10deg);
}

.login-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.login-card-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.login-tabs {
  display: flex;
  background: #F0F0F5;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 25px;
}

.login-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.login-tab.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0px 4px 12px rgba(73, 187, 189, 0.25);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input-wrap {
  position: relative;
}

.form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: var(--white);
  border: 1px solid #DCDCE5;
  border-radius: 12px;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--primary);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.form-check input {
  accent-color: var(--primary);
}

.form-link {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.form-link:hover {
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: all 0.2s;
}

.btn-login:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.login-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.login-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #E4E4EB;
  z-index: 1;
}

.login-divider span {
  background: var(--white);
  padding: 0 15px;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.login-help {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.login-help a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.login-help a:hover {
  text-decoration: underline;
}

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(37, 38, 65, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.15);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F0F0F5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 14px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #E4E4EB;
}

/* ─── FOOTER ─── */
footer {
  background: #252641;
  color: var(--white);
  padding: 80px 10% 40px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
  margin-bottom: 40px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-divider-logo {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-logo-row .nav-logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: 20px;
  font-weight: 500;
  color: #B2B3CF;
  margin-bottom: 35px;
}

.footer-newsletter {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 480px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  outline: none;
}

.footer-newsletter input::placeholder {
  color: #B2B3CF;
}

.footer-newsletter button {
  padding: 12px 30px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-newsletter button:hover {
  background: var(--primary-hover);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: #B2B3CF;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
  color: #B2B3CF;
}

/* ─── TOAST NOTIFICATION ─── */
#kemudi-toast {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F0F0F5;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  section {
    padding: 60px 5%;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left p {
    margin: 0 auto 40px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-right {
    margin-top: 50px;
  }
  .wi-grid {
    grid-template-columns: 1fr;
  }
  .classroom-section,
  .our-features-section,
  .tools-section,
  .assessments-section,
  .class-mgmt-section,
  .one-on-one-section,
  .login-inner,
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cr-left, .cr-right,
  .of-left, .of-right,
  .tools-left, .tools-right,
  .assessments-left, .assessments-right,
  .class-mgmt-left, .class-mgmt-right,
  .one-on-one-left, .one-on-one-right,
  .login-info, .login-card,
  .about-left, .about-right {
    text-align: center;
    align-items: center;
  }
  .of-list-item {
    text-align: left;
  }
  .login-info h2 {
    text-align: center;
  }
  .login-features {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 15px 5%;
  }
  .nav-links {
    display: none;
  }
  .hero-left h1 {
    font-size: 36px;
  }
  .floating-card {
    display: none; /* Hide complex floating items on mobile for clean UI */
  }
  .fc-mini-chart {
    display: none;
  }
  .success-stats {
    flex-direction: column;
    gap: 25px;
  }
  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-badge-floating {
    right: 10px;
    bottom: 10px;
    padding: 12px 16px;
  }
  .ab-num {
    font-size: 20px;
  }
}

/* ─── PAGE HERO (Subpages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1e1f35 100%);
  padding: 140px 10% 80px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.ph-container {
  max-width: 800px;
  margin: 0 auto;
}

.ph-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(73, 187, 189, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero h1 span {
  color: var(--primary);
}

.ph-desc {
  font-size: 16px;
  color: #B2B3CF;
  line-height: 1.8;
}

/* ─── VISION & MISSION ─── */
.vision-mission {
  background: var(--white);
  padding: 80px 10%;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.vm-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid #F0F0F5;
  transition: transform 0.3s;
}

.vm-card:hover {
  transform: translateY(-5px);
}

.vm-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.vm-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.vm-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── TEAM SECTION ─── */
.team-section {
  background: var(--bg-light);
  padding: 80px 10%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-avatar-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  background: var(--bg-light);
}

.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── ACTIVE NAV LINK HIGHLIGHT ─── */
.nav-links a.active-nav {
  color: var(--primary) !important;
  font-weight: 700;
}

nav.not-scrolled .nav-links a.active-nav {
  color: var(--primary) !important;
}

/* ─── RESPONSIVE ADDITIONS FOR NEW PAGES ─── */
@media (max-width: 1024px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── BRIEF CONTACT SECTION (Home page) ─── */
.contact-section-brief {
  background-color: var(--white);
}

.contact-brief-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-brief-left {
  display: flex;
  flex-direction: column;
}

.contact-brief-info p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-brief-info p i {
  width: 20px;
}

.contact-brief-right {
  display: flex;
  justify-content: center;
}


/* ─── DETAILED CONTACT PAGE ─── */
.contact-detail-section {
  background-color: var(--bg-light);
  padding: 80px 10%;
}

.contact-detail-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid #F0F0F5;
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Custom Dropdown select arrow */
select.form-input {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23696984' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px !important;
}

/* Responsive updates for Contact elements */
@media (max-width: 1024px) {
  .contact-brief-container,
  .contact-detail-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid #EAEAEA;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0px 10px 30px rgba(73, 187, 189, 0.12);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-method-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-method-text p {
  font-size: 13px;
  color: var(--text-muted);
}
