:root {
    --navy: #0b2545;
    --blue: #1a4b8c;
    --bright: #2563eb;
    --gold: #f59e0b;
    --green: #10b981;
    --red: #ef4444;
    --text: #1e293b;
    --muted: #64748b;
    --light: #f1f5f9;
    --white: #ffffff;
    --border: #e2e8f0;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}
a {
    text-decoration: none;
}
.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.section {
    padding: 3.5rem 1.25rem;
}
.sec-title {
    font-family: "Sora", sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.sec-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2.2rem;
    font-size: 0.95rem;
}
.kw {
    color: var(--bright);
}

/* ANNOUNCEMENT BAR */
.ann-bar {
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #1d4ed8);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
}
.ann-bar a {
    color: var(--gold);
    text-decoration: underline;
}
@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* NAV */
nav {
    background: var(--navy);
    padding: 0.7rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.logo-text {
    font-family: "Sora", sans-serif;
    color: white;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.15;
}
.logo-text span {
    color: var(--gold);
}
.logo-sub {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    display: block;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-phone {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 600;
}
.nav-phone:hover {
    color: var(--gold);
}
.nav-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 0.48rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-cta:hover {
    background: #fbbf24;
    transform: translateY(-1px);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #0f3460 100%);
    color: white;
    padding: 2.5rem 1.25rem 3rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}
.hbadge {
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: var(--gold);
    padding: 0.22rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hbadge-g {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
}
.hero h1 {
    font-family: "Sora", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}
.hero h1 em {
    color: var(--gold);
    font-style: normal;
}
.hero-desc {
    font-size: 0.97rem;
    opacity: 0.88;
    margin-bottom: 1.2rem;
    max-width: 500px;
    line-height: 1.75;
}
.hero-usp {
    list-style: none;
    margin-bottom: 1.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 0.6rem;
}
.hero-usp li {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.hero-usp li::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E")
        center/10px no-repeat;
}
.hero-cta-row {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.78rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: "Inter", sans-serif;
    transition: all 0.25s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--navy);
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(245, 158, 11, 0.6);
}
.btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.btn-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
}
.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(16, 185, 129, 0.55);
}
.btn-blue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}
.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.83rem;
    opacity: 0.85;
}
.stars {
    color: var(--gold);
}

/* LEAD FORM */
.form-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    position: sticky;
    top: 72px;
}
.fch {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    margin: -1.5rem -1.5rem 1.1rem;
    padding: 0.9rem 1.3rem;
    border-radius: 12px 12px 0 0;
    text-align: center;
}
.fch h3 {
    font-family: "Sora", sans-serif;
    color: white;
    font-size: 1rem;
    font-weight: 800;
}
.fch p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    margin-top: 0.15rem;
}
.f-urgency {
    background: #fff8e1;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: #92400e;
    text-align: center;
    margin-bottom: 0.85rem;
}
.fg {
    margin-bottom: 0.65rem;
}
.fg input,
.fg select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 2px solid var(--border);
    border-radius: 9px;
    font-size: 0.88rem;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s;
}
.fg input:focus,
.fg select:focus {
    border-color: var(--bright);
    background: white;
}
.fg input::placeholder {
    color: #94a3b8;
}
.sub-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.82rem;
    border: none;
    border-radius: 9px;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.sub-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
}
.form-trust {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}
.form-trust span {
    font-size: 0.7rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

/* TRUST BAR */
.trust-bar {
    background: var(--navy);
    padding: 1.1rem 1.25rem;
}
.trust-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.trust-num {
    font-family: "Sora", sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.trust-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 0.15rem;
}

/* MESSAGE MATCH STRIP */
.msg-strip {
    background: var(--light);
    border-top: 3px solid var(--bright);
    border-bottom: 3px solid var(--bright);
    padding: 1.1rem 1.25rem;
}
.msg-strip-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.msg-strip h2 {
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 800;
}
.msg-strip p {
    font-size: 0.83rem;
    color: var(--muted);
    margin-top: 0.12rem;
}

/* COURSE INCLUDES */
/* ── What You Will Learn — Module Pills ── */
.modules-section {
    padding: 3.5rem 1.25rem;
    background: #ffffff;
}
.modules-section .sec-title {
    font-family: "Sora", sans-serif; /* or your heading font */
    font-size: 1.85rem;
    font-weight: 800;
    color: #0b2545;
    text-align: center;
    margin-bottom: 0.4rem;
}
.modules-section .sec-sub {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2.2rem;
}
.modules-section .kw {
    color: #2563eb;
}
.modules-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}
.mod-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.6rem 0.525rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0b2545;
    transition: all 0.22s;
    cursor: default;
}
.mod-pill:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.15);
}
.mod-icon {
    font-size: 1.1rem;
}
.mod-pill-ai {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #16a34a;
}
.mod-pill-ai:hover {
    border-color: #16a34a;
    color: #16a34a;
}
.mod-pill-proj {
    background: linear-gradient(135deg, #0b2545, #1a4b8c);
    border-color: transparent;
    color: white;
}
.mod-pill-proj:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(11, 37, 69, 0.35);
    color: #f59e0b;
}
/* MID CTA */
.mid-cta {
    padding: 2rem 1.25rem;
}
.mc-blue {
    background: linear-gradient(135deg, var(--navy), var(--blue));
}
.mc-green {
    background: linear-gradient(135deg, #064e3b, #065f46);
}
.mc-gold {
    background: linear-gradient(135deg, #92400e, #b45309);
}
.mc-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.mc-text .tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
    display: block;
}
.mc-text h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}
.mc-text p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
}
.mc-btns {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-ow {
    border: 2px solid rgba(255, 255, 255, 0.38);
    color: rgba(255, 255, 255, 0.88);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-ow:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}
.btn-og {
    border: 2px solid rgba(52, 211, 153, 0.45);
    color: #6ee7b7;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-og:hover {
    background: rgba(52, 211, 153, 0.1);
    color: white;
}

/* DEMAND */
.demand-sec {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 50%, #0f3460 100%);
    padding: 3.5rem 1.25rem;
    position: relative;
    overflow: hidden;
}
.demand-sec::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
    pointer-events: none;
}
.d-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.3fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.d-col {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(6px);
}
.d-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.role-list {
    list-style: none;
    margin-bottom: 1.3rem;
}
.role-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    font-weight: 500;
    padding: 0.38rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.role-list li:last-child {
    border: none;
}
.rdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}
.stat-big {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.6rem;
}
.stat-n {
    font-family: "Sora", sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.stat-s {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}
.stat-l {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.48);
    margin-top: 0.1rem;
    width: 100%;
}
.d-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 1.1rem;
    margin-top: 0.5rem;
}
.dbadge {
    padding: 0.42rem 0.75rem;
    border-radius: 7px;
    font-size: 0.76rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}
.db-g {
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.22);
}
.db-b {
    background: rgba(37, 99, 235, 0.12);
    color: #93c5fd;
    border: 1px solid rgba(37, 99, 235, 0.22);
}
.db-o {
    background: rgba(245, 158, 11, 0.12);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.22);
}
.sal-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}
.sal-row {
    display: grid;
    grid-template-columns: 120px 1fr 78px;
    gap: 0.45rem;
    align-items: center;
}
.sal-role {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.65);
}
.sal-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}
.sal-bar {
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sal-bar.gold {
    background: linear-gradient(90deg, #d97706, #fbbf24);
}
.sal-range {
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--gold);
    text-align: right;
}
.sal-note {
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.9rem;
}
.open-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 10px;
    padding: 0.85rem;
    text-align: center;
}
.open-num {
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}
.open-lbl {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.62);
}

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.2rem;
}
.why-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    border-top: 4px solid transparent;
    transition: all 0.3s;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    border-top-color: var(--bright);
}
.why-icon {
    font-size: 1.9rem;
    margin-bottom: 0.65rem;
}
.why-card h3 {
    color: var(--navy);
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 0.38rem;
}
.why-card p {
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.65;
}







 .section-header {
    text-align: center;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .section-header.visible { opacity: 1; transform: translateY(0); }

  .section-tag {
    display: inline-block;
    background: rgba(59,130,246,0.15);
    color: var(--accent);
    border: 1px solid rgba(59,130,246,0.35);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  h2 span { color: var(--accent); }

  .sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
  }

  /* ─── Grid ─── */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 48px;
  }

  /* ─── Cards ─── */
  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  }
  .card.visible { opacity: 1; transform: translateY(0); }
  .card:hover { box-shadow: 0 8px 40px rgba(59,130,246,0.18); }

  .card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  /* stagger delays */
  .card:nth-child(1) { transition-delay: 0.05s; }
  .card:nth-child(2) { transition-delay: 0.15s; }
  .card:nth-child(3) { transition-delay: 0.25s; }
  .card:nth-child(4) { transition-delay: 0.35s; }

  .card-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
  }

  .card-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

  /* ─── Counter ─── */
  .counter-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
  }

  .counter-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1;
    color: var(--text);
    /* Animate individual digit changes */
    transition: color 0.3s;
  }

  .counter-suffix {
    font-family: 'Syne', sans-serif;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--accent);
  }

  .counter-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
  }

  /* ─── Growth bar ─── */
  .bar-wrap {
    margin-top: 16px;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
  }
  .bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #60a5fa);
    width: 0;
    transition: width 2s cubic-bezier(0.4,0,0.2,1);
  }
  .bar-fill.animated { width: var(--target-width); }

  /* ─── Salary table ─── */
  .salary-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    max-width: 1100px;
    margin: 0 auto 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
  }
  .salary-card.visible { opacity: 1; transform: translateY(0); }

  .salary-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .salary-rows { display: flex; flex-direction: column; gap: 12px; }

  .salary-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .salary-label {
    font-size: 14px;
    color: var(--muted);
    min-width: 150px;
    flex-shrink: 0;
  }

  .salary-bar-wrap {
    flex: 1;
    height: 10px;
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    overflow: hidden;
  }

  .salary-bar {
    height: 100%;
    border-radius: 999px;
    width: 0;
    background: linear-gradient(90deg, var(--green), #86efac);
    transition: width 1.8s cubic-bezier(0.4,0,0.2,1);
  }
  .salary-bar.bar-2 { background: linear-gradient(90deg, var(--accent), #93c5fd); }
  .salary-bar.bar-3 { background: linear-gradient(90deg, #8b5cf6, #c4b5fd); }
  .salary-bar.bar-4 { background: linear-gradient(90deg, var(--accent2), #fcd34d); }
  .salary-bar.bar-5 { background: linear-gradient(90deg, #ef4444, #f87171); }

  .salary-bar.animated { width: var(--target-width); }

  .salary-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
  }

  /* ─── Badges ─── */
  .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease 0.6s;
  }
  .badges.visible { opacity: 1; }

  .badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .badge:hover { background: rgba(59,130,246,0.1); color: var(--text); }

  /* pulse dot */
  .pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    position: relative;
    flex-shrink: 0;
  }
  .pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.4;
    animation: pulse 1.8s ease-out infinite;
  }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.2); opacity: 0; }
  }

  /* ─── Shimmer on load ─── */
  @keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
  }

  .note {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.5s ease 0.8s;
  }
  .note.visible { opacity: 1; }
  
  
  
  

/* CURRICULUM */
.curr-wrap {
    max-width: 840px;
    margin: 0 auto;
}
.acc-item {
    background: white;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    margin-bottom: 0.55rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.acc-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.acc-item.open {
    border-color: var(--bright);
}
.acc-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.92rem 1.1rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: "Inter", sans-serif;
    gap: 0.5rem;
}
.acc-title {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex: 1;
}
.acc-count {
    font-size: 0.66rem;
    font-weight: 600;
    background: var(--light);
    color: var(--muted);
    padding: 0.1rem 0.48rem;
    border-radius: 50px;
    white-space: nowrap;
}
.acc-toggle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--bright);
    flex-shrink: 0;
    transition: all 0.3s;
}
.acc-item.open .acc-toggle {
    background: var(--bright);
    color: white;
    transform: rotate(45deg);
}
.acc-body {
    display: none;
    padding: 0 1.1rem 0.85rem;
}
.acc-item.open .acc-body {
    display: block;
}
.acc-body ul {
    padding-left: 1.05rem;
}
.acc-body li {
    font-size: 0.8rem;
    color: var(--muted);
    padding: 0.18rem 0;
    line-height: 1.55;
}

/* HIGHLIGHTS */
.hl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.85rem;
}
.hl-card {
    background: linear-gradient(135deg, var(--blue), var(--bright));
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
}
.hl-icon {
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
}

/* BATCH */
.batch-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12);
}
.batch-head {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    padding: 1.2rem 1.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.batch-head h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
}
.seats-tag {
    background: var(--gold);
    color: var(--navy);
    padding: 0.22rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}
.batch-body {
    padding: 1.7rem;
}
.batch-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}
.bd-row {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}
.bd-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.bd-lbl {
    font-size: 0.7rem;
    color: var(--muted);
}
.bd-val {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}
.batch-cta {
    text-align: center;
}
.urgency {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* TESTIMONIALS */
.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.2rem;
}
.test-card {
    background: white;
    padding: 1.4rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.test-stars {
    color: var(--gold);
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
}
.test-card p {
    color: var(--muted);
    font-size: 0.83rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}
.test-auth {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.test-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.test-name {
    font-weight: 700;
    font-size: 0.83rem;
    color: var(--navy);
}
.test-role {
    font-size: 0.71rem;
    color: var(--muted);
}

/* MARQUEE */
.mq-wrap {
    overflow: hidden;
    padding: 0.8rem 0;
}
.mq-track {
    display: flex;
    gap: 1.1rem;
    animation: marquee 28s linear infinite;
    width: max-content;
}
@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}
.co-pill {
    background: white;
    border: 1.5px solid var(--border);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* FAQ */
.faq-wrap {
    max-width: 730px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    margin-bottom: 0.6rem;
    overflow: hidden;
}
.faq-q {
    padding: 0.9rem 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
    gap: 0.5rem;
}
.faq-q span {
    color: var(--bright);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-a {
    display: none;
    padding: 0 1.05rem 0.85rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.75;
}
.faq-item.open .faq-a {
    display: block;
}
.faq-item.open .faq-q span {
    transform: rotate(45deg);
}

/* CONTACT */
.contact-sec {
    background: linear-gradient(135deg, var(--navy) 0%, #0f3460 100%);
    padding: 3.5rem 1.25rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.c-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 1.7rem;
    margin-bottom: 1rem;
}
.c-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.c-item:last-child {
    border: none;
}
.c-ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.c-lbl {
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.44);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 0.18rem;
}
.c-val {
    color: white;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.5;
}
.c-link {
    color: var(--gold);
    text-decoration: none;
}
.c-link:hover {
    color: #fbbf24;
}
.c-actions {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.1rem;
}
.cab {
    flex: 1;
    text-align: center;
    padding: 0.72rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.83rem;
    text-decoration: none;
    transition: all 0.25s;
}
.cab-call {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}
.cab-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}
.cab:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA SECTION */
.cta-sec {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    text-align: center;
    padding: 3.5rem 1.25rem;
}
.cta-sec h2 {
    font-family: "Sora", sans-serif;
    font-size: 1.9rem;
    color: var(--navy);
    margin-bottom: 0.45rem;
}
.cta-sec p {
    color: rgba(11, 37, 69, 0.72);
    font-size: 0.97rem;
    margin-bottom: 1.7rem;
}
.cta-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cd {
    background: var(--navy);
    color: white;
    padding: 0.85rem 1.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.25s;
}
.btn-cd:hover {
    background: #0f3460;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.btn-cw {
    background: white;
    color: var(--navy);
    padding: 0.85rem 1.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.25s;
}
.btn-cw:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* FOOTER */
footer {
    background: #060f1e;
    color: rgba(255, 255, 255, 0.6);
}
.foot-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 1rem;
}
.foot-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.foot-brand p {
    font-size: 0.8rem;
    line-height: 1.75;
    margin-top: 0.4rem;
}
.foot-col h4 {
    color: white;
    font-size: 0.87rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.foot-col p,
.foot-col a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.58);
    display: block;
    margin-bottom: 0.32rem;
    line-height: 1.6;
}
.foot-col a:hover {
    color: var(--gold);
}
.foot-bot {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.26);
    padding-bottom: 0.8rem;
}

/* STICKY */
.sticky-btns {
    position: fixed;
    right: 1rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    z-index: 999;
}
.s-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
}
.s-btn:hover {
    transform: scale(1.12);
}
.s-wa {
    background: #25d366;
}
.s-call {
    background: var(--bright);
}

/* MOBILE CALL BAR */
.call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--green);
    padding: 0.8rem 1rem;
    text-align: center;
}
.call-bar a {
    color: white;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

/* MODAL */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.open {
    display: flex;
}
.modal-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 390px;
    width: 90%;
    position: relative;
    animation: popIn 0.3s ease;
}
@keyframes popIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: var(--light);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--muted);
}
.success-body {
    text-align: center;
    padding: 1rem 0;
}
.success-body .tick {
    font-size: 2.8rem;
}
.success-body h4 {
    font-family: "Sora", sans-serif;
    color: var(--green);
    margin: 0.5rem 0;
    font-size: 1.15rem;
}
.success-body p {
    color: var(--muted);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .d-grid {
        grid-template-columns: 1fr;
    }
    .sal-row {
        grid-template-columns: 100px 1fr 70px;
    }
}
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 1.85rem;
    }
    .hero-usp {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .batch-details {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .foot-top {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }
    .msg-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-phone {
        display: none;
    }
    .call-bar {
        display: block;
    }
    .sticky-btns {
        bottom: 4.5rem;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.55rem;
    }
    .sec-title {
        font-size: 1.45rem;
    }
    .mc-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media screen and (max-width:478px) {
    .scroll img {
        height: 250px;
        object-fit: cover;
    }
}

.scroll {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 8px;
}

.marqueeinner {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100%;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: -webkit-marquee;
    -webkit-marquee-direction: backwards;
    -webkit-marquee-style: alternate;
    -webkit-marquee-speed: normal;
    -webkit-marquee-increment: small;
    -webkit-marquee-repetition: 4;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 24px));
    }
}



.scroll2 {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 8px;
}

.marqueeinner2 {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100%;
    animation: scroll2 40s linear infinite;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: -webkit-marquee;
    -webkit-marquee-direction: backwards;
    -webkit-marquee-style: alternate;
    -webkit-marquee-speed: normal;
    -webkit-marquee-increment: small;
    -webkit-marquee-repetition: 4;
}

@keyframes scroll2 {
    0% {
        transform: translateX(calc(-100% - 24px));
    }

    100% {
        transform: translateX(0);
    }
}

.scroll2 img {
    height: 250px;
}

@media screen and (max-width:478px) {
    .scroll2 img {
        height: 250px;
        object-fit: cover;
    }
}


.scroll1 img {
    height: 40px;
}

@media screen and (max-width:478px) {
    .scroll1 img {
        height: 40px;
        object-fit: cover;
    }
}

.scroll1 {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 8px;
}

.marqueeinner1 {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100%;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: -webkit-marquee;
    -webkit-marquee-direction: backwards;
    -webkit-marquee-style: alternate;
    -webkit-marquee-speed: normal;
    -webkit-marquee-increment: small;
    -webkit-marquee-repetition: 4;
}

@keyframes scroll1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 24px));
    }
}

.newbgvideos {
    background-image: url(https://elearninfotech.com/img/bgwhite-gray.jpg);
    padding: 20px 0px 30px;
    margin-top: -15px;
}

.headingborder h2 {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: #333;
    padding-bottom: 30px;
}

.headingborder h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: url(data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 30'><path d='M0,0 Q60,30 120,0' stroke='%23007bff' stroke-width='4' fill='transparent'/></svg>) no-repeat;
    background-size: contain;
}

.carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}


.scroll img {
    height: 250px;
}

.py-40
{
    padding: 40px 0px;
}
.py-30
{
    padding: 30px 0px;
}

.py-20
{
    padding: 20px 0px;
}



.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
  }
  .video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  .video-thumbnail:hover img {
    transform: scale(1.04);
  }

  /* Play button overlay on each thumbnail */
  .video-thumbnail::after {
    content: '▶';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .video-thumbnail:hover::after {
    opacity: 1;
  }

  /* Responsive bottom spacing */
  .mb-20 {
    margin-bottom: 20px;
  }
  
  
   .success-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* 3 columns on tablet */
  @media (max-width: 1024px) {
    .success-video-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* 2 columns on small tablet */
  @media (max-width: 768px) {
    .success-video-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* 1 column on mobile */
  @media (max-width: 480px) {
    .success-video-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Thumbnail styles */
  .video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
  }

  .video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .video-thumbnail:hover img {
    transform: scale(1.04);
  }

  /* Play button overlay */
  .video-thumbnail::after {
    content: '▶';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .video-thumbnail:hover::after {
    opacity: 1;
  }
  
  .text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px !important;
}
.innerpagebutton {
    background: #fdc800;
    color: #212121;
    padding: 8px 5px;
    border-radius: 20px;
    width: 220px;
}
.default-big-btn {
    color: #ffffff;
    padding: 15px 0;
    background: #002147;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    border: none;
    width: 164px;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}


.acc-count {
    display: none !important;
}