.elementor-27 .elementor-element.elementor-element-5ce6e785{--display:flex;}/* Start custom CSS for html, class: .elementor-element-c98fcb0 *//* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:     #0D1E3D;
  --navy-mid: #152a4e;
  --navy-panel: rgba(13,30,61,0.88);
  --cyan:     #4A7AB8;
  --cyan-dark:#3d6599;
  --blue-btn: #4A7AB8;
  --blue-dark:#3d6599;
  --white:    #FFFFFF;
  --off:      #F4F7FB;
  --text:     #1C2B3A;
  --gray:     #5A6B80;
  --border:   #DDE4EE;
  --check:    #4A7AB8;
  --ff:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff2:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--ff2); color: var(--text); background: var(--white); font-size: 15px; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── TOP NAV ── */
.topnav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw; height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 12px rgba(13,30,61,.07);
}
.logo { display: flex; align-items: center; gap: .5rem; }
.logo-box {
  width: 56px; height: 48px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.logo-box svg { width: 36px; height: 36px; }
.logo-text { font-family: var(--ff); font-size: .7rem; font-weight: 700; color: var(--navy); line-height: 1.2; text-transform: uppercase; letter-spacing: .04em; }
.logo-text span { display: block; font-size: .55rem; font-weight: 500; color: var(--gray); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--ff); font-size: .82rem; font-weight: 600;
  color: var(--navy); letter-spacing: .02em;
  display: flex; align-items: center; gap: .3rem;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a.active { color: var(--cyan); }
.nav-cta {
  background: var(--blue-btn); color: var(--white);
  font-family: var(--ff); font-size: .82rem; font-weight: 700;
  padding: .55rem 1.5rem; border-radius: 4px; letter-spacing: .04em;
  text-transform: uppercase; transition: background .2s;
}
.nav-cta:hover { background: var(--blue-dark); color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 400px;
  display: grid; grid-template-columns: 1fr 440px;
  overflow: hidden;
}
.hero-img {
  position: relative; min-height: 400px;
  background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=900&q=80') center/cover no-repeat;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,30,61,.15) 0%, rgba(13,30,61,.0) 100%);
}
.hero-panel {
  background: var(--navy-panel);
  backdrop-filter: blur(2px);
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.hero-panel h1 {
  font-family: var(--ff); font-size: 1.75rem; font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 2rem;
  letter-spacing: -.01em;
}
.hero-info-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-info-row:last-child { border-bottom: none; }
.hi-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; opacity: .9; }
.hi-label { font-family: var(--ff); font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .1rem; }
.hi-val { font-family: var(--ff); font-size: .97rem; font-weight: 700; color: var(--white); line-height: 1.3; }

/* ── FLOATING SIDEBAR ── */
.sidebar {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; z-index: 150; gap: 1px;
}
.sidebar-btn {
  background: var(--cyan); color: var(--white);
  width: 72px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .3rem;
  padding: .8rem .5rem; cursor: pointer;
  font-family: var(--ff); font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; text-align: center;
  transition: background .2s; border: none;
}
.sidebar-btn:hover { background: var(--cyan-dark); }
.sidebar-btn svg { width: 18px; height: 18px; }

/* ── TAB NAV ── */
.tab-nav {
  display: flex; background: var(--white);
  border-bottom: 3px solid var(--border);
  position: sticky; top: 68px; z-index: 190;
  box-shadow: 0 2px 8px rgba(13,30,61,.06);
}
.tab-btn {
  flex: 1; padding: 1rem .5rem;
  font-family: var(--ff); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--navy); color: var(--white);
  border: none; cursor: pointer; transition: background .2s;
  border-right: 1px solid rgba(255,255,255,.08);
}
.tab-btn:last-child { border-right: none; }
a.tab-btn { display:flex; align-items:center; justify-content:center; }
.tab-btn.active, .tab-btn:hover { background: var(--cyan); color: var(--white); }

/* ── SECTIONS ── */
.section { padding: 60px 4vw; }
.section.alt { background: var(--off); }
.container { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-family: var(--ff); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: .4rem;
}
.section-title {
  font-family: var(--ff); font-size: 1.55rem; font-weight: 800;
  color: var(--navy); margin-bottom: 1rem; line-height: 1.25;
  text-transform: uppercase; letter-spacing: .01em;
}
.section-title.cyan { color: var(--cyan); }
.section-lead { color: var(--gray); font-size: .97rem; line-height: 1.85; margin-bottom: 1.5rem; max-width: 780px; }

/* left-border block like the screenshot */
.content-block {
  border-left: 4px solid var(--cyan);
  padding-left: 1.8rem;
  margin-bottom: 2rem;
}

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-top: .8rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .94rem; line-height: 1.55; }
.check-list li::before {
  content: '✔'; color: var(--check); font-size: .9rem;
  flex-shrink: 0; margin-top: .1rem; font-weight: 700;
}
.check-list li strong { color: var(--navy); font-weight: 700; }

/* ── OBJECTIVES GRID ── */
.obj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.1rem; margin-top: 1.5rem; }
.obj-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--cyan); border-radius: 4px;
  padding: 1.4rem; display: flex; gap: .9rem; align-items: flex-start;
  box-shadow: 0 2px 12px rgba(13,30,61,.06); transition: transform .2s, box-shadow .2s;
}
.obj-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(13,30,61,.1); }
.obj-num { font-family: var(--ff); font-size: 1.4rem; font-weight: 800; color: var(--cyan); line-height: 1; flex-shrink: 0; }
.obj-card p { font-size: .92rem; color: var(--text); line-height: 1.6; }

/* ── MODULES ── */
.modules-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.5rem; }
.mod-card {
  background: var(--navy); border-radius: 4px;
  padding: 1.8rem 1.6rem; position: relative; overflow: hidden;
  transition: transform .2s; border-left: 4px solid var(--cyan);
}
.mod-card:hover { transform: translateY(-2px); }
.mod-num { font-family: var(--ff); font-size: .7rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.mod-title { font-family: var(--ff); font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.35; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.arrow-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-top: 1rem; }
.arrow-list li { display: flex; gap: .7rem; font-size: .94rem; line-height: 1.5; }
.arrow-list li::before { content: '→'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }

/* ── ADMISSION CARDS ── */
.adm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 1.8rem; }
.adm-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; box-shadow: 0 2px 12px rgba(13,30,61,.06); }
.adm-head { background: var(--navy); color: var(--white); padding: 1rem 1.4rem; font-family: var(--ff); font-size: .85rem; font-weight: 700; letter-spacing: .03em; display: flex; align-items: center; gap: .6rem; }
.adm-body { padding: 1.3rem 1.4rem; font-size: .91rem; color: var(--gray); line-height: 1.75; }

/* ── PATHWAY BANNER ── */
.pathway {
  background: var(--navy); border-radius: 4px;
  padding: 1.8rem 2rem; margin-top: 1.8rem;
  display: flex; align-items: center; gap: 1.5rem;
  border-left: 5px solid var(--cyan);
}
.pathway-text { color: rgba(255,255,255,.85); font-size: .94rem; line-height: 1.7; }
.pathway-text strong { color: var(--cyan); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem; }
details { border: 1px solid var(--border); border-radius: 4px; background: var(--white); overflow: hidden; }
details summary { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.4rem; cursor: pointer; font-family: var(--ff); font-size: .86rem; font-weight: 700; color: var(--navy); letter-spacing: .01em; list-style: none; gap: 1rem; background: var(--white); }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 1.2rem; color: var(--cyan); font-weight: 700; flex-shrink: 0; }
details[open] summary { background: var(--navy); color: var(--white); }
details[open] summary::after { content: '\2212'; }
.faq-body { padding: 1rem 1.4rem; font-size: .9rem; color: var(--gray); line-height: 1.8; border-top: 1px solid var(--border); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.2rem; margin-top: 1.8rem; }
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-bottom: 3px solid var(--cyan); border-radius: 4px;
  padding: 1.6rem; text-align: center;
  box-shadow: 0 2px 12px rgba(13,30,61,.06); transition: transform .2s;
}
.why-card:hover { transform: translateY(-3px); }
.why-icon { font-size: 2rem; margin-bottom: .8rem; }
.why-title { font-family: var(--ff); font-size: .85rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.why-desc { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ── ACCREDITATIONS ── */
.accred-bar { background: var(--navy); padding: 36px 4vw; }
.accred-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.accred-item { display: flex; align-items: center; gap: 1rem; }
.accred-icon { width: 56px; height: 56px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.accred-name { font-family: var(--ff); font-size: .9rem; font-weight: 700; color: var(--white); }
.accred-sub { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .1rem; }
.accred-divider { width: 1px; height: 50px; background: rgba(255,255,255,.12); }

/* ── CONTACT / FORM ── */
.contact-section { background: var(--off); padding: 60px 4vw; }
.contact-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.contact-left .section-title { color: var(--navy); }
.cd-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.cd-row { display: flex; align-items: flex-start; gap: 1rem; }
.cd-icon { width: 42px; height: 42px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--white); }
.cd-label { font-family: var(--ff); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--cyan); }
.cd-val { font-size: .92rem; color: var(--text); margin-top: .15rem; line-height: 1.5; }

/* form card */
.form-card { background: var(--white); border-radius: 6px; padding: 2.2rem; box-shadow: 0 4px 30px rgba(13,30,61,.1); border-top: 4px solid var(--cyan); }
.form-card-label { font-family: var(--ff); font-size: .7rem; font-weight: 700; color: var(--cyan); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
.form-card h3 { font-family: var(--ff); font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.form-card p { font-size: .85rem; color: var(--gray); margin-bottom: 1.6rem; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-group { margin-bottom: .9rem; }
.form-group label { display: block; font-family: var(--ff); font-size: .75rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; letter-spacing: .02em; }
.form-group label span { color: #E53E3E; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: var(--ff2); font-size: .9rem; color: var(--text);
  background: var(--off); transition: border-color .2s, box-shadow .2s;
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(74, 122, 184, .12);
  background: var(--white);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6B80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem;
  background-color: var(--off);
}
.phone-row { display: flex; gap: .6rem; }
.phone-prefix {
  width: 88px; flex-shrink: 0; padding: .7rem .7rem;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: var(--ff2); font-size: .85rem; color: var(--text);
  background: var(--off) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235A6B80' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right .5rem center;
  appearance: none; outline: none; cursor: pointer; transition: border-color .2s;
}
.phone-prefix:focus { border-color: var(--cyan); }
.phone-row input { flex: 1; }
.submit-btn {
  width: 100%; padding: .9rem;
  background: var(--blue-btn);
  color: var(--white); font-family: var(--ff); font-weight: 800;
  font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background .2s, transform .15s; margin-top: .3rem;
}
.submit-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success .ok { width: 60px; height: 60px; border-radius: 50%; background: #E6FAF5; color: #059669; font-size: 1.6rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.form-success h4 { font-family: var(--ff); font-size: 1.2rem; color: var(--navy); margin-bottom: .5rem; }
.form-success p { color: var(--gray); font-size: .9rem; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 28px 4vw; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-brand { font-family: var(--ff); font-size: 1rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .06em; }
.footer-brand span { color: var(--cyan); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.45); font-family: var(--ff); font-weight: 600; letter-spacing: .03em; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }

/* ── SCROLL REVEAL ── */



/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { min-height: 240px; }
  .hero-panel { padding: 32px 5vw; }
  .modules-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .adm-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .tab-nav { flex-wrap: wrap; }
  .tab-btn { flex: none; width: 50%; font-size: .72rem; }
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: 1fr; }
  .tab-btn { width: 100%; }
  .hero-panel h1 { font-size: 1.35rem; }
}/* End custom CSS */