/********** Template CSS **********/
:root {
    --primary: #4643c0;
    --light: #ececf6;
    --dark: #181d38;
    --pink: #ffadad;
}

h6 {
    font-size: 24px;
    font-family: "Open Sans";
}

.fw-medium {
    font-weight: 600 !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-family: "Open Sans", sans-serif;
    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-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

/*** Navbar ***/

.navbar {
    padding: 20px 5.63vw !important;
    background: linear-gradient(84.86deg, #19057e 19.67%, #4643c0 97.42%);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    max-height: 103px;
}

.navbar .navbar-nav {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: #0c233f;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 40px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 20px;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: var(--pink);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--pink);
}

.navbar-light .navbar-nav .nav-link.active {
    font-weight: 600;
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: 0.5s;
}

/* --- Navbar DROPDOWN --- */

.dropdown-menu {
    border: none;
    border-radius: 5px; 
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px;
    margin-top: 10px;
    background-color: #fff;
    
    display: block; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); 
    transition: all 0.3s ease;

    pointer-events: none; 
}

.nav-item.dropdown:hover > .dropdown-menu:not(.show) {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    pointer-events: none !important;
}

.nav-item.dropdown .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.submenu-level-2 {
    background-color: #fff;
    border-radius: 12px;
    list-style: none;
    padding: 0;
    
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submenu-level-2.show {
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    padding: 20px !important;
}

.submenu-level-2 li a {
    display: block;
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.submenu-level-2 li a:hover {
    background-color: #f0f4ff; 
    color: #e83e8c; 
    border-color: #e0e0e0;
    padding-left: 18px; 
}

.dropdown-submenu > .dropdown-item {
    font-weight: 600;
    color: #0c233f;
    padding: 12px 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.dropdown-submenu > .dropdown-item::after {
    content: "\f054"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 10px;
    opacity: 0.5;
    transition: transform 0.2s;
}
.dropdown-submenu > .dropdown-item.show::after {
    transform: rotate(90deg);
}

.dropdown-submenu > .dropdown-item.no-child::after {
    display: none;
}

@media (min-width: 992px) {
    .submenu-level-2 {
        position: absolute;
        left: 100%;
        top: -10px; 
        width: 380px;
        box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        transform: translateX(10px);
    }
    .submenu-level-2.show {
        transform: translateX(0);
        overflow: scroll !important;
        max-height: 600px !important;
        overflow-x: hidden !important;
    }
    .submenu-level-2.two-column {
        width: 380px;
        grid-template-columns: 1fr 1fr;
    }
    .submenu-level-2.one-column {
        width: 220px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .dropdown-menu {
        width: 100%;
        box-shadow: none;
        border: 1px solid #eee;
    }
    .submenu-level-2 {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #f9f9f9;
        transform: none;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .dropdown-submenu > .dropdown-item::after {
        transform: rotate(90deg);
    }
}

/*** Dream Section ***/
.dream-container {
    position: relative;
    background: url(../img/dreamy-blue.png) center/cover no-repeat;
    width: 86%;
    margin: 0 auto;
    padding: 48px 0;
    overflow: hidden;
}

.dream-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(25, 5, 126, 0) 0%, #19057e 100%);
    pointer-events: none;
    z-index: 0;
}

.dream-container > div {
    position: relative;
    z-index: 1;
    text-align: center;
}

.dream-btn {
    background: linear-gradient(252.37deg, #fbbc50 15.31%, #d87822 84.69%);
    border: none;
    color: black;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.dream-btn:hover {
    opacity: 0.9;
}

.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: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.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 ***/
.course-item {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    border: 0.5px solid #82828240;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.course-img-wrapper {
    aspect-ratio: 4 / 5;
    padding: 10px 10px 0 10px;
    /* Fallback shown behind/around course images (broken src or letterboxing) */
    background: #fff7c1;
    background-clip: content-box;
}

.course-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.course-content {
    flex-grow: 1;
    padding-top: 8px;
}

.course-item-empty {
    max-width: 353px;
    min-height: 332px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #0c233f;
}

.course-item-empty:hover {
    background: #e1f5f7 !important;
}

.course-item-empty i {
    width: 8px;
    height: 12px;
}

.course-btn {
    margin-top: 16px;
    display: grid;
    justify-content: space-between;
    background: linear-gradient(84.86deg, #19057e 19.67%, #4643c0 97.42%);
    grid-template-columns: 50% 50%;
    height: 56px;
    font-weight: 600;
}

.modal-detail a {
    background: linear-gradient(84.86deg, #19057e 19.67%, #4643c0 97.42%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    color: var(--pink) !important;
    font-size: 16px;
}

.course-btn div {
    color: var(--pink);
    border-right: 1px solid white;
}

.course-btn a {
    color: white;
}

.course-btn > div,
.course-btn > a {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.course-content h4 {
    color: #0c233f;
    font-size: 16px;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    min-height: calc(1.4em * 2);
    max-height: calc(1.4em * 2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8px;
}

.course-content h5 {
    color: #4c4c4c;
    font-size: 16px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
}

.category img,
.course-item img {
    width: 100%;
    height: auto;
    max-width: 311.33px;
    height: 312px;
    object-fit: contain;
}

.courses-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.courses-scroll .d-flex {
    gap: 16px;
    padding-bottom: 8px;
}

.course-col {
    flex: 0 0 calc(50% - 8px);
}

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

.special-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.special-title img {
    width: 32px;
    height: 6px;
    margin-bottom: 8px;
}
.special-title h6 {
    padding: 0 8px 0 8px;
    font-size: 18px;
}

.hof-container .testimonial-carousel .owl-item .testimonial-text {
    height: 100px;
    width: 100%;
    max-width: 322px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hof-container .testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--light) !important;
}
.hof-container .testimonial-carousel .owl-item .testimonial-text b {
    font-size: 16px;
    font-weight: 700;
    color: #181d38 !important;
}
.hof-container .testimonial-carousel .owl-item .testimonial-text p {
    color: #181d38 !important;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 8px;
}
.bg-light {
    background: var(--light) !important;
    color: #181d38 !important;
}
.bg-blue-primary {
    background: #52d3d8;
    color: white;
}

.hof-student-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hof-student-card:hover {
    transform: scale(1.05);
}

.hof-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 auto 24px;
    max-width: 100%;
}

.hof-filter-tab {
    appearance: none;
    border: 2px solid #19057e;
    background: #fff;
    color: #19057e;
    font-family: "Raleway", "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    padding: 10px 16px;
    border-radius: 8px;
    min-height: 44px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hof-filter-tab:hover {
    background: rgba(25, 5, 126, 0.06);
}

.hof-filter-tab.is-active,
.hof-filter-tab[aria-selected="true"] {
    background: #19057e;
    color: #fff;
    border-color: #19057e;
}

.hof-filter-tab:focus-visible {
    outline: 2px solid #4643c0;
    outline-offset: 2px;
}

/* Few filtered results: drop side fades; keep cards card-sized and centered in their slot */
.champions-carousel.champions-carousel--compact::before,
.champions-carousel.champions-carousel--compact::after {
    display: none;
}

.champions-carousel.champions-carousel--compact .hof-text-card {
    max-width: 280px;
    margin-inline: auto;
}

/* Don't reserve tall empty stage under compact HOF cards */
.champions-carousel .owl-stage-outer {
    max-height: none;
}

.champions-carousel .owl-dots {
    margin-top: 16px;
    margin-bottom: 0;
}

/* Equal-height Hall of Fame cards in the carousel row */
.champions-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.champions-carousel .owl-item {
    display: flex;
    float: none;
    height: auto;
}

.champions-carousel .hof-student-card {
    display: flex;
    width: 100%;
    height: 100%;
}

.hof-text-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    min-height: 140px;
    padding: 16px 16px 18px;
    border-radius: 12px;
    background: linear-gradient(84.86deg, #19057e 19.67%, #4643c0 97.42%);
    text-align: left;
    transition: transform 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hof-student-card,
    .hof-filter-tab,
    .hof-text-card {
        transition: none;
    }

    .hof-student-card:hover {
        transform: none;
    }
}

.hof-text-card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.hof-text-card-name {
    color: #ff8c42;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.hof-text-card-achievement {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .hof-text-card {
        padding: 14px 14px 16px;
    }

    .hof-text-card-name {
        font-size: 16px;
    }

    .hof-text-card-achievement {
        font-size: 13px;
    }
}

.teams-carousel-content {
    background: linear-gradient(84.86deg, #19057e 19.67%, #4643c0 97.42%);
    border-radius: 0px 0px 6.23385px 6.23385px;
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 140px;
    padding: 20px 16px;
}

.teams-carousel-content p {
    text-align: center;
    color: #fff;
    font-weight: 600;
    line-height: 20px;
}

.teams-carousel .testimonial-item {
    position: relative;
    height: 400px;
}

.partner-brand-container {
    overflow: hidden;
    font-size: 0;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.partner-brand-image {
    margin: auto;
}

.mover-1 {
    font-size: 16px;
    display: flex;
    flex-direction: row;
    animation: moveSlideshow 10s linear infinite;
    width: max-content;
    overflow: hidden;
}

@keyframes moveSlideshow {
    100% {
        transform: translateX(-1900px);
    }
}

.partner-brand {
    max-width: 200px;
    flex-direction: column;
    justify-content: center;
    display: flex;
    margin-right: 16px;
    margin-left: 16px;
}

.partner-brand p {
    height: 48px;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: #0c233f;
}

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

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

.dream-form {
    margin-top: 36px;
}

.dream-form textarea {
    height: 186px;
    width: 806px;
    padding: 16px;
    font-family: "Open Sans", sans-serif;
}

.dream-form textarea::placeholder {
    color: #d9d9d9;
}

.float-whatsapp {
    position: fixed;
    width: 131px;
    height: 51px;
    bottom: 40px;
    right: 40px;
    background-color: #26da69;
    color: #fff;
    border-radius: 32px;
    text-align: center;
    font-size: 14px;
    z-index: 100;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
}

.float-whatsapp img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.float-whatsapp p {
    margin: 0;
    padding: 0;
}

.my-float {
    margin-top: 16px;
}

.modal-maintenance {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 32px;
    padding-top: 0;
}

.modal-subheader {
    display: flex;
    padding: 0 16px;
    font-size: 12px;
}

.modal-maintenance > div {
    margin-left: 24px;
    margin-top: 16px;
}

.dream-btn {
    width: 803px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 24px;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    border: none;
    margin-top: 24px;
}

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

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

.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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 4px;
    /* prevent crowded mobile rows from squashing dots into tall ovals */
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;
    border: 1.5px solid #14065b;
    border-radius: 50%;
    background: transparent;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

/* Owl renders an inner span; hide it so the button stays a true circle */
.testimonial-carousel .owl-dot span {
    display: none;
}

.testimonial-carousel .owl-dot.active {
    background: #14065b;
    border-color: #14065b;
}

/* Touch: keep the circle small, expand the hit area */
.testimonial-carousel .owl-dot::before {
    content: "";
    position: absolute;
    inset: -14px;
}

@media (max-width: 767.98px) {
    .testimonial-carousel .owl-dots {
        margin-top: 16px;
        gap: 6px;
        max-width: 100%;
    }

    .testimonial-carousel .owl-dot {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }
}

.slide-content {
    margin-left: 120px !important;
    max-width: 1000px;
}

.owl-stage-outer {
    max-height: 470px;
}

.courses-btn a {
    background: #06bbcc !important;
    color: white !important;
    font-weight: 500;
}

.courses-btn .border-end {
    border-right: 1px solid #183156 !important;
}

.owl-stage,
.owl-stage > div,
.owl-stage .owl-carousel-item {
    max-height: 470px;
}

.owl-nav {
    display: none !important;
}

/*** Footer ***/
.footer {
    background: linear-gradient(84.86deg, #19057e 19.67%, #4643c0 97.42%);
    padding: 34px 32px;
    font-family: "Open Sans", sans-serif;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.story-container {
    padding: 0 5.63vw;
}

.modal-header-custom {
    border-bottom: none;
    padding: 24px 16px 12px 16px !important;
}
.custom-card-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.modal-body-custom img {
    margin-bottom: 20px;
    max-height: 350px;
}
.modal-card-price {
    font-weight: bold;
    font-size: 14px;
    color: var(--pink);
    margin: 0 !important;
}
.modal-card-desc {
    max-height: 250px;
    overflow-y: scroll;
}
.join-now {
    background: #2bc5d4 !important;
    color: white !important;
}

.strategy-card {
    background: var(--light);
    color: #212121;
    min-height: 350px;
}

.strategy-card--compact {
    min-height: 0;
}

.strategy-card h5 {
    font-size: 18px;
}

.about-segment-title {
    font-size: 18px;
}

.strategy-card p {
    font-size: 14px;
    color: #52565b;
}

.custom-range {
    display: block;
    width: 100%;
}

.pagination {
    margin: 20px 0;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    color: #007bff;
    background-color: #f8f9fa;
    border: 1px solid #007bff;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    transition: background-color 0.3s, color 0.3s;
}

.pagination .page-link:hover {
    background-color: #e2e6ea;
    color: #0056b3;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.pagination .page-item.disabled .page-link {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
}

.pagination {
    font-size: 16px;
}

.page-link {
    color: #2bc5d4;
    border-radius: 30px;
    margin: 0 5px;
}

.page-link:hover {
    background-color: #e6f7fa;
    color: #007bff;
}

.page-item.active .page-link {
    background-color: #2bc5d4;
    color: #fff;
    border: none;
}

.menu {
    overflow: visible;
    height: auto;
}

.menu-container {
    overflow-y: hidden;
}

select.form-select.bg-dark:focus {
    background-color: #2a2f34;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.visi-misi {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.visi-misi > div {
    width: 100%;
}

.visi-misi h6 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: var(--primary);
    margin: 20px 0;
}
.visi-misi p {
    text-align: center;
}

.visi-misi h6::before,
.visi-misi h6::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--primary);
    margin: 0 16px;
}

.owl-dot {
    border-radius: 50%;
}

.owl-dot.active,
.owl-dot:active {
    background: #14065b;
    border-color: #14065b;
}

.btn-outline-v2 {
    border: 1px solid var(--primary) !important;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
}
.btn-outline-v2:hover {
    color: 1px solid var(--primary);
}

.teams-carousel {
    position: relative;
}

.teams-carousel .owl-item img {
    width: 100%;
    height: auto;
    max-height: 270px;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    z-index: 2;
    border-radius: 0 0 8px 8px;
}

.teams-carousel h6 {
    position: absolute;
    background: linear-gradient(90deg, #ffd670 0%, #f7a66a 100%);
    border-radius: 0px 0px 6.23385px 0px;
    font-size: 16px;
    color: #14065b;
    top: 0;
    left: 0;
    width: 60%;
    height: max-content;
    padding: 5px 0 5px 8px;
    text-align: left;
    font-weight: 600;
    z-index: 3;
}

.teams-carousel h5 {
    display: inline-block;
    background: linear-gradient(90deg, #ffd670 0%, #f7a66a 100%);
    color: #14065b;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.haro-card-container-more {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    height: 24px;
    margin-top: 20px;
}
.haro-card-container-more p {
    margin: 0;
    font-weight: 600;
}
.haro-card-container-more i {
    margin-top: 3px;
}
.courses-grid {
    display: grid;
    gap: 24px;
}

.courses-grid {
    grid-template-columns: 1fr;
}

.courses-grid .course-img-wrapper {
    aspect-ratio: auto;
}

.courses-container {
    width: 80%;
    margin: 0 56px !important;
    border-radius: 0 !important;
}

.courses-container .course-item img {
    height: 240px;
}

/* FLOATING ACTION BUTTON */
.fab-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fab-main {
    width: 190px;
    height: 60px;
    background-color: #25D366; 
    border-radius: 30px 30px 30px 30px;  
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transition: width 0.3s ease, border-radius 0.3s ease, transform 0.2s ease;
    overflow: visible !important; 
}

.fab-main::after {
    content: "";
    position: absolute;

    bottom: -10px; 
    right: 30px; 
    
    width: 0; 
    height: 0; 
    border-style: solid;

    border-width: 15px 0 0 15px; 
    border-color: #25D366 transparent transparent transparent;

    opacity: 1;
    transition: opacity 0.2s ease;
}

.fab-main:hover {
    transform: scale(1.05);
}

.fab-text {
    font-size: 14px;      
    font-weight: 400;    
    color: white;
    margin-left: 10px;  
    font-family: inherit;
    white-space: nowrap; 
    overflow: hidden; 
    opacity: 1;
    max-width: 150px;
    transition: opacity 0.2s ease, max-width 0.3s ease;
}

.fab-options {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}

.fab-options a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-options .fab-label {
    position: relative;
    background-color: white; 
    border-color: #333;
    color: #333;            
    padding: 8px 16px;
    border-radius: 8px 8px 0 8px;    

    box-shadow: none; 
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
    
    margin-right: 10px; 
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap; 
}

.fab-options .fab {
    margin-right:5px ;
}

.fab-options .fab-label::after {
    content: "";
    position: absolute;
    bottom: 0;       
    left: -8px;      
 
    width: 0; 
    height: 0; 
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent white transparent; 
}

.fab-options i {
    background-color: #25D366; 
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.fab-options a:hover i {
    transform: scale(1.1);
}

#fabIcon, #closeIcon {
    font-size: 24px;
    min-width: 24px;
}

#fabIcon {
    margin-right: 0;
}

#fabContainer.active .fab-options a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#fabContainer.active .fab-main {
    width: 60px;     
    border-radius: 50%;       
    padding: 0;
}

#fabContainer.active .fab-text {
    opacity: 0;
    max-width: 0px;   
    margin-left: 0;     
}

#fabContainer.active .fab-options a:nth-last-child(1) { transition-delay: 0ms; }
#fabContainer.active .fab-options a:nth-last-child(2) { transition-delay: 50ms; }
#fabContainer.active .fab-options a:nth-last-child(3) { transition-delay: 100ms; }

/* BREAKPOINT START */

/* MAX Mobile */
@media (max-width: 768px) {
    .course-btn {
        height: 48px;
    }
    .course-btn > a,
    div {
        font-size: 14px;
    }
    .haro-card-container,
    .haro-padding-container {
        grid-template-columns: repeat(1, minmax(260px, 1fr));
        width: 90%;
        padding: 32px 16px;
    }
    .teams-carousel .testimonial-item {
        height: 480px;
    }
    .teams-carousel .owl-item img {
        max-height: 348px;
    }
    .teams-carousel .owl-item {
        padding: 0 24px !important;
    }

    h6 {
        font-size: 18px;
    }

    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

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

    .navbar-brand img {
        height: 50px;
    }
    .modal-header {
        height: max-content !important;
        min-height: max-content;
    }

    .strategy-card {
        background: var(--light);
        color: #212121;
        min-height: 300px;
    }

    .strategy-card--compact {
        min-height: 0;
    }

    .modal-header-custom {
        border-bottom: none;
        padding: 12px 16px 12px 16px !important;
    }
    .modal-header h5 {
        margin-right: 20px;
    }
    .navbar {
        padding: 19px 16px 19px 16px !important;
        max-height: 103px;
    }
    .navbar-toggler {
        margin-right: 0 !important;
    }
    .navbar-nav {
        background: linear-gradient(84.86deg, #19057e 19.67%, #4643c0 97.42%);
    }
    .slide-content {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .story-video {
        max-width: 100% !important;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 20px !important;
    }

    .story-video iframe {
        width: 100%;
        height: 300px;
    }

    .story-desc {
        padding: 0 32px !important;
        max-width: max-content !important;
    }

    .dream-container {
        padding: 32px 16px;
        width: 100%;
    }

    .dream-container p {
        font-size: 14px;
    }

    .dream-form textarea {
        width: 86%;
    }

    .dream-btn {
        width: 86%;
        font-size: 14px;
        height: 40px;
    }

    .courses-container {
        padding: 32px 16px;
    }

    .courses-row {
        display: flex;
        justify-content: center !important;
    }

    .course-item {
        max-width: 332px;
        min-width: 292px;
    }

    .empty-course {
        max-width: 332px;
        padding: 0 !important;
    }

    .empty-course button {
        width: 332px !important;
    }

    .team-container {
        padding: 32px 16px !important;
    }

    .team-container h4:first-child {
        font-size: 16px;
    }

    .team-container h4:last-child {
        font-size: 14px;
        color: #61738d;
    }

    .float-whatsapp {
        right: 20px;
        width: 110px;
        font-size: 12px;
    }

    #navbarCollapse {
        width: 100vw;
        left: 0;
        top: 103px;
        position: absolute;
    }

    #navbarCollapse > div a {
        font-size: 14px;
    }

    .story-container {
        padding: 32px 16px;
    }

    .visi-misi-container > div {
        flex-direction: column-reverse;
        gap: 8px;
    }

    .visi-misi {
        gap: 12px;
    }

    .visi-misi h6 {
        font-size: 18px;
        margin: 12px 0;
    }

    .visi-misi p {
        font-size: 14px;
        padding: 0 16px;
    }

    .haro-card-container,
    .haro-padding-container {
        margin: 16px 20px !important;
    }

    .haro-card-container .team-container > div {
        width: 100% !important;
    }

    .haro-card-container .team-container p {
        font-size: 14px;
    }

    .courses-container .course-item {
        min-width: 100% !important;
    }
    .courses-container .course-item img {
        max-width: 100% !important;
    }
}

@media (min-width: 581px) and (max-width: 767px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .courses-container .course-item {
        min-width: auto !important;
    }
    .courses-container .course-item img {
        height: 282px;
    }
    .courses-container {
        width: 92% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* MAX Tablet */
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}

/* MIN Tablet */
@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
    .course-col {
        flex: 0 0 calc(33.333% - 10px);
    }
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MIN Tablet LG */
@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 180px;
    }
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

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

    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .courses-container .course-item {
        min-width: auto !important;
    }
    .courses-container .course-item img {
        height: 282px;
    }
    .courses-container {
        width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* MIN MAX Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #navbarCollapse {
        width: 100vw;
        left: 0;
        top: 91px;
        position: absolute;
    }
    .navbar-nav {
        background: linear-gradient(84.86deg, #19057e 19.67%, #4643c0 97.42%);
    }
    .courses-container .course-item {
        min-width: auto !important;
    }
    .courses-container .course-item img {
        height: 282px;
    }
    .courses-container {
        width: 80% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* MIN MAX Tablet LG*/
@media only screen and (min-width: 768px) and (max-width: 1299px) {
    .hof-container .testimonial-carousel .owl-item .testimonial-text p,
    .hof-container .testimonial-carousel .owl-item .testimonial-text b {
        font-size: 14px;
        text-align: center;
    }
    .haro-card-container,.haro-padding-container {
        width: 92%;
        padding: 32px 16px;
    }
    .teams-carousel-content p {
        font-size: 12px;
    }

    h6 {
        font-size: 16px;
    }
    .navbar {
        padding: 8px 32px !important;
    }
    .slide-content {
        margin-left: 24px !important;
        margin-right: 24px !important;
    }

    .story-video {
        max-width: 100% !important;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .story-video iframe {
        width: 100%;
        height: 300px;
    }

    .story-desc {
        padding: 0 32px !important;
        max-width: max-content !important;
    }

    .dream-container {
        padding: 32px 16px;
        width: 91%;
    }

    .dream-container h6 {
        font-size: 18px;
    }

    .dream-container p {
        padding: 14px;
    }

    .dream-form textarea {
        width: 88%;
    }

    .dream-btn {
        width: 88%;
        height: 48px;
    }

    .courses-container {
        padding: 32px;
    }

    .course-item {
        max-width: 332px;
        min-width: 332px;
    }

    .empty-course {
        max-width: 332px;
        padding: 0 !important;
    }

    .empty-course button {
        width: 332px !important;
    }

    .team-container {
        padding: 32px 16px !important;
    }

    .team-container h4:first-child {
        font-size: 16px;
    }

    .team-container h4:last-child {
        font-size: 14px;
        color: #61738d;
    }

    .float-whatsapp {
        right: 20px;
        width: 110px;
        font-size: 12px;
    }

    .story-container {
        padding: 32px 16px;
    }

    .visi-misi-container > div {
        padding: 0 32px;
    }

    .visi-misi {
        gap: 12px;
    }

    .visi-misi h6 {
        font-size: 16px;
        margin: 12px 0;
    }

    .visi-misi p {
        font-size: 14px;
        padding: 0 16px;
    }
}

/* MIN Desktop */
@media only screen and (min-width: 1300px) {
    .courses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .course-col {
        flex: 0 0 calc(25% - 12px);
    }
    .navbar {
        padding: 20px 7.94vw !important;
    }

    .story-container {
        padding: 24px 7.94vw 32px;
    }

    .story-desc {
        padding-left: 70px !important;
    }

    .courses-container {
        padding: 56px 80px;
    }

    .haro-card-container,
    .haro-padding-container {
        margin: 56px 80px !important;
        padding: 36px 48px;
        grid-template-columns: repeat(4, minmax(280px, 1fr));
        overflow-x: hidden;
    }

    .courses-container {
        width: 88%;
        margin: 0 56px !important;
    }

    .empty-course button {
        width: 352px !important;
    }
}

/* MIN Desktop 2XL */
@media only screen and (min-width: 1536px) {
    .story-container {
        padding: 0 10.94vw;
    }
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .dropdown-menu {
        display: none; 
    }
    .dropdown-menu.show {
        display: block; 
    }
}
