@import url("/css/master.css");

/* India Independence Day seasonal theme. Expires via Date.UTC(2026, 7, 18, 10, 0, 0). */
.independence-theme {
    display: none;
    pointer-events: none;
}

.independence-theme-active .independence-theme {
    display: block;
}

.independence-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 10020;
    background: linear-gradient(90deg, #ff9933 0 33.333%, #ffffff 33.333% 66.666%, #138808 66.666% 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.independence-kites,
.independence-balloons {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 9996;
    pointer-events: none;
}

.independence-kites {
    opacity: 0.86;
}

.independence-kite {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 24px;
    height: 34px;
    transform: scale(var(--scale));
    animation: independenceKiteDrift 7.5s ease-in-out infinite;
    animation-delay: var(--delay);
    pointer-events: none;
}

.independence-kite-face {
    position: absolute;
    top: 0;
    left: 2px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    border: 1px solid rgba(0, 31, 94, 0.18);
    background: linear-gradient(135deg, #ff9933 0 34%, #ffffff 34% 66%, #138808 66% 100%);
    box-shadow: 0 3px 8px rgba(0, 31, 94, 0.12);
}

.independence-kite-face::before,
.independence-kite-face::after {
    content: "";
    position: absolute;
    background: rgba(0, 31, 94, 0.16);
}

.independence-kite-face::before {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}

.independence-kite-face::after {
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
}

.independence-kite-center {
    position: absolute;
    width: 6px;
    height: 6px;
    left: 50%;
    top: 50%;
    border: 1px solid #001f8f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #001f8f 0 24%, transparent 26% 100%);
    z-index: 1;
}

.independence-kite-tail {
    position: absolute;
    top: 21px;
    left: 11px;
    width: 1px;
    height: 16px;
    background: linear-gradient(#001f8f, rgba(0, 31, 143, 0));
    transform: rotate(-14deg);
}

.independence-kite-tail::before,
.independence-kite-tail::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    left: -2px;
    border-radius: 50%;
    background: #ff9933;
}

.independence-kite-tail::before {
    top: 4px;
}

.independence-kite-tail::after {
    top: 10px;
    background: #138808;
}

@keyframes independenceKiteDrift {
    0%, 100% {
        margin-left: 0;
        margin-top: 0;
        rotate: -4deg;
    }
    50% {
        margin-left: 16px;
        margin-top: -10px;
        rotate: 6deg;
    }
}

.independence-balloon {
    position: absolute;
    left: var(--x);
    bottom: -80px;
    width: 22px;
    height: 29px;
    border-radius: 50% 50% 48% 48%;
    animation: independenceBalloonFloat var(--duration) linear infinite;
    animation-delay: calc(var(--delay) * -1);
    opacity: 0.76;
    pointer-events: none;
}

.independence-balloon::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    width: 7px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.independence-balloon::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 28px;
    width: 1px;
    height: 28px;
    background: rgba(0, 31, 94, 0.22);
}

.independence-balloon-saffron {
    background: #ff9933;
    box-shadow: inset -5px -7px 0 rgba(170, 83, 10, 0.18);
}

.independence-balloon-white {
    background: #ffffff;
    border: 1px solid rgba(0, 31, 94, 0.14);
    box-shadow: inset -5px -7px 0 rgba(0, 31, 94, 0.08);
}

.independence-balloon-green {
    background: #138808;
    box-shadow: inset -5px -7px 0 rgba(0, 80, 32, 0.22);
}

@keyframes independenceBalloonFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(-4deg);
    }
    50% {
        transform: translate3d(18px, -55vh, 0) rotate(5deg);
    }
    100% {
        transform: translate3d(-12px, -112vh, 0) rotate(-3deg);
    }
}

.independence-home-badge {
    position: fixed;
    top: 108px;
    right: 24px;
    z-index: 9997;
    max-width: min(320px, calc(100vw - 32px));
    padding: 9px 16px;
    border: 1px solid rgba(0, 31, 94, 0.16);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 153, 51, 0.95), rgba(255, 255, 255, 0.96), rgba(19, 136, 8, 0.92));
    color: #001f5e;
    box-shadow: 0 10px 24px rgba(0, 31, 94, 0.13);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    pointer-events: none;
}

.independence-home-badge::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 7px;
    border: 2px solid #001f8f;
    border-radius: 50%;
    vertical-align: 0;
}

@media (max-width: 767px) {
    .independence-kite:nth-child(n + 5),
    .independence-balloon:nth-child(n + 7) {
        display: none;
    }

    .independence-kite {
        width: 18px;
        height: 26px;
    }

    .independence-kite-face {
        width: 16px;
        height: 16px;
    }

    .independence-balloon {
        width: 17px;
        height: 23px;
        opacity: 0.62;
    }

    .independence-balloon::after {
        top: 22px;
        height: 20px;
    }

    .independence-home-badge {
        top: 84px;
        right: 12px;
        left: 12px;
        max-width: none;
        padding: 7px 12px;
        font-size: 12px;
    }
}

*,
::before,
::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-scroll-snap-strictness: proximity;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --zeropadding: 0;
    --primary-blue: #001F5E;
    --primary-orange: #ED7208;
    --primary-green: #0B7A35;
    --accent-red: #d62828c4;
    --accent-red-solid: #d62828;
    --text-color: #6B6B6B;
    --bg-color: #ffffff;
    --transition: all 0.3s ease;
    --orange: #ED7208;
    --gap: 10px;
    --width: 100%;
    --widthgallery: 240px;
    --height: var(--width);
    --xp-bg: #f5f5f2;
    --xp-surface: #ffffff;
    --xp-ink: #17181d;
    --xp-mute: #6c6c76;
    --xp-hairline: #e4e3dd;
    --xp-hue-a: #2f6fed;
    --xp-hue-a-tint: #eaf1ff;
    --xp-hue-b: #0ea373;
    --xp-hue-b-tint: #e6f8f1;
    --xp-hue-c: #d97a06;
    --xp-hue-c-tint: #fdf1e0;
    --xp-hue-d: #8b3bd1;
    --xp-hue-d-tint: #f5ecfc;
    --ink: #2A1B0F;
    --orange-1: #FFB020;
    --orange-2: #FF7A00;
    --orange-3: #E85D00;
    --cream: #FFF8EE;
    --navy: #001F5E;
    --navy-2: #13294B;
    --blue: #2F6FED;
    --blue-soft: #EAF1FF;
    --bg: #F6F8FC;
    --muted: #64748B;
    --line: #E4E9F2;
    --amber: #FF8A00;
    --navy: #001F5E;
    --navy-2: #13294B;
    --blue: #2F6FED;
    --orange-1: #FFB020;
    --orange-2: #FF7A00;
    --cream: #FFF8EE;
    --muted: #5B6B82;
    --line: rgba(11, 30, 61, 0.08);
    --white: #FFFFFF;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    background: rgb(242, 242, 242);
    overflow-x: hidden;
}

.baio-header.fixed-header {
    backdrop-filter: blur(10px);
    position: fixed;
    top: -70px;
    transform: translateY(69px);
    transition: transform 0.8s, -webkit-transform 0.8s;
    background: rgba(5, 0, 20, 0.76);
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    font-family: "Plus Jakarta Sans";
    padding-right: 0px;
    padding-left: 0px;
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 250, 243));
    z-index: 1;
    padding-top: 150px !important;
    padding-bottom: 0px !important;
}

.hero-section::before {
    content: "";
    width: 500px;
    height: 500px;
    background: rgba(255, 152, 0, 0.082);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: -250px;
    transform: translateX(-50%);
    filter: blur(80px);
}

.hero-title {
    font-size: 55px;
    font-weight: 800;
    color: #001F5E;
    line-height: 65px;
    font-family: "Poppins", sans-serif;
    margin: 20px auto 0px;
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title span {
    color: #ED7208;
}

.hero-text {
    max-width: 760px;
    margin: auto;
    --tw-text-opacity: 1;
    color: #6B6B6B;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    line-height: 1.8;
    font-weight: 400;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(0, 31, 94, 0.05);
    border-radius: 50px;
    color: #001F5E;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 31, 94, 0.1);
    font-size: 13px;
}

.hero-btn:hover {
    background: rgb(8, 25, 77);
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
}

.hero-card {
    background: rgb(255, 255, 255);
    border-radius: 32px;
    text-align: center;
    border-color: rgba(197, 198, 210, 0.2);
    position: relative;
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-width: 1px;
    max-width: calc(66.6667%);
    margin: 50px auto 0px;
    bottom: 0px;
    padding: 30px 30px 0px;
    transform: rotate(2deg);
}

.hero-card img {
    animation: 3s ease 0s infinite normal none running bounce;
    --tw-drop-shadow: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    width: 100%;
    display: inline-block;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.stats-section {
    background: rgb(7, 21, 61);
    padding: 30px 0px;
}

.stats-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.stats-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 152, 0, 0.12);
    border: 1px solid rgba(255, 152, 0, 0.35);
    border-radius: 8px;
    color: rgb(255, 152, 0);
    font-size: 22px;
    transition: 0.35s;
    transform: translateY(0px);
}

.stats-item:hover .stats-icon {
    background: rgb(255, 152, 0);
    color: rgb(255, 255, 255);
    transform: translateY(-6px);
    box-shadow: rgba(255, 152, 0, 0.35) 0px 15px 35px;
}

.stats-content h2 {
    color: rgb(255, 152, 0);
    font-size: 35px;
    font-weight: 700;
    line-height: 30px;
    margin: 0px;
    padding: 0px;
}

.stats-content p {
    color: rgb(216, 216, 216);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 0px;
    line-height: 20px;
}

.brand-section {
    background: rgb(255, 255, 255);
    padding: 100px 0px !important;
}

.brand-card {
    position: relative;
    background: rgb(255, 255, 255);
    border: 12px solid rgb(7, 21, 66);
    border-radius: 35px;
    padding: 5px;
    text-align: center;
    overflow: hidden;
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.texaresec {
    --tw-border-opacity: 1;
    border-color: rgb(197 198 210 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 90px 70px;
    border-radius: 35px;
    border-width: 1px;
    border-style: solid;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.texaresec::after {
    border: 1px solid rgb(216, 216, 216);
    right: -60px;
    bottom: -60px;
}

.texaresec::before {
    left: -60px;
    top: -60px;
}

.brand-card .circle {
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgb(236, 236, 236);
    border-radius: 50%;
    right: -80px;
    bottom: -80px;
}

.brand-tag {
    display: inline-block;
    background: rgb(7, 21, 66);
    color: rgb(255, 255, 255);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.brand-title {
    font-size: 65px;
    font-weight: 800;
    color: rgb(7, 21, 66);
    margin: 30px 0px 25px;
    position: relative;
    z-index: 2;
}

.brand-heading {
    font-size: 30px;
    color: rgb(7, 21, 66);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.texaresec::before,
.texaresec::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: rgb(236, 236, 236);
    border-radius: 50%;
}

.brand-text {
    max-width: 760px;
    margin: auto;
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    --tw-text-opacity: 1;
    color: rgb(68 70 80 / var(--tw-text-opacity, 1));
    width: calc(83.3333%);
}

.why-baio {
    padding: 50px 0px;
    background: rgb(250, 249, 246);
}

.section-tag {
    color: rgb(255, 140, 0);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: rgb(6, 21, 65);
    margin-top: 6px;
    line-height: 1.2;
}

.syllabus-btn {
    background: rgb(6, 21, 65);
    color: rgb(255, 255, 255);
    border-radius: 6px;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.syllabus-btn:hover {
    color: rgb(255, 255, 255);
    background: rgb(255, 140, 0);
}

.feature-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(232, 232, 232);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: 0.35s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 45px;
}

.feature-card:hover,
.feature-card.active-card {
    --tw-bg-opacity: 1;
    background-color: rgb(253 139 0 / var(--tw-bg-opacity, 1));
}

.feature-card:hover .icon-box,
.feature-card.active-card .icon-box {
    color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-card:hover h4,
.feature-card:hover p,
.feature-card.active-card h4,
.feature-card.active-card p {
    color: rgb(255, 255, 255);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(244, 244, 244);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(6, 21, 65);
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 18px;
    color: rgb(6, 21, 65);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-card p {
    color: rgb(85, 85, 85);
    font-size: 14px;
    line-height: 1.5;
}

.feature-card.active {
    background: rgb(6, 21, 65);
}

.feature-card.active h4,
.feature-card.active p {
    color: rgb(255, 255, 255);
}

.feature-card.active .icon-box {
    background: rgba(255, 255, 255, 0.12);
    color: rgb(255, 255, 255);
}

.feature-card.orange h4,
.feature-card.orange p {
    color: rgb(255, 255, 255);
}

.feature-card.orange .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
}

.difference-section {
    background-image: initial;
    background-position: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    --tw-bg-opacity: 1;
    background-color: rgb(244 243 241 / var(--tw-bg-opacity, 1));
    padding: 50px 0px !important;
}

.sub-title {
    display: inline-block;
    color: rgb(255, 140, 0);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-title {
    color: rgb(8, 25, 77);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin: 10px 0px;
}

.compare-card {
    position: relative;
    height: 100%;
    border-radius: 32px;
    padding: 70px 50px 61px;
}

.compare-left {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 236, 236);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 40px;
}

.compare-right {
    background: rgb(8, 25, 77);
    color: rgb(255, 255, 255);
}

.compare-badge {
    position: absolute;
    left: 45px;
    top: -18px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.compare-badge i {
    margin-right: 8px;
}

.compare-badge.red {
    background: rgb(255, 233, 232);
    color: rgb(217, 77, 69);
    border: 1px solid rgba(217, 77, 69, 0.1);
}

.compare-badge.orange {
    background: rgb(255, 152, 0);
    color: rgb(255, 255, 255);
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.compare-item:last-child {
    margin-bottom: 0px;
}

.compare-icon,
.advantage-card ul li span {
    width: 30px;
    min-width: 30px;
    height: 30px;
    justify-content: center;
    border-radius: 4px;
    background: rgb(244, 244, 244);
    color: rgb(141, 141, 141);
    font-size: 15px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(141, 141, 141, 0.1);
}

.compare-right .compare-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgb(255, 152, 0);
}

.lightning {
    font-size: 16px;
}

.compare-item h4,
.advantage-card ul li {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
    color: rgb(55, 69, 103);
}

.compare-left p {
    color: rgb(109, 109, 109);
    font-size: 14px;
    line-height: 1.5;
    margin: 0px;
}

.compare-right h4 {
    color: rgb(255, 255, 255);
}

.compare-right p {
    color: rgb(214, 216, 228);
    font-size: 13px;
    line-height: 1.5;
    margin: 0px;
}

.compare-card {
    transition: 0.35s;
}

.compare-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 50px;
}

.curriculum-section {
    background: rgb(255, 255, 255);
    padding: 50px 0px !important;
}

.section-subtitle {
    display: inline-block;
    color: rgb(255, 140, 0);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.curriculum-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 32px;
    padding: 50px;
    transition: 0.35s;
}

.curriculum-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 45px;
}

.curriculum-card.orange {
    background: rgb(255, 146, 0);
    color: rgb(255, 255, 255);
}

.curriculum-card.dark {
    background: rgb(6, 21, 65);
    color: rgb(255, 255, 255);
}

.curriculum-content {
    position: relative;
    z-index: 5;
}

.curriculum-content h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
}

.curriculum-content p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 30px;
}

.curriculum-info {
    margin-bottom: 40px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.info-row span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-row strong {
    font-size: 14px;
    font-weight: 500;
}

.curriculum-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.dark-btn {
    background: rgb(6, 21, 65);
    color: rgb(255, 255, 255);
}

.dark-btn:hover {
    background: rgb(255, 255, 255);
    color: rgb(6, 21, 65);
}

.orange-btn {
    background: rgb(255, 146, 0);
    color: rgb(255, 255, 255);
}

.orange-btn:hover {
    background: rgb(255, 255, 255);
    color: rgb(6, 21, 65);
}

.card-shape {
    position: absolute;
    right: 30px;
    bottom: 0px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.12);
    z-index: 1;
    pointer-events: none;
}

.curriculum-section .section-title {
    margin: 0px;
    font-size: 35px;
    font-weight: 700;
}

.curriculum-section .row.g-4 {
    width: calc(83.3333%);
    margin: 0px auto;
}

.problem-content {
    padding-right: 100px;
}

.problem-section {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
    --tw-bg-opacity: 1;
    background-color: rgb(239 238 235 / var(--tw-bg-opacity, 1));
}

.problem-section::after {
    content: "";
    width: 550px;
    height: 550px;
    position: absolute;
    right: -120px;
    top: -100px;
    background: rgba(255, 145, 0, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.problem-content,
.audit-card {
    position: relative;
    z-index: 2;
}

.problem-title {
    font-size: 35px;
    font-weight: 700;
    color: rgb(7, 21, 61);
    margin-top: 10px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.problem-subtitle {
    color: rgb(157, 157, 165);
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.problem-content p {
    color: rgb(91, 91, 102);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.problem-content p.fw-bold {
    color: rgb(7, 21, 61);
    font-weight: 700 !important;
}

.problem-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(7, 21, 61);
}

.feature-item i {
    color: rgb(255, 145, 0);
    font-size: 20px;
}

.audit-card {
    background: rgb(255, 255, 255);
    border-radius: 35px;
    padding: 50px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 25px 60px;
}

.audit-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 30px;
    border-radius: 10px;
    background: rgb(255, 243, 228);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audit-icon i {
    color: rgb(255, 140, 0);
    font-size: 35px;
}

.audit-card h4 {
    color: rgb(7, 21, 61);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.audit-card p {
    color: rgb(94, 101, 116);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.audit-image {
    overflow: hidden;
    border-radius: 26px;
}

.audit-image img {
    width: 100%;
    display: block;
    transition: 0.4s;
}

.audit-card:hover img {
    transform: scale(1.05);
}

.audit-card {
    transition: 0.35s;
}

.audit-card:hover {
    transform: translateY(-10px);
}

.testimonial-section {
    padding: 50px 0px;
    background: rgb(255, 255, 255);
}

.owl-stage-outer {
    padding: 30px 0px;
}

.testimonial-slider .owl-item.active.center .testimonial-card {
    border: 1px solid rgb(255, 146, 0);
    box-shadow: rgba(255, 146, 0, 0.2) 5px 5px 15px;
}

.sub-heading {
    color: rgb(255, 136, 0);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
}

.section-heading {
    font-size: 40px;
    color: rgb(8, 21, 61);
    font-weight: 700;
    margin-top: 5px;
}

.testimonial-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(221, 221, 221);
    border-radius: 10px;
    padding: 35px;
    transition: 0.35s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 40px;
}

.active-card {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 20px 40px;
    background: rgb(255, 140, 0);
}

.rating {
    margin-bottom: 30px;
}

.rating i {
    color: rgb(255, 153, 0);
    font-size: 13px;
    margin-right: 0px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(68, 68, 68);
    font-style: italic;
    margin-bottom: 50px;
}

.author h5 {
    font-size: 16px;
    color: rgb(8, 21, 61);
    font-weight: 700;
    margin-bottom: 5px;
}

.author span {
    font-size: 12px;
    color: rgb(119, 119, 119);
    text-transform: uppercase;
    line-height: 25px;
}

.testimonial-slider .owl-stage {
    display: flex;
}

.testimonial-slider .owl-item {
    display: flex;
}

.testimonial-slider .owl-nav {
    display: none;
}

.testimonial-slider .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.testimonial-slider .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50%;
    background: rgb(208, 208, 208) !important;
}

.testimonial-slider .owl-dot.active span {
    width: 35px;
    border-radius: 20px;
    background: rgb(255, 136, 0) !important;
}

.cta-section {
    background: rgb(2, 14, 49);
    padding: 50px 0px;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    display: inline-block;
    color: rgb(255, 152, 0);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cta-title {
    color: rgb(255, 255, 255);
    font-size: 45px;
    line-height: 1.25;
    margin-bottom: 35px;
    font-weight: 600;
}

.cta-text {
    color: rgb(212, 215, 226);
    font-size: 18px;
    line-height: 1.5;
    max-width: 900px;
    margin: 0px auto 50px;
}

.flex.btnsecare a.cta-btn:last-child {
    background: unset;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: rgb(14, 25, 63) 0px 10px 25px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: rgb(255, 146, 0);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: 0.35s;
    box-shadow: rgba(255, 145, 0, 0.35) 0px 10px 25px;
    height: unset;
}

.cta-btn:hover {
    background: rgb(255, 255, 255);
    color: rgb(6, 19, 61);
    transform: translateY(-5px);
}

.cta-note {
    margin-top: 30px;
    color: rgb(142, 151, 176);
    font-size: 13px;
    font-weight: 500;
}

.about-baio {
    background: rgb(255, 255, 255);
    padding: 100px 0px 80px !important;
}

.about-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgb(7, 21, 61);
    color: rgb(255, 255, 255);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-title {
    color: rgb(7, 21, 61);
    font-size: 60px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 30px;
}

.about-title span {
    color: rgb(255, 140, 0);
}

.about-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgb(95, 101, 114);
    margin: 0px;
}

.mission-section {
    padding: 100px 0px;
    background: rgb(250, 249, 247);
}

.mission-card,
.vision-card {
    position: relative;
    height: 100%;
    padding: 45px;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s;
}

.mission-card:hover,
.vision-card:hover,
.counter-card:hover {
    transform: translateY(-8px);
}

.mission-card {
    background: rgb(7, 21, 61);
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 45px;
}

.mission-card::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -120px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(255, 145, 0, 0.19), transparent);
}

.vision-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 236, 236);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 35px;
}

.mission-icon,
.vision-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 25px;
}

.mission-icon {
    background: rgba(255, 145, 0, 0.15);
    color: rgb(255, 152, 0);
}

.vision-icon {
    width: 55px;
    height: 56px;
    border-radius: 50%;
    background: rgb(255, 244, 229);
    color: rgb(255, 152, 0);
    font-size: 25px;
}

.mission-card h2,
.vision-card h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card h2 {
    color: rgb(255, 255, 255);
}

.vision-card h2 {
    color: rgb(7, 21, 61);
}

.mission-card p {
    color: rgb(214, 216, 229);
    font-size: 17px;
    line-height: 1.7;
}

.vision-card p {
    color: rgb(102, 102, 102);
    font-size: 17px;
    line-height: 1.7;
}

.counter-card {
    background: rgb(255, 255, 255);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgb(236, 236, 236);
    transition: 0.35s;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 10px 30px;
}

.counter-card.active {
    background: rgb(255, 146, 0);
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
}

.counter-card h3 span {
    font-size: 35px;
    font-weight: 700;
    color: rgb(7, 21, 61);
    margin-bottom: 6px;
}

.counter-card.active h3 {
    color: rgb(255, 255, 255);
}

.counter-card span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgb(102, 102, 102);
}

.counter-card.active span {
    color: rgb(255, 255, 255);
}

.flexcount {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.flexcount sup {
    margin: 0px;
    padding: 0px;
    font-size: 25px;
}

.our-story-section {
    background: rgb(6, 19, 61);
    padding: 50px 0px;
    overflow: hidden;
    position: relative;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
}

.story-image img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

.story-image:hover img {
    transform: scale(1.06);
}

.story-image:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 20px 50px;
}

.story-content {
    padding-left: 45px;
}

.story-tag {
    display: inline-block;
    color: rgb(255, 152, 0);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.story-content h2 {
    color: rgb(255, 255, 255);
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 30px;
}

.story-content p {
    color: rgb(215, 219, 234);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.our-stor-section::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    right: -18px;
    top: -120px;
    border-radius: 50%;
    background: rgba(255, 145, 0, 0.08);
    filter: blur(80px);
}

.advantage-section {
    background: rgb(250, 249, 247);
    padding: 50px 0px !important;
}

.section-description {
    max-width: calc(66.6667%);
    margin: 10px auto auto;
    color: rgb(97, 103, 117);
    font-size: 16px;
    line-height: 1.5;
}

.advantage-card {
    position: relative;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 236, 236);
    border-radius: 25px;
    padding: 50px;
    height: 100%;
    transition: 0.35s;
    overflow: hidden;
    cursor: pointer;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 45px;
    background: rgb(255, 146, 0);
}

.advantage-card.active {
    background: rgb(7, 21, 61);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 45px;
}

.advantage-card.active .icon-box {
    background: rgba(255, 255, 255, 0.1);
}

.advantage-card.active .icon-box i {
    color: rgb(255, 255, 255);
}

.advantage-card h3 {
    font-size: 25px;
    font-weight: 600;
    color: rgb(7, 21, 61);
    margin-bottom: 20px;
    line-height: 1.3;
}

.advantage-card.active h3 {
    color: rgb(255, 255, 255);
}

.advantage-card p {
    font-size: 15px;
    color: rgb(102, 102, 102);
    line-height: 1.5;
    margin: 0px;
}

.advantage-card.active p {
    color: rgb(213, 217, 231);
}

.team-section {
    background: rgb(255, 255, 255);
    padding: 50px 0px !important;
}

.team-subtitle {
    display: inline-block;
    color: rgb(255, 136, 0);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-title {
    font-size: 35px;
    font-weight: 800;
    color: rgb(7, 21, 61);
    line-height: 1.2;
    margin-bottom: 10px;
}

.team-card {
    transition: 0.35s;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 15px 35px;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-image::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent 45%);
    opacity: 0;
    transition: 0.35s;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-content {
    padding-top: 10px;
}

.team-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(7, 21, 61);
    margin-bottom: 5px;
    line-height: 1.2;
}

.team-content span {
    display: block;
    color: rgb(255, 136, 0);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-section {
    background: linear-gradient(0deg, rgb(250, 249, 246), rgb(255, 255, 255));
    padding: 100px 0px !important;
}

.contact-tag {
    display: inline-block;
    padding: 8px 15px;
    background: rgb(255, 152, 0);
    color: rgb(255, 255, 255);
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 55px;
    font-weight: 800;
    color: rgb(7, 21, 61);
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: "Plus Jakarta Sans";
}

.contact-desc {
    max-width: calc(66.6667%);
    margin: auto;
    color: rgb(102, 102, 102);
    font-size: 16px;
    line-height: 1.5;
}

.contact-card,
.form-card,
.map-card {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgb(224, 221, 221);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 35px;
}

.map-card {
    padding: 12px;
    overflow: hidden;
}

.map-card img {
    width: 100%;
    border-radius: 18px;
}

.contact-card h3,
.form-card h3 {
    font-size: 25px;
    font-weight: 700;
    color: rgb(7, 21, 61);
    margin-bottom: 10px;
}

.form-card p {
    color: rgb(102, 102, 102);
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: rgb(255, 244, 231);
    color: rgb(255, 152, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgb(247, 219, 187);
}

.contact-item small {
    display: block;
    color: rgb(136, 136, 136);
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-item h6 {
    margin: 0px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(7, 21, 61);
}

.form-card label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgb(7, 21, 61);
    margin-bottom: 5px;
}

.form-control,
.form-select {
    height: 45px;
    border-radius: 6px;
    border: 1px solid rgb(230, 230, 230);
    background: rgb(248, 248, 248);
    padding: 0px 10px;
    box-shadow: none;
    font-size: 13px;
    color: rgb(0, 0, 0);
}

textarea.form-control {
    height: auto;
    padding: 20px;
    resize: none;
}

.form-control:focus,
.form-select:focus {
    border-color: rgb(255, 152, 0);
    box-shadow: rgba(255, 152, 0, 0.15) 0px 0px 0px 0.15rem;
    background: rgb(255, 255, 255);
}

.contact-btn {
    width: 100%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.35s;
    padding: 15px 50px;
    letter-spacing: 0.5px;
    background: rgb(255, 152, 0) !important;
    color: rgb(255, 255, 255) !important;
}

.contact-btn:hover {
    background: rgb(7, 21, 61);
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
}

.contact-card:hover,
.form-card:hover,
.map-card:hover {
    transform: translateY(-6px);
    transition: 0.35s;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 40px;
}

.faq-hero-section {
    position: relative;
    padding: 100px 0px 50px;
    background: linear-gradient(rgb(253, 253, 253) 0%, rgb(246, 247, 251) 100%);
    overflow: hidden;
}

.faq-hero-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: -180px;
    background: rgba(255, 145, 0, 0.08);
    border-radius: 50%;
    filter: blur(90px);
}

.faq-hero-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -180px;
    background: rgba(7, 21, 61, 0.05);
    border-radius: 50%;
    filter: blur(90px);
}

.faq-title {
    font-size: 50px;
    font-weight: 800;
    color: rgb(7, 21, 61);
    margin-bottom: 15px;
    line-height: 1.2;
}

.faq-description {
    max-width: calc(66.6667%);
    margin: auto auto 50px;
    color: rgb(102, 102, 102);
    font-size: 16px;
    line-height: 1.5;
}

.faq-search-box {
    position: relative;
    max-width: calc(76.9231%);
    margin: auto;
}

.faq-search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(156, 163, 175);
    font-size: 15px;
    z-index: 2;
}

.faq-search-box .form-control {
    height: 65px;
    border-radius: 60px;
    padding-left: 50px;
    padding-right: 20px;
    background: rgb(255, 255, 255);
    font-size: 15px;
    color: rgb(7, 21, 61);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 15px 40px;
    transition: 0.35s;
    border: 1px solid rgb(231, 231, 231);
}

.faq-search-box .form-control::placeholder {
    color: rgb(156, 163, 175);
}

.faq-search-box .form-control:focus {
    box-shadow: rgba(255, 145, 0, 0.18) 0px 20px 45px;
    outline: none;
    border: 2px solid rgb(255, 152, 0);
}

.faq-section {
    padding: 50px 0px;
    background: rgb(248, 249, 252);
}

.faq-sidebar {
    position: sticky;
    top: 120px;
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 40px;
    border: 1px solid rgba(7, 21, 61, 0.2);
}

.faq-sidebar h6 {
    font-size: 12px;
    font-weight: 700;
    color: rgb(7, 21, 61);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.faq-sidebar ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.faq-sidebar li {
    margin-bottom: 12px;
}

.faq-sidebar li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgb(75, 85, 99);
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid rgb(240, 242, 247);
}

.faq-sidebar li a i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgb(245, 246, 250);
    color: rgb(7, 21, 61);
    font-size: 15px;
    transition: 0.3s;
}

.faq-sidebar li a:hover {
    background: rgb(255, 244, 232);
    color: rgb(255, 140, 0);
}

.faq-sidebar li a:hover i {
    background: rgb(255, 152, 0);
    color: rgb(255, 255, 255);
}

.faq-sidebar li.active a {
    background: rgb(7, 21, 61);
    color: rgb(255, 255, 255);
    border-color: rgb(7, 30, 96);
}

.faq-sidebar li.active a i {
    background: rgb(255, 152, 0);
    color: rgb(255, 255, 255);
}

.faq-block {
    margin-bottom: 70px;
}

.faq-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.faq-heading i,
.heading-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgb(255, 244, 231);
    color: rgb(255, 152, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid rgba(255, 152, 0, 0.1);
}

.faq-heading h2,
.section-heading h2 {
    margin: 0px;
    color: rgb(7, 21, 61);
    font-size: 22px;
    font-weight: 700;
}

.accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 20px;
    --bs-accordion-bg: transparent;
}

.accordion-item {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 236, 236);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 10px 30px;
    transition: 0.3s;
    border-radius: 8px !important;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 15px 35px;
}

.accordion-button {
    position: relative;
    background: rgb(255, 255, 255);
    color: rgb(7, 21, 61);
    font-size: 15px;
    font-weight: 700;
    padding: 20px 60px 20px 25px;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
}

.accordion-button:not(.collapsed) {
    background: rgb(255, 255, 255);
    color: rgb(7, 21, 61);
    border-bottom: 1px solid rgb(248, 249, 252);
}

.accordion-button::after {
    display: none;
}

.accordion-button::before {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(245, 246, 250);
    color: rgb(7, 21, 61);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
}

.accordion-button:not(.collapsed)::before {
    content: "−";
    background: rgb(255, 152, 0);
    color: rgb(255, 255, 255);
}

.accordion-body {
    padding: 20px;
    color: rgb(107, 114, 128);
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid rgb(243, 243, 243);
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0px;
    justify-content: center;
}

.syllabus-card,
.practice-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 35px;
    min-height: 100%;
    transition: 0.35s;
}

.syllabus-card:hover,
.practice-card:hover {
    transform: translateY(-8px);
}

.syllabus-card {
    background: rgb(255, 152, 0);
    color: rgb(255, 255, 255);
}

.syllabus-card h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.syllabus-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 35px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(7, 21, 61);
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px;
}

.contact-item a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
}

.download-btn:hover {
    background: rgb(255, 255, 255);
    color: rgb(7, 21, 61);
}

.bg-icon {
    position: absolute;
    right: 20px;
    bottom: -10px;
    font-size: 80px;
    opacity: 0.12;
}

.practice-card {
    background: rgb(7, 21, 61);
    color: rgb(255, 255, 255);
}

.practice-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.practice-card p {
    color: rgb(212, 217, 229);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.practice-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgb(255, 152, 0);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.practice-card a:hover {
    color: rgb(255, 255, 255);
}

.practice-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    right: -40px;
    bottom: -40px;
}

.support-card {
    position: relative;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 22px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 45px;
    border: 1px solid rgb(239, 239, 239);
}

.support-bg {
    position: absolute;
    border-radius: 50%;
    background: rgb(242, 243, 247);
    z-index: 0;
}

.left-circle {
    width: 150px;
    height: 150px;
    left: -40px;
    bottom: -40px;
}

.right-circle {
    width: 150px;
    height: 150px;
    right: -40px;
    top: -40px;
}

.support-card h2 {
    position: relative;
    z-index: 2;
    color: rgb(7, 21, 61);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.support-card p {
    position: relative;
    z-index: 2;
    color: rgb(102, 102, 102);
    font-size: 14px;
    margin-bottom: 40px;
}

.support-info {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.support-info a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: rgb(7, 21, 61);
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 236, 236);
    border-radius: 50px;
    padding: 10px 20px 10px 10px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.35s;
}

.support-info a i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgb(255, 243, 230);
    color: rgb(255, 140, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.support-info a:hover {
    background: rgb(7, 21, 61);
    color: rgb(255, 255, 255);
    border-color: rgb(7, 21, 61);
}

.support-info a:hover i {
    background: rgb(255, 140, 0);
    color: rgb(255, 255, 255);
}

.baio-footer {
    background: url("/images/edut.png") 0% 0% / contain rgb(1, 27, 71);
    color: rgb(255, 255, 255);
    padding: 50px 0px 20px;
    background-blend-mode: multiply;
}

.baio-footer .container {
    max-width: 1280px;
    margin: auto;
    padding: 0px 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-box {
    width: 45px;
    height: 45px;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    color: rgb(199, 206, 231);
    font-size: 14px;
    line-height: 1.7;
    max-width: 470px;
}

.trust-box {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(29, 41, 88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.trust-circle {
    width: 40px;
    height: 40px;
    background: rgb(255, 152, 0);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
}

.baio-footer h4 {
    color: rgb(255, 152, 0);
    font-size: 18px;
    margin-bottom: 20px;
}

.baio-footer ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.baio-footer li {
    margin-bottom: 10px;
}

.baio-footer a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}

.baio-footer a:hover {
    color: rgb(255, 152, 0);
    padding-left: 6px;
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    color: rgb(214, 221, 245);
    line-height: 1.5;
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(29, 41, 88);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.social-icons a:hover {
    background: rgb(255, 152, 0);
    color: rgb(255, 255, 255);
}

.baio-footer hr {
    margin: 20px 0px 10px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    display: block;
    text-align: center;
}

.certificates {
    display: flex;
    gap: 10px;
}

.certificate {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(17, 29, 76);
    border-radius: 6px;
    padding: 10px 15px;
    min-width: auto;
}

.certificate small {
    display: block;
    color: rgb(152, 164, 209);
    font-size: 11px;
}

.certificate strong {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: 0.5px;
}

.footer-bottom p {
    max-width: 100%;
    text-align: center;
    color: rgb(197, 205, 231);
    font-size: 13px;
    line-height: 1.5;
    margin: 0px;
}

.footer-love {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.footer-love img {
    display: block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.top-bar {
    background: rgb(7, 21, 61);
    color: rgb(255, 255, 255);
    font-size: 12px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
}

.announcement {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.top-links a:hover {
    color: rgb(255, 152, 0);
}

.divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
}

.navbar {
    padding: 0px;
}

.logo-box {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgb(7, 21, 61);
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
}

.logo-text {
    margin-left: 5px;
    font-size: 25px;
    font-weight: 700;
    color: rgb(7, 21, 61);
}

.navbar-nav {
    gap: 10px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    padding: 0px;
    margin: 0px;
    color: rgb(109, 116, 131) !important;
}

.nav-link:hover {
    color: rgb(255, 152, 0) !important;
}

.baio-header .button {
    display: flex;
    gap: 10px;
}

.baio-header .button a:first-child {
    background: rgb(7, 21, 61);
}

.register-btn {
    background: #ED7208 !important;
    border: 2px solid #ED7208 !important;
    border-radius: 50px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(237, 114, 8, 0.2);
}

.register-btn:hover {
    background: #001F5E !important;
    border-color: #001F5E !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(0, 31, 94, 0.25);
    transform: translateY(-2px);
}

.logosite {
    width: 130px;
}

.logosite img {
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.footer-logo a {
    background: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 6px;
}

.footer-logo a img {
    display: block;
    width: 170px;
}

/* Advisory Board Section */
.advisory-board-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.featured-advisor-card {
    border-color: rgba(0, 31, 94, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.featured-advisor-card:hover {
    transform: translateY(-5px);
}

.advisory-member-card {
    border-color: rgba(0, 31, 94, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.advisory-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 31, 94, 0.1);
}

.policyboxsefc {
    background: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 40px;
    border: 1px solid rgba(7, 21, 61, 0.2);
    margin-bottom: 30px;
}

.policyboxsefc .contpolsec {
    background: rgba(7, 21, 61, 0.05);
    padding: 20px;
    border-radius: 6px;
}

.policyboxsefc .faq-heading {
    border-right: 2px solid rgb(255, 152, 0);
    border-left: 2px solid rgb(255, 152, 0);
    background: rgba(255, 152, 0, 0.1);
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.work-card {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 20px 60px;
    transition: 0.4s;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-card.active {
    background: rgb(21, 94, 239);
    color: rgb(255, 255, 255);
}

.work-number {
    color: rgb(21, 94, 239);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 0px;
    position: absolute;
    top: -20px;
    opacity: 0.1;
    z-index: -1;
    right: 20px;
}

.work-card.active .work-number {
    color: rgb(255, 255, 255);
}

.work-icon {
    font-size: 50px;
    margin-bottom: 10px;
    color: rgb(21, 94, 239);
}

.work-card.active .work-icon {
    color: rgb(255, 255, 255);
}

.work-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.work-card h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.work-list {
    margin: 20px 0px 0px;
    padding: 0px;
    list-style: none;
}

.work-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 13px;
}

.work-list li::before {
    content: "✓";
    position: absolute;
    left: 0px;
    font-weight: 700;
    color: rgb(21, 94, 239);
}

.work-card.active .work-list li::before {
    color: rgb(255, 255, 255);
}

.work-card.active p {
    color: rgb(255, 255, 255);
}

.problem-section .row.g-4.align-items-stretch {
    margin-top: 30px;
}

.problem-section .row.g-4.align-items-stretch .col-lg-6 {
    padding: 0px 5px;
}

span.hero-tag {
    font-size: 13px;
}

.hero-section a.hero-link {
    font-size: 15px;
    border-bottom: 1px solid rgb(8, 25, 77);
    color: rgb(8, 25, 77);
}

.benefits-section .section-title {
    font-size: 40px;
    margin-bottom: 5px;
}

.table-responsive {
    border-radius: 8px;
    border: unset;
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0px;
    border-radius: 8px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    border: 1px solid rgb(221, 221, 221);
    text-align: left;
    font-size: 14px;
    background: unset !important;
}

.data-table thead {
    background-color: rgb(255, 146, 0);
}

.data-table tbody tr:nth-child(2n) {
    background-color: rgb(236, 236, 236) !important;
}

.code-chip {
    background: rgb(238, 238, 238);
    padding: 2px 6px;
    border-radius: 4px;
}

.member-tag {
    background: rgb(212, 237, 218);
    color: rgb(21, 87, 36);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.9em;
}

.data-table thead th {
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
}

section.benefits-section {
    background: rgb(250, 249, 246);
    padding-top: 80px;
}

.faq-section.homesecare .faq-title {
    font-size: 23px;
    margin-bottom: 30px;
}

.flex.btnsecare {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    gap: 10px;
}

.flex.btnsecare i {
    font-size: 15px;
    top: 7px;
    position: relative;
}

.flex.btnsecare p {
    text-align: left;
    line-height: 1.5;
    font-weight: 400;
}

.curriculum-hero {
    position: relative;
    overflow: hidden;
    background: rgb(7, 19, 59);
    padding: 100px 0px;
}

.curriculum-hero::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.35;
    pointer-events: none;
}

.curriculum-hero .curriculum-content {
    text-align: center;
}

.curriculum-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    color: rgb(255, 179, 71);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.curriculum-badge .badge-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(255, 179, 71);
    color: rgb(7, 19, 59);
    font-size: 12px;
}

.curriculum-content h1 {
    color: rgb(255, 255, 255);
    font-size: 55px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
}

.curriculum-content p {
    max-width: calc(50%);
    margin: auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

.productservices {
    position: relative;
    margin: 0px;
    padding: 80px 0px 50px;
    width: 100%;
    background: rgb(248, 249, 250);
}

.productservices .tabs-left.sideways li {
    position: relative;
    margin: 0px 0px 5px;
    width: 100%;
    display: inline-block;
}

.productservices .tabs-left.sideways li a {
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 600;
    height: 100%;
    padding: 10px 30px 10px 40px;
    width: 100%;
}

.productservices .tabs-left.sideways {
    width: 100%;
    position: relative;
    margin: 0px;
    padding: 30px 0px;
    background-color: rgb(7, 21, 61);
    border-radius: 6px;
    transform: translateY(-30px);
    z-index: 2;
}

.productservices .tabs-left.sideways li.active {
    background: rgb(255, 152, 0);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 20px 0px;
    position: relative;
    margin: 0px 0px 20px;
    transform: translateX(30px);
}

.productservices .tabs-left.sideways li.active a {
    padding-left: 30px;
}

.productservices .tab-content {
    position: relative;
    margin: 0px;
    padding: 50px;
    border-radius: 12px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 37px 0px;
    z-index: 1;
    transform: translateX(-20px);
    height: 100%;
}

.tab-content h4,
.serviceslanguges h4 {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 700;
    margin: 0px 0px 20px;
    padding: 0px 0px 4px;
    letter-spacing: 0.5px;
    position: relative;
}

.tab-content h4::before {
    content: "";
    position: absolute;
    left: 3px;
    bottom: 0px;
    border-bottom: 2px solid rgb(0, 94, 184);
    width: 100px;
}

.tab-content p,
.serviceslanguges p {
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.5px;
    width: 100%;
    color: rgb(138, 138, 138);
    display: inline-block;
}

.tab-content ul {
    margin: 30px 0px 0px;
    padding: 0px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    place-items: center;
    gap: 5px;
}

.tab-content ul li {
    max-width: 100%;
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 0px;
    border: 1px solid rgb(235, 235, 235);
    padding: 10px 10px 10px 30px;
    border-radius: 4px;
    height: 100%;
    font-size: 13px;
    font-weight: 500;
}

.tab-content ul li a {
    font-size: 14px;
    font-weight: 500;
    color: rgb(51, 51, 51);
    line-height: 20px;
    padding-left: 20px;
}

.tab-content ul li::before {
    background-color: rgb(11, 49, 85);
    content: " ";
    display: block;
    height: 8px;
    width: 8px;
    top: 18px;
    position: absolute;
    left: 5px;
}

.curriculum-framework,
.learning-outcomes,
.teaching-methodology,
.assessment-framework,
.competency-mapping,
.why-curriculum,
.curriculum-roadmap,
.curriculum-features,
.curriculum-summary {
    position: relative;
    padding: 60px 0px;
}

.bg-light {
    background: rgb(248, 251, 255);
}

.service-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(237, 242, 247);
    border-radius: 18px;
    padding: 35px;
    height: 100%;
    transition: 0.35s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 35px;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(13, 110, 253, 0.12) 0px 18px 45px;
    border-color: rgb(13, 110, 253);
}

.service-card h3 {
    font-size: 46px;
    font-weight: 700;
    color: rgb(13, 110, 253);
    margin-bottom: 10px;
}

.service-card h4 {
    font-size: 24px;
    color: rgb(19, 34, 56);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(13, 110, 253);
    margin-bottom: 18px;
}

.service-card p {
    color: rgb(107, 114, 128);
    line-height: 28px;
    margin: 0px;
}

.service-card ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.service-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: rgb(75, 85, 99);
    line-height: 28px;
}

.service-card ul li:last-child {
    margin-bottom: 0px;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0px;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(13, 110, 253);
    color: rgb(255, 255, 255);
    font-size: 11px;
    text-align: center;
    line-height: 18px;
}

.curriculum-roadmap .service-card {
    text-align: center;
    padding: 30px 20px;
}

.curriculum-roadmap h4 {
    color: rgb(13, 110, 253);
    margin-bottom: 15px;
}

.curriculum-roadmap p {
    font-size: 15px;
    line-height: 26px;
}

.curriculum-summary .service-card {
    text-align: center;
}

.curriculum-summary h3 {
    font-size: 55px;
    font-weight: 700;
    color: rgb(13, 110, 253);
    margin-bottom: 10px;
}

.curriculum-summary p {
    font-size: 18px;
    font-weight: 600;
}

.curriculum-card p {
    margin: 0px 0px 50px;
    max-width: 100% !important;
}

.advantage-card ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.advantage-card ul li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.advantage-card ul li span {
    width: 25px;
    height: 25px;
    font-size: 12px;
    min-width: 25px;
}

.advantage-card.active ul li {
    color: rgb(255, 255, 255);
}

.megaropdown {
    position: absolute;
    display: none;
}

ul .dropdown:hover>ul,
.dropnav:hover .megaropdown {
    display: var(--disblo);
}

.dropdown ul,
.megaropdown {
    width: 250px;
    text-align: left;
    display: none;
    left: 0px;
    right: 0px;
    padding: 10px;
    border: 2px solid rgb(233, 232, 232);
    position: absolute;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgba(11, 68, 117, 0.14) 0px 12px 32px;
    top: calc(100% + 0px);
    margin: 0px auto;
}

.dropdown li {
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    padding: 8px 5px;
    display: block;
    width: 100%;
    margin: 0px 0px 2px;
    height: unset;
    transition: 0.5s linear;
    text-align: left;
    line-height: 25px;
}

.dropdown li:last-child a {
    border-bottom: unset;
    margin-bottom: unset;
    padding-bottom: unset;
}

.dropdown li a {
    padding: 0px;
    width: 100%;
    flex-direction: column;
    line-height: 20px;
    transition: 0.5s linear;
    gap: 5px;
    display: flex;
    font-weight: 600;
    font-size: 15px;
    color: rgb(0, 0, 0) !important;
}

.dropdown li a sum,
.megaropdown li a span {
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-dropdown ul {
    top: 0px;
    left: 100%;
}

.sub-dropdown a {
    position: relative;
}

.sub-dropdown ul li a span {
    position: relative !important;
}

.sub-dropdown a span:last-child {
    position: absolute;
    right: 0px;
    top: 0px;
    width: max-content;
}

.subdelis ul {
    padding-right: 0px;
}

.megaropdown {
    height: max-content;
    margin: 0px auto;
    width: 60%;
}

.megaropdown h6 {
    padding: 0px 0px 2px;
    font-size: 15px;
    font-weight: 600;
    color: rgb(1, 55, 17);
    text-align: left;
    border-bottom: 2px solid rgb(1, 55, 17);
    margin-bottom: 20px;
    width: max-content;
}

.megaropdown ul li {
    width: 100%;
    margin-bottom: 0px;
    cursor: pointer;
}

.megaropdown ul li a {
    position: relative;
    border-radius: 4px;
    padding: 9px 10px;
    width: 100%;
    margin: 0px 0px 2px;
    height: unset;
    text-align: left;
    display: flex;
    flex-flow: row;
    line-height: 20px;
    font-size: 14px;
    transition: 0.5s linear;
    font-weight: 500;
    place-content: flex-start;
    cursor: pointer;
    color: rgb(0, 0, 0) !important;
}

.megaropdown li a span {
    width: 19px;
    display: inline-block;
    margin: 0px;
    object-fit: contain;
    object-position: center top;
    overflow: hidden;
    height: 20px;
    top: 0px;
    position: relative;
}

header.baio-header {
    z-index: 9;
    position: relative;
}

a.nav-link.register-btn.schol {
    border: 2px solid #001F5E !important;
    background: transparent !important;
    color: #001F5E !important;
    box-shadow: none;
}
a.nav-link.register-btn.schol:hover {
    background: #001F5E !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(0, 31, 94, 0.25) !important;
}

.tab-pane tr th {
    background: rgb(7, 21, 61);
}

.tab-pane h5 {
    margin-top: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
}

.flip-container {
    width: max-content;
    display: inline-block;
}

.dropdown li a span {
    font-size: 12px;
    color: rgb(100, 116, 139);
    font-weight: 500;
}

a.nav-link.register-btn.studen {
    border: 1px solid rgb(186, 112, 4);
}

.journey-section {
    position: relative;
    padding: 50px;
    background: radial-gradient(1000px 400px at 15% 0%, rgba(11, 68, 117, 0.06) 0%, transparent 60%), radial-gradient(900px 360px at 85% 100%, rgba(244, 124, 34, 0.08) 0%, transparent 65%), linear-gradient(rgb(255, 255, 255) 0%, rgb(247, 250, 253) 100%);
}

.journey-header {
    margin: 0px auto 50px;
    text-align: center;
    position: relative;
}

.journey-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-orange);
    background: rgba(244, 124, 34, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.journey-title {
    font-size: clamp(30px, 3.6vw, 50px);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.15;
    margin: 0px 0px 15px;
}

.journey-sub {
    font-size: 14px;
    color: rgb(71, 85, 105);
    line-height: 1.55;
    margin: 0px;
}

.journey-scroll {
    position: relative;
    z-index: 2;
    margin: 0px auto;
    padding: 20px 12px 32px;
    scrollbar-width: none;
}

.journey-scroll::-webkit-scrollbar {
    display: none;
}

.journey-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(0px, 1fr));
    gap: 10px;
    align-items: stretch;
    min-width: 100%;
    padding-top: 10px;
}

.journey-path {
    position: absolute;
    top: 22.5px; /* Center with 75px node (75/2 - 30/2 = 37.5 - 15 = 22.5) */
    left: 0px;
    width: 100%;
    height: 30px;
    z-index: 0;
    pointer-events: none;
}

.journey-stage {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.journey-stage:hover {
    transform: translateY(-6px);
}

.journey-stage:focus-visible {
    outline: rgba(244, 124, 34, 0.5) solid 3px;
    outline-offset: 6px;
    border-radius: 20px;
}

.jstage-node {
    position: relative;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(241, 246, 251) 100%);
    border: 3px solid rgb(255, 255, 255);
    box-shadow: 0 10px 25px rgba(11, 68, 117, 0.12), 0 0 0 3px rgba(11, 68, 117, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-blue);
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journey-stage:hover .jstage-node {
    box-shadow: rgba(11, 68, 117, 0.28) 0px 16px 32px, rgba(244, 124, 34, 0.18) 0px 4px 10px, rgba(244, 124, 34, 0.25) 0px 0px 0px 3px;
    color: var(--primary-orange);
}

.jstage-num {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #083657 100%);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: rgba(11, 68, 117, 0.25) 0px 4px 8px, rgb(255, 255, 255) 0px 0px 0px 2px;
}

.jstage-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jstage-icon svg {
    width: 100%;
    height: 100%;
}

.jstage-node-ai {
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(255, 244, 233) 100%);
    color: var(--primary-orange);
    animation: 3s ease-in-out 0s infinite normal none running jstageAiPulse;
}

@keyframes jstageAiPulse {

    0%,
    100% {
        box-shadow: rgba(244, 124, 34, 0.22) 0px 10px 24px, rgba(244, 124, 34, 0.15) 0px 0px 0px 3px;
    }

    50% {
        box-shadow: rgba(244, 124, 34, 0.34) 0px 14px 30px, rgba(244, 124, 34, 0.08) 0px 0px 0px 8px;
    }
}

.jstage-ai-chip {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: rgb(255, 255, 255);
    font-size: 9.5px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 1.2px;
    box-shadow: rgba(244, 124, 34, 0.45) 0px 3px 8px, rgb(255, 255, 255) 0px 0px 0px 2px;
}

.jstage-node-gold {
    background: linear-gradient(135deg, rgb(255, 249, 224) 0%, rgb(255, 215, 112) 100%);
    color: rgb(138, 90, 0);
    border-color: rgb(255, 233, 163);
    box-shadow: rgba(212, 160, 20, 0.35) 0px 12px 26px, rgba(212, 160, 20, 0.2) 0px 2px 6px, rgba(255, 215, 112, 0.4) 0px 0px 0px 3px;
}

.journey-stage:hover .jstage-node-gold {
    color: rgb(138, 90, 0);
    box-shadow: rgba(212, 160, 20, 0.45) 0px 18px 36px, rgba(212, 160, 20, 0.3) 0px 4px 10px, rgba(255, 196, 70, 0.55) 0px 0px 0px 3px;
}

.journey-stage {
    height: 100%;
}

.jstage-card {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 24px 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.journey-stage:hover .jstage-card {
    box-shadow: rgba(11, 68, 117, 0.14) 0px 14px 32px, rgba(244, 124, 34, 0.08) 0px 2px 6px;
    border-color: rgba(244, 124, 34, 0.25);
}

.jstage-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.3;
    margin: 0px 0px 4px 0px;
    letter-spacing: -0.01em;
}

.jstage-desc {
    font-size: 14px;
    color: rgb(71, 85, 105);
    line-height: 1.6;
    margin: 0px;
}

.jstage-desc strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.jstage-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(11, 68, 117, 0.04) 100%);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 12px;
    text-align: left;
    margin-top: 2px;
}

.jstage-benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgb(16, 185, 129) 0%, rgb(5, 150, 105) 100%);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(16, 185, 129, 0.3) 0px 4px 10px;
}

.jstage-benefit-icon svg {
    width: 16px;
    height: 16px;
}

.jstage-benefit-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0px;
}

.jstage-benefit-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.jstage-benefit-sub {
    font-size: 10.5px;
    font-weight: 500;
    color: rgb(100, 116, 139);
    line-height: 1.3;
}

.jstage-note {
    display: block;
    font-size: 11px;
    color: rgb(11, 68, 117);
    background: rgba(11, 68, 117, 0.06);
    border-left: 3px solid var(--primary-orange);
    padding: 7px 10px;
    border-radius: 6px;
    line-height: 1.35;
    text-align: left;
    margin-top: 2px;
    font-weight: 500;
}

.jstage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-top: 2px;
}

.jstage-pill {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgb(238, 244, 251);
    padding: 4px 9px;
    border-radius: 999px;
    letter-spacing: 0.2px;
}

.jstage-pill-alt {
    background: rgba(244, 124, 34, 0.1);
    color: var(--primary-orange);
}

.jstage-pill-fee {
    background: linear-gradient(135deg, rgb(11, 68, 117) 0%, rgb(19, 90, 150) 100%);
    color: rgb(255, 255, 255);
    font-size: 11px;
    padding: 5px 12px;
    box-shadow: rgba(11, 68, 117, 0.25) 0px 4px 10px;
}

.jstage-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: auto;
    align-self: center;
}

.jstage-tag-primary {
    background: var(--primary-orange);
    color: rgb(255, 255, 255);
    box-shadow: rgba(244, 124, 34, 0.35) 0px 4px 10px;
}

.jstage-tag-free {
    background: linear-gradient(135deg, rgb(16, 185, 129) 0%, rgb(5, 150, 105) 100%);
    color: rgb(255, 255, 255);
    box-shadow: rgba(16, 185, 129, 0.35) 0px 4px 10px;
}

.jstage-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--primary-orange);
    background: rgba(244, 124, 34, 0.08);
    padding: 7px 12px;
    border-radius: 999px;
    border: 1.5px solid rgba(244, 124, 34, 0.25);
    transition: 0.25s;
    margin-top: auto;
    align-self: center;
    letter-spacing: 0.2px;
}

.journey-stage:hover .jstage-btn {
    background: var(--primary-orange);
    color: rgb(255, 255, 255);
    border-color: var(--primary-orange);
    box-shadow: rgba(244, 124, 34, 0.35) 0px 6px 14px;
}

.jstage-btn svg {
    transition: transform 0.25s;
}

.journey-stage:hover .jstage-btn svg {
    transform: translateX(2px);
}

.jstage-btn-gold {
    background: linear-gradient(135deg, rgb(255, 244, 209) 0%, rgb(255, 215, 112) 100%);
    color: rgb(107, 68, 0);
    border-color: rgba(212, 160, 20, 0.4);
}

.journey-stage:hover .jstage-btn-gold {
    background: linear-gradient(135deg, rgb(255, 215, 112) 0%, rgb(244, 180, 0) 100%);
    color: rgb(74, 47, 0);
    border-color: rgb(244, 180, 0);
    box-shadow: rgba(212, 160, 20, 0.45) 0px 6px 14px;
}

.jstage-card-elite {
    border: 1.5px solid rgba(244, 124, 34, 0.3);
    background: linear-gradient(rgba(244, 124, 34, 0.04) 0%, rgb(255, 255, 255) 60%);
}

.jstage-ribbon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d65a0a 100%);
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: rgba(244, 124, 34, 0.4) 0px 4px 10px;
    z-index: 2;
}

.jstage-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    place-items: center;
    gap: 8px;
    padding: 12px 10px;
    background: linear-gradient(135deg, rgba(11, 68, 117, 0.05) 0%, rgba(244, 124, 34, 0.05) 100%);
    border: 1px solid rgba(11, 68, 117, 0.08);
    border-radius: 12px;
    margin-top: auto;
}

.jstage-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.jstage-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
}

.jstage-stat-plus {
    font-size: 0.7em;
    margin-left: 1px;
    font-weight: 700;
}

.jstage-stat-lbl {
    font-size: 10px;
    font-weight: 700;
    color: rgb(100, 116, 139);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}

.jstage-stat-div {
    width: 1px;
    height: 34px;
    align-self: center;
    background: rgba(11, 68, 117, 0.15);
}

.jstage-card-finale {
    background: radial-gradient(100% 60% at 50% 0%, rgba(255, 196, 70, 0.12) 0%, transparent 60%), rgb(255, 255, 255);
    border-color: rgba(212, 160, 20, 0.3);
}

.journey-scroll-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgb(148, 163, 184);
    letter-spacing: 0.3px;
}

.dropnav.dropdown.butnsecstar {
    margin-left: 10px;
    margin-right: 0px;
}

.class-select-box::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--primary-orange);
    pointer-events: none;
    font-size: 14px;
}

.curriculum-hero .faq-search-box .form-control {
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgb(255, 193, 7);
    background: rgb(255, 255, 255);
}

.curriculum-hero .faq-search-box option {
    padding: 10px;
    font-size: 14px;
    color: rgb(11, 44, 107);
}

.curriculum-hero h1,
.curriculum-hero p {
    color: rgb(255, 255, 255) !important;
}

.top-cta-bar {
    background: rgb(11, 34, 83);
    margin: 0px;
    display: block;
    padding: 10px 0px;
}

.cta-title i {
    color: rgb(255, 140, 26);
    font-size: 14px;
}

.top-cta-bar ul {
    margin: 0px;
    padding: 0px 0px 0px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.top-cta-bar ul li {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
    padding-right: 10px;
}

.cta-btn:hover {
    background: rgb(255, 140, 26);
    border-color: rgb(255, 140, 26);
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.top-cta-bar .cta-title {
    display: flex;
    gap: 10px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    margin-bottom: 0px;
}

.top-cta-bar .cta-title i {
    color: rgb(255, 255, 255);
}

.top-cta-bar ul li .topbtn {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: transparent;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
    line-height: 22px;
}

.top-cta-bar ul li .topbtn:hover {
    background: rgb(255, 152, 0);
    border-color: rgb(255, 152, 0);
}

.top-cta-bar ul li:last-child {
    border-right: unset;
}

.flip-container {
    perspective: 1000px;
    display: inline-block;
    vertical-align: middle;
    overflow: visible;
}

.flip-item {
    display: inline-block;
    transform-style: preserve-3d;
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-item.active {
    transform: rotateX(0deg);
}

.flip-item.exit {
    transform: rotateX(-90deg) translateY(-10px);
    opacity: 0;
}

.flip-item.enter-bottom {
    transform: rotateX(90deg) translateY(10px);
    opacity: 0;
    transition: none;
}

.flip-container {
    position: relative;
    color: rgb(255, 255, 255);
    padding: 6px 12px;
    border-radius: 8px;
    height: 1.3em;
    width: 100%;
    background: rgb(255, 253, 252);
}

.flip-container span.flip-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(40px);
    opacity: 0;
    white-space: nowrap;
    transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(1px);
}

.flip-container span.flip-item.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0px);
    filter: blur(0px);
    transition-delay: 0.1s;
}

.flip-container span.flip-item.exit {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-40px);
    filter: blur(2px);
    transition-duration: 0.6s;
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: rgb(37, 211, 102);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 20px;
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background: rgb(30, 190, 87);
    color: rgb(255, 255, 255);
    transform: scale(1.1);
}

.whatsapp-float i {
    line-height: 1;
}

.bg-svg-wrap {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    height: calc(71.4286%);
    width: 100%;
    bottom: 0px;
    left: 0px;
    overflow: hidden;
}

.bg-svg-wrap svg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
}

.bg-svg-wrap svg path {
    fill: none;
    stroke: currentcolor;
}

.ribbon-wrapper {
    position: relative;
    width: 100%;
    transform: rotate(-1.5deg);
    margin-top: -10px;
    z-index: 2;
    margin-bottom: 30px;
    overflow: hidden;
    display: inline-block;
}

.marquee-section {
    background: var(--navy);
    border-top: 4px solid var(--orange);
    border-bottom: 4px solid var(--orange);
    padding: 1rem 0px;
    overflow: hidden;
    display: inline-block;
}

.marquee-track {
    will-change: transform;
}

#marqueeTrack {
    display: flex;
    gap: 0px;
    will-change: transform;
}

.marquee-track span {
    display: block;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    flex-wrap: nowrap;
}

.rotating-badge {
    position: relative;
    width: 100px;
    height: 100px;
}

.rotating-badge .ring {
    position: absolute;
    inset: 0px;
    animation: 12s linear 0s infinite normal none running spin;
}

.rotating-badge .ring svg {
    width: 100%;
    height: 100%;
}

.rotating-badge .ring text {
    font-size: 8.2px;
    font-weight: 700;
    letter-spacing: 0.5px;
    fill: rgb(255, 152, 0);
    text-transform: uppercase;
}

.rotating-badge .center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 31, 94, 0.25) 0px 4px 14px;
}

.rotating-badge .center-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

section.badge-section {
    position: fixed;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(244, 244, 244, 0.14);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.9);
    transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
    bottom: 95px;
    z-index: 9;
    right: 5px;
}

section.badge-section.active-scrolltop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) scale(1);
}

.gallerysection {
    margin: 0px;
    padding: 100px 0px 50px;
    display: inline-block;
    position: relative;
    background-blend-mode: color;
    width: 100%;
}

.gallery>a {
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 2em;
    border-radius: 6px;
    overflow: hidden;
}

.gallery>a::after {
    content: "";
    background: linear-gradient(transparent, black);
    position: absolute;
    inset: 0px;
    transform: translateY(100%);
    transition-duration: 0.75s;
}

.gallery>a:hover::after {
    transform: translateY(50%);
}

.gallery>a>* {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: 1s;
}

.gallery>a:hover>img {
    transform: scale(1.05);
}

.gallery {
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(auto-fit, minmax(var(--widthgallery), 1fr));
    grid-auto-rows: var(--widthgallery);
    grid-auto-flow: dense;
}

.horizontal {
    grid-column: span 2;
}

.vertical {
    grid-row: span 2;
}

.big {
    grid-area: span 2 / span 2;
}

.lb-dataContainer {
    position: absolute;
    top: -40px;
    left: 0px;
    margin: 0px auto;
    right: 0px;
    background: rgba(255, 152, 0, 0.16);
    border-radius: 6px;
    display: block;
    padding: 5px 10px;
}

.lb-dataContainer span.lb-number {
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
    padding: 0px !important;
}

.lb-dataContainer a.lb-close {
    width: 20px;
    height: 20px;
    background-size: contain;
}

.tab-content>.active {
    display: block !important;
}

.tabshowsedc {
    padding-top: 0px;
}

.trust-bar {
    margin: 0px 0px 40px;
    position: relative;
    background: unset;
}

.trust-wrapper {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 15px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    flex-wrap: wrap;
    border: 1px solid rgb(171, 217, 255);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: rgb(233, 240, 253);
    color: rgb(11, 94, 215);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.trust-item h6 {
    margin: 0px;
    font-size: 17px;
    font-weight: 700;
    color: rgb(17, 24, 39);
}

.trust-item p {
    margin: 2px 0px 0px;
    color: rgb(107, 114, 128);
    font-size: 13px;
}

.trust-divider {
    width: 1px;
    height: 55px;
    background: rgb(229, 231, 235);
}

.partner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-info {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.partner-info i {
    width: 60px;
    height: 40px;
    border-radius: 6px;
    background: rgb(255, 255, 255);
    color: rgb(11, 94, 215);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.partner-info h5 {
    font-weight: 700;
    font-size: 17px;
    margin: 0px 0px 5px;
    padding: 0px;
}

.partner-info p {
    margin: 0px;
    color: rgb(102, 102, 102);
    line-height: 1.5;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.partner-card {
    border-radius: 6px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(238, 242, 246);
    transition: 0.35s;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 18px 40px;
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.nep-section {
    background: #f0f5fa !important;
    overflow: hidden;
}

.nep-section .section-title {
    color: rgb(6, 21, 65);
}

.nep-section .section-description {
    color: rgb(82, 100, 118);
}

.nep-goals-explorer {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0px, 1.18fr);
    gap: 34px;
    align-items: start;
    max-width: 1320px;
    margin: 0px auto;
}

.nep-goal-nav {
    display: grid;
    gap: 12px;
}

.nep-goal-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 64px;
    padding: 16px 19px;
    color: rgb(11, 68, 117);
    background: rgb(255, 255, 255);
    border: 1px solid rgb(217, 226, 239);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    transition: background-color 180ms, border-color 180ms, color 180ms, transform 180ms, box-shadow 180ms;
}

.nep-goal-tab span {
    min-width: 0px;
}

.nep-goal-tab i {
    flex: 0 0 auto;
    font-size: 15px;
}

.nep-goal-tab:hover,
.nep-goal-tab:focus-visible {
    color: rgb(6, 21, 65);
    border-color: rgb(246, 193, 139);
    transform: translateX(3px);
}

.nep-goal-tab.active {
    color: rgb(255, 255, 255);
    background: rgb(244, 124, 34);
    border-color: rgb(244, 124, 34);
    box-shadow: rgba(244, 124, 34, 0.24) 0px 10px 22px;
}

.nep-goal-detail {
    min-height: 100%;
    padding: 40px 36px 34px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(217, 226, 239);
    border-radius: 8px;
    box-shadow: rgba(0, 31, 94, 0.12) 0px 18px 32px;
}

.nep-goal-category {
    display: inline-flex;
    padding: 6px 12px;
    color: rgb(216, 100, 17);
    background: rgb(255, 244, 233);
    border: 1px solid rgb(246, 193, 139);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.nep-goal-detail h3 {
    margin: 20px 0px 14px;
    color: rgb(6, 21, 65);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.nep-goal-detail>p {
    max-width: 720px;
    margin: 0px;
    color: rgb(82, 100, 118);
    font-size: 17px;
    line-height: 1.65;
}

.nep-goal-outcome {
    margin-top: 34px;
    padding: 23px 24px;
    background: rgb(255, 248, 239);
    border: 1px solid rgb(246, 193, 139);
    border-radius: 8px;
}

.nep-goal-outcome strong {
    display: block;
    color: rgb(216, 100, 17);
    font-size: 15px;
    font-weight: 800;
}

.nep-goal-outcome p {
    margin: 7px 0px 0px;
    color: rgb(138, 71, 34);
    font-size: 15px;
    line-height: 1.55;
}

.success-kit-section {
    background: rgb(245, 249, 255);
}

.success-kit-grid {
    display: grid;
    grid-template-columns: minmax(0px, 1.3fr) minmax(310px, 0.7fr);
    gap: 36px;
    align-items: center;
}

.success-kit-content {
    min-width: 0px;
}

.success-kit-content .section-title {
    max-width: 680px;
    margin-bottom: 14px;
}

.success-kit-lead {
    max-width: 710px;
    margin: 0px;
    color: rgb(49, 73, 102);
    font-size: 18px;
    line-height: 1.65;
}

.success-kit-note {
    display: inline-block;
    margin: 18px 0px 10px;
    color: rgb(216, 100, 17);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.success-kit-description {
    max-width: 730px;
    margin: 0px;
    color: rgb(82, 100, 118);
    font-size: 15px;
    line-height: 1.65;
}

.success-kit-resources {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.success-kit-resource {
    display: flex;
    gap: 12px;
    min-width: 0px;
    padding: 16px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(217, 226, 239);
    border-radius: 8px;
    transition: border-color 180ms, box-shadow 180ms, transform 180ms;
}

.success-kit-resource:hover {
    border-color: rgb(246, 193, 139);
    box-shadow: rgba(0, 31, 94, 0.08) 0px 12px 22px;
    transform: translateY(-2px);
}

.success-kit-resource>i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    color: rgb(216, 100, 17);
    background: rgb(255, 244, 233);
    border-radius: 8px;
    font-size: 16px;
}

.success-kit-resource h3 {
    margin: 0px 0px 4px;
    color: rgb(6, 21, 65);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.success-kit-resource p {
    margin: 0px;
    color: rgb(82, 100, 118);
    font-size: 13px;
    line-height: 1.45;
}

.success-kit-brochure {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    padding: 20px;
    background: rgb(255, 255, 255);
    border-width: 1px 1px 1px 4px;
    border-style: solid;
    border-color: rgb(246, 193, 139) rgb(246, 193, 139) rgb(246, 193, 139) rgb(244, 124, 34);
    border-image: none;
    border-radius: 8px;
}

.success-kit-brochure span {
    color: rgb(6, 21, 65);
    font-size: 16px;
    font-weight: 800;
}

.success-kit-brochure p {
    max-width: 520px;
    margin: 5px 0px 0px;
    color: rgb(82, 100, 118);
    font-size: 13px;
    line-height: 1.5;
}

.success-kit-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 16px;
    color: rgb(255, 255, 255);
    background: rgb(244, 124, 34);
    border: 1px solid rgb(244, 124, 34);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 180ms, border-color 180ms, transform 180ms;
}

.success-kit-download:hover,
.success-kit-download:focus-visible {
    color: rgb(255, 255, 255);
    background: rgb(216, 100, 17);
    border-color: rgb(216, 100, 17);
    transform: translateY(-1px);
}

.success-kit-summary {
    display: flex;
    flex-direction: column;
    padding: 36px 30px 30px;
    color: rgb(255, 255, 255);
    background: rgb(6, 21, 65);
    border: 1px solid rgb(20, 51, 97);
    border-radius: 8px;
    box-shadow: rgba(0, 31, 94, 0.16) 0px 18px 32px;
}

.success-kit-summary-label {
    color: rgb(255, 189, 125);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.success-kit-summary h3 {
    margin: 12px 0px 24px;
    color: rgb(255, 255, 255);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.28;
}

.success-kit-summary ul {
    display: grid;
    gap: 0px;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.success-kit-summary li {
    position: relative;
    padding: 10px 0px 10px 28px;
    color: rgb(238, 245, 255);
    border-bottom: 1px solid rgba(185, 203, 226, 0.18);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.success-kit-summary li::before {
    position: absolute;
    top: 11px;
    left: 0px;
    content: "";
    color: rgb(255, 157, 77);
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 900;
}

.success-kit-summary>p {
    margin: auto 0px 0px;
    padding-top: 24px;
    color: rgb(185, 203, 226);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.success-kit-summary>p span {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0px 7px 2px;
    background: rgb(244, 124, 34);
    border-radius: 50%;
}

.nep-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    gap: 12px;
    max-width: 940px;
    margin: 0px auto 34px;
}

.nep-highlights div {
    min-width: 0px;
    padding: 14px 16px;
    border: 1px solid rgb(217, 226, 239);
    border-radius: 8px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 31, 94, 0.05) 0px 8px 18px;
}

.nep-highlights strong,
.nep-highlights span {
    display: block;
}

.nep-highlights strong {
    color: rgb(244, 124, 34);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.nep-highlights span {
    margin-top: 4px;
    color: rgb(82, 100, 118);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.nep-timeline {
    max-width: 980px;
    margin: auto;
    position: relative;
}

.nep-timeline::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 2px;
    background: rgb(244, 124, 34);
}

.nep-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 30px;
    align-items: center;
    min-height: 126px;
    margin-bottom: 40px;
}

.nep-icon {
    z-index: 1;
    grid-area: 1 / 2;
    width: 42px;
    height: 42px;
    justify-self: center;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(244, 124, 34);
    color: rgb(244, 124, 34);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 15px;
}

.nep-content {
    grid-area: 1 / 1;
    min-width: 0px;
    width: 100%;
    max-width: 440px;
    justify-self: end;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 30px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08) !important;
    transition: transform 180ms, border-color 180ms, box-shadow 180ms;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
    position: relative;
    z-index: 2;
}

.nep-item:nth-child(2n) .nep-content {
    grid-column: 3;
    justify-self: start;
}

.nep-content:hover {
    transform: translateY(-4px);
    border-color: rgb(244, 124, 34);
    box-shadow: rgba(0, 31, 94, 0.12) 0px 18px 34px;
}

.nep-content h4 {
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 24px;
    color: #13264d;
    line-height: 1.35;
}

.nep-content p {
    color: #6b7280;
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 1.6;
}

.nep-content span {
    display: inline-block;
    background: #fff5eb;
    color: #ff7b00;
    padding: 6px 12px;
    border: 1px solid #ffd4ad;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.nep-content h6 {
    margin: 0px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.flebowsec {
    margin-top: 20px;
}

@media (max-width: 767px) {

    .success-kit-grid,
    .success-kit-resources {
        grid-template-columns: 1fr;
    }

    .success-kit-grid {
        gap: 24px;
    }

    .success-kit-lead {
        font-size: 16px;
    }

    .success-kit-brochure {
        align-items: stretch;
        flex-direction: column;
        padding: 18px;
    }

    .success-kit-download {
        width: 100%;
    }

    .success-kit-summary {
        padding: 28px 22px;
    }

    .nep-goals-explorer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nep-goal-tab {
        min-height: 56px;
        padding: 13px 15px;
        font-size: 14px;
    }

    .nep-goal-detail {
        padding: 26px 20px;
    }

    .nep-goal-detail h3 {
        margin-top: 16px;
        font-size: 27px;
    }

    .nep-goal-detail>p {
        font-size: 15px;
    }

    .nep-goal-outcome {
        margin-top: 24px;
        padding: 18px;
    }

    .nep-highlights {
        grid-template-columns: repeat(2, minmax(0px, 1fr));
    }

    .nep-timeline::before {
        left: 20px;
    }

    .nep-item,
    .nep-item:nth-child(2n) {
        grid-template-columns: 42px minmax(0px, 1fr);
        gap: 14px;
    }

    .nep-icon {
        grid-column: 1;
    }

    .nep-content,
    .nep-item:nth-child(2n) .nep-content {
        grid-column: 2;
    }
}

.student-benefits-section {
    position: relative;
    overflow: hidden;
    background: rgb(245, 249, 255);
}

.student-benefits-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(14, 101, 170, 0.05);
    border-radius: 50%;
    top: -220px;
    right: -180px;
}

.student-benefits-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 140, 0, 0.06);
    border-radius: 50%;
    bottom: -220px;
    left: -180px;
}

.student-benefits-section .container {
    position: relative;
    z-index: 2;
}

.report-card {
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 68, 117, 0.08);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 30px 70px;
}

.report-card::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 7px;
    height: 100%;
    background: linear-gradient(rgb(11, 68, 117), rgb(242, 139, 34));
}

.report-top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.report-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgb(11, 68, 117), rgb(15, 106, 178));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-icon i {
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.report-label {
    display: inline-block;
    margin-bottom: 5px;
    color: rgb(11, 68, 117);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.report-card h3 {
    font-size: 22px;
    line-height: 20px;
    color: rgb(8, 45, 74);
    font-weight: 700;
}

.report-intro {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(102, 102, 102);
    margin-bottom: 30px;
}

.point-box {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    background: rgb(248, 251, 255);
    transition: 0.35s;
    align-items: flex-start;
}

.point-box:hover {
    transform: translateY(-5px);
    background: rgb(238, 246, 255);
}

.point-box i {
    color: rgb(11, 68, 117);
    font-size: 18px;
    top: 5px;
    position: relative;
}

.point-box span {
    line-height: 1.5;
    font-size: 16px;
}

.mini-benefit-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    height: 100%;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    border: 1px solid rgba(11, 68, 117, 0.08);
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 35px;
    transition: 0.35s;
    overflow: hidden;
}

.mini-benefit-card::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgb(11, 68, 117), rgb(242, 139, 34));
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left center;
}

.mini-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 25px 50px;
}

.mini-benefit-card:hover::before {
    transform: scaleX(1);
}

.mini-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgb(11, 68, 117), rgb(15, 106, 178));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.mini-icon i {
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.mini-content {
    flex: 1 1 0%;
}

.card-number {
    display: inline-block;
    margin-bottom: 5px;
    color: rgb(242, 139, 34);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0px;
}

.mini-content h4 {
    font-size: 18px;
    color: rgb(8, 45, 74);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.mini-content p {
    color: rgb(108, 122, 137);
    line-height: 1.7;
    font-size: 14px;
    margin: 0px;
}

.qualifier-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 8px 0px;
}

.qualifier-title span {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(11, 68, 117), rgb(242, 139, 34));
    border-radius: 20px;
}

.qualifier-title h5 {
    margin: 0px;
    font-size: 20px;
    color: rgb(8, 45, 74);
    font-weight: 700;
}

.school-benefits-section {
    background: rgb(247, 251, 255);
    padding: 50px 0px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.shape-one {
    width: 250px;
    height: 250px;
    background: rgba(21, 94, 239, 0.125);
    top: -80px;
    left: -80px;
}

.shape-two {
    width: 280px;
    height: 280px;
    background: rgba(123, 97, 255, 0.125);
    right: -80px;
    bottom: -80px;
}

.section-badge {
    display: inline-block;
    background: rgb(21, 94, 239);
    color: rgb(255, 255, 255);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 18px;
}

.benefit-main-card {
    position: relative;
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 25px 70px;
    border: 1px solid rgb(224, 224, 224);
}

.card-number {
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 90px;
    font-weight: 800;
    color: rgb(238, 243, 255);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: rgb(21, 94, 239);
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.card-label {
    color: rgb(21, 94, 239);
    font-weight: 600;
    font-size: 14px;
    margin: 0px;
}

.benefit-main-card h3 {
    margin: 10px 0px 20px;
    font-size: 22px;
    font-weight: 700;
}

.benefit-main-card ul {
    padding-left: 10px;
    margin-top: 20px;
}

.benefit-main-card li {
    margin-bottom: 10px;
    font-size: 15px;
}

.mini-card {
    background: rgb(255, 255, 255);
    border-radius: 6px;
    padding: 25px;
    height: 100%;
    transition: 0.35s;
    border: 1px solid rgb(228, 228, 228);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
}

.mini-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(21, 94, 239, 0.12) 0px 25px 50px;
}

.mini-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.benefit-bottom-card {
    background: linear-gradient(135deg, rgb(21, 94, 239), rgb(79, 139, 255));
    color: rgb(255, 255, 255);
    padding: 45px;
    border-radius: 8px;
    box-shadow: rgba(21, 94, 239, 0.25) 0px 20px 60px;
}

.benefit-bottom-card p {
    color: rgba(255, 255, 255, 0.85);
}

.benefit-bottom-card .btn {
    background: rgb(255, 255, 255);
    color: rgb(21, 94, 239);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 16px;
}

.benefit-bottom-card .btn:hover {
    transform: translateY(-2px);
}

.benefit-bottom-card h3 {
    font-size: 25px;
    font-weight: 700;
}

.mini-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mini-card p {
    line-height: 1.5rem;
}

.exam-rounds {
    border: 0px;
    border-collapse: separate;
    border-spacing: 0px;
}

.exam-rounds thead {
    display: none;
}

.exam-rounds tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 18px;
}

.exam-rounds tbody tr,
.data-table.exam-rounds tbody tr:nth-child(2n) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 14px 24px;
    margin: 0px;
    padding: 26px;
    border-width: 4px 1px 1px;
    border-style: solid;
    border-color: rgb(11, 68, 117) rgb(217, 226, 239) rgb(217, 226, 239);
    border-image: none;
    border-radius: 8px;
    box-shadow: rgba(0, 31, 94, 0.08) 0px 10px 24px;
    transition: transform 180ms, box-shadow 180ms, border-color 180ms;
    background: rgb(255, 255, 255) !important;
}

.exam-rounds tbody tr:nth-child(2) {
    border-top-color: rgb(244, 124, 34);
}

.exam-rounds td {
    display: block;
    min-width: 0px;
    color: rgb(38, 56, 76);
    font-size: 15px;
    line-height: 1.55;
    padding: 0px !important;
    border: 0px !important;
    background: transparent !important;
}

.exam-rounds td:first-child {
    grid-column: 1 / -1;
    color: rgb(6, 21, 65);
    font-size: 24px;
    line-height: 1.2;
}

.exam-rounds td:not(:first-child) {
    padding-top: 12px !important;
    border-top: 1px solid rgb(229, 235, 243) !important;
}

.exam-rounds td::before {
    display: block;
    margin-bottom: 4px;
    color: rgb(100, 116, 139);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.exam-rounds td:first-child::before {
    content: "Olympiad Round";
    color: rgb(11, 68, 117);
}

.exam-rounds td:nth-child(2)::before {
    content: "Format";
}

.exam-rounds td:nth-child(3)::before {
    content: "What It Tests";
}

.exam-rounds td:nth-child(4)::before {
    content: "Who Can Participate";
}

.exam-assessment-title {
    margin: 34px 0px 16px;
    color: rgb(6, 21, 65);
    font-size: 25px;
    font-weight: 800;
    text-align: left;
}

.productservices .table-responsive {
    border: unset;
}

.exam-grade-guide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    gap: 18px;
}

.exam-grade-card {
    min-width: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-width: 4px 1px 1px;
    border-style: solid;
    border-color: rgb(11, 68, 117) rgb(217, 226, 239) rgb(217, 226, 239);
    border-image: none;
    border-radius: 8px;
    box-shadow: rgba(0, 31, 94, 0.08) 0px 10px 24px;
    transition: transform 180ms, box-shadow 180ms, border-color 180ms;
}

.exam-grade-card:nth-child(2) {
    border-top-color: rgb(244, 124, 34);
}

.exam-grade-card:nth-child(3) {
    border-top-color: rgb(22, 128, 107);
}

.exam-grade-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgb(229, 235, 243);
}

.exam-grade-card-header span,
.exam-grade-card-header>strong,
.exam-grade-stats span,
.exam-section-list span {
    display: block;
    color: rgb(100, 116, 139);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.exam-grade-card-header h4 {
    margin: 4px 0px 0px;
    color: rgb(6, 21, 65);
    font-size: 22px;
    font-weight: 800;
}

.exam-grade-card-header p {
    margin: 4px 0px 0px;
    color: rgb(11, 68, 117);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.exam-grade-card-header>strong {
    padding: 5px 8px;
    color: rgb(11, 68, 117);
    background: rgb(237, 244, 251);
    border-radius: 4px;
    white-space: nowrap;
    transition: background-color 180ms, color 180ms, transform 180ms;
}

.exam-grade-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px 20px;
    background: rgb(246, 249, 252);
}

.exam-grade-stats div+div {
    padding-left: 16px;
    border-left: 1px solid rgb(217, 226, 239);
}

.exam-grade-stats div {
    transition: transform 180ms;
}

.exam-grade-stats strong {
    display: block;
    color: rgb(216, 100, 17);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.exam-grade-stats span {
    margin-top: 5px;
}

.exam-section-list {
    padding: 8px 20px 18px;
}

.exam-section-list>div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 0px;
    border-bottom: 1px solid rgb(229, 235, 243);
    transition: background-color 180ms, padding 180ms;
}

.exam-section-list>div:last-child {
    border-bottom: 0px;
}

.exam-section-list b {
    display: grid;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    place-items: center;
    color: rgb(255, 255, 255);
    background: rgb(11, 68, 117);
    border-radius: 4px;
    font-size: 12px;
    transition: transform 180ms, background-color 180ms;
}

.exam-section-list p {
    min-width: 0px;
    margin: 0px;
}

.exam-section-list p strong {
    display: block;
    color: rgb(38, 56, 76);
    font-size: 14px;
    line-height: 1.35;
}

.exam-section-list span {
    margin-top: 3px;
    font-size: 11px;
}

.exam-learning-focus {
    margin-top: 28px;
    padding: 30px 0px 4px;
    border-top: 1px solid rgb(217, 226, 239);
    text-align: center;
}

.exam-learning-focus h4 {
    margin: 0px;
    color: rgb(6, 21, 65);
    font-size: 40px;
    font-weight: 800;
}

.exam-learning-intro {
    margin: 5px 0px 50px;
    color: rgb(82, 100, 118);
    font-size: 14px;
}

.exam-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    gap: 18px;
}

.exam-focus-card {
    --focus-color: #0b7a55;
    --focus-border: #b8efd7;
    --focus-surface: #effcf5;
    --focus-badge: #d8fae8;
    min-width: 0px;
    margin: 0px;
    padding: 20px;
    background: rgb(255, 255, 255);
    border: 1px solid var(--focus-border);
    border-radius: 8px;
    text-align: left;
    transition: transform 180ms, box-shadow 180ms;
}

.exam-focus-card:nth-child(2) {
    --focus-color: #1d4ed8;
    --focus-border: #c8dcff;
    --focus-surface: #eff6ff;
    --focus-badge: #dbeafe;
}

.exam-focus-card:nth-child(3) {
    --focus-color: #b45309;
    --focus-border: #f8df9f;
    --focus-surface: #fffbeb;
    --focus-badge: #fff0bf;
}

.exam-focus-card:nth-child(4) {
    --focus-color: #be123c;
    --focus-border: #fecdd5;
    --focus-surface: #fff1f2;
    --focus-badge: #ffe0e5;
}

.exam-focus-card header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.exam-focus-card header b {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--focus-color);
    background: var(--focus-badge);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 800;
}

.exam-focus-card h5 {
    margin: 0px;
    color: rgb(6, 21, 65);
    font-size: 16px;
    font-weight: 700;
}

.exam-focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.exam-focus-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    color: var(--focus-color);
    background: var(--focus-surface);
    border: 1px solid var(--focus-border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

@media (hover: hover) and (pointer: fine) {

    .exam-rounds tbody tr:hover,
    .data-table.exam-rounds tbody tr:nth-child(2n):hover,
    .exam-grade-card:hover {
        transform: translateY(-5px);
        border-color: rgb(159, 183, 206);
        box-shadow: rgba(0, 31, 94, 0.15) 0px 18px 34px;
    }

    .exam-grade-card:hover .exam-grade-card-header>strong {
        color: rgb(255, 255, 255);
        background: rgb(11, 68, 117);
        transform: translateY(-1px);
    }

    .exam-grade-card:nth-child(2):hover .exam-grade-card-header>strong {
        background: rgb(216, 100, 17);
    }

    .exam-grade-card:nth-child(3):hover .exam-grade-card-header>strong {
        background: rgb(22, 128, 107);
    }

    .exam-grade-card:hover .exam-grade-stats div {
        transform: translateY(-2px);
    }

    .exam-section-list>div:hover {
        padding-right: 8px;
        padding-left: 8px;
        background: rgb(246, 249, 252);
    }

    .exam-section-list>div:hover b {
        background: rgb(216, 100, 17);
        transform: scale(1.08);
    }

    .exam-focus-card:hover {
        transform: translateY(-5px);
        box-shadow: rgba(0, 31, 94, 0.12) 0px 16px 30px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .exam-rounds tbody tr,
    .data-table.exam-rounds tbody tr:nth-child(2n),
    .exam-grade-card,
    .exam-grade-card-header>strong,
    .exam-grade-stats div,
    .exam-section-list>div,
    .exam-section-list b,
    .exam-focus-card {
        transition: none;
    }
}

.exam-grade-table {
    display: none;
}

.grade-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 4px 0px 18px;
    padding: 11px 15px;
    color: rgb(255, 255, 255);
    background: rgb(11, 68, 117);
    border: 1px solid rgb(11, 68, 117);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 180ms, background-color 180ms, box-shadow 180ms;
}

.grade-pdf-download:hover,
.grade-pdf-download:focus-visible {
    color: rgb(255, 255, 255);
    background: rgb(216, 100, 17);
    border-color: rgb(216, 100, 17);
    box-shadow: rgba(216, 100, 17, 0.22) 0px 8px 18px;
    transform: translateY(-2px);
}

.grade-syllabus-modern {
    padding: 8px 0px 20px;
    color: rgb(38, 56, 76);
}

.grade-syllabus-modern h3,
.grade-syllabus-modern h4,
.grade-syllabus-modern h5,
.grade-syllabus-modern strong,
.grade-syllabus-modern b,
.grade-syllabus-modern .grade-syllabus-eyebrow,
.grade-syllabus-modern .grade-syllabus-download,
.grade-syllabus-modern .grade-topic-tags span,
.grade-syllabus-modern .grade-module-card>header span,
.grade-syllabus-modern .grade-module-card>header small,
.grade-syllabus-modern .grade-exam-header-stats,
.grade-syllabus-modern .grade-exam-summary>div span {
    letter-spacing: 0px;
}

.grade-syllabus-modern h4::before {
    display: none;
}

.grade-syllabus-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px 32px;
    color: rgb(255, 255, 255);
    background: rgb(6, 21, 65);
    border: 1px solid rgb(25, 52, 103);
    border-radius: 8px;
    box-shadow: rgba(0, 31, 94, 0.14) 0px 14px 30px;
}

.grade-syllabus-eyebrow {
    display: inline-flex;
    padding: 4px 10px;
    color: rgb(255, 194, 142);
    border: 1px solid rgb(216, 100, 17);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.grade-syllabus-hero h3 {
    margin: 10px 0px 6px;
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.grade-syllabus-hero p {
    max-width: 620px;
    margin: 0px;
    color: rgb(216, 228, 242);
    font-size: 15px;
    line-height: 1.55;
}

.grade-syllabus-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.grade-syllabus-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: rgb(255, 255, 255);
    background: rgb(216, 100, 17);
    border: 1px solid rgb(216, 100, 17);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 180ms, border-color 180ms, transform 180ms;
}

.grade-syllabus-download:hover,
.grade-syllabus-download:focus-visible {
    color: rgb(255, 255, 255);
    background: rgb(185, 79, 9);
    border-color: rgb(185, 79, 9);
    transform: translateY(-2px);
}

.grade-syllabus-meta,
.grade-exam-header-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.grade-syllabus-meta span {
    padding: 4px 7px;
    color: rgb(216, 228, 242);
    border: 1px solid rgb(57, 82, 119);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.grade-module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.grade-module-card {
    --module-color: #2563eb;
    --module-border: #bfdbfe;
    --module-surface: #eff6ff;
    display: flex;
    flex-direction: column;
    min-width: 0px;
    min-height: 266px;
    padding: 20px;
    background: rgb(255, 255, 255);
    border: 1px solid var(--module-border);
    border-radius: 8px;
    box-shadow: rgba(0, 31, 94, 0.06) 0px 8px 18px;
    transition: transform 180ms, box-shadow 180ms;
}

.grade-module-card.module-b {
    --module-color: #0c7c9c;
    --module-border: #a5e3f0;
    --module-surface: #ecfbff;
}

.grade-module-card.module-c {
    --module-color: #047857;
    --module-border: #9ce8ce;
    --module-surface: #ecfdf5;
}

.grade-module-card.module-d {
    --module-color: #d86411;
    --module-border: #f6c18b;
    --module-surface: #fff4e9;
}

.grade-module-card>header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.grade-module-card>header span {
    padding: 4px 9px;
    color: var(--module-color);
    background: var(--module-surface);
    border: 1px solid var(--module-border);
    border-radius: 14px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.grade-module-card>header small {
    color: rgb(100, 116, 139);
    font-size: 11px;
    font-weight: 700;
}

.grade-module-card h4 {
    margin: 13px 0px 5px;
    color: rgb(6, 21, 65);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.32;
}

.grade-module-card>p {
    margin: 0px;
    color: rgb(82, 100, 118);
    font-size: 13px;
    line-height: 1.5;
}

.grade-topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.grade-topic-tags span {
    padding: 4px 7px;
    color: var(--module-color);
    background: var(--module-surface);
    border: 1px solid var(--module-border);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

.grade-module-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    color: rgb(123, 141, 162);
    border-top: 1px solid rgb(217, 226, 239);
    font-size: 11px;
    line-height: 1.3;
}

.grade-module-card footer i {
    color: var(--module-color);
}

.grade-exam-panel {
    margin-top: 20px;
    padding: 24px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(217, 226, 239);
    border-radius: 8px;
    box-shadow: rgba(0, 31, 94, 0.06) 0px 8px 18px;
}

.grade-exam-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgb(217, 226, 239);
}

.grade-exam-panel-header>div:first-child>span {
    display: block;
    margin-bottom: 5px;
    color: rgb(216, 100, 17);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.grade-exam-panel-header h4 {
    margin: 0px;
    color: rgb(6, 21, 65);
    font-size: 23px;
    font-weight: 800;
}

.grade-exam-header-stats span,
.grade-exam-header-stats strong {
    padding: 6px 9px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.grade-exam-header-stats span {
    color: rgb(82, 100, 118);
    background: rgb(246, 249, 252);
    border: 1px solid rgb(217, 226, 239);
}

.grade-exam-header-stats strong {
    color: rgb(180, 83, 9);
    background: rgb(255, 244, 233);
    border: 1px solid rgb(246, 193, 139);
}

.grade-exam-grid {
    display: grid;
    grid-template-columns: minmax(0px, 1.35fr) minmax(260px, 0.9fr);
    gap: 20px;
    margin-top: 20px;
}

.grade-exam-rows {
    display: grid;
    gap: 10px;
}

.grade-exam-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgb(248, 250, 252);
    border: 1px solid rgb(217, 226, 239);
    border-radius: 6px;
}

.grade-exam-row>div {
    position: relative;
    flex: 1 1 auto;
    min-width: 0px;
    padding-bottom: 9px;
}

.grade-exam-row>div::after,
.grade-exam-row>div i {
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: block;
    height: 3px;
    border-radius: 3px;
    content: "";
}

.grade-exam-row>div::after {
    right: 0px;
    background: rgb(217, 226, 239);
}

.grade-exam-row>div i {
    z-index: 1;
    background: rgb(12, 124, 156);
}

.grade-exam-row strong,
.grade-exam-row span {
    display: block;
}

.grade-exam-row strong {
    color: rgb(38, 56, 76);
    font-size: 13px;
    line-height: 1.35;
}

.grade-exam-row span {
    margin-top: 2px;
    color: rgb(216, 100, 17);
    font-size: 11px;
    font-weight: 700;
}

.grade-exam-row b {
    flex: 0 0 auto;
    padding: 5px 7px;
    color: rgb(11, 68, 117);
    background: rgb(237, 244, 251);
    border: 1px solid rgb(198, 221, 243);
    border-radius: 4px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
}

.grade-exam-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 10px;
    align-content: start;
    padding: 16px;
    background: rgb(246, 249, 252);
    border: 1px solid rgb(217, 226, 239);
    border-radius: 6px;
}

.grade-exam-summary h5,
.grade-exam-summary p {
    grid-column: 1 / -1;
}

.grade-exam-summary h5 {
    margin: 0px 0px 2px;
    color: rgb(82, 100, 118);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.grade-exam-summary>div {
    padding: 10px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(217, 226, 239);
    border-radius: 5px;
}

.grade-exam-summary>div span,
.grade-exam-summary>div strong {
    display: block;
}

.grade-exam-summary>div span {
    color: rgb(100, 116, 139);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.grade-exam-summary>div strong {
    margin-top: 4px;
    color: rgb(6, 21, 65);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
}

.grade-exam-summary>div:nth-of-type(2) strong {
    color: rgb(216, 100, 17);
}

.grade-exam-summary p {
    margin: 2px 0px 0px;
    color: rgb(100, 116, 139);
    font-size: 11px;
    line-height: 1.45;
}

.grade-exam-summary p i {
    margin-right: 4px;
    color: rgb(12, 124, 156);
}

@media (hover: hover) and (pointer: fine) {
    .grade-module-card:hover {
        transform: translateY(-4px);
        box-shadow: rgba(0, 31, 94, 0.12) 0px 14px 26px;
    }
}

@media (max-width: 991px) {

    .grade-syllabus-hero,
    .grade-exam-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .grade-syllabus-actions {
        align-items: flex-start;
    }

    .grade-syllabus-meta,
    .grade-exam-header-stats {
        justify-content: flex-start;
    }

    .grade-exam-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .grade-syllabus-hero,
    .grade-exam-panel {
        padding: 20px;
    }

    .grade-syllabus-hero h3 {
        font-size: 24px;
    }

    .grade-module-grid {
        grid-template-columns: 1fr;
    }

    .grade-module-card {
        min-height: 0px;
        padding: 18px;
    }

    .grade-exam-summary {
        grid-template-columns: 1fr;
    }

    .grade-exam-summary h5,
    .grade-exam-summary p {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .grade-pdf-download {
        transition: none;
    }

    .grade-syllabus-download,
    .grade-module-card {
        transition: none;
    }
}

.exam-grade-table thead,
.data-table.exam-grade-table thead {
    background: rgb(6, 21, 65);
}

.exam-grade-table thead th {
    font-weight: 800;
    text-transform: uppercase;
    vertical-align: middle;
    padding: 16px 14px !important;
    color: rgb(255, 255, 255) !important;
    background: rgb(6, 21, 65) !important;
    border-color: rgb(23, 51, 111) !important;
    font-size: 12px !important;
    letter-spacing: 0px !important;
}

.exam-grade-table tbody td {
    color: rgb(52, 70, 90);
    font-size: 14px;
    line-height: 1.5;
    vertical-align: top;
    padding: 16px 14px !important;
    border-color: rgb(224, 231, 240) !important;
    background: rgb(255, 255, 255) !important;
}

.data-table.exam-grade-table tbody tr:nth-child(2n) td {
    background: rgb(246, 249, 252) !important;
}

.exam-grade-table tbody td:first-child {
    min-width: 220px;
    color: rgb(6, 21, 65);
}

.exam-grade-table tbody td:nth-child(2),
.exam-grade-table tbody td:nth-child(3),
.exam-grade-table tbody td:nth-child(4) {
    min-width: 126px;
    color: rgb(11, 68, 117);
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.exam-grade-table tbody tr:nth-last-child(-n+3) td {
    color: rgb(6, 21, 65);
    font-weight: 700;
    background: rgb(237, 244, 251) !important;
}

.exam-grade-table tbody tr:nth-last-child(-n+3) td:nth-child(2),
.exam-grade-table tbody tr:nth-last-child(-n+3) td:nth-child(3),
.exam-grade-table tbody tr:nth-last-child(-n+3) td:nth-child(4) {
    color: rgb(216, 100, 17);
}

.boxmarkst {
    position: relative;
    background: var(--xp-surface);
    border: 1.5px solid var(--xp-hairline);
    border-radius: 8px;
    padding: 30px 25px;
    overflow: hidden;
    isolation: isolate;
    height: 100%;
    box-shadow: rgba(20, 20, 20, 0.04) 0px 1px 2px, rgba(20, 20, 20, 0.03) 0px 8px 20px;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    --xp-accent: var(--xp-hue-a);
    --xp-accent-tint: var(--xp-hue-a-tint);
}

.boxmarkst:hover {
    transform: translateY(-4px);
    border-color: var(--xp-accent);
    box-shadow: rgba(20, 20, 20, 0.06) 0px 4px 10px, rgba(20, 20, 20, 0.1) 0px 18px 34px;
}

.row>.col-md-3:nth-of-type(1) .boxmarkst {
    --xp-accent: var(--xp-hue-a);
    --xp-accent-tint: var(--xp-hue-a-tint);
}

.row>.col-md-3:nth-of-type(2) .boxmarkst {
    --xp-accent: var(--xp-hue-b);
    --xp-accent-tint: var(--xp-hue-b-tint);
}

.row>.col-md-3:nth-of-type(3) .boxmarkst {
    --xp-accent: var(--xp-hue-c);
    --xp-accent-tint: var(--xp-hue-c-tint);
}

.row>.col-md-3:nth-of-type(4) .boxmarkst {
    --xp-accent: var(--xp-hue-d);
    --xp-accent-tint: var(--xp-hue-d-tint);
}

.boxmarkst .watermark {
    position: absolute;
    right: -6px;
    top: -30px;
    font-weight: 800;
    font-size: 130px;
    line-height: 1;
    color: var(--xp-accent);
    opacity: 0.05;
    z-index: 0;
    user-select: none;
    transition: opacity 0.22s;
}

.boxmarkst:hover .watermark {
    opacity: 0.09;
}

.boxmarkst .secaremar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.boxmarkst .letter {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--xp-accent-tint);
    color: var(--xp-accent);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--xp-accent-tint);
    transition: transform 0.22s;
}

.boxmarkst:hover .letter {
    transform: scale(1.08);
}

.boxmarkst .marks {
    font-weight: 800;
    font-size: 12px;
    color: var(--xp-accent);
    line-height: 1;
    margin: 0px;
    text-align: right;
    text-transform: none;
}

.boxmarkst h3 {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    margin: 4px 0px 0px;
}

.boxmarkst .qcount {
    position: relative;
    z-index: 1;
    font-size: 11px;
    color: var(--xp-accent);
    font-weight: 600;
    margin: 0px 0px 14px;
}

.boxmarkst .desc {
    position: relative;
    z-index: 1;
    font-size: 12px;
    line-height: 1.6;
    color: var(--xp-mute);
    margin: 0px;
}

.total-block {
    position: relative;
    background: linear-gradient(135deg, rgb(244, 240, 255) 0%, rgb(238, 246, 255) 50%, rgb(234, 250, 243) 100%);
    border: 1.5px solid rgb(226, 221, 245);
    border-radius: 10px;
    padding: 30px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: rgba(80, 60, 150, 0.05) 0px 1px 2px, rgba(80, 60, 150, 0.08) 0px 14px 30px;
    margin-top: 30px;
}

.total-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.total-head .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(14, 163, 115);
}

.total-head span:last-child {
    font-size: 12px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--xp-mute);
    font-weight: 900;
}

.equation {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.equation+.equation {
    margin-top: 16px;
}

.eq-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgb(255, 255, 255);
    border: 1.5px solid var(--xp-hairline);
    border-radius: 6px;
    padding: 8px 10px;
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.eq-chip:hover {
    transform: translateY(-2px);
    border-color: var(--xp-chip-hue);
    box-shadow: rgba(20, 20, 20, 0.08) 0px 6px 14px;
}

.eq-chip .sw {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: var(--xp-chip-hue);
    color: rgb(255, 255, 255);
    font-weight: 800;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eq-chip .v {
    font-weight: 800;
    font-size: 14px;
    color: var(--xp-ink);
}

.eq-chip.ca {
    --xp-chip-hue: var(--xp-hue-a);
}

.eq-chip.cb {
    --xp-chip-hue: var(--xp-hue-b);
}

.eq-chip.cc {
    --xp-chip-hue: var(--xp-hue-c);
}

.eq-chip.cd {
    --xp-chip-hue: var(--xp-hue-d);
}

.eq-op {
    font-weight: 700;
    font-size: 16px;
    color: rgb(180, 179, 196);
    flex-shrink: 0;
}

.eq-op.eq {
    color: rgb(14, 163, 115);
    font-size: 18px;
}

.eq-result {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-left: 2px;
}

.eq-result .n {
    font-weight: 800;
    font-size: 22px;
    color: var(--xp-ink);
    line-height: 1;
}

.eq-result .l {
    font-size: 12px;
    color: var(--xp-mute);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.total-divider {
    height: 1px;
    background: rgb(226, 221, 245);
    margin: 15px 0px 10px;
}

.total-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.total-foot .pill {
    font-size: 12.5px;
    color: var(--xp-mute);
    background: rgb(255, 255, 255);
    border: 1px solid var(--xp-hairline);
    border-radius: 8px;
    padding: 5px 14px;
    display: inline-block;
}

.total-foot .pill b {
    color: var(--xp-ink);
    font-weight: 700;
}

.geratmarks {
    position: relative;
    margin: 0px;
    padding: 30px 0px 0px;
    display: block;
}

.hero-btn-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
    max-width: calc(71.4286%);
    margin: 40px auto 0px;
}

.hero-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
    text-decoration: none;
    border-radius: 90px;
    padding: 10px 20px;
    min-height: unset;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s;
    isolation: isolate;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn:active {
    transform: translateY(-1px);
}

.hero-btn:focus-visible {
    outline: 3px solid var(--orange-3);
    outline-offset: 3px;
}

.icon-wrap {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0px;
}

.btn-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-sub {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arrow {
    margin-left: auto;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    opacity: 0.85;
    transition: transform 0.25s;
}

.hero-btn:hover .arrow {
    transform: translateX(4px);
}

.btn-school {
    background: #001F5E;
    border: 1.5px solid var(--line);
    box-shadow: rgba(0, 31, 94, 0.06) 0px 2px 8px;
}

.btn-school:hover {
    border-color: #ED7208;
    box-shadow: rgba(0, 31, 94, 0.14) 0px 10px 22px;
}

.btn-school .icon-wrap {
    background: linear-gradient(135deg, #002B80, #001F5E);
}

.btn-school .btn-icon path {
    fill: rgb(255, 255, 255);
}

.btn-school .btn-title {
    color: rgb(255, 255, 255);
}

.btn-school .btn-sub {
    color: rgb(255, 255, 255);
}

.btn-school .arrow path {
    stroke: #ED7208;
}

.btn-child {
    background: linear-gradient(135deg, #ED7208, #FF8D31);
    box-shadow: rgba(237, 114, 8, 0.32) 0px 10px 24px;
}

.btn-child:hover {
    box-shadow: rgba(237, 114, 8, 0.42) 0px 16px 32px;
}

.btn-child .icon-wrap {
    background: rgba(255, 255, 255, 0.22);
}

.btn-child .btn-icon path,
.btn-child .btn-icon circle {
    fill: rgb(255, 255, 255);
}

.btn-child .btn-title,
.btn-child .btn-sub {
    color: rgb(255, 255, 255);
}

.btn-child .btn-sub {
    opacity: 0.95;
}

.btn-child .arrow path {
    stroke: rgb(255, 255, 255);
}

.price {
    font-weight: 800;
}

.pulse {
    position: relative;
    display: inline-flex;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    margin-right: 6px;
    flex-shrink: 0;
}

.pulse::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    opacity: 0.55;
    animation: 1.6s ease-out 0s infinite normal none running ping;
}

@keyframes ping {
    0% {
        transform: scale(0.6);
        opacity: 0.55;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.btn-child::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s;
}

.btn-child:hover::before {
    left: 130%;
}

.mobilherosectop {
    padding-top: 150px !important;
}

.active-card p,
.active-card h4,
.active-card h5,
.active-card h6,
.active-card span,
.rating i {
    color: rgb(255, 255, 255);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--blue);
    display: inline-block;
}

.tab-pane .heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 0px 0px 4px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.tab-pane .heading .accent {
    position: relative;
    white-space: nowrap;
}

.tab-pane .heading .accent::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 2px;
    height: 8px;
    background: var(--blue-soft);
    z-index: -1;
    border-radius: 3px;
}

.tab-pane .sub {
    color: var(--muted);
    font-size: 13px;
    margin: 0px 0px 30px;
}

.rail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding: 0px 4px;
}

.rail-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.rail-num.n1 {
    background: var(--blue);
    color: rgb(255, 255, 255);
}

.rail-num.n2 {
    background: rgb(255, 255, 255);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.rail-line {
    flex: 1 1 0%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--blue) 0 8px, transparent 8px 14px);
}

.rail-pill {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: var(--navy);
    background: var(--blue-soft);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.track {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.round-card {
    flex: 1 1 0px;
    min-width: 0px;
    background: rgb(255, 255, 255);
    border: 1.5px solid #c1c6cf;
    border-radius: 18px;
    padding: 26px 24px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}

.round-card:hover {
    transform: translateY(-3px);
    box-shadow: rgba(11, 30, 61, 0.1) 0px 16px 32px;
}

.round-card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 22px;
    right: 22px;
    height: 3px;
    border-radius: 0px 0px 4px 4px;
}

.round-1::before {
    background: linear-gradient(90deg, var(--blue), #7EA6FF);
}

.round-2::before {
    background: linear-gradient(90deg, var(--navy), var(--blue));
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 10px;
}

.round-tag {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 5px;
    display: block;
}

.round-2 .round-tag {
    color: var(--navy);
}

.round-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin: 0px;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--amber);
    background: rgb(255, 244, 229);
    padding: 4px 9px;
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.live-badge .ping {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
}

.live-badge .ping::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.5;
    animation: 1.6s ease-out 0s infinite normal none running ping;
}

@keyframes ping {
    0% {
        transform: scale(0.7);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.field {
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
}

.field:first-of-type {
    margin-top: 0px;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
}

.field-label svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--blue);
}

.field-value {
    font-size: 13.5px;
    color: var(--navy-2);
    line-height: 1.5;
    font-weight: 500;
}

.secexademare {
    width: 100%;
    padding-bottom: 20px;
    position: relative;
}

/* --- Decorative background lines ---- */
.coomingsoon .bg-lines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.coomingsoon .bg-lines svg {
    width: 100%;
    height: 100%;
}

.coomingsoon .bg-lines path {
    fill: none;
    stroke-width: 1.5;
    stroke: var(--orange-2);
    opacity: 0.16;
}

.coomingsoon .bg-lines path:nth-child(2) {
    stroke: var(--blue);
    opacity: 0.10;
}

.coomingsoon .bg-lines path:nth-child(3) {
    stroke: var(--orange-1);
    opacity: 0.12;
}

/* -- Hero -- */
.coomingsoon {
    padding: 100px 0px 50px;
}

.coomingsoon .hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 10px;
}

.coomingsoon .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--orange-2);
    background: #FFF1DE;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 26px;
}

.coomingsoon .headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--navy);
    margin-bottom: 20px;
}

.coomingsoon .headline .accent {
    background: linear-gradient(135deg, var(--orange-2), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.coomingsoon .subtext {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 44px auto;
}

/* -- Notify form -- */
.coomingsoon .notify-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto 12px auto;
}

.coomingsoon .notify-form input {
    flex: 1;
    min-width: 0;
    padding: 15px 18px;
    border-radius: 12px;
    border: 1.5px solid rgb(116 118 121 / 55%);
    background: var(--white);
    font-size: 14.5px;
    color: var(--navy);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.coomingsoon .notify-form input::placeholder {
    color: #A3AEC2;
}

.coomingsoon .notify-form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(47, 111, 237, 0.12);
}

.coomingsoon .notify-form button {
    flex-shrink: 0;
    padding: 15px 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(255, 122, 0, 0.3);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.coomingsoon .notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 122, 0, 0.4);
}

.coomingsoon .notify-form button:active {
    transform: translateY(0);
}

.coomingsoon .notify-form.success input,
.coomingsoon .notify-form.success button {
    opacity: 0.55;
    pointer-events: none;
}

.independence-launch {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 153, 51, 0.12), rgba(255, 255, 255, 0.92) 36%, rgba(19, 136, 8, 0.10)),
        #ffffff;
}

.independence-launch .independence-band {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    height: 9px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 1;
}

.independence-launch .band.saffron {
    background: #ff9933;
}

.independence-launch .band.white {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 128, 0.12);
    border-bottom: 1px solid rgba(0, 0, 128, 0.12);
}

.independence-launch .band.green {
    background: #138808;
}

.independence-launch .hero {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.independence-launch .eyebrow {
    color: #0b5d1e;
    background: rgba(19, 136, 8, 0.10);
    border: 1px solid rgba(19, 136, 8, 0.18);
}

.independence-launch .headline {
    color: #001f5e;
    letter-spacing: 0;
}

.independence-launch .headline .accent {
    background: linear-gradient(135deg, #ff9933 0%, #001f5e 48%, #138808 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.independence-launch .subtext {
    max-width: 650px;
    margin-bottom: 30px;
}

.launch-date-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    border: 1px solid rgba(0, 31, 94, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 42px rgba(0, 31, 94, 0.10);
    margin-bottom: 24px;
}

.launch-date-card .date-day {
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    color: #ff8c00;
}

.launch-date-card .date-copy {
    text-align: left;
    color: #001f5e;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
}

.coming-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    background: #001f5e;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0, 31, 94, 0.18);
}

.coming-home-link:hover {
    color: #ffffff;
    background: #0b3b82;
}

@media (max-width: 575px) {
    .independence-launch {
        min-height: 72vh;
    }

    .independence-launch .headline {
        font-size: 38px;
    }

    .launch-date-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ---------- form section ---------- */
.form-section {
    max-width: 520px;
    margin: 0 auto;
    padding: 120px 20px 50px;
}

.form-section .form-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 20px;
    padding: 34px 30px;
    box-shadow: 0 14px 32px rgba(11, 30, 61, 0.08);
    position: relative;
    overflow: hidden;
}

.form-section .form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-1), var(--orange-2));
}

.form-section .form-card.variant-blue::before {
    background: linear-gradient(90deg, var(--blue), var(--navy));
}

.form-section .form-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange-2);
    margin-bottom: 6px;
}

.form-section .form-card.variant-blue .form-kicker {
    color: var(--blue);
}

.form-section .form-heading {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: var(--navy);
}

.form-section .form-desc {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0 0 26px 0;
    line-height: 1.5;
}

.form-section .field-group {
    margin-bottom: 18px;
}

.form-section .field-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy-2);
    margin-bottom: 6px;
}

.form-section .field-row {
    display: flex;
    gap: 12px;
}

.form-section .field-row .field-group {
    flex: 1;
    min-width: 0;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="password"],
.form-section input[type="tel"],
.form-section input[type="number"],
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--line);
    background: var(--bg);
    font-size: 14px;
    color: var(--navy);
    outline: none;
    font-family: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-section textarea {
    resize: vertical;
    min-height: 90px;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 111, 237, 0.12);
}

.form-section .submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 10px 22px rgba(255, 122, 0, 0.3);
    transition: transform .2s ease, box-shadow .2s ease;
}

.form-section .form-card.variant-blue .submit-btn {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    box-shadow: 0 10px 22px rgba(47, 111, 237, 0.3);
}

.form-section .submit-btn:hover {
    transform: translateY(-2px);
}

.form-section .form-footnote {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 18px;
}

.form-section .form-footnote a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.form-section .checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
}

.form-section .checkbox-row input {
    width: auto;
}

/*--- Tab section Timen ---*/

.focus-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: .35s;
    font-size: 16px;
    font-weight: 600;
    color: #253858;
}

.focus-item span {
    width: 90%;
    line-height: 1.5;
}

.focus-item i {
    font-size: 12px;
    transition: .35s;
}

.focus-item:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    border-color: #ff7b00;
}

.focus-item:hover i {
    transform: translateX(6px);
}

.focus-item.active {
    background: #ff7b00;
    color: #fff;
    border-color: #ff7b00;
}

/*--- Right Card ---*/
.focus-wrapper {
    position: sticky;
    top: 100px;
}

.focus-card {
    display: none;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    animation: fade .4s ease;
}

.focus-card.active {
    display: block;
}

.focus-badge {
    display: inline-block;
    padding: 8px 15px;
    background: #fff3e6;
    color: #ff7b00;
    border-radius: 50px;
    border: 1px solid #ffd4a8;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.focus-card h2 {
    font-size: 30px;
    font-weight: 800;
    color: #13264d;
    margin-bottom: 15px;
}

.focus-card>p {
    font-size: 15px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 35px;
}

/*--- Outcome B---*/
.focus-box {
    background: #fff5eb;
    border: 1px solid #ffd4ad;
    border-radius: 8px;
    padding: 20px;
}

.focus-box h6 {
    color: #ff7b00;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.focus-box p {
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/*--- Animation---*/
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--- Lovable Journey Styles ---*/
.lovable-journey-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    padding: 60px 0;
}

/* Mobile-only central line (hidden on desktop) */
.lovable-journey-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg, rgba(59, 109, 240, 0) 0%, rgba(59, 109, 240, 1) 10%, rgba(59, 109, 240, 1) 90%, rgba(59, 109, 240, 0) 100%);
    transform: translateX(-50%);
    z-index: 0;
    display: none;
}

.lovable-journey-card {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ODD (Row 1, 3, 5): Content Left, Number Right */
.lovable-journey-card:nth-child(odd) {
    flex-direction: row-reverse;
}

/* EVEN (Row 2, 4, 6): Number Left, Content Right */
.lovable-journey-card:nth-child(even) {
    flex-direction: row;
}

/* --- ZIG-ZAG CONNECTING LINES --- */

/* 1. L-Shape DOWN + ACROSS from ODD cards (Right to Center) */
.lovable-journey-card:nth-child(odd):not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    bottom: -30px; /* Reaches middle of 60px gap */
    right: 53px; /* Centers the 4px border exactly on the 55px circle center */
    left: calc(50% - 2px); /* Overlap center by 2px to prevent subpixel gaps */
    border-right: 4px solid #3B6DF0;
    border-bottom: 4px solid #3B6DF0;
    border-bottom-right-radius: 30px; /* Smooth curve */
    z-index: -1;
}
/* 2. Curve UP to EVEN cards (Center to Left) */
.lovable-journey-card:nth-child(even):not(:first-child)::before {
    content: '';
    position: absolute;
    top: -34px; /* Perfectly aligns with bottom: -30px of the above card */
    bottom: 50%;
    left: 53px;
    right: calc(50% - 2px);
    border-left: 4px solid #3B6DF0;
    border-top: 4px solid #3B6DF0;
    border-top-left-radius: 30px; /* Smooth curve */
    z-index: -1;
}

/* 3. L-Shape DOWN + ACROSS from EVEN cards (Left to Center) */
.lovable-journey-card:nth-child(even):not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    bottom: -30px;
    left: 53px;
    right: calc(50% - 2px);
    border-left: 4px solid #3B6DF0;
    border-bottom: 4px solid #3B6DF0;
    border-bottom-left-radius: 30px; /* Smooth curve */
    z-index: -1;
}
/* 4. Curve UP to ODD cards (Center to Right) */
.lovable-journey-card:nth-child(odd):not(:first-child)::before {
    content: '';
    position: absolute;
    top: -34px;
    bottom: 50%;
    right: 53px;
    left: calc(50% - 2px);
    border-right: 4px solid #3B6DF0;
    border-top: 4px solid #3B6DF0;
    border-top-right-radius: 30px; /* Smooth curve */
    z-index: -1;
}

/* --- CONTENT STYLING --- */

.lovable-journey-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 45px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
    flex: 1; /* Takes up remaining space */
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Subtle accent line on hover */
.lovable-journey-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f47c22 0%, #E0559B 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lovable-journey-card:nth-child(even) .lovable-journey-content::before {
    left: auto;
    right: 0;
}
.lovable-journey-content:hover::before {
    opacity: 1;
}

.lovable-journey-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.12), 0 8px 20px -5px rgba(15, 23, 42, 0.05);
    border-color: rgba(244, 124, 34, 0.3);
}

.lovable-journey-num {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #1e1b4b 0%, #3B6DF0 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    box-shadow: 0 12px 30px -5px rgba(59, 109, 240, 0.4), inset 0 -4px 12px rgba(0,0,0,0.2);
    border: 6px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lovable-journey-card:hover .lovable-journey-num {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px -5px rgba(59, 109, 240, 0.5), inset 0 -4px 12px rgba(0,0,0,0.2);
}

.lovable-journey-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.lovable-journey-desc {
    font-size: 16px;
    color: #475569;
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 768px) {
    /* Hide Zig-Zag lines on mobile */
    .lovable-journey-card::after,
    .lovable-journey-card::before {
        display: none !important;
    }
    
    /* Show central vertical line for mobile stacked view */
    .lovable-journey-container::before {
        display: block;
    }
    
    .lovable-journey-card {
        flex-direction: column !important; /* Stack vertically */
        gap: 20px;
        text-align: center;
    }
    .lovable-journey-content {
        padding: 24px;
        text-align: center;
    }
    .lovable-journey-num {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
}

/*--- Testimonial Slider Arrows ---*/
.testimonial-slider {
    position: relative;
}
.testimonial-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.testimonial-slider .owl-nav button.owl-prev,
.testimonial-slider .owl-nav button.owl-next {
    pointer-events: auto;
    width: 45px;
    height: 45px;
    background: #ffffff !important;
    color: var(--primary-orange) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 18px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    margin: 0 -22px; /* Pull them outside slightly */
}

.testimonial-slider .owl-nav button.owl-prev:hover,
.testimonial-slider .owl-nav button.owl-next:hover {
    background: var(--primary-orange) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(244, 124, 34, 0.3);
}

@media (max-width: 768px) {
    .testimonial-slider .owl-nav button.owl-prev,
    .testimonial-slider .owl-nav button.owl-next {
        margin: 0; /* Keep them inside on mobile */
    }
}

/*--- Lovable NEP 2020 Styles ---*/
.lovable-nep-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.lovable-nep-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
}

.lovable-nep-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 0;
}

.lovable-nep-table th {
    background-color: #1e1b4b;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 24px;
    border: none;
}

.lovable-nep-table td {
    padding: 16px 24px;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.lovable-nep-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.lovable-nep-table tbody tr:last-child td {
    border-bottom: none;
}

.nep-goal-title {
    font-weight: 600;
    color: #0f172a !important;
}

@media (max-width: 768px) {
    .lovable-nep-table {
        min-width: 700px; /* Ensure it scrolls nicely instead of squishing */
    }
}

/* --- PREMIUM EXAM ROUND CARDS --- */
.round-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}
.round-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.round-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, #3B6DF0, #00C6FF);
    z-index: 2;
}
.round-card.round-card-premium::before {
    background: linear-gradient(90deg, #F59E0B, #FCD34D);
}

.round-card-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.round-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #3B6DF0;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.round-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.round-info-group {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 10px;
}
.round-info-item {
    flex: 1;
    min-width: 150px;
}
.info-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}
.info-value {
    font-size: 16px;
    color: #334155;
    line-height: 1.5;
    margin: 0;
}

/* Enhancing Exam Grade Cards */
.exam-grade-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.exam-grade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.exam-grade-card-header {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.exam-grade-stats strong {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.exam-grade-card-header>strong {
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-size: 11px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(11, 68, 117, 0.1);
}

/* Premium Exam Section List */
.exam-section-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.exam-section-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.exam-section-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transform: translateY(-2px);
}
.exam-section-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3B6DF0, #00C6FF);
    color: white;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(59, 109, 240, 0.2);
}
.exam-section-content {
    flex: 1;
}
.exam-section-title-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}
@media (min-width: 768px) {
    .exam-section-title-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}
.exam-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}
.exam-section-meta {
    display: inline-flex;
    background: #e2e8f0;
    color: #475569;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.exam-section-focus {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}
/*--- NEP 2020 Interactive Tabs Styles ---*/
.nep-interactive-container {
    max-width: 1000px;
    margin: 0 auto;
}

.nep-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nep-tab {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: #001F5E;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.nep-tab:hover {
    border-color: #ED7208;
}

.nep-tab.active {
    background-color: #ED7208;
    color: #fff;
    border-color: #ED7208;
    box-shadow: 0 4px 12px rgba(237, 114, 8, 0.2);
}

.nep-tab i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nep-content-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 31, 94, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
    height: fit-content;
    position: relative;
    border: 1px solid rgba(0, 31, 94, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nep-pane {
    display: none;
    animation: fadeInNep 0.4s ease forwards;
}

.nep-pane.active {
    display: block;
}

@keyframes fadeInNep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nep-content-tag {
    display: inline-block;
    background-color: rgba(237, 114, 8, 0.1);
    color: #ED7208;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nep-content-title {
    color: #001F5E;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.nep-content-desc {
    color: #6B6B6B;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.nep-outcome-box {
    background: linear-gradient(145deg, #fffaf5 0%, #ffffff 100%);
    border: 1px solid rgba(237, 114, 8, 0.2);
    border-left: 4px solid #ED7208;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(237, 114, 8, 0.05);
    position: relative;
    overflow: hidden;
}

.nep-outcome-box::before {
    content: '\f19d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -10px;
    bottom: -15px;
    font-size: 80px;
    color: rgba(237, 114, 8, 0.05);
    transform: rotate(-15deg);
}

.nep-outcome-box .outcome-label {
    color: #ED7208;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.nep-outcome-box .outcome-text {
    color: #6B6B6B;
    font-size: 17px;
    margin: 0;
    font-style: italic;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Shift timeline date badge to the right */
.lovable-journey-content .badge {
    position: absolute;
    top: 35px;
    right: 45px;
}
@media (max-width: 768px) {
    .lovable-journey-content .badge {
        position: static;
        margin: 0 auto 10px auto;
    }
}
