@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";.btn-base {
    letter-spacing: .5px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
    border: 2px solid #0000;
    border-radius: 6px;
    outline: none;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    display: inline-flex
}

.btn-primary {
    color: #fff;
    background-color: #0052b4;
    box-shadow: 0 4px 12px #0052b433
}

.btn-primary:hover {
    background-color: #004195;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px #0052b44d
}

.btn-primary:active {
    transform: translateY(1px)
}

.btn-secondary {
    color: #0a192f;
    background-color: #b4d924;
    font-weight: 600;
    box-shadow: 0 4px 12px #b4d92426
}

.btn-secondary:hover {
    background-color: #a3c41f;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px #b4d92440
}

.btn-secondary:active {
    transform: translateY(1px)
}

.btn-outline {
    color: #fff;
    -webkit-backdrop-filter: blur(8px);
    background-color: #0000;
    border-color: #ffffff4d
}

.btn-outline:hover {
    background-color: #ffffff1a;
    border-color: #fff9
}

.btn-outline:active {
    transform: translateY(1px)
}

.btn-base:focus-visible {
    outline-offset: 2px;
    outline: 2px solid #0052b4
}

@media (width<=768px) {
    .btn-base {
        text-align: center;
        width: 100%;
        padding: 10px 20px;
        font-size: 13px
    }
}

.navbar-container {
    z-index: 1000;
    -webkit-backdrop-filter: blur(12px);
    border-b: 1px solid #0000000f;
    background-color: #ffffffd9;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 20px #00000005
}

.navbar-container.menu-open {
    background-color: #fff
}

.navbar-wrapper {
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    height: 80px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex
}

.navbar-logo-box {
    align-items: center;
    display: flex
}

.navbar-logo {
    object-fit: contain;
    height: 48px
}

.navbar-links {
    align-items: center;
    gap: 32px;
    display: flex
}

.navbar-link-item {
    color: #4a5568;
    letter-spacing: .3px;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s
}

.navbar-link-item:hover {
    color: #0052b4
}

.navbar-actions {
    align-items: center;
    gap: 16px;
    display: flex
}

.navbar-mobile-toggle {
    cursor: pointer;
    background: 0 0;
    border: none;
    outline: none;
    justify-content: center;
    align-items: center;
    padding: 4px;
    display: none
}
.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
    padding: 8px 0!important;
}

.navbar-cta-btn {
    letter-spacing: .5px!important;
    border-radius: 4px!important;
    padding: 10px 22px!important;
    font-size: 13px!important;
    font-weight: 600!important
}

@media (width<=768px) {
    .navbar-wrapper {
        height: 70px;
        padding: 0 16px
    }

    .navbar-logo {
        height: 38px
    }

    .navbar-mobile-toggle {
        display: flex
    }

    .navbar-links {
        border-b: 1px solid #00000014;
        opacity: 0;
        pointer-events: none;
        background-color: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 0;
        transition: all .3s cubic-bezier(.4,0,.2,1);
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        transform: translateY(-10px);
        box-shadow: 0 10px 25px -5px #0000000d
    }

    .navbar-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0)
    }

    .navbar-link-item {
        box-sizing: border-box;
        border-bottom: 1px solid #00000005;
        width: 100%;
        padding: 14px 24px;
        font-size: 15px
    }

    .navbar-link-item:last-child {
        border-bottom: none
    }

    .navbar-cta-btn {
        width: auto!important;
        padding: 8px 16px!important;
        font-size: 12px!important
    }
}

.form-card {
    color: #1e293b;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ffffff1a;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    padding: 32px;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 25px 50px -12px #0006
}

.success-card {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 440px;
    animation: .4s ease-out forwards cardFadeIn;
    display: flex
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.form-title {
    color: #0052b4;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3
}

.text-center {
    text-align: center
}

.form-subtitle {
    color: #64748b;
    margin-top: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5
}

.form-element-stack {
    flex-direction: column;
    gap: 16px;
    display: flex
}

.form-label {
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #64748b;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 600;
    display: block
}

.form-input {
    color: #0f172a;
    box-sizing: border-box;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    transition: all .2s
}

.form-input:disabled {
    color: #94a3b8;
    cursor: not-allowed;
    background-color: #e2e8f0
}

.form-input::placeholder {
    color: #94a3b8
}

.form-input:focus {
    background-color: #fff;
    border-color: #0052b4;
    box-shadow: 0 0 0 3px #0052b41a
}

.form-grid-split {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
    display: grid
}

.form-submit-btn {
    margin-top: 8px;
    border-radius: 6px!important;
    width: 100%!important;
    padding: 14px!important;
    font-size: 15px!important;
    font-weight: 600!important
}

.form-submit-btn:disabled {
    opacity: .7;
    cursor: not-allowed
}

.form-error-text {
    color: #ef4444;
    margin: 0;
    font-size: 13px;
    font-weight: 500
}

.form-legal-notice {
    text-align: center;
    color: #94a3b8;
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.4
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 24px
}

.success-checkmark {
    stroke-width: 3px;
    stroke: #0052b4;
    stroke-miterlimit: 10;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: .4s ease-in-out .4s forwards fillCircle,.3s ease-in-out .9s forwards scaleUp;
    display: block;
    box-shadow: inset 0 0 #0052b4
}

.success-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166px;
    stroke-width: 3px;
    stroke-miterlimit: 10;
    stroke: #0052b4;
    fill: none;
    animation: .6s cubic-bezier(.65,0,.45,1) forwards strokeCircle
}

.success-checkmark-check {
    transform-origin: 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48px;
    stroke-width: 3px;
    stroke-linecap: round;
    animation: .3s cubic-bezier(.65,0,.45,1) .8s forwards strokeCheck
}

@keyframes strokeCircle {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes strokeCheck {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes scaleUp {
    0%,to {
        transform: none
    }

    50% {
        transform: scale(1.1)
    }
}

@keyframes fillCircle {
    to {
        box-shadow: inset 0 0 0 80px #0052b40d
    }
}

@media (width<=1024px) {
    .form-card {
        max-width: 520px;
        margin: 0 auto
    }
}

@media (width<=640px) {
    .form-card {
        max-width: 100%;
        padding: 24px
    }

    .form-grid-split {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .form-title {
        font-size: 21px
    }

    .success-card {
        min-height: 380px;
        padding: 32px 16px
    }
}

.hero-section {
    width: 100%;
    height: 60vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden
}

.hero-bg-overlay {
    z-index: 0;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    inset: 0
}

.hero-container {
    z-index: 2;
    box-sizing: border-box;
    grid-template-columns: 7fr 5fr;
    align-items: center;
    gap: 64px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    /*padding: 0 40px;*/
    display: grid;
    position: relative
}

.hero-content-left {
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.hero-badge-tag {
    -webkit-backdrop-filter: blur(12px);
    background: #ffffff14;
    border: 1px solid #ffffff26;
    border-radius: 999px;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 18px;
    display: inline-flex
}

.hero-pulse-dot {
    background: #b4d924;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: relative
}

.hero-pulse-dot:after {
    content: "";
    border-radius: inherit;
    background: inherit;
    animation: 2s infinite heroPulse;
    position: absolute;
    inset: 0
}

@keyframes heroPulse {
    0%,to {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.5)
    }
}

.hero-tag-text {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffffe6;
    font-size: 11px;
    font-weight: 600
}

.hero-headline {
    letter-spacing: -1.5px;
    color: #fff;
    margin: 0 0 24px;
    font-family: Inter,sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1
}

.hero-highlight-lime {
    color: #b4d924
}

.hero-description {
    color: #ffffffd9;
    max-width: 580px;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.7
}

.hero-cta-group {
    flex-wrap: wrap;
    gap: 16px;
    display: flex
}

.hero-form-right {
    justify-content: flex-end;
    width: 100%;
    display: flex
}
#mobile{
    display: none;
}
@media (width<=1024px) {
    .hero-section {
        height: 100%
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 32px
    }

    .hero-content-left {
        text-align: center;
        align-items: center
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto
    }

    .hero-cta-group,.hero-form-right {
        justify-content: center
    }

    .hero-headline {
        font-size: 48px
    }
}

@media (width<=640px) {
    .hero-section {
        padding-top: 90px;
        padding-bottom: 50px
    }

    .hero-container {
        gap: 32px;
        padding: 0 20px
    }

    .hero-badge-tag {
        margin-bottom: 18px
    }

    .hero-headline {
        letter-spacing: -.8px;
        font-size: 34px;
        line-height: 1.15
    }

    .hero-description {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.6
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%
    }

    .hero-cta-group>*,.hero-form-right {
        width: 100%
    }

    .hero-form-right>* {
        width: 100%;
        max-width: 100%
    }

    #desktop {
        display: none;
    }
    #mobile{
    display: block;
}

}

@media (width<=480px) {
    .hero-container {
        padding: 0 16px
    }

    .hero-headline {
        font-size: 30px
    }

    .hero-description {
        font-size: 14px
    }
}

.about-accreditation-bar {
    box-sizing: border-box;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
    /*margin-top: 80px;*/
    padding: 22px 24px
}

.accreditation-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    display: flex
}

.accreditation-item {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #64748b;
    align-items: center;
    padding: 0 24px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    position: relative
}

.accreditation-item:not(:last-child):after {
    content: "";
    background-color: #cbd5e1;
    width: 1px;
    height: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.about-section {
    color: #1e293b;
    box-sizing: border-box;
    background-color: #fff;
    width: 100%;
    padding: 50px 24px;
    overflow: hidden
}

.about-container {
    box-sizing: border-box;
    flex-direction: column;
    gap: 56px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex
}

.about-text-block {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    max-width: 780px;
    display: flex
}

.about-subtitle-tag {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: inline-block
}

.about-headline {
    letter-spacing: -.5px;
    color: #0052b4;
    margin: 0 0 24px;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2
}

.about-description {
    color: #475569;
    margin: 0;
    font-family: Inter,system-ui,sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65
}

.about-cards-grid {
    box-sizing: border-box;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
    width: 100%;
    display: grid
}

.about-feature-card {
    text-align: left;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    display: flex;
    box-shadow: 0 4px 20px #00000003
}

.about-feature-card:hover {
    border-color: #0052b426;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px #0052b40d
}

.card-icon-box {
    color: #0052b4;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: flex
}

.card-title {
    color: #0052b4;
    margin: 0 0 12px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 18px;
    font-weight: 700
}

.card-paragraph {
    color: #64748b;
    margin: 0;
    font-family: Inter,system-ui,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55
}

@media (width<=1024px) {
    .about-accreditation-bar {
        margin-top: 40px
    }

    .about-cards-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 20px
    }
}

@media (width<=768px) {
    .about-accreditation-bar {
        margin-top: 0px;
        padding: 12px 8px
    }

    .accreditation-wrapper {
        justify-content: center;
        gap: 12px 0
    }

    .accreditation-item {
        letter-spacing: 1px;
        text-align: center;
        padding: 0 14px;
        font-size: 10px
    }

    .accreditation-item:after {
        display: none!important
    }

    .about-section {
        padding: 30px 16px
    }

    .about-container {
        gap: 40px;
        padding: 0
    }

    .about-headline {
        font-size: 32px
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .about-feature-card {
        padding: 24px
    }
}

.programme-section {
    color: #fff;
    box-sizing: border-box;
    background-color: #0a192f;
    width: 100%;
    padding: 50px 24px;
    overflow: hidden
}

.programme-container {
    box-sizing: border-box;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex
}

.programme-text-block {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    max-width: 680px;
    margin-bottom: 56px;
    display: flex
}

.programme-subtitle-tag {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b4d924;
    margin-bottom: 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 700
}

.programme-headline {
    letter-spacing: -.5px;
    color: #fff;
    margin: 0 0 28px;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15
}

.programme-description {
    color: #ffffffb3;
    font-family: Inter,system-ui,sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65
}

.programme-description p {
    margin: 0 0 12px
}

.programme-description p:last-child {
    margin: 0
}

.programme-cards-grid {
    box-sizing: border-box;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 24px;
    width: 100%;
    margin-bottom: 56px;
    display: grid
}

.programme-feature-card {
    text-align: left;
    box-sizing: border-box;
    background-color: #ffffff05;
    border: 1px solid #ffffff14;
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    display: flex
}

.programme-feature-card:hover {
    background-color: #ffffff0a;
    border-color: #b4d9244d;
    transform: translateY(-2px)
}

.prog-card-icon {
    color: #b4d924;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    display: flex
}

.prog-card-title {
    color: #fff;
    margin: 0 0 12px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 18px;
    font-weight: 700
}

.prog-card-paragraph {
    color: #fff9;
    margin: 0;
    font-family: Inter,system-ui,sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.6
}

.programme-criteria-panel {
    box-sizing: border-box;
    background-color: #ffffff03;
    border: 1px solid #ffffff0f;
    border-radius: 12px;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 40px;
    width: 100%;
    margin-bottom: 56px;
    padding: 40px;
    display: grid
}

.criteria-column {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    display: flex
}

.criteria-label {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b4d924;
    margin-bottom: 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 600
}

.criteria-text {
    color: #ffffffb3;
    margin: 0;
    font-family: Inter,system-ui,sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.6
}

.programme-action-row {
    align-items: center;
    width: 100%;
    margin-top: 12px;
    display: flex
}

.programme-download-btn {
    color: #0a192f!important;
    letter-spacing: .3px!important;
    background-color: #b4d924!important;
    border-radius: 12px!important;
    width: auto!important;
    padding: 16px 40px!important;
    font-size: 15px!important;
    font-weight: 600!important
}

.programme-download-btn:hover {
    background-color: #a3c41f!important;
    transform: translateY(-2px)!important
}

@media (width<=1200px) {
    .programme-cards-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 20px
    }
}

@media (width<=900px) {
    .programme-criteria-panel {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 10px;
        margin-bottom: 0;
    }
.curriculum-text-block {
    margin-bottom: 0!important;

}
}

@media (width<=768px) {
    .programme-section {
        padding: 30px 16px
    }

    .programme-container {
        padding: 0
    }

    .programme-headline {
        font-size: 32px
    }

    .programme-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .programme-feature-card {
        padding: 24px
    }

    .programme-download-btn {
        text-align: center;
        width: 100%!important
    }
}

.curriculum-section {
    color: #1e293b;
    box-sizing: border-box;
    background-color: #faf9f6;
    width: 100%;
    padding: 50px 24px;
    overflow: hidden
}

.curriculum-container {
    box-sizing: border-box;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex
}

.curriculum-text-block {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    max-width: 720px;
    margin-bottom: 56px;
    display: flex
}

.curriculum-subtitle-tag {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 700
}

.curriculum-headline {
    letter-spacing: -.5px;
    color: #0052b4;
    margin: 0 0 24px;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15
}

.curriculum-description {
    color: #475569;
    font-family: Inter,system-ui,sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65
}

.curriculum-cards-grid {
    box-sizing: border-box;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 24px;
    width: 100%;
    display: grid
}

.curriculum-term-card {
    text-align: left;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    transition: all .3s;
    display: flex;
    box-shadow: 0 4px 20px #00000003
}

.curriculum-term-card:hover {
    border-color: #0052b426;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px #0052b40a
}

.term-card-title {
    color: #0052b4;
    margin: 0 0 24px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 24px;
    font-weight: 700
}

.term-subjects-list {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex
}

.subject-item {
    color: #475569;
    padding-left: 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    position: relative
}

.subject-item:before {
    content: "";
    background-color: #b4d924;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 8px;
    left: 0
}

@media (width<=1100px) {
    .curriculum-cards-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 20px
    }
}

@media (width<=768px) {
    .curriculum-section {
        padding: 30px 16px
    }

    .curriculum-container {
        padding: 0
    }

    .curriculum-headline {
        font-size: 32px
    }

    .curriculum-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .curriculum-term-card {
        padding: 28px 20px
    }
}

.research-section {
    color: #1e293b;
    box-sizing: border-box;
    background-color: #faf9f6;
    width: 100%;
    padding: 0 24px 50px;
    overflow: hidden
}

.research-container {
    box-sizing: border-box;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex
}

.research-text-block {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    max-width: 680px;
    margin-bottom: 56px;
    display: flex
}

.research-headline {
    letter-spacing: -.5px;
    color: #0052b4;
    margin: 0;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15
}

.research-cards-grid {
    box-sizing: border-box;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
    width: 100%;
    display: grid
}

.research-feature-card {
    text-align: left;
    box-sizing: border-box;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 32px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    display: flex
}

.research-feature-card:hover {
    background-color: #e2e8f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px #0052b408
}

.res-card-icon-box {
    color: #0052b4;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    display: flex
}

.res-card-title {
    color: #0052b4;
    margin: 0 0 12px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 20px;
    font-weight: 700
}

.res-card-paragraph {
    color: #475569;
    margin: 0;
    font-family: Inter,system-ui,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6
}

@media (width<=1024px) {
    .research-cards-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 20px
    }
}

@media (width<=768px) {
    .research-section {
        padding-bottom: 10px
    }

    .research-headline {
        font-size: 32px;
        line-height: 1.2
    }

    .research-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .research-feature-card {
        padding: 28px 20px
    }
    .research-container{
        padding: 0;
    }
}

.accreditations-section {
    color: #1e293b;
    box-sizing: border-box;
    background-color: #faf9f6;
    width: 100%;
    padding: 80px 24px 50px;
    overflow: hidden
}

.accreditations-container {
    box-sizing: border-box;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex
}

.accreditations-text-block {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    max-width: 720px;
    margin-bottom: 56px;
    display: flex
}

.accreditations-subtitle-tag {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 700
}

.accreditations-headline {
    letter-spacing: -.5px;
    color: #0052b4;
    margin: 0 0 24px;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15
}

.accreditations-description {
    color: #475569;
    font-family: Inter,system-ui,sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65
}

.accreditations-cards-grid {
    box-sizing: border-box;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 20px;
    width: 100%;
    display: grid
}

.accreditation-badge-card {
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
    transition: transform .3s,border-color .3s;
    display: flex;
    box-shadow: 0 4px 20px #00000003
}

.accreditation-badge-card:hover {
    border-color: #0052b426;
    transform: translateY(-4px)
}

.badge-icon-box {
    color: #b4d924;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: flex
}

.badge-main-title {
    color: #0052b4;
    letter-spacing: .5px;
    margin: 0 0 6px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 22px;
    font-weight: 800
}

.badge-sub-context {
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #64748b;
    margin: 0;
    font-family: Inter,system-ui,sans-serif;
    font-size: 10px;
    font-weight: 600
}

@media (width<=1100px) {
    .accreditations-cards-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 20px
    }
}

@media (width<=768px) {
    .accreditations-section {
        padding: 10px 16px
    }

    .accreditations-container {
        padding: 0
    }

    .accreditations-headline {
        font-size: 32px
    }

    .accreditations-cards-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 16px
    }
}

@media (width<=480px) {
    .accreditations-cards-grid {
        grid-template-columns: 1fr
    }
}

.heritage-section {
    color: #1e293b;
    box-sizing: border-box;
    background-color: #faf9f6;
    width: 100%;
    padding: 80px 24px 50px;
    overflow: hidden
}

.heritage-container {
    box-sizing: border-box;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex
}

.heritage-text-block {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    max-width: 720px;
    margin-bottom: 56px;
    display: flex
}

.heritage-subtitle-tag {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 700
}

.heritage-headline {
    letter-spacing: -.5px;
    color: #0052b4;
    margin: 0 0 24px;
    font-family: Inter,system-ui,-apple-system,sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15
}

.heritage-description {
    color: #475569;
    font-family: Inter,system-ui,sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65
}

.heritage-timeline-board {
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    grid-template-columns: repeat(4,minmax(0,1fr));
    width: 100%;
    display: grid;
    box-shadow: 0 4px 20px #00000003
}

.timeline-event-node {
    text-align: left;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
    display: flex;
    position: relative
}

.timeline-event-node:not(:last-child):after {
    content: "";
    background-color: #e2e8f0;
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0
}

.timeline-year-digits {
    color: #b4d924;
    letter-spacing: -.5px;
    margin: 0 0 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 32px;
    font-weight: 800
}

.timeline-context-text {
    color: #475569;
    margin: 0;
    font-family: Inter,system-ui,sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.6
}

@media (width<=1024px) {
    .heritage-timeline-board {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .timeline-event-node:after {
        display: none!important
    }

    .timeline-event-node:nth-child(odd) {
        border-right: 1px solid #e2e8f0
    }

    .timeline-event-node:first-child,.timeline-event-node:nth-child(2) {
        border-bottom: 1px solid #e2e8f0
    }
}

@media (width<=768px) {
    .heritage-section {
        padding: 0px 16px
    }

    .heritage-container {
        padding: 0
    }

    .heritage-headline {
        font-size: 32px;
        line-height: 1.2
    }

    .heritage-timeline-board {
        border-radius: 12px;
        grid-template-columns: 1fr
    }

    .timeline-event-node {
        padding: 32px 24px;
        border-right: none!important
    }

    .timeline-event-node:not(:last-child) {
        border-bottom: 1px solid #e2e8f0
    }

    .timeline-year-digits {
        margin-bottom: 12px;
        font-size: 28px
    }
}

.campus-section {
    color: #1e293b;
    box-sizing: border-box;
    background-color: #faf9f6;
    width: 100%;
    padding: 80px 24px 50px;
    overflow-x: hidden
}

.campus-container {
    box-sizing: border-box;
    grid-template-columns: repeat(12,minmax(0,1fr));
    align-items: center;
    gap: 64px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid
}

.campus-image-wrapper {
    border-radius: 16px;
    grid-column: span 6;
    width: 100%;
    height: 480px;
    overflow: hidden;
    box-shadow: 0 10px 30px #0000000a
}

.campus-display-img {
    object-fit: cover;
    background-color: #e2e8f0;
    width: 100%;
    height: 100%;
    display: block
}

.campus-content-right {
    text-align: left;
    flex-direction: column;
    grid-column: span 6;
    align-items: flex-start;
    min-width: 0;
    display: flex
}

.campus-subtitle-tag {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 700
}

.campus-headline {
    letter-spacing: -.5px;
    color: #0052b4;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
    margin: 0 0 24px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15
}

.campus-description {
    color: #475569;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
    margin-bottom: 32px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 16px;
    line-height: 1.65
}

.campus-bullets-stack {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
    display: flex
}

.campus-bullet-item {
    color: #1e293b;
    padding-left: 20px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    position: relative
}

.campus-bullet-item:before {
    content: "";
    background-color: #b4d924;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 8px;
    left: 0
}

.campus-advisor-btn {
    border-radius: 8px!important;
    width: auto!important;
    padding: 14px 32px!important;
    font-size: 14px!important;
    font-weight: 600!important
}

@media (width<=1024px) {
    .campus-container {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .campus-image-wrapper {
        grid-column: 1/-1;
        height: 380px
    }

    .campus-content-right {
        text-align: center;
        grid-column: 1/-1;
        align-items: center;
        width: 100%
    }

    .campus-description,.campus-bullets-stack {
        max-width: 700px
    }

    .campus-bullet-item {
        text-align: left
    }

    .campus-advisor-btn {
        max-width: 500px;
        width: 100%!important
    }
}

@media (width<=768px) {
    .campus-section {
        padding: 10px 16px
    }

    .campus-container {
        gap: 32px;
        padding: 0
    }

    .campus-image-wrapper {
        border-radius: 12px;
        height: 240px
    }

    .campus-subtitle-tag {
        margin-bottom: 12px
    }

    .campus-headline {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.2
    }

    .campus-description {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7
    }

    .campus-bullets-stack {
        width: 100%
    }

    .campus-bullet-item {
        font-size: 15px
    }

    .campus-advisor-btn {
        max-width: none;
        width: 100%!important
    }
}

@media (width<=480px) {
    .campus-section {
        padding: 48px 12px
    }

    .campus-headline {
        font-size: 28px
    }

    .campus-description {
        font-size: 14px
    }

    .campus-image-wrapper {
        height: 200px
    }
}

.apply-section {
    color: #fff;
    box-sizing: border-box;
    background-color: #0a192f;
    width: 100%;
    padding: 50px 24px;
    overflow-x: hidden
}

.apply-container {
    box-sizing: border-box;
    grid-template-columns: repeat(12,minmax(0,1fr));
    align-items: center;
    gap: 64px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid
}

.apply-content-left {
    text-align: left;
    flex-direction: column;
    grid-column: span 7;
    align-items: flex-start;
    min-width: 0;
    display: flex
}

.apply-subtitle-tag {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b4d924;
    margin-bottom: 16px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 700
}

.apply-headline {
    letter-spacing: -1px;
    color: #fff;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
    margin: 0 0 24px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1
}

.apply-highlight-lime {
    color: #b4d924
}

.apply-description {
    color: #ffffffb3;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 520px;
    margin-bottom: 40px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65
}

.apply-meta-info {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    display: flex
}

.meta-item {
    color: #fff9;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-family: Inter,system-ui,sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    display: flex
}

.meta-item a {
    color: #fff9;
    text-decoration: none;
    transition: color .2s
}

.meta-item a:hover {
    color: #b4d924
}

.apply-form-right {
    box-sizing: border-box;
    grid-column: span 5;
    justify-content: flex-end;
    width: 100%;
    min-width: 0;
    display: flex
}

.apply-form-right>* {
    width: 100%;
    min-width: 0;
    max-width: 520px
}

@media (width<=1024px) {
    .apply-section {
        padding: 80px 24px
    }

    .apply-container {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .apply-content-left {
        text-align: center;
        grid-column: 1/-1;
        align-items: center
    }

    .apply-form-right {
        grid-column: 1/-1;
        justify-content: center
    }

    .apply-form-right>* {
        width: 100%;
        max-width: 700px
    }

    .apply-headline {
        font-size: 42px
    }

    .apply-description {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto
    }

    .apply-meta-info {
        align-items: center
    }
}

@media (width<=768px) {
    .apply-section {
        padding: 56px 16px
    }

    .apply-container {
        gap: 32px;
        padding: 0
    }

    .apply-headline {
        font-size: 34px;
        line-height: 1.15
    }

    .apply-description {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7
    }

    .apply-meta-info {
        width: 100%
    }

    .meta-item {
        text-align: center;
        justify-content: center
    }

    .apply-form-right {
        width: 100%
    }

    .apply-form-right>* {
        width: 100%;
        max-width: 100%
    }
}

@media (width<=480px) {
    .apply-section {
        padding: 48px 12px
    }

    .apply-headline {
        font-size: 28px
    }

    .apply-description {
        font-size: 14px
    }

    .meta-item {
        font-size: 12px
    }
}

.footer-container {
    box-sizing: border-box;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    width: 100%;
    padding: 24px
}

.footer-wrapper {
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex
}

.footer-left-brand {
    align-items: center;
    gap: 20px;
    display: flex
}

.footer-logo {
    object-fit: contain;
    height: 40px
}

.footer-tagline {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
    font-family: Inter,system-ui,sans-serif;
    font-size: 11px;
    font-weight: 500
}

.footer-right-copyright {
    color: #475569;
    text-align: right;
    font-family: Inter,system-ui,sans-serif;
    font-size: 13px;
    font-weight: 400
}

@media (width<=768px) {
    .footer-wrapper {
        text-align: center;
        flex-direction: column;
        gap: 20px
    }

    .footer-left-brand {
        flex-direction: column;
        gap: 12px
    }

    .footer-right-copyright {
        text-align: center;
        font-size: 12px
    }
}
@media (max-width: 767px) {

    .slider-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .about-cards-grid,
    .programme-cards-grid,
    .curriculum-cards-grid,
    .research-cards-grid,
    .accreditations-cards-grid,.heritage-timeline-board {
        display: flex !important;
        flex-wrap: nowrap !important;
        transition: transform 0.5s ease;
        width: 100%;
        gap: 0;
        margin-bottom: 30px;
    }

    .about-feature-card,
    .programme-feature-card,
    .curriculum-term-card,
    .research-card,
    .accreditation-badge-card,.research-feature-card,.timeline-event-node {
        flex: 0 0 100%;
        min-width: 100%;
        box-sizing: border-box;
    }

div#main h2 {
    font-size: 22px;
}
.research-container {
    padding: 0;

}
.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
    padding: 2px 0 !important;
}
.research-text-block{
    margin-bottom: 20px;
}
.accreditations-text-block,.heritage-text-block {
    margin-bottom: 10px;

}
}

/* Desktop */
.accreditation-wrapper {
    width: 100%;
}

.accreditation-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.accreditation-item {
    padding: 10px 16px;
    border-radius: 30px;
    white-space: nowrap;
}

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

    .accreditation-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .accreditation-track {
        flex-wrap: nowrap;
        width: max-content;
        animation: marquee 20s linear infinite;
    }

    .accreditation-item {
        flex-shrink: 0;
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }
}
@media (max-width: 767px) {

    .slider-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .about-cards-grid,
    .programme-cards-grid,
    .curriculum-cards-grid,
    .research-cards-grid,
    .accreditations-cards-grid,
    .heritage-timeline-board {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
    }

    .about-feature-card,
    .programme-feature-card,
    .curriculum-term-card,
    .research-card,
    .accreditation-badge-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    /* Dots */
    .slider-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
        z-index: 5;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
    }

    .slider-dots .dot.active {
        background: #000;
    }
}
html,body,button,input,select,textarea {
    font-family: Inter,system-ui,-apple-system,sans-serif!important;
    margin:0px;
}