/********** Template CSS **********/
:root {
    --primary: #3399ff;
    --primary-light: #8fd0ff;
    --light: #ffffff;
    --dark: #081a36;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    border-color: var(--primary) !important;
}

.btn.gradient-bg:hover,
.btn.gradient-bg:focus,
.btn.gradient-bg:active {
    background: linear-gradient(135deg, #2d8ae6 0%, #7ec4ff 100%) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

html {
    height: auto !important;
    min-height: 100%;
}

body {
    min-width: 250px !important;
    height: auto !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.site-layout {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 100%;
    min-height: 100vh;
}

.site-layout__main {
    flex: 1 0 auto;
    width: 100%;
}

.fw-medium {
    font-weight: 700 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-lg-square i {
    font-size: 30px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0;
}

/*** Site header ***/
.site-header {
    --site-header-height: 5.25rem;
    --site-header-link-size: 1.3125rem;
    --site-header-link-size-mobile: 1.1875rem;
    top: 0;
    z-index: 1030;
    min-height: var(--site-header-height);
    padding: 0;
    box-shadow: 0 0.25rem 0.5rem rgba(8, 26, 54, 0.08);
}

.site-header__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: var(--site-header-height);
    padding-block: 0.875rem;
}

/*** News page ***/
.page-header#header-news {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(/assets/media/headers/carousel-2.jpg) no-repeat center center;
}

.news-page {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 35%, #ffffff 100%);
}

.news-page__inner {
    max-width: 1140px;
}

.news-page__empty {
    margin: 0;
    padding: 2rem;
    text-align: center;
    font-weight: 600;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(51, 153, 255, 0.12);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.75rem 2rem rgba(8, 26, 54, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2.5rem rgba(8, 26, 54, 0.1);
}

.news-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef4fc;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1 1 auto;
}

.news-card__date {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.news-card__caption {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
}

.news-card__caption p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .news-page {
        padding: 2.5rem 0 3.5rem;
    }

    .news-card__body {
        padding: 1rem 1.125rem 1.25rem;
    }
}

.site-header__brand {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.site-header__logo {
    display: block;
    width: auto;
    height: 2.625rem;
    max-width: 8.75rem;
    object-fit: contain;
}

.site-header__toggler {
    margin: 0;
    padding: 0.375rem 0.5rem;
    border: 1px solid rgba(8, 26, 54, 0.12);
    border-radius: 0.375rem;
}

.site-header__toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 153, 255, 0.25);
}

.site-header__collapse {
    align-items: stretch;
}

.site-header__menu {
    gap: 0.125rem;
    align-items: center;
}

.site-header__menu .nav-link {
    padding: 0.9rem 1.125rem;
    font-size: var(--site-header-link-size);
    font-weight: 500;
    color: var(--dark);
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0.375rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__menu .nav-link:hover,
.site-header__menu .nav-link:focus,
.site-header__menu .nav-link.active {
    color: var(--primary);
}

.site-header__menu .nav-link.active {
    background-color: rgba(51, 153, 255, 0.08);
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-header__signin {
    padding: 0.75rem 1.5rem;
    font-size: 1.1875rem;
    font-weight: 600;
    white-space: nowrap;
}

.site-header__user {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header__user .app-navbar {
    margin: 0;
}

.site-header__user-menu > .menu-item > .menu-link,
.site-header__user-menu > .menu-item .menu-content {
    padding-inline: 1rem !important;
}

.site-header__user-menu .menu-link {
    padding-block: 0.65rem;
    border-radius: 0.375rem;
}

.site-header__user-menu .menu-sub .menu-link {
    padding-inline: 1rem !important;
}

.site-header__user-menu-signout {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    border: none;
    background: transparent;
    font: inherit;
    font-weight: 600;
    color: var(--dark);
    text-align: start;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__user-menu-signout:hover,
.site-header__user-menu-signout:focus {
    color: var(--primary);
    background-color: rgba(51, 153, 255, 0.08);
}

.site-header .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-inline-start: 0.35rem;
}

.site-header .nav-more-dropdown .dropdown-menu {
    min-width: 14rem;
    margin-top: 0.25rem;
    padding: 0.375rem 0;
    border: none;
    border-top: 3px solid var(--primary);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(8, 26, 54, 0.12);
}

.site-header .nav-more-dropdown .dropdown-item {
    padding: 0.75rem 1.375rem;
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--dark);
    text-transform: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header .nav-more-dropdown .dropdown-item:hover,
.site-header .nav-more-dropdown .dropdown-item:focus,
.site-header .nav-more-dropdown .dropdown-item.active {
    background-color: rgba(51, 153, 255, 0.08);
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .site-header__container {
        padding-block: 0.5rem;
    }

    .site-header__logo {
        height: 2.375rem;
        max-width: 7.5rem;
    }

    .site-header__collapse {
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(8, 26, 54, 0.08);
    }

    .site-header__menu {
        width: 100%;
        padding-bottom: 0.5rem;
        align-items: center;
    }

    .site-header__menu .nav-item {
        width: 100%;
        text-align: center;
    }

    .site-header__menu .nav-link {
        padding: 0.875rem 1rem;
        font-size: var(--site-header-link-size-mobile);
        text-align: center;
    }

    .site-header__menu .dropdown-menu {
        text-align: start;
    }

    .site-header__actions {
        width: 100%;
        padding-top: 0.75rem;
        padding-bottom: 0.25rem;
    }

    .site-header__signin {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: var(--site-header-link-size-mobile);
    }
}

@media (min-width: 992px) {
    .site-header__collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .site-header__menu {
        flex: 1 1 auto;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-inline: 0;
    }

    .site-header__menu .nav-link {
        text-align: center;
    }

    .site-header__actions {
        flex-shrink: 0;
        margin-inline-start: 0;
    }
}

@media (min-width: 992px) {
    .site-header .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.35s ease;
    }

    .site-header .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
    }

    .site-header .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .site-header__menu .nav-item {
        text-align: center;
    }

    .site-header__menu .nav-link {
        padding: 0.875rem 1rem;
        font-size: var(--site-header-link-size-mobile);
        text-align: center;
    }

    .site-header__collapse #see-more-btn {
        width: 100%;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    font-size: 22px;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background-size: cover !important;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header#header-colleges {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(/assets/media/headers/colleges.jpg) no-repeat center center;
}

.page-header#header-about {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(/assets/media/headers/carousel-2.jpg) no-repeat center center;
}

/*** About page ***/
.about-page {
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 35%, #ffffff 100%);
}

.about-page__intro {
    padding: 4rem 0 3rem;
}

.about-page__image-wrap {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(8, 26, 54, 0.12);
    aspect-ratio: 4 / 3;
}

.about-page__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(51, 153, 255, 0.12);
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.about-page__welcome {
    margin: 0 0 1.25rem;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
}

.about-page__description {
    margin: 0;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.85;
    color: #3f4254;
    white-space: pre-line;
}

.about-page__levels {
    padding: 2rem 0 4.5rem;
}

.about-page__levels-title {
    margin: 0 auto 2.5rem;
    max-width: 720px;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
}

.about-page__level-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(8, 26, 54, 0.08);
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(8, 26, 54, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page__level-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 153, 255, 0.14);
}

.about-page__level-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.25rem;
    border-radius: 0.85rem;
    background: var(--primary);
    color: #ffffff;
    font-size: 1.35rem;
}

.about-page__level-icon i {
    color: #ffffff;
}

.about-page__level-title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.about-page__level-subtitle {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.about-page__level-text {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.75;
    color: #3f4254;
}

/*** About — team carousel ***/
.about-team {
    padding: 3rem 0 5rem;
    background: #ffffff;
}

.about-team__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
}

.about-team__subtitle {
    max-width: 560px;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5e6278;
}

.about-team__carousel {
    max-width: 72rem;
    margin: 0 auto;
}

.about-team__viewport {
    width: 100%;
    overflow: hidden;
}

.about-team__track {
    display: flex;
    will-change: transform;
}

.about-team__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.about-team__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.75rem;
    border: 1px solid rgba(8, 26, 54, 0.08);
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(8, 26, 54, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-team__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 153, 255, 0.15);
}

.about-team__card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f7ff;
}

.about-team__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.about-team__card:hover .about-team__card-image img {
    transform: scale(1.05);
}

.about-team__card-body {
    flex: 1;
    padding: 1.25rem 1.25rem 1.5rem;
    text-align: center;
}

.about-team__card-name {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.about-team__card-role {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.about-team__carousel .home-improve__controls {
    margin-top: 2rem;
}

@media (max-width: 767px) {
    .about-team__slide {
        padding: 0 0.35rem;
    }

    .about-page__intro {
        padding: 2.5rem 0 2rem;
    }

    .about-page__levels {
        padding: 1.5rem 0 3rem;
    }

    .about-team {
        padding: 2.5rem 0 4rem;
    }
}

/*** Contact page ***/
.contact-page {
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 40%, #ffffff 100%);
    padding-top: 2.5rem;
}

.contact-page__intro {
    padding: 3.5rem 0 2rem;
}

.contact-page__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(51, 153, 255, 0.12);
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.contact-page__heading {
    margin: 0 auto 1rem;
    max-width: 640px;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
}

.contact-page__lead {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75;
    color: #5e6278;
}

.contact-page__programs {
    padding: 2rem 0 2.5rem;
}

.contact-page__programs-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--dark);
}

.contact-page__programs-subtitle {
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.65;
    color: #5e6278;
}

.contact-page__topic-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(8, 26, 54, 0.08);
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(8, 26, 54, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-page__topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 153, 255, 0.14);
    border-color: rgba(51, 153, 255, 0.25);
    color: inherit;
}

.contact-page__topic-card--active {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(51, 153, 255, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.contact-page__topic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background: var(--primary) !important;
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-page__topic-card .contact-page__topic-icon i,
.contact-page__topic-card:hover .contact-page__topic-icon i {
    color: #ffffff !important;
}

.contact-page__topic-title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
}

.contact-page__topic-text {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.65;
    color: #5e6278;
}

.contact-page__main {
    padding: 1rem 0 3rem;
}

.contact-page__form-card {
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(8, 26, 54, 0.08);
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(8, 26, 54, 0.08);
}

.contact-page__form-title {
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.contact-page__form-subtitle {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
    color: #5e6278;
}

.contact-page__field-hint-link {
    color: var(--primary, #06bbcc);
    font-weight: 500;
    text-decoration: none;
}

.contact-page__field-hint-link:hover {
    text-decoration: underline;
}

.contact-page__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-page__label {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark, #081a36);
}

.contact-page__form .contact-page__control,
.contact-page__form .contact-page__control.form-control,
.contact-page__form .contact-page__control.form-select {
    min-height: 3.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--dark, #081a36);
    border: 1px solid rgba(8, 26, 54, 0.12);
    border-radius: 0.5rem;
    background-color: #fff;
}

.contact-page__form .contact-page__control:focus {
    border-color: var(--primary, #06bbcc);
    box-shadow: 0 0 0 0.2rem rgba(6, 187, 204, 0.15);
    color: var(--dark, #081a36);
    font-weight: 500;
}

.contact-page__form select.contact-page__control {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.contact-page__form select.contact-page__control:has(option[value=""]:checked) {
    color: #a1a5b7;
    font-weight: 500;
}

.contact-page__form select.contact-page__control option {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark, #081a36);
}

.contact-page__field-hint {
    font-size: 0.875rem;
    font-weight: 500;
    color: #a1a5b7;
    line-height: 1.5;
}

.contact-page__field .text-danger {
    font-size: 0.875rem;
    font-weight: 500;
}

.contact-page__textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-page__info {
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(8, 26, 54, 0.08);
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(8, 26, 54, 0.08);
}

.contact-page__info-title {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
}

.contact-page__info-lead {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
    color: #5e6278;
}

.contact-page__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-page__info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--primary) !important;
    color: #ffffff;
    font-size: 1.15rem;
}

.contact-page__info-icon i {
    color: #ffffff !important;
}

.contact-page__info-label {
    margin: 0 0 0.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
}

.contact-page__info-value {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--dark);
    text-decoration: none;
}

a.contact-page__info-value:hover {
    color: var(--primary);
}

.contact-page__whatsapp {
    margin-top: 0.5rem;
    color: #ffffff !important;
}

.contact-page__whatsapp i,
.contact-page__whatsapp:hover i,
.contact-page__whatsapp:focus i {
    color: #ffffff !important;
    font-size: 1.4rem;
}

.contact-page__map {
    padding: 0 0 4.5rem;
}

.contact-page__map-title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--dark);
}

.contact-page__map-wrap {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(8, 26, 54, 0.08);
    box-shadow: 0 8px 32px rgba(8, 26, 54, 0.1);
}

.contact-page__map-frame {
    display: block;
    width: 100%;
    min-height: 380px;
    border: 0;
}

@media (max-width: 991px) {
    .contact-page__form-card,
    .contact-page__info {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 767px) {
    .contact-page__intro {
        padding: 2.5rem 0 1.5rem;
    }

    .contact-page {
        padding-top: 2rem;
    }

    .contact-page__programs {
        padding: 1.5rem 0 2rem;
    }

    .contact-page__main {
        padding: 0.5rem 0 2.5rem;
    }

    .contact-page__map {
        padding-bottom: 3rem;
    }

    .contact-page__map-frame {
        min-height: 280px;
    }
}

.page-header#header-improve {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(/assets/media/headers/header1.jpg) no-repeat center center;
}

.page-header#header-team {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(/assets/media/headers/team.jpg) no-repeat center center;
}

.page-header#header-contact {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(/assets/media/headers/contact-us.jpg) no-repeat center center;
}

.page-header#header-explain-subject {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(/assets/media/headers/contact-us.jpg) no-repeat center center;
}

.page-header#header-courses {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(/assets/media/headers/courses.jpg) no-repeat center center;
}

.page-header#header-videos {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(/assets/media/headers/videos.jpg) no-repeat center center;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*** Service ***/
.service-item {
    background: var(--light);
    transition: 0.5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: 0.5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: 0.5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}

/*** Team ***/
.team-item img {
    transition: 0.5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #cccccc;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/*** Site footer ***/
.site-footer {
    position: relative;
    background: #ffffff;
    color: var(--dark);
    border-top: 1px solid rgba(8, 26, 54, 0.08);
}

.site-footer__inner {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
}

.site-footer .container.site-footer__inner {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
}

.site-footer__brand {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
}

.site-footer__logo-link {
    display: inline-flex;
    align-self: flex-start;
}

.site-footer__logo-link img {
    max-width: 150px;
    height: auto;
}

.site-footer__brand-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__tagline {
    margin: 0;
    max-width: 34rem;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.75;
    color: #5e6278;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: var(--dark);
    font-size: 1.6rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus {
    color: var(--primary);
    transform: translateY(-2px);
}

.site-footer__social-link i,
.site-footer__social-link:hover i,
.site-footer__social-link:focus i {
    font-size: 1.55rem !important;
    line-height: 1;
    color: inherit !important;
}

.site-footer__column {
    grid-column: span 2;
}

.site-footer__heading {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
}

.site-footer__list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-footer__list--plain {
    gap: 0.75rem;
}

.site-footer__link,
.site-footer__text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.55;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus,
.site-footer__text-link:hover,
.site-footer__text-link:focus {
    color: var(--primary);
}

.site-footer__link i {
    flex-shrink: 0;
    width: 1.35rem;
    font-size: 1.2rem;
    color: var(--primary);
    text-align: center;
}

.site-footer__link--static {
    cursor: default;
}

.site-footer__link--static:hover,
.site-footer__link--static:focus {
    color: var(--dark);
}

.site-footer__meta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.65;
    color: #5e6278;
}

.site-footer__meta p {
    margin: 0;
}

.site-footer__meta-highlight {
    font-weight: 800;
    color: var(--dark);
}

.site-footer__partner {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 0.35rem;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.site-footer__partner:hover,
.site-footer__partner:focus {
    opacity: 0.75;
}

.site-footer__partner img {
    max-width: 130px;
    height: auto;
}

.site-footer__divider {
    margin: 0.5rem 0 2rem;
    border: 0;
    border-top: 1px solid rgba(8, 26, 54, 0.1);
}

.site-footer__copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    color: #5e6278;
}

.site-footer__copyright i {
    font-size: 0.875rem;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .site-footer .container.site-footer__inner {
        padding-left: var(--bs-gutter-x, 0.75rem);
        padding-right: var(--bs-gutter-x, 0.75rem);
    }

    .site-footer__inner {
        padding-top: 3.5rem;
        padding-bottom: 2.75rem;
    }

    .site-footer__brand {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }

    .site-footer__column {
        grid-column: span 1;
    }
}

@media (min-width: 992px) {
    .site-footer__inner {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .site-footer__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 2.5rem 2rem;
    }

    .site-footer__brand {
        grid-column: span 4;
    }

    .site-footer__column:nth-of-type(2),
    .site-footer__column:nth-of-type(3) {
        grid-column: span 2;
    }

    .site-footer__column:nth-of-type(4),
    .site-footer__column:nth-of-type(5) {
        grid-column: span 2;
    }
}

/*** Colleges ***/
#header-colleges {
    background-color: #081a36;
}

/*** app ***/
#join-now-btn {
    background-color: #081a36;
    color: #fff;
    border-radius: 0;
}

#see-more-btn {
    color: #fff !important;
    border-radius: 0 !important;
}

#watch-now-btn {
    color: #fff !important;
    border-radius: 0 !important;
    background-color: #081a36;
}

#watch-now-btn:hover {
    background-color: #3399ff;
}

#join-now-btn:hover {
    background-color: #3399ff;
}

#join-now-btn-nav {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #081a36;
}


/** Testimonial  **/

.icon-area {
    text-align: center;
}

.icon-area i {
    color: #081a36;
    font-size: 80px;
    margin-bottom: 20px;
}

.content p {
    color: black;
    width: 60%;
    margin: auto;
}

.person {
    width: 100px;
    height: 100px;
    display: block;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #081a36;
    margin-top: 50px;
}

.person img {
    width: 100%;
}

.content h5 {
    font-weight: 900;
    margin-top: 15px;
}

/*.testimonial-area {*/
/*    background: url("/assets/media/testimonials/1.jpg");*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*}*/

.bottom-minus-80px {
    bottom: -80px;
}

.carousel-indicators [data-bs-target] {
    width: 60px;
    height: 10px;
    background-color: #3399ff;
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-header p {
        width: 85%;
    }

    .content p {
        width: 95%;
    }
}

@media (max-width: 767px) {
    .testimonial-area {
        padding: 30px 0;
    }

    .section-header p {
        width: 95%;
    }

    .content p {
        width: 100%;
    }

    .icon-area i {
        font-size: 50px;
    }
}

/* Favorites Button */
/* .btns {
    position: absolute;
    top: 216px;
    left: 328px;
    display: flex;
} */

.btn-heart {
    background: transparent;
    border: none;
    /* margin: 87px; */
    font-size: 88px;
    outline: none;
    color: grey;
    margin-top: -5rem;
}

.btn-heart i:hover {
    cursor: pointer;
}

.float, .globe {
    position: fixed;
    width: 40px;
    height: 40px;
    right: 40px;
    color: #fff;
    border-radius: 50rem;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.float {
    bottom: 30px;
    background-color: #25d366;
}

.globe {
    bottom: 75px;
    background-color: #081a36;
}

.my-float {
    font-size: 1.5rem;
    color: #f5f8fa;
}

.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

.inspiration {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
}

.brand-color {
    color: #7e2221 !important;
}

.reports .tabs-title {
    font-size: 25px;
    font-weight: bold;
    color: #a1a5b7 !important;
}

.reports .fa-filter {
    font-weight: bold;
    color: #a1a5b7 !important;
}

.table-link {
    cursor: pointer;
    color: #181c32;
}

.table-link:hover {
    color: #009ef7;
}

.flatpickr-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.bg-dark-blue {
    background-color: #2b2b42 !important;
    color: #43434e;
}

.text-secondary-dark {
    color: #6974a6 !important
}

.space-x-1 > * + * {
    margin-left: 0.25rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-5 > * + * {
    margin-left: 1.25rem;
}

body[dir="rtl"] .space-x-1 > * + * {
    margin-right: 0.25rem;
}

body[dir="rtl"] .space-x-2 > * + * {
    margin-right: 0.5rem;
}

body[dir="rtl"] .space-x-3 > * + * {
    margin-right: 0.75rem;
}

body[dir="rtl"] .space-x-4 > * + * {
    margin-right: 1rem;
}

body[dir="rtl"] .space-x-5 > * + * {
    margin-right: 1.25rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-5 > * + * {
    margin-top: 1.25rem;
}

.pm-0 {
    padding: 0 !important;
    margin: 0 !important;
}

.livewire-table th {
    font-weight: bolder !important;
}

.livewire-table td {
    font-weight: 600 !important;
}

.absolute-end-top {
    position: absolute;
    top: -5px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.5s;
}

body[dir="rtl"] .absolute-end-top {
    left: -5px;
}

body[dir="ltr"] .absolute-end-top {
    right: -5px;
}

.hover-scale {
    transition: transform 0.5s;
}

.hover-scale:hover {
    transform: scale(1.2)
}

.custom-modal {
    background-color: rgba(0, 0, 0, 0.3);
}

.d-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.d-flex-center-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.d-flex-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
}

.d-flex-end-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.d-flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

.d-flex-start-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.d-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.d-flex-between-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.d-flex-evenly {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}

.d-flex-evenly-wrap {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.table.text-start th,
.table.text-start td {
    text-align: start !important;
}

.table.text-center th,
.table.text-center td {
    text-align: center !important;
}

.table.text-end th,
.table.text-end td {
    text-align: end !important;
}

.menu-title {
    user-select: none !important;
}

.break-text {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/*** Home Hero ***/
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 4rem;
    margin-top: 0;
    min-height: min(92vh, 920px);
    display: flex;
    align-items: center;
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(51, 153, 255, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(51, 153, 255, 0.12), transparent 50%),
        radial-gradient(ellipse 45% 35% at 90% 70%, rgba(8, 26, 54, 0.06), transparent 50%),
        linear-gradient(180deg, #f0f7ff 0%, #ffffff 55%, #f8fbff 100%);
    z-index: 0;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(51, 153, 255, 0.12);
    border: 1px solid rgba(51, 153, 255, 0.25);
    border-radius: 999px;
}

.home-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.home-hero__title-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #5eb3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-hero__subtitle {
    font-size: clamp(1.25rem, 2.6vw, 1.5rem);
    line-height: 1.75;
    color: #5e6278;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.home-hero__btn-primary {
    border-radius: 999px !important;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(51, 153, 255, 0.35);
}

.home-hero__btn-secondary {
    border-radius: 999px !important;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark) !important;
    background: #ffffff !important;
    border: 2px solid rgba(8, 26, 54, 0.12) !important;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.home-hero__btn-secondary:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background: #ffffff !important;
}

.home-hero__stats-block {
    margin-bottom: 1.25rem;
}

.home-hero__stats-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.home-hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    padding: 0 0.5rem;
}

.home-hero__stat-value {
    font-size: clamp(1.75rem, 4.5vw, 2.35rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.home-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.home-hero__stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: 0.25rem;
}

.home-hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(8, 26, 54, 0.12);
}

.home-hero__illus {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.home-hero__illus img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home-hero__illus--1 {
    width: 120px;
    animation: home-hero-illus-enter-left 1.2s cubic-bezier(0.22, 0.85, 0.32, 1) 0.35s forwards;
}

.home-hero__illus--1 img {
    animation: home-hero-float-left 5s ease-in-out 1.65s infinite;
}

.home-hero__illus--2 {
    width: 100px;
    animation: home-hero-illus-enter-left-2 1.2s cubic-bezier(0.22, 0.85, 0.32, 1) 0.52s forwards;
}

.home-hero__illus--2 img {
    animation: home-hero-float-left 5s ease-in-out 1.82s infinite;
}

.home-hero__illus--3 {
    width: 110px;
    animation: home-hero-illus-enter-right 1.2s cubic-bezier(0.22, 0.85, 0.32, 1) 0.69s forwards;
}

.home-hero__illus--3 img {
    animation: home-hero-float-right 5s ease-in-out 1.99s infinite;
}

.home-hero__illus--4 {
    width: 115px;
    opacity: 0;
    animation: home-hero-illus-enter-right-bottom 1.2s cubic-bezier(0.22, 0.85, 0.32, 1) 0.86s forwards;
}

.home-hero__illus--4 img {
    animation: home-hero-float-right 5s ease-in-out 2.16s infinite;
}

@keyframes home-hero-illus-enter-left {
    0% {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    80% {
        top: 52%;
        left: 12%;
        right: auto;
        bottom: auto;
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    100% {
        top: 52%;
        left: 12%;
        right: auto;
        bottom: auto;
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

@keyframes home-hero-illus-enter-left-2 {
    0% {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    80% {
        top: 20%;
        left: 10%;
        right: auto;
        bottom: auto;
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    100% {
        top: 20%;
        left: 10%;
        right: auto;
        bottom: auto;
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

@keyframes home-hero-illus-enter-right {
    0% {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    80% {
        top: 22%;
        left: auto;
        right: 14%;
        bottom: auto;
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    100% {
        top: 22%;
        left: auto;
        right: 14%;
        bottom: auto;
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

@keyframes home-hero-illus-enter-right-bottom {
    0% {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    80% {
        top: auto;
        left: auto;
        bottom: 18%;
        right: 14%;
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    100% {
        top: auto;
        left: auto;
        bottom: 18%;
        right: 14%;
        transform: translate(0, 0) scale(1);
        opacity: 0.92;
    }
}

.home-hero__illus--1 img,
.home-hero__illus--2 img {
    transform: rotate(-6deg);
}

.home-hero__illus--3 img,
.home-hero__illus--4 img {
    transform: rotate(6deg);
}

@keyframes home-hero-float-left {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-6deg) translateY(-8px); }
}

@keyframes home-hero-float-right {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__illus {
        opacity: 1;
        animation: none;
        transform: none;
    }

    .home-hero__illus--1 { top: 52%; left: 12%; right: auto; bottom: auto; }
    .home-hero__illus--2 { top: 20%; left: 10%; right: auto; bottom: auto; }
    .home-hero__illus--3 { top: 22%; right: 14%; left: auto; bottom: auto; }
    .home-hero__illus--4 { bottom: 18%; right: 14%; top: auto; left: auto; opacity: 0.92; }

    .home-hero__illus img {
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .home-hero {
        padding: 6.5rem 0 3rem;
        min-height: auto;
    }

    .home-hero__illus {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .home-hero__stat-divider {
        display: none;
    }

    .home-hero__stats {
        gap: 1rem;
    }

    .home-hero__actions .btn {
        width: 100%;
    }
}

/*** Home — University subjects ***/
.home-subjects {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 40%, #ffffff 100%);
}

.home-subjects__title {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 800;
    color: var(--dark);
}

.home-subjects__subtitle {
    max-width: 560px;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #5e6278;
}

.home-subjects__card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid rgba(8, 26, 54, 0.08);
    box-shadow: 0 4px 24px rgba(8, 26, 54, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-subjects__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 153, 255, 0.15);
}

.home-subjects__card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.home-subjects__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-subjects__card:hover .home-subjects__card-image img {
    transform: scale(1.05);
}

.home-subjects__card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 26, 54, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.home-subjects__card-overlay i {
    font-size: 2.75rem;
    color: #ffffff;
}

.home-subjects__card:hover .home-subjects__card-overlay {
    opacity: 1;
}

.home-subjects__card-subject {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--primary);
    margin: 0;
}

.home-subjects__card-meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.home-subjects__card-body {
    flex: 1;
    padding: 1.25rem 1.25rem 0.75rem;
}

.home-subjects__card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.home-subjects__card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-subjects__card-title a:hover {
    color: var(--primary);
}

.home-subjects__card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: #5e6278;
}

.home-subjects__card-meta-label {
    font-weight: 600;
}

.home-subjects__card-footer {
    padding: 0 1.25rem 1.25rem;
}

.home-subjects__cta {
    margin-top: 2.5rem;
}

.home-subjects__cta-btn {
    border-radius: 999px !important;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(51, 153, 255, 0.3);
}

/*** Home — Platform activities ***/
.home-activities {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 40%, #ffffff 100%);
}

.home-activities__title {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 800;
    color: var(--dark);
}

.home-activities__subtitle {
    max-width: 560px;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #5e6278;
}

.home-activities__card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid rgba(8, 26, 54, 0.08);
    box-shadow: 0 4px 24px rgba(8, 26, 54, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-activities__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 153, 255, 0.15);
}

.home-activities__card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.home-activities__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-activities__card:hover .home-activities__card-image img {
    transform: scale(1.05);
}

.home-activities__card-body {
    flex: 1;
    padding: 1.25rem 1.25rem 1.5rem;
}

.home-activities__card-title {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
}

.home-activities__card-caption {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
    color: #5e6278;
}

/*** Home — Self development ***/
.home-improve {
    position: relative;
    z-index: 1;
    overflow-x: clip;
    padding: 3rem 0 4rem;
    background:
        radial-gradient(ellipse 70% 55% at 15% 20%, rgba(51, 153, 255, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 75%, rgba(8, 26, 54, 0.07), transparent 50%),
        linear-gradient(180deg, #eef6ff 0%, #f4f9ff 45%, #ffffff 100%);
}

.home-improve__inner {
    position: relative;
    z-index: 2;
}

.home-improve__header {
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.home-improve__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(51, 153, 255, 0.12);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.home-improve__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
}

.home-improve__subtitle {
    max-width: 36rem;
    margin: 0 auto;
    font-size: clamp(1.125rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: #5e6278;
}

.home-improve__carousel {
    max-width: 80rem;
    margin: 0 auto;
}

.home-improve__stage {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 22rem;
}

.home-improve__viewport {
    width: 100%;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-improve__viewport.is-animating {
    opacity: 0;
    transform: translateX(var(--home-improve-exit, -48px));
}

.home-improve__viewport.is-entering {
    opacity: 0;
    transform: translateX(var(--home-improve-enter, 48px));
}

body[dir="rtl"] .home-improve__viewport.is-animating {
    --home-improve-exit: 48px;
}

body[dir="rtl"] .home-improve__viewport.is-entering {
    --home-improve-enter: -48px;
}

.home-improve__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.home-improve__grid--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-improve__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 1.5rem;
    border: 8px solid rgba(51, 153, 255, 0.18);
    border-radius: 2rem;
    background: #ffffff;
}

@media (min-width: 768px) {
    .home-improve__card {
        padding: 1.75rem;
    }
}

.home-improve__card--sky {
    border-color: #dbeafe;
}

.home-improve__card--indigo {
    border-color: #e0e7ff;
}

.home-improve__card--amber {
    border-color: #fef3c7;
}

.home-improve__card--violet {
    border-color: #ede9fe;
}

.home-improve__card--rose {
    border-color: #ffe4e6;
}

.home-improve__card-headline {
    max-width: 36rem;
    margin: 0;
    font-size: clamp(1.65rem, 3.25vw, 2.1rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.home-improve__card-body {
    max-width: 36rem;
    margin: 1rem 0 0;
    font-size: clamp(1.125rem, 2.2vw, 1.3rem);
    line-height: 1.55;
    color: #5e6278;
}

.home-improve__card-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(8, 26, 54, 0.08);
}

.home-improve__card-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.home-improve__card-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.home-improve__card-meta {
    min-width: 0;
}

.home-improve__card-name {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 700;
    color: var(--dark);
}

.home-improve__card-role {
    margin: 0.15rem 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #5e6278;
}

.home-improve__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.home-improve__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    padding: 0 !important;
    line-height: 1;
    box-shadow: none;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.2s ease;
}

.home-improve__nav-btn:hover,
.home-improve__nav-btn:focus,
.home-improve__nav-btn.home-hero__btn-secondary:hover,
.home-improve__nav-btn.home-hero__btn-secondary:focus {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(51, 153, 255, 0.35);
}

.home-improve__nav-btn:hover i,
.home-improve__nav-btn:focus i,
.home-improve__nav-btn:active i {
    color: #ffffff !important;
}

.home-improve__nav-btn:active,
.home-improve__nav-btn.home-hero__btn-secondary:active {
    transform: scale(0.95);
    background: linear-gradient(135deg, #2d8ae6 0%, #7ec4ff 100%) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

@media (max-width: 1279px) {
    .home-improve__grid--double {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .home-improve {
        padding: 2.5rem 0 3rem;
    }

    .home-improve__stage {
        min-height: 18rem;
    }

    .home-improve__card {
        padding: 1.25rem;
        border-width: 6px;
        border-radius: 1.5rem;
    }

    .home-improve__card-bottom {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
}

/*** Home — University ambassadors ***/
.home-ambassadors {
    position: relative;
    padding: 4.5rem 0;
    background:
        radial-gradient(ellipse 55% 45% at 90% 15%, rgba(51, 153, 255, 0.1), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #f5faff 50%, #ffffff 100%);
}

.home-ambassadors__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(51, 153, 255, 0.12);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.home-ambassadors__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.5vw, 2.65rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
}

.home-ambassadors__subtitle {
    margin: 0 0 2rem;
    max-width: 34rem;
    font-size: 1.2rem;
    line-height: 1.75;
    color: #5e6278;
}

.home-ambassadors__steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.home-ambassadors__step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.home-ambassadors__step-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(51, 153, 255, 0.35);
}

.home-ambassadors__step-title {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.home-ambassadors__step-text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #5e6278;
}

.home-ambassadors__cta {
    border-radius: 999px !important;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(51, 153, 255, 0.3);
}

.home-ambassadors__panel {
    position: relative;
    padding: 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(145deg, #081a36 0%, #0f2d5c 55%, #163d7a 100%);
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(8, 26, 54, 0.22);
}

.home-ambassadors__panel-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 153, 255, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.home-ambassadors__commission {
    position: relative;
    z-index: 1;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-ambassadors__commission-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-ambassadors__commission-value {
    display: block;
    font-size: clamp(2.75rem, 8vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-ambassadors__commission-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.home-ambassadors__benefits {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.home-ambassadors__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 1.075rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.home-ambassadors__benefits i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--primary-light);
    font-size: 1.05rem;
}

.home-ambassadors__illus {
    position: absolute;
    bottom: -0.5rem;
    left: 1.5rem;
    opacity: 0.18;
    pointer-events: none;
}

body[dir="rtl"] .home-ambassadors__illus {
    left: auto;
    right: 1.5rem;
}

@media (max-width: 991px) {
    .home-ambassadors {
        padding: 3.5rem 0;
    }

    .home-ambassadors__cta {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .home-ambassadors__panel {
        padding: 1.5rem;
    }
}

/*** Improve yourself — page intro ***/
.improve-intro {
    position: relative;
    padding: 3rem 0 3.5rem;
    margin-top: -2.5rem;
    background:
        radial-gradient(ellipse 60% 50% at 10% 30%, rgba(51, 153, 255, 0.12), transparent 55%),
        radial-gradient(ellipse 50% 45% at 95% 70%, rgba(8, 26, 54, 0.06), transparent 50%),
        linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.improve-intro__inner {
    position: relative;
    z-index: 1;
}

.improve-intro__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(51, 153, 255, 0.12);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
}

.improve-intro__title {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
}

.improve-intro__lead {
    margin: 0 0 1rem;
    max-width: 40rem;
    font-size: clamp(1.125rem, 2.2vw, 1.3rem);
    font-weight: 700;
    line-height: 1.75;
    color: var(--dark);
}

.improve-intro__body {
    margin: 0 0 1.5rem;
    max-width: 40rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.8;
    color: #3f4254;
}

.improve-intro__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.improve-intro__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.65;
    color: #3f4254;
}

.improve-intro__highlights .fa-check-circle {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--primary);
    font-size: 1.15rem;
}

.improve-intro__cta {
    border-radius: 999px !important;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(51, 153, 255, 0.3);
}

.improve-intro__illus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.improve-intro__illus-img {
    display: block;
    width: min(100%, 320px);
    height: auto;
    max-width: 100%;
}

#improve-courses {
    scroll-margin-top: calc(var(--site-header-height, 5.25rem) + 1.5rem);
}

@media (max-width: 991px) {
    .improve-intro {
        margin-top: 0;
        padding: 2.5rem 0;
    }

    .improve-intro__cta {
        width: 100%;
    }

    .improve-intro__illus {
        margin-top: 0.5rem;
    }
}
