.elementor-2991 .elementor-element.elementor-element-bd889bf{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9c1b737 *//* =========================
   ROOT SYSTEM
   ========================= */
:root {
  --bg: #F9FAFB;
  --navy: #142B4F;
  --text: #1F2A37;
  --green: #1DB954;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================
   GLOBAL
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
}

section {
  padding: 100px 6%;
}

h1, h2, h3 {
  color: var(--navy);
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  padding: 14px 34px;
  border-radius: 10px;
  border: 2px solid var(--navy);
  text-decoration: none;
  font-weight: 600;
  background: var(--white);
  color: var(--text);
  transition: all 0.35s ease;
}

.btn:hover {
  border-color: var(--green);
  transform: scale(1.06);
}

/* =========================
   HERO
   ========================= */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-content p {
  margin: 20px 0 35px;
  max-width: 520px;
}

/* PURE CSS BIO GRAPHIC */
.bio-graphic {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(29,185,84,0.15), transparent 60%);
  animation: pulse 6s infinite ease-in-out;
}

.bio-graphic span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(20,43,79,0.2);
  animation: rotate 12s linear infinite;
}

.bio-graphic span:nth-child(2) {
  inset: 40px;
  animation-duration: 16s;
}

.bio-graphic span:nth-child(3) {
  inset: 80px;
  animation-duration: 20s;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  50% { transform: scale(1.05); }
}

/* =========================
   TRUST
   ========================= */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 30px;
}

.trust-card {
  background: var(--white);
  padding: 30px;
  text-align: center;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: transform .3s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
}

/* =========================
   CURRICULUM
   ========================= */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 40px;
}

.curriculum-card {
  background: var(--white);
  padding: 40px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: all .35s ease;
}

.curriculum-card:hover {
  transform: translateY(-10px);
}

/* ICON SYSTEM */
.icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  position: relative;
}

.icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--white);
}

/* =========================
   FLOW
   ========================= */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
}

.step {
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 600;
  transition: transform .3s ease;
}

.step:hover {
  transform: scale(1.05);
}

/* =========================
   WHO
   ========================= */
.who ul {
  list-style: none;
  max-width: 500px;
}

.who li {
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}

.who li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 0;
}

/* =========================
   CTA
   ========================= */
.cta {
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #eef6f2);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta p {
  margin: 15px auto 30px;
  max-width: 520px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bio-graphic {
    margin: 0 auto;
  }
}/* End custom CSS */