:root{
  /* ===== POLYGLOT BRAND ===== */
  --primary: #F05010;     /* logo orange */
  --primary2:#FF6A2A;     /* lighter orange */
  --navy:    #102040;     /* logo navy */
  --navy2:   #0B1733;     /* deeper navy */

  --bg:      #F7F8FB;     /* clean light background */
  --white:   #FFFFFF;

  --text:    var(--navy);
  --muted:   #4B5563;

  --border:  rgba(16,32,64,0.12);
  --shadow:  0 18px 50px rgba(16,32,64,0.10);
  --shadow2: 0 10px 30px rgba(16,32,64,0.08);

  --radius:  18px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(240,80,16,0.14), transparent 60%),
    radial-gradient(900px 520px at 88% 12%, rgba(16,32,64,0.12), transparent 58%),
    radial-gradient(900px 520px at 50% 95%, rgba(240,80,16,0.10), transparent 55%),
    var(--bg);
}

/* container */
.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* header */
.header{
  position:sticky; top:0; z-index:1000;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(15,23,42,0.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}

/* ===== Brand: logo left, text right (like your reference) ===== */
.brand--logo-text{
  display:flex;
  align-items:center;
  text-decoration:none;
  color:var(--text);
}

/* pull text slightly over the logo */
.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  margin-left: -35px;   /* <<< THIS is the tight gap control */
}


/* Brand lines */
.brand__line{
  font-weight:700;
  font-size:22px;
  letter-spacing:0.12em;
  color: var(--navy);
}

/* spacing between lines */
.brand__line + .brand__line{
  margin-top:6px;
}

/* ✅ KEY: logo height matches text block height */
.brand__logo--big{
  height: calc((30px * 3 * 1.05) + (8px * 2));  /* 3 lines + gaps */
  width: auto;
  object-fit: contain;
  display:block;
}

/* nav */
.nav{ display:flex; align-items:center; position:relative; }

.nav__toggle{
  display:none;
  width:44px; height:40px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.9);
  border-radius:12px;
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  width:18px; height:2px;
  background:var(--text);
  margin:5px auto;
  border-radius:999px;
}

.nav__links{ display:flex; align-items:center; gap:10px; }

.nav__link{
  color:var(--muted);
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
}
.nav__link:hover{
  color:var(--navy);
  background: rgba(240,80,16,0.10);
  transform: translateY(-1px);
}
.nav__link.active{
  color:var(--navy);
  background: rgba(240,80,16,0.14);
  border:1px solid rgba(240,80,16,0.24);
}

.nav__cta{
  color:white;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  padding:10px 14px;
  box-shadow: 0 12px 28px rgba(240,80,16,0.22);
}
.nav__cta:hover{ filter:brightness(1.05); }

/* hero */
.hero{
  position:relative;
  padding:84px 0 28px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:26px;
  align-items:center;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(16,32,64,0.10);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.hero__title{
  font-size:46px;
  line-height:1.07;
  letter-spacing:-0.03em;
  margin:14px 0 12px;
}
.hero__subtitle{
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  margin:0 0 18px;
  max-width: 60ch;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 18px;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  border-radius:14px;
  padding:12px 14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border .2s ease;
}
.btn--primary{
  color:white;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 14px 40px rgba(240,80,16,0.22);
}
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(240,80,16,0.25);
}
.btn--ghost{
  color:var(--text);
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(16,32,64,0.10);
}
.btn--ghost:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); }
.btn--full{ width:100%; }

/* hero stats */
.hero__stats{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.stat{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(16,32,64,0.10);
  background:rgba(255,255,255,0.75);
  box-shadow: 0 10px 28px rgba(16,32,64,0.06);
}
.stat__num{ font-weight:900; }
.stat__label{ color:var(--muted); font-size:13px; margin-top:2px; }

/* hero card */
.hero__card .glass{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  border:1px solid rgba(16,32,64,0.10);
  box-shadow: var(--shadow);
}
.glass__title{ margin:0 0 6px; font-size:18px; }
.glass__text{ margin:0 0 14px; color:var(--muted); line-height:1.7; }
.glass__list{ display:flex; flex-wrap:wrap; gap:10px; margin:0 0 14px; }

.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(240,80,16,0.22);
  background: rgba(240,80,16,0.10);
  color: var(--navy);
  font-weight:800;
  font-size:13px;
}

/* sections */
.section{ padding:60px 0; }
.section--alt{
  background: rgba(255,255,255,0.65);
  border-top:1px solid rgba(16,32,64,0.08);
  border-bottom:1px solid rgba(16,32,64,0.08);
}
.section__head{ margin-bottom:18px; }
.section__title{
  font-size:30px;
  margin:0 0 8px;
  letter-spacing:-0.02em;
}
.section__subtitle{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  max-width:70ch;
}

/* cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}
.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(16,32,64,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card--featured{
  border: 1px solid rgba(240,80,16,0.26);
  background: linear-gradient(180deg, rgba(240,80,16,0.10), rgba(255,255,255,0.92));
}
.card__icon{ font-size:22px; font-weight: 900;}
.card__title{ margin:10px 0 6px; font-size:18px; }
.card__meta{ margin:0 0 10px; color:var(--muted); font-size:14px; }
.card__price{ margin:0 0 12px; font-weight:900; font-size:18px; }
.card__list{ margin:0 0 14px; padding-left:18px; color:var(--muted); line-height:1.75; }

.card__link{
  display:inline-block;
  color:var(--navy);
  text-decoration:none;
  font-weight:900;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(240,80,16,0.10);
  border: 1px solid rgba(240,80,16,0.16);
  transition: transform .2s ease, background .2s ease;
}
.card__link:hover{
  transform: translateX(2px);
  background: rgba(240,80,16,0.14);
}

/* about layout */
.about{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:18px;
  align-items:start;
}
.features{ margin-top:18px; display:grid; gap:12px; }
.feature{
  display:flex; gap:12px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(16,32,64,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow2);
}
.feature__dot{
  width:10px; height:10px;
  border-radius:999px;
  margin-top:7px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}
.feature h4{ margin:0 0 6px; }
.feature p{ margin:0; color:var(--muted); line-height:1.7; }

.profile__card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(16,32,64,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow2);
}
.profile__avatar{
  width:46px; height:46px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:1000;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:white;
  margin-bottom:10px;
}
.profile__name{ margin:0 0 4px; }
.profile__role{ margin:0 0 12px; color:var(--muted); }
.profile__list{ margin:0; padding-left:18px; color:var(--muted); line-height:1.75; }

/* testimonials */
.quotes{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}
.quote{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(16,32,64,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.quote:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.quote p{ margin:0 0 10px; line-height:1.75; }
.quote span{ color:var(--muted); font-weight:700; }

/* FAQ */
.faq{ display:grid; gap:10px; margin-top:18px; }
.faq__item{
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(16,32,64,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow2);
}
.faq__item summary{
  cursor:pointer;
  font-weight:900;
}
.faq__item p{ color:var(--muted); line-height:1.75; margin:10px 0 0; }

/* contact */
.contact{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:14px;
  align-items:start;
}
.contact__card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(16,32,64,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow2);
}
.contact__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-top:1px solid rgba(16,32,64,0.08);
}
.contact__row:first-of-type{ border-top:none; }
.contact__label{ color:var(--muted); font-weight:700; }
.contact__value{ font-weight:900; }
.contact__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

.contact__side{ display:grid; gap:14px; }
.mini{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(16,32,64,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow2);
}
.mini h3{ margin:0 0 8px; }
.mini p{ margin:0; color:var(--muted); line-height:1.75; }

/* ====== FOOTER (MATCHING YOUR CURRENT LOOK) ====== */

.footer{
  margin-top: 60px;
  padding: 50px 0 20px;
  background: linear-gradient(180deg, #F05010, #E64A0F);
  color: white;
}

.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 32px;
}

/* Column headings */
.footer__col h4{
  margin: 0 0 10px;
  font-size: 18px;
}

/* Brand logo */
.footer__logo{
  width: 120px;
  height: auto;
  background: white;
  padding: 8px;
  border-radius: 8px;
}

/* Text */
.footer__text{
  color: white;
  line-height:1.6;
  margin:6px 0;
}

/* Links */
.footer__link{
  display:block;
  color: white;
  text-decoration:none;
  font-weight:700;
  margin:6px 0;
}

.footer__link:hover{
  text-decoration: underline;
}

/* Address spacing */
.footer__address{
  margin-bottom: 10px;
}

/* ---- SIMPLE BLACK & WHITE ICON ---- */

/* Bottom strip */
.footer__bottom{
  margin-top:30px;
  padding-top:14px;
  text-align:center;
  font-size:13px;
  border-top:1px solid rgba(255,255,255,0.3);
}

.footer__socials{
  display:flex;
  gap:14px;
  margin-top:12px;
  align-items:center;
}

.footer__icon-link{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background: rgba(255,255,255,0.92);
  transition: transform .2s ease, opacity .2s ease;
}

.footer__icon-link:hover{
  transform: translateY(-2px);
  opacity: 0.85;
}

/* The icon itself (black) */
.footer__svg{
  width:20px;
  height:20px;
  fill:#000;
}


/* Mobile */
@media (max-width: 920px){
  .footer__inner{
    grid-template-columns: 1fr;
    text-align:center;
  }

  .footer__socials{
    justify-content:center;
  }
}



/* WhatsApp floating button */
.wa{
  position:fixed;
  right:18px; bottom:18px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, #22c55e, #16a34a);
  color:white;
  font-weight:900;
  text-decoration:none;
  box-shadow: 0 16px 40px rgba(16,32,64,0.18);
  transition: transform .2s ease;
}
.wa:hover{ transform: translateY(-2px); }
.wa__icon{ width:22px; height:22px; }

.wa span{ display:none; }
.wa:hover span{ display:inline; }

/* Animations (on scroll) */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* Lecture Panel */
.team{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}
.team__card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(16,32,64,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.team__card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }

.team__top{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
}
.team__avatar{
  width:100px;
  height:100px;
  border-radius:18px;
  overflow:hidden;
  display:grid;
  place-items:center;
  border:2px solid rgba(240,80,16,0.30);
  background:white;
  box-shadow: 0 12px 30px rgba(240,80,16,0.12);
}
.team__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.team__name{
  margin:0;
  font-size:17px;
  letter-spacing:-0.01em;
}
.team__role{
  margin:2px 0 0;
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}
.team__list{
  margin:0;
  padding-left:18px;
  color: var(--muted);
  line-height:1.75;
}
.team__tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}
.tag{
  padding:7px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  background: rgba(240,80,16,0.10);
  border: 1px solid rgba(240,80,16,0.16);
  color: var(--navy);
}

/* Animated student images (Hero) */
.heroMedia{
  position:relative;
  min-height: 420px;
}
.heroMedia__img{
  position:absolute;
  width: 210px;
  height: 260px;
  border-radius: 20px;
  overflow:hidden;
  background: var(--white);
  border: 2px solid rgba(240,80,16,0.25);
  box-shadow: 0 16px 40px rgba(16,32,64,0.14);
}
.heroMedia__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
/* ---- Video inside hero card ---- */
.hero__video-card{
  padding: 0;              /* remove extra padding */
  overflow: hidden;
}

.hero__video{
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 14px 14px 0 0; /* rounded top only */
}

/* text padding after video */
.hero__video-card .glass__title,
.hero__video-card .glass__text{
  padding: 14px 18px 0;
}

/* Positions */
.heroMedia__img--one{ left: 0; top: 0; transform: rotate(-3deg); }
.heroMedia__img--two{ right: 0; top: 22px; transform: rotate(3deg); }
.heroMedia__img--three{ left: 70px; bottom: 0; transform: rotate(-1deg); }

/* Floating animations */
.heroMedia__img--one{ animation: float1 6s ease-in-out infinite; }
.heroMedia__img--two{ animation: float2 7s ease-in-out infinite; }
.heroMedia__img--three{ animation: float3 6.5s ease-in-out infinite; }

@keyframes float1{
  0%,100%{ transform: translateY(0) rotate(-3deg); }
  50%{ transform: translateY(-10px) rotate(-2deg); }
}
@keyframes float2{
  0%,100%{ transform: translateY(0) rotate(3deg); }
  50%{ transform: translateY(-12px) rotate(2deg); }
}
@keyframes float3{
  0%,100%{ transform: translateY(0) rotate(-1deg); }
  50%{ transform: translateY(-9px) rotate(0deg); }
}

/* Card inside collage */
.heroMedia__card{
  position:absolute;
  left: 30px;
  right: 30px;
  top: 120px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(240,80,16,0.35);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 920px){
  .hero__grid, .about, .contact{ grid-template-columns: 1fr; }
  .cards, .quotes{ grid-template-columns: 1fr; }
  .hero{ padding:74px 0 24px; }
  .hero__title{ font-size:36px; }

  .nav__toggle{ display:block; }
  .nav__links{
    position:absolute;
    right:0;
    top:54px;
    width:min(320px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:10px;
    background: rgba(255,255,255,0.92);
    border:1px solid rgba(16,32,64,0.10);
    border-radius:16px;
    box-shadow: var(--shadow);
  }
  .nav__links.open{ display:flex; }
  .nav__link{ padding:12px; }

  .team{ grid-template-columns: 1fr; }

  .heroMedia{ min-height: 520px; }
  .heroMedia__img{ width: 190px; height: 240px; }
  .heroMedia__img--one{ left: 0; top: 0; }
  .heroMedia__img--two{ right: 0; top: 40px; }
  .heroMedia__img--three{ left: 30px; bottom: 0; }
  .heroMedia__card{ left: 0; right: 0; top: 220px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .heroMedia__img--one,
  .heroMedia__img--two,
  .heroMedia__img--three{
    animation: none;
  }
}

/* Facebook button style */
.btn--facebook{
  background: #1877F2;          /* official Facebook blue */
  color: white;
  border: none;
  box-shadow: 0 10px 28px rgba(24,119,242,0.25);
}

.btn--facebook:hover{
  filter: brightness(1.05);
}

/* icon inside buttons */
.btn__icon{
  width: 18px;
  height: 18px;
}
