:root {
    /* BRAND */
    --brand-primary: #0947a8;
    --brand-secondary: #10459e;
    --brand-triary: #b6addf;
    --brand-accent: #f0b35a;
    --brand-green: #16a34a;
    --brand-red: #c6001e;

    /* LIGHT */
    --bg: #eaf2ff;
    --bg2: #f0f5ff;


    --bg-dark: #eaf2ff;

    --bg-card: #ffffff;
    --bg-card2: #f8fbff;

    --card: #ffffff;

    --text: #0e1f36;
    --text-main: #0e1f36;

    --text-muted: #5a718a;
    --muted: #5a718a;

    --line: #d6e4f5;
    --border: #ddcaff;

    --primary: #859eff;
    --primary-dark: #0947a8;

    --primary-glow:
        rgba(13, 93, 209, .18);

    --accent: #f0b35a;
    --accent2: #e79010;

    --success: #16a34a;

    --danger: #dc2626;

    --input-bg: #f4f8ff;

    --input-border: #c8daf0;

    --input-focus: #4a90e2;

    --glow:
        rgba(13, 93, 209, .10);

    --radius: 20px;

    --radius-sm: 12px;

    --shadow:
        0 20px 50px rgba(13, 93, 209, .08);

    --shadow-card:
        0 10px 30px rgba(14, 31, 54, .08);
        --font-family: 'Inter', system-ui, -apple-system, sans-serif;

}

:root {
    --ink: var(--brand-primary);
    --ink-2: var(--brand-secondary);
    --ink-3: var(--brand-triary);

    --paper: var(--bg);
    --cloud: var(--bg2);
    --mist: var(--bg-dark);

    --gold: var(--brand-accent);
    --gold-2: var(--accent2);
    --live: var(--danger);
    --text-light: var(--text);
    --text-dark: var(--text-main);
    --muted-dark: var(--text-muted);

    --r: var(--radius);
    --line: var(--line);
    --line-light: var(--border);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
}
.logo {
  width: 100%;
  height: 60px;
}
body {

    font-family: var(--font-family);
    background: var(--bg);
    color: var(--text-light);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
.display {
    font-family:  var(--font-family);
    letter-spacing: -.02em
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    /* max-width: var(--maxw); */
    margin: 0 auto;
    padding: 0 24px
}

.skip {
    position: absolute;
    left: -999px;
    top: 8px;
    background: var(--gold);
    color: var(--ink);
    padding: 10px 16px;
    border-radius: 8px;
    z-index: 200;
    font-weight: 600
}

.skip:focus {
    left: 16px
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--gold-2);
    outline-offset: 3px;
    border-radius: 6px
}

/* live badge (rebuilt logo) */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.live-badge .live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--live);
    color: #fff;
   font-family:  var(--font-family);
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: .12em;
    padding: 5px 11px;
    border-radius: 7px
}

.live-badge .live .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff
}

@media (prefers-reduced-motion:no-preference) {
    .live-badge .live .pulse {
        animation: pulse 1.6s infinite
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, .7)
        }

        70% {
            box-shadow: 0 0 0 7px rgba(255, 255, 255, 0)
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
        }
    }
}

.live-badge .txt {
   font-family:  var(--font-family);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text)
}

/* header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    color: var(--text-primary)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
   font-family:  var(--font-family);
    font-weight: 700;
    font-size: 1.05rem
}

.brand .mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--ink);
    font-weight: 800
}

.brand small {
    display: block;
  font-family:  var(--font-family);
    font-weight: 400;
    font-size: .7rem;
    color: var(--text);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: 1px
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px
}

.menu a {
    /* color: var(--text); */
    font-size: .93rem;
    font-weight: 500;
    transition: color .2s
}

.menu a:hover {
    color: var(--text-light)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
   font-family:  var(--font-family);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    padding: 13px 22px;
    min-height: 46px;
    transition: transform .2s var(--ease), background .2s, box-shadow .2s
}

.btn-gold {
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 8px 24px -10px rgba(102, 36, 245, 0.7)
}

.btn-gold:hover {
    background: var(--bg);
    color: var(--brand-primary);
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    color: var(--bg);
    border: 1.5px solid var(--line)
}

.btn-ghost:hover {
    border-color: var(--mist);
    background: rgba(255, 255, 255, .04)
}

.navtoggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 9px;
    width: 46px;
    height: 46px;
    color: var(--text-light);
    cursor: pointer
}

/* hero */
/* :root{
    --ink:#0B1539; --ink-2:#13225A; --ink-3:#1B2E6E;
    --paper:#FFFFFF; --cloud:#F4F6FC; --mist:#C9D2EC;
    --line:rgba(201,210,236,.16); --line-light:#E3E8F5;
    --gold:#F5A524; --gold-2:#FFC25C;
    --live:#E5342B;
    --text-light:#F6F8FF; --text-dark:#0B1539; --muted-dark:#46506E;
    --r:14px; --maxw:1180px; --ease:cubic-bezier(.2,.7,.2,1);
} */

/* hero */
.hero {
    position: relative;
    padding: 84px 0 76px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    /* background:
        radial-gradient(900px 480px at 78% 8%, rgba(245, 165, 36, .16), transparent 60%),
        radial-gradient(700px 500px at 8% 90%, rgba(27, 46, 110, .55), transparent 65%); */
}

/* ===== background hands layer ===== */
.hero-bg-hands {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* above ::before gradient, below hero content */
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-hands img {
    position: absolute;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(11, 21, 57, .18));
    animation: float-y 4.5s ease-in-out infinite;
}

/* left flank — between text column and mascot */
/* .hand-bg-1 {
    top: 10%;
    left: 46%;
    width: 200px;
    transform: rotate(-10deg);
    opacity: .7;
    animation-duration: 4s;
}

.hand-bg-2 {
    top: 40%;
    left: 42%;
    width: 900px;
    transform: rotate(14deg);
    opacity: .55;
    animation-duration: 5.2s;
    animation-direction: reverse;
}

.hand-bg-3 {
    top: 8%;
    right: 5%;
    width: 180px;
    transform: rotate(10deg) scaleX(-1);
    opacity: .7;
    animation-duration: 4.3s;
    animation-direction: reverse;
}


.hand-bg-4 {
    top: 8%;
    right: 5%;
    width: 180px;
    transform: rotate(10deg) scaleX(-1);
    opacity: .7;
    animation-duration: 4.3s;
    animation-direction: reverse;
}

.hand-bg-5 {
    top: 33%;
    right: 1%;
    width: 150px;
    transform: rotate(-12deg) scaleX(-1);
    opacity: .55;
    animation-duration: 5s;
}

.hand-bg-6 {
    top: 58%;
    right: 7%;
    width: 200px;
    transform: rotate(8deg) scaleX(-1);
    opacity: .75;
    animation-duration: 4.8s;
    animation-direction: reverse;
} */

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r-deg, 0deg));
    }

    50% {
        transform: translateY(-12px) rotate(var(--r-deg, 0deg));
    }
}

/* layout */
.hero-grid {
    position: relative;
    z-index: 1;
    /* sits above the hands layer */
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 48px;
}

.badge-logo {
    width: auto;
    height: 120px;
}

h1 {
    font-size: clamp(2.5rem, 6.2vw, 4.6rem);
    line-height: 1.02;
    font-weight: 300;
    /* max-width: 14ch; */
}

h1 b {
    font-weight: 800;
}

h1 .amber {
    color: var(--gold-2);
    font-weight: 800;
}

.lede {
    margin: 26px 0 0;
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    color: var(--mist);
    max-width: 46ch;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

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

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: .95rem;
}

.rating b {
   font-family:  var(--font-family);
    font-weight: 700;
}

.rating span {
    color: var(--mist);
    font-size: .82rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    margin-top: 60px;
}

.stat {
    background: var(--ink);
    padding: 26px 24px;
}

.stat .num {
   font-family:  var(--font-family);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gold-2);
}

.stat .lbl {
    color: var(--mist);
    font-size: .86rem;
    margin-top: 4px;
}

/* right column — mascot only now, hands moved to background layer */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.hero-right-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(220px 220px at 78% 18%, rgba(245, 165, 36, .18), transparent 70%),
        radial-gradient(260px 260px at 14% 82%, rgba(245, 165, 36, .10), transparent 70%);
}

.hero-character {
    position: relative;
    z-index: 2;
    width: min(500px, 100%);
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(11, 21, 57, .35));
    animation: float-y 5s ease-in-out infinite;
    margin-bottom: 100px;
}

/* guide card */
.guide-card {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(300px, 92%);
    text-align: center;
    background: rgba(11, 21, 57, .55);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px 20px;
    backdrop-filter: blur(8px);
}

.guide-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gold-2);
    background: rgba(245, 165, 36, .12);
    border: 1px solid rgba(245, 165, 36, .3);
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.guide-name {
   font-family:  var(--font-family);
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 4px;
}

.guide-text {
    font-size: .84rem;
    color: var(--mist);
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {

    .hero-character,
    .hero-bg-hands img {
        animation: none;
    }
}

@media (max-width: 920px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        min-height: 420px;
        order: -1;
    }

    .hero-bg-hands {
        display: none;
    }

    /* avoid clutter behind stacked mobile layout */
}

/* sections */
section {
    padding: 86px 0
}

.light {
    background: var(--cloud);
    color: var(--text-dark)
}

.light h2,
.light h3,
.light h4 {
    color: var(--text-dark)
}

.seclabel {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px
}

.light .seclabel {
    color: #B9760A
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.08;
    /* max-width: 20ch */
}

h2 b {
    font-weight: 800
}

.sec-intro {
    max-width: 52ch;
    margin-top: 16px;
    /* color: var(--mist); */
    font-size: 1.05rem
}

.light .sec-intro {
    color: var(--muted-dark)
}

/* learning paths */
.paths {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 48px
}

.path {
    position: relative;
    background: var(--paper);
    border: 1.5px solid var(--line-light);
    border-radius: 18px;
    padding: 34px;
    transition: transform .25s var(--ease), box-shadow .25s, border-color .25s
}

.path:hover {
    transform: translateY(-4px);
    border-color: var(--ink);
    box-shadow: 0 26px 50px -28px rgba(11, 21, 57, .4)
}

.path .kicker {
    display: inline-block;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 50px;
    margin-bottom: 18px
}
.path.diploma .kicker {
    background: #EAF1FF;
    color: #31d11b
}

.path.crash .kicker {
    background: #EAF1FF;
    color: #8919ac
}

.path.basic .kicker {
    background: #EAF1FF;
    color: #2A4A9E
}

.path.pro .kicker {
    background: rgba(245, 165, 36, .15);
    color: #9A6307
}

.path h3 {
    font-size: 1.55rem;
    font-weight: 700
}

.path p {
    color: var(--muted-dark);
    margin-top: 12px
}

.path ul {
    list-style: none;
    margin: 20px 0 24px;
    display: grid;
    gap: 10px
}

.path li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text-dark);
    font-size: .95rem
}

.path li svg {
    flex: none;
    color: var(--gold);
    margin-top: 3px
}

.path .go {
    display: inline-flex;
    align-items: center;
    gap: 8px;
   font-family:  var(--font-family);
    font-weight: 600;
    color: var(--ink);
    font-size: .95rem
}

.path .go svg {
    transition: transform .2s
}

.path:hover .go svg {
    transform: translateX(4px)
}

/* courses */
.filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px
}

.filterbar button {
  font-family:  var(--font-family);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    background: var(--paper);
    border: 1.5px solid var(--line-light);
    color: var(--muted-dark);
    border-radius: 50px;
    padding: 10px 20px;
    min-height: 44px;
    transition: all .2s
}

.filterbar button:hover {
    border-color: var(--ink)
}

.filterbar button[aria-pressed="true"] {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px
}

.course {
    position: relative;
    background: var(--paper);
    border: 2px solid var(--line-light);
    border-radius: 16px;
    padding: 26px;
    transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
    display: flex;
    flex-direction: column
}

.course:hover {
    transform: translateY(-4px);
    border-color: var(--ink);
    box-shadow: 0 22px 44px -26px rgba(11, 21, 57, .4)
}

.course.is-trending {
    border-color: var(--brand-red)
}

.course .trend {
    position: absolute;
    top: -10px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--brand-red);
    color: #fff;
   font-family:  var(--font-family);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px
}

.course .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #EEF2FC;
    color: var(--ink);
    margin-bottom: 16px
}

.course h4 {
    font-size: 1.16rem;
    font-weight: 700
}

.course p {
    color: var(--muted-dark);
    font-size: .92rem;
    margin-top: 8px;
    flex: 1
}

.course .meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px
}

.course .meta span {
    font-size: .76rem;
    font-weight: 500;
  color: #FFF;
  background: #0947A8;
    padding: 5px 10px;
    border-radius: 50px
}

.course[hidden] {
    display: none
}

.basic-callout {
    margin-top: 18px;
    background: var(--ink);
    border-radius: 16px;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.basic-callout h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700
}

.basic-callout p {
    color: var(--mist);
    margin-top: 6px;
    max-width: 54ch;
    font-size: .95rem
}

/* tools */
.toolgroups {
    display: grid;
    gap: 26px;
    margin-top: 46px
}

.toolgroup h4 {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 14px
}

.light .toolgroup h4 {
    color: #B9760A
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* background: var(--paper); */
    border: 1.5px solid var(--line-light);
    border-radius: 50px;
    padding: 9px 16px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-dark)
}

.chip .d {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold)
}

/* batches */
.batches {
    display: grid;
    gap: 12px;
    margin-top: 46px
}

.batch {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 20px;
    align-items: center;
    background: #d0cfd8;
    border: 1px solid #9dacbe;
    border-radius: 14px;
    padding: 22px 26px
}

.batch .bname {
   font-family:  var(--font-family);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: black;
}

.batch .when {
    color: var(--gold-2);
   font-family:  var(--font-family);
    font-weight: 600;
    font-size: .95rem
}

.batch .where {
    color: #000;
    font-size: .9rem
}

.batch .seats {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .85rem;
    color: var(--mist);
    justify-self: end
}

.batch .seats .live {
    background: var(--live);
    color: #fff;
   font-family:  var(--font-family);
    font-weight: 700;
    font-size: .66rem;
    letter-spacing: .08em;
    padding: 3px 8px;
    border-radius: 5px
}

/* life gallery */
.life {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 46px
}

/* .life .tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(150deg, var(--ink-3), var(--ink));
    border: 1px solid var(--line);
    display: flex;
    align-items: flex-end;
    padding: 18px
} */

/* .life .tile:nth-child(3n) {
    background: linear-gradient(150deg, #2A3F86, var(--ink-2))
}

.life .tile:nth-child(4n) {
    background: linear-gradient(150deg, #7A5410, var(--ink))
} */

.life .tile .cam {
    position: absolute;
    top: 16px;
    left: 16px;
    color: rgba(246, 248, 255, .5)
}

.life .tile span {
   font-family:  var(--font-family);
    font-weight: 600;
    font-size: .95rem;
    color: var(--text-light);
    position: relative;
    z-index: 1
}

.life-note {
    margin-top: 18px;
    font-size: .84rem;
    color: #667c94
}

/* partners + campus drives */
.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px
}

.partner {
    display: grid;
    place-items: center;
    height: 64px;
    min-width: 150px;
    flex: 1 1 150px;
    background: var(--paper);
    border: 1.5px solid var(--line-light);
    border-radius: 12px;
   font-family:  var(--font-family);
    font-weight: 700;
    color: #8A93B0;
    font-size: 1rem;
    letter-spacing: .02em
}

.drives {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-light);
    border: 1px solid var(--line-light);
    border-radius: var(--r);
    overflow: hidden;
    margin-top: 18px
}

.drives .cell {
    background: var(--paper);
    padding: 30px 26px
}

.drives .num {
   font-family:  var(--font-family);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--ink)
}

.drives .lbl {
    color: var(--muted-dark);
    margin-top: 6px;
    font-size: .92rem
}

/* reviews */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 46px
}

.review {
    background: #d0cfd8;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column
}

.review .qstars {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 14px
}

.review p {
    color: var(--text-light);
    font-size: 1rem;
    flex: 1;
    line-height: 1.6
}

.review .who {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #afb1b3;
}

.review .av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
   font-family:  var(--font-family);
    font-weight: 700;
    background: var(--gold);
    color: var(--ink)
}

.review .who b {
   font-family:  var(--font-family);
    font-weight: 600;
    font-size: .96rem;
    display: block
}

.review .who span {
    color: #111a29;
    font-size: .82rem
}

/* demo form */
.demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.demo .copy h2 {
    max-width: 16ch
}

.demo .bullets {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 14px
}

.demo .bullets li {
    display: flex;
    gap: 12px;
    color: var(--mist)
}

.demo .bullets li b {
    color: var(--text-light)
}

.demo .bullets svg {
    flex: none;
    color: var(--gold)
}

form {
    background: var(--paper);
    border-radius: 18px;
    padding: 34px;
    color: var(--text-dark);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .5)
}

form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px
}

form .sub {
    color: #5A6486;
    font-size: .92rem;
    margin-bottom: 24px
}

.field {
    margin-bottom: 18px
}

.field label {
    display: block;
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: 7px;
    color: #2A3556
}

.field label .req {
    color: #C24B2C
}

.field input,
.field select {
    width: 100%;
  font-family:  var(--font-family);
    font-size: 1rem;
    padding: 13px 15px;
    border: 1.5px solid #D5DCEC;
    border-radius: 10px;
    background: #FBFCFF;
    color: var(--text-dark);
    transition: border .2s, box-shadow .2s;
    min-height: 48px
}

.field input:hover,
.field select:hover {
    border-color: #AEB8D6
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(19, 34, 90, .12)
}

.field .err {
    color: #C0341A;
    font-size: .8rem;
    margin-top: 6px;
    display: none
}

.field.invalid input,
.field.invalid select {
    border-color: #C0341A
}

.field.invalid .err {
    display: block
}

form .btn-gold {
    width: 100%;
    margin-top: 6px
}

form .legal {
    font-size: .76rem;
    color: #7A84A0;
    margin-top: 16px;
    text-align: center
}

.form-success {
    text-align: center;
    padding: 30px 10px
}

.form-success .ok {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #E8F6EC;
    color: #1E8E47;
    display: grid;
    place-items: center;
    margin: 0 auto 18px
}

.form-success h3 {
    font-size: 1.4rem
}

.form-success p {
    color: #5A6486;
    margin-top: 8px
}

/* footer */
footer {
    background: #0947a8;
    padding: 58px 0 32px;
    border-top: 1px solid var(--line)
}

.fcols {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px
}

.fnav {
    display: flex;
    gap: 54px;
    flex-wrap: wrap
}

.fnav h4 {
   font-family:  var(--font-family);
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px
}

.fnav a {
    display: block;
    color: var(--mist);
    font-size: .92rem;
    margin-bottom: 10px;
    transition: color .2s;
    font-weight: 600
}

.fnav a:hover {
    color: #fff;
}

.fbase {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 46px;
    padding-top: 24px;
   border-top: 1px solid #fff;
    color: var(--mist);
    font-size: .84rem
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .btn,
    .course,
    .path,
    .life .tile {
        transition: none
    }
}

@media (max-width:960px) {
    .course-grid {
        grid-template-columns: 1fr 1fr
    }

    .life {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:900px) {
    .menu {
        display: none
    }

    .navtoggle {
        display: grid;
        place-items: center
    }

    .menu.open {
        display: flex;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--ink);
        border-bottom: 1px solid var(--line);
        padding: 8px 0
    }

    .menu.open a {
        padding: 15px 24px;
        width: 100%
    }

    .menu.open .btn {
        margin: 10px 24px;
        width: calc(100% - 48px)
    }

    .stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .paths {
        grid-template-columns: 1fr
    }

    .batch {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .batch .seats {
        justify-self: start
    }

    .drives {
        grid-template-columns: 1fr
    }

    .reviews {
        grid-template-columns: 1fr
    }

    .demo {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

@media (max-width:540px) {
    .stats {
        grid-template-columns: 1fr
    }

    .course-grid {
        grid-template-columns: 1fr
    }

    .life {
        grid-template-columns: 1fr 1fr
    }

    section {
        padding: 60px 0
    }
}

/* //course headein */
.course-heading {
    color: var(--text);
}

/* .wrap-text h2 {
    color: white;
} */
/* ===========================
   Responsive Demo Section
=========================== */

/* Large Tablets */
@media (max-width: 991px){

    .demo{
        grid-template-columns:1fr;
        gap:40px;
    }

    .demo .copy{
        order:1;
    }

    .demo form{
        order:2;
    }

    .demo .copy h2{
        max-width:100%;
    }

    iframe{
        height:380px !important;
    }

    form{
        padding:28px;
    }

}


/* Mobile */
@media (max-width:767px){

    #demo{
        padding:60px 0;
    }

    .demo{
        display:flex;
        flex-direction:column;
        gap:30px;
    }

    .demo .copy{
        width:100%;
    }

    .demo .copy h2{
        font-size:32px;
        line-height:1.25;
        max-width:100%;
    }

    .demo .copy p{
        font-size:15px;
        line-height:1.7;
    }

    iframe{
        width:100%;
        height:280px !important;
        border-radius:16px;
    }

    form{
        width:100%;
        padding:22px;
        border-radius:16px;
    }

    form h3{
        font-size:22px;
    }

    form .sub{
        font-size:14px;
        margin-bottom:20px;
    }

    .field{
        margin-bottom:16px;
    }

    .field label{
        font-size:14px;
    }

    .field input,
    .field textarea,
    .field select{
        padding:12px 14px;
        font-size:15px;
        min-height:46px;
    }

    textarea{
        min-height:120px;
    }

    button,
    .btn{
        width:100%;
        min-height:48px;
        font-size:16px;
    }

    form .legal{
        font-size:13px;
        line-height:1.6;
    }

}


/* Small Mobile */
@media (max-width:575px){

    .container{
        padding-left:15px;
        padding-right:15px;
    }

    .demo{
        gap:24px;
    }

    .copy .seclabel{
        font-size:13px;
    }

    .demo .copy h2{
        font-size:28px;
    }

    .demo .copy p{
        font-size:14px;
    }

    iframe{
        height:240px !important;
    }

    form{
        padding:18px;
    }

    form h3{
        font-size:20px;
    }

    .field input,
    .field textarea{
        font-size:14px;
        padding:11px 12px;
    }

    .btn{
        font-size:15px;
    }

}
.field input,
.field textarea,
.field select{
    width:100%;
    font-family:var(--font-family);
    font-size:1rem;
    padding:13px 15px;
    border:1.5px solid #D5DCEC;
    border-radius:10px;
    background:#FBFCFF;
    color:var(--text-dark);
    transition:border .2s, box-shadow .2s;
}

.field textarea{
    resize:vertical;
    min-height:120px;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
    outline:none;
    border-color:var(--ink);
    box-shadow:0 0 0 4px rgba(19,34,90,.12);
}
.back-class{
    background-color:#0947a8 !important;
    color:var(--bg-dark);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--bg-card);
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .25s ease;
    box-shadow: var(--shadow-sm);
}

.pagination .page-link:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(
        135deg,
        var(--brand-primary),
        var(--brand-secondary)
    );
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(9, 71, 168, .25);
}

.pagination .page-item.disabled .page-link {
    background: var(--bg-card2);
    border-color: var(--line);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: .65;
    box-shadow: none;
}

.pagination .page-link:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Previous & Next buttons */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    padding: 0 18px;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 576px) {
    .pagination {
        gap: 6px;
    }

    .pagination .page-link {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
        padding: 0 10px;
    }
}

.text-danger{
    color:red;
}
.ldf-breadcrumb {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.ldf-breadcrumb__inner {
  /* max-width: 1280px; */
  margin-inline: auto;
  padding-inline: clamp(1rem,4vw,2.5rem);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
}
.ldf-breadcrumb__sep {
  opacity: .4;
}

