@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Momo+Trust+Display&display=swap");

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lexend", sans-serif;
    font-size: var(--fs-16);
    color: var(--Light_mode-Gray_Scale-5);
    font-weight: 400;
    --font-secondary: "Momo Trust Display", sans-serif;
}

.headline-01 {
    text-align: center;
    margin-bottom: 32px;
}

.headline-01__subtitle {
    font-family: var(--font-secondary);
    color: var(--Light-Primary-20);
    /* Light purple */
    background-color: var(--Light-Secondary-50);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    /* font-weight: 700; */
    display: inline-block;
    margin-bottom: 25px;
}

.headline-01__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 60px;
    max-width: 800px;
    margin: 0 auto;
}

header {
    transition: 0.5s;
    z-index: 999;
    background: #fff;
    width: 100%;
    position: relative;
    z-index: 999;
}

.header-info {
    background: url("../img/bgs/bg-vango.jpg");
    color: #fff;
    padding: 14px 0;
    font-size: 13px;
    background-size: contain;
}

.header-info__wrapper {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    position: relative;
}

.header-info__left {
    display: flex;
    gap: 30px;
}

.header-info__left span i {
    margin-right: 5px;
}

.header-info__right {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-info__right span {
    font-weight: 600;
}

.header-info__right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.header-info__right a:hover {
    background: #fff;
    color: #8b4513;
}

@media (max-width: 991px) {
    .header-info__left {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .header-info__right {
        position: static;
        margin-top: 10px;
    }

    .header-info__wrapper {
        flex-direction: column;
    }
}

header.scroll-up {
    border-bottom: 1px solid #f5f5f5;
}

header.scroll-up .header-logo img {
    width: 80px;
}

header.scroll-down {
    transform: translateY(-100px);
}

header.active {
    background-color: var(--Light-Primary-50);
}

.header-logo img {
    width: 70px;
    transition: 0.5s;
}

header.active .header-logo img {
    filter: brightness(0) invert(1);
}

.header-top {
    display: flex;
    align-items: center;
    padding: var(--sp-16) 0;
}

.header-link {
    margin: 0 auto;
    transition: 0.5s;
}

header.active .header-link {
    opacity: 0;
    visibility: hidden;
}

.header-link>li {
    display: inline-block;
    margin-left: 8px;
}

.header-link li a {
    color: var(--Light_mode-Gray_Scale-5);
    font-size: 14px;
    position: relative;
    transition: 0.3s;
    padding: var(--sp-12);
    font-weight: 600;
}

.header-link>li>a::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 50%;
    bottom: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--Light-Primary-50);
    transition: 0.3s;
}

.header-link>li:hover>a,
.header-link li.is-active a {
    color: var(--Light-Primary-50);
}

.header-link li a:hover::before,
.header-link li.is-active a::before {
    transform: translate(-50%, -50%) scale(1);
}

/* --- CSS CHO DROPDOWN --- */
.has-dropdown>a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s;
}

/* 2. STYLE CHO DESKTOP (.header-link) */
.header-link li {
    position: relative;
}

.header-link .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    /*   menu con */
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    border-radius: 4px;
}

/* Style cho link  trong sub-menu */
.header-link .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
}

.header-link .sub-menu li:last-child a {
    border-bottom: none;
}

.header-link .sub-menu li a:hover {
    background-color: #f5f5f5;
    color: var(--Light-Primary-50);
}

.header-link li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-link li:hover>a i {
    transform: rotate(180deg);
}

/* 3. STYLE CHO MOBILE / RESPONSIVE (.header-menu) */
/*  trong header-frame */
.header-menu__right .has-dropdown {
    position: relative;
    flex-wrap: wrap;
    /* display: flex; */
    /* align-items: center; */
    justify-content: flex-end;
}

/* Sub-menu  mobile */
.header-menu__right .sub-menu {
    display: none;
    width: 200px;
    background: #ed802a;
    padding-left: 15px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.header-menu__right .sub-menu li a {
    padding: 10px 0;
    display: block;
    border-bottom: 1px dashed #ffffff47;
    font-size: 14px;
    margin-top: 0px;
}

.header-frame {
    display: none;
    margin-left: var(--sp-20);
}

.header-toggle {
    cursor: pointer;
}

.header-toggle span {
    font-size: var(--fs-16);
    color: var(--Light-Primary-50);
    font-weight: 500;
    transition: 0.5s;
}

.header-toggle.active span {
    color: #fff;
}

.header-toggle__btn {
    width: 50px;
    display: inline-block;
    margin-left: var(--sp-8);
}

.header-toggle__btn::before,
.header-toggle__btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--Light-Primary-50);
    transition: 0.5s;
}

.header-toggle__btn::before {
    margin-bottom: var(--sp-8);
}

.header-toggle.active .header-toggle__btn::before {
    transform: rotate(10deg) translateY(5px);
    background-color: #fff;
}

.header-toggle.active .header-toggle__btn::after {
    transform: rotate(-10deg) translateY(-5px);
    background-color: #fff;
}

.header-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: var(--sp-40) var(--sp-98);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #fff;
    overflow: hidden;
    pointer-events: none;
    z-index: 99999;
}

.header-menu::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    background-color: var(--Light-Primary-50);
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
}

.header-menu.active {
    pointer-events: visible;
}

.header-menu.active::before {
    height: 100%;
}

.header-menu__infor,
.header-menu__social {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.header-menu.active.active .header-menu__infor,
.header-menu.active.active .header-menu__social {
    opacity: 1;
    pointer-events: visible;
    transform: translateY(0);
    transition: 0.5s;
    transition-delay: 0.5s;
}

.header-menu__infor p {
    font-size: var(--sp-18);
    color: #fff;
    font-weight: 300;
}

.header-menu__infor div {
    margin: var(--sp-20) 0;
    display: flex;
    justify-content: flex-end;
    gap: var(--sp-20);
}

.header-menu__infor div span {
    font-size: var(--fs-34);
    font-weight: 600;
}

.header-menu__infor div img {
    cursor: pointer;
}

.header-menu__social {
    display: flex;
    gap: var(--sp-16);
}

.header-menu__social a {
    transition: 0.5s;
    font-size: var(--fs-20);
}

.header-menu__social a:hover {
    transform: translateY(-10px);
}

.header-menu__social img {
    width: 26px;
}

.header-menu__right li {
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
}

.header-menu.active .header-menu__right li {
    transition: 0.5s;
    opacity: 1;
    pointer-events: visible;
    transform: translateX(0);
}

.header-menu.active .header-menu__right li:first-child {
    transition-delay: 0.3s;
}

.header-menu.active .header-menu__right li:nth-child(2) {
    transition-delay: 0.4s;
}

.header-menu.active .header-menu__right li:nth-child(3) {
    transition-delay: 0.5s;
}

.header-menu.active .header-menu__right li:nth-child(4) {
    transition-delay: 0.6s;
}

.header-menu.active .header-menu__right li:nth-child(5) {
    transition-delay: 0.7s;
}

.header-menu.active .header-menu__right li:nth-child(6) {
    transition-delay: 0.8s;
}

.header-menu.active .header-menu__right li:nth-child(7) {
    transition-delay: 0.9s;
}

.header-menu.active .header-menu__right li:nth-child(8) {
    transition-delay: 1s;
}

.header-menu.active .header-menu__right li:nth-child(9) {
    transition-delay: 1.1s;
}

.header-menu__right li a {
    overflow: hidden;
    position: relative;
    display: block;
    margin-top: 18px;
    text-align: right;
    font-size: 22px;
    font-weight: 400;
}

.header-button {
    display: flex;
    align-items: center;
    gap: var(--sp-12);
}

.header-button-login {
    padding: var(--sp-12) var(--sp-24);
    font-size: var(--fs-14);
    font-weight: 400;
    transition: 0.3s;
    color: var(--Light-Primary-50);
}

.header-button-login:hover {
    color: var(--Light-Primary-20);
}

.header-user {
    position: relative;
    margin-left: var(--sp-32);
}

.header-user_infor {
    display: flex;
    gap: var(--sp-12);
    cursor: pointer;
}

.header-user_thumb img {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    object-fit: cover;
}

.header-user_name p {
    margin-bottom: 0;
}

.header-user_dropdown {
    position: absolute;
    right: 0;
    width: 160px;
    border-radius: var(--radius-20);
    background: var(--Light_mode-Gray_Scale-100);
    box-shadow: 0px 2px 4px 0px rgba(0, 39, 65, 0.2);
    padding: var(--sp-8);
    top: 80px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.header-user_dropdown li {
    margin-bottom: 4px;
    padding: 4px;
}

.header-user_dropdown li a {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    padding: var(--sp-4) var(--sp-8);
    transition: 0.3s;
}

.header-user_dropdown li a:hover {
    background-color: var(--Light_mode-Gray_Scale-95);
}

.header-user_dropdown li a i {
    transform: translateY(1px);
}

.header-user_dropdown.active {
    top: 50px;
    opacity: 1;
    pointer-events: visible;
}

.header_language {
    position: relative;
    display: inline-block;
}

.header_language__current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--Light-Primary-50);
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.header_language__current .fa {
    font-size: 14px;
}

.header_language__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: -22px;
    width: 140px;
    background: #3a3a3a;
    border-radius: 8px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 10;
}

.header_language:hover .header_language__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header_language__item {
    padding: 10px 16px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.header_language__item:hover {
    background: #505050;
}

@media (min-width: 992px) {
    .header-menu__infor .c-button-1 {
        display: none;
    }
}

@media (max-width: 1259px) {
    .header-link li {
        margin-left: 32px;
    }

    .header-frame {
        display: block;
    }

    .header-logo {
        margin-right: auto;
    }

    .header-link {
        display: none;
    }

    .header-menu {
        flex-direction: column;
        gap: var(--sp-32);
        padding: 0px var(--sp-16) 30px;
    }

    .header-menu__infor p {
        text-align: right;
    }

    .header-button a:last-child {
        /* display: none; */
    }

    .header-button .header-button-login {
        padding: var(--sp-8) var(--sp-16);
        font-size: var(--fs-14);
        font-weight: 400;
        color: #fff;
        border-radius: 100px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: var(--Gradient-1);
    }
}

@media (max-width: 991px) {
    header {
        border-top: 5px solid var(--Light-Primary-50);
    }

    .header-info {
        display: none;
    }
}

@media (max-width: 575px) {
    .header-toggle span {
        display: none;
    }

    .header-logo img {
        width: 52px;
    }

    .header-menu__right li a {
        margin-top: 12px;
        font-size: 18px;
    }

    .header-menu__right li a span {
        font-size: 24px;
    }

    .header-user_name h3 {
        font-size: 14px;
    }

    .header-user_thumb img {
        height: 35px;
        width: 35px;
    }

    .header-toggle__btn {
        width: 40px;
    }

    header.active .header-user_name h3 {
        color: #fff;
    }

    header.active .header-user_name p {
        color: #ffffff6e;
    }
}

.form-filter {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    border-radius: 1000px;
    background: #f5f7ff;
    padding: 4px;
    position: relative;
    z-index: 99;
    margin-top: var(--sp-32);
}

.form-filter.mrb {
    margin-bottom: 80px;
}

.form-filter .c-form-border {
    border: none;
}

.form-filter .form-box {
    margin-bottom: 0;
    width: calc(100% / 3 - 16px);
    position: relative;
    z-index: 9999999;
}

.form-filter .form-box:first-child,
.form-filter .form-box:nth-child(2) {
    border-right: 1px solid #091b5714;
}

.form-filter .form-box:last-child {
    width: 40%;
}

.form-filter__frame {
    display: flex;
    align-items: center;
    gap: var(--sp-16);
    border-radius: 100px;
    padding: 0px;
    width: 100%;
    padding-left: 12px;
}

.form-filter__frame::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    width: 82%;
    height: 90%;
    border-radius: 100px;
    background-color: #ffffff;
}

.form-filter form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-20);
}

.form-filter__button {
    width: 20%;
}

.select img {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

.select .ts-control {
    padding-left: 40px !important;
    background-color: transparent;
}

.focus .ts-control {
    background-color: #f7f7f7 !important;
    border-radius: 50px;
    box-shadow: none;
}

.ts-control .item {
    display: -webkit-box;
    white-space: nowrap;
}

.ts-control {
    flex-wrap: nowrap;
}

.form-filter button {
    width: 100%;
    background: #fff;
}

@media (max-width: 1260px) {
    .form-filter {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .form-filter__frame {
        flex-wrap: wrap;
        justify-content: space-between;
        padding-left: 0;
        padding: 6px;
    }

    .form-filter__frame::after {
        width: 98%;
        height: 97%;
        border-radius: 18px;
    }

    .form-filter .form-box {
        width: calc(100% / 2 - 16px) !important;
        border-right: none !important;
        z-index: unset;
    }

    .form-filter button {
        padding: 0;
        width: 100%;
        justify-content: center;
        position: relative;
        z-index: 1;
        transform: translateY(-4px);
    }

    .form-filter {
        border-radius: 18px;
    }

    .form-filter .form-box:last-child {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .form-filter .form-box {
        width: 100% !important;
    }
}

@media (max-width: 575px) {
    .form-filter.mrb {
        margin-bottom: 40px;
    }
}

.headline {
    text-align: center;
    margin-bottom: var(--sp-48);
    position: relative;
}

.headline .title {
    font-size: var(--fs-48);
    color: var(--Light-Primary-50);
    margin-bottom: var(--sp-16);
}

.headline .sub-title {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--Light-Primary-50);
    background-color: #f3f5fb;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: var(--sp-32) 0;
    color: var(--Light-Primary-50);
    gap: 8px;
}

.headline .sub-title i {
    color: var(--Light-Primary-50);
}

.headline .sub-title span {
    background: var(--Gradient, linear-gradient(180deg, #0071e3 0%, #1235ae 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.headline p {
    font-size: 18px;
    width: 55%;
    margin: 0 auto;
    line-height: var(--line-height-24);
    color: var(--Light-Primary-20);
}

@media (max-width: 767px) {
    .headline p {
        width: 100%;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .headline {
        margin-bottom: 24px;
    }

    .headline .title {
        font-size: 32px;
    }

    .headline .sub-title {
        font-size: 12px;
    }
}

.headline-2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
    align-items: center;
}

.headline-2 h2 {
    font-size: var(--fs-48);
    font-weight: 700;
    color: var(--Light-Primary-50);
}

.headline-2 a {
    border-radius: 100px;
    border: 1px solid var(--Light-Primary-20);
    display: flex;
    padding: 12px 24px 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.headline-2 a:hover {
    background: var(--Light-Primary-50);
    color: #fff;
}

@media (max-width: 991px) {
    .headline-2 h2 {
        font-size: 32px;
    }

    .headline-2 {
        margin-bottom: 32px;
    }

    .headline-2 a {
        display: none;
    }
}

.btn-1 {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 14px 58px 15px 17px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    transition: 0.3s ease;
    color: #333;
    border-radius: 100px;
    border: 1px solid #ddd;
}

/*  primary */
.btn-1--primary {
    border: 3px solid var(--Light-Primary-60, #00aa80);
    background: var(--GD, linear-gradient(251deg, #e5f9f4 0.08%, #00aa80 50%, #015a62 99.91%));
}

/*  secondary */
.btn-1--secondary {
    border: 3px solid #345b69;
    background: #013244;
}

/* Text */
.btn-1__text {
    position: relative;
    z-index: 2;
}

.btn-1__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 8px;
    color: #fff;
    z-index: 99;
    transition: 0.3s;
    background: var(--Light-Primary-50);
}

.btn-1--secondary .btn-1__icon-wrap {
    color: #013244;
}

.btn-1__icon {
    position: relative;
}

.btn-1:hover .btn-1__icon-wrap {
    width: 92%;
}

@media (max-width: 768px) {
    .btn-1 {
        font-size: 14px;
        padding: 12px 54px 12px 16px;
    }

    .btn-1__icon-wrap {
        width: 34px;
        height: 34px;
    }
}

.c-button-1 {
    color: var(--Light-Primary-50);
    transition:
        color 0.1s ease-in-out,
        background-color 1s ease-in-out;
    padding: 0 54px 0 24px;
    display: inline-block;
    line-height: 42px;
    position: relative;
    border-radius: 30px;
    font-weight: 700;
    z-index: 1;
    font-size: 14px;
    border: 2px solid #863b004a;
    transition: 0.2s all ease-in-out;
    background-color: var(--Light-Primary-20);
    box-shadow: 2px 4px 0px var(--Light-Primary-50);
}

.c-button-1::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 32px;
    height: 32px;
    top: 4px;
    right: 6px;
    display: block;
    border-radius: 27px;
    background-color: #ffffff;
    transition: 0.2s all ease-in-out;
}

.c-button-1:hover::before {
    width: calc(100% - 17px);
    height: calc(100% + 2px);
    padding-right: 19px;
    right: -1px;
    top: -1px;
    line-height: 50px;
}

.c-button-1:hover {
    color: var(--Light-Primary-50);
}

.c-button-1 span {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 4px;
    right: 6px;
    display: block;
    border-radius: 40px;
    text-align: center;
    line-height: 30px;
    color: var(--Light-Primary-50);
}

.c-form-border {
    transition: border-color 0.3s ease-in-out;
    background: var(--Light_mode-Gray_Scale-100);
    cursor: pointer;
    border-radius: 50px;
    border: 1px solid var(--Light_mode-Gray_Scale-70);
}

.c-form-border .c_input {
    padding: 14px 20px;
    transition: 0.5s;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 300;
    border-radius: 50px;
}

.c-form-border .c_input:disabled {
    background: var(--Light_mode-Gray_Scale-90);
}

.c-form-border .c_input:focus {
    outline: none;
    border-color: var(--Light-Primary-50);
}

.c-form-border--icon .c_input {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 1%;
    z-index: 2;
}

.c-form-border--label .c_label {
    color: #999;
    background-color: #fff;
    pointer-events: none;
    padding: 0 0.358em 0 0.358em;
    z-index: 9;
    position: absolute;
    top: 0.572em;
    left: 0.715em;
    transition: 0.5s;
}

.c-form-border--label:not(.is-empty) .c_label,
.c-form-border--label.is-focused .c_label {
    font-size: 0.786em;
    color: var(--Light-Primary-50);
    position: absolute;
    top: -0.727em;
}

.c-form-border.is-focused {
    border-color: var(--Light-Primary-50);
    background: var(--Light_mode-Gray_Scale-100);
    box-shadow: 0px 0px 2px 0px #52b8ff;
}

.c-form-border.is-error {
    margin-bottom: 1.786em;
    box-shadow: 0 0 2px 0 #eb2813;
    border-color: #eb2813;
    background-color: #fef4f3;
}

.c-form-editor.is-error {
    border-radius: 20px 20px 40px 40px;
}

.c-form-border.is-error .c_label {
    color: #f55145 !important;
}

.c-form-border.is-error .c_icon+.c_error {
    left: 0.143em;
    text-align: left;
}

.c-form-border.is-error .c_icon+.c_error>span {
    left: 0;
    margin: 0;
}

.c-form-border textarea.c_input+.c_error span {
    position: absolute;
    width: max-content;
    right: 0;
    top: calc(100% + 1px);
}

.c-form-border i {
    z-index: 9;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--Light_mode-Gray_Scale-70);
    cursor: pointer;
}

.c-form-border .ts-control {
    border: none !important;
    padding: 10px var(--sp-12) !important;
}

.c-form-border .ts-control input::placeholder {
    color: #999;
}

.c-form-border .multi .ts-control::after {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 20px;
}

.c-form-border .ts-control .remove {
    padding: 0 5px 5px 5px !important;
}

.form-box {
    margin-bottom: var(--sp-24);
}

.form-box label {
    margin-bottom: var(--sp-8);
    display: block;
    font-weight: 500;
    font-size: 16px;
}

.form-box label>span {
    color: #eb2813;
}

.form-box .form-error {
    color: #eb2813;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 300;
}

.form-box .form-back {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: #f7f7f7;
    padding: 11px;
    border-radius: 32px;
}

.form-role {
    display: flex;
    gap: var(--sp-32);
}

.form-button {
    margin-top: var(--sp-32);
}

textarea {
    border-radius: var(--radius-8);
    border: none;
    display: block;
    padding: var(--sp-16);
    width: 100%;
    outline: none;
    transition: 0.5s;
}

textarea:focus {
    border-color: var(--Light-Primary-50);
    background: var(--Light_mode-Gray_Scale-100);
    box-shadow: 0px 0px 2px 0px #52b8ff;
}

/* BEGIN c-radio */
.c-radio {
    display: block;
    line-height: 1;
    margin: 0.715em 0 0.715em 0;
    position: relative;
    z-index: 2;
}

.c-radio label {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    color: #666666;
    position: relative;
}

.c-radio label>span:not(.c_tick) {
    font-size: 1em;
    line-height: 1.42857143;
}

.c-radio label:hover {
    color: var(--Light-Primary-50);
}

.c-radio .c_tick {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border: 1px solid #666666;
    border-radius: 100%;
    margin: 0 0.358em 0.072em 0;
    width: 1.072em;
    height: 1.072em;
}

.c-radio .c_tick::before {
    content: "";
    display: block;
    border-radius: 100%;
    background-color: var(--Light-Primary-50);
    width: 1.072em;
    height: 1.072em;
    -webkit-transform: scale3d(0, 0, 0);
    -moz-transform: scale3d(0, 0, 0);
    -o-transform: scale3d(0, 0, 0);
    -ms-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.c-radio input[type="radio"] {
    overflow: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.c-radio input[type="radio"]:checked~.c_tick {
    border-color: var(--Light-Primary-50);
    opacity: 1;
}

.c-radio input[type="radio"]:checked~.c_tick::before {
    opacity: inherit;
}

.c-radio input[type="radio"]:checked+.c_tick::before {
    -webkit-transform: scale3d(0.65, 0.65, 1);
    -moz-transform: scale3d(0.65, 0.65, 1);
    -o-transform: scale3d(0.65, 0.65, 1);
    -ms-transform: scale3d(0.65, 0.65, 1);
    transform: scale3d(0.65, 0.65, 1);
}

.c-radio input[type="radio"][disabled]~.c_tick {
    border-color: #000;
    opacity: 0.26;
}

.c-radio input[type="radio"][disabled]~.c_tick::before {
    opacity: inherit;
}

/* END c-radio */

.s-form-1 {
    background-size: cover;
    padding: 176px 0 64px;
}

.s-form-1 .s_content {
    padding-right: 50px;
}

.s-form-1 .s_content h3 {
    font-size: 24px;
    color: var(--Light-Primary-50);
    font-weight: 500;
    border-left: 5px solid var(--Light-Primary-50);
    padding-left: 10px;
}

.s-form-1 .s_content h2 {
    font-size: 33px;
    font-weight: bold;
    color: var(--Light-Primary-50);
    font-family: var(--font-secondary);
    margin-top: 5px;
}

.s-form-1 .s_content p {
    font-size: 17px;
    margin-top: 15px;
    margin-bottom: 54px;
    font-weight: 300;
}

.s-form-1 .s_form {
    background-color: var(--Light-Primary-95);
    padding: 60px 50px 40px 50px;
    position: relative;
    z-index: 1;
    box-shadow: 2px 2px 79px #ffcca452;
    border-radius: 30px;
    margin-left: 50px;
}

.s-form-1 .s_form::after {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    right: -20px;
    bottom: -20px;
    content: "";
    position: absolute;
    z-index: -1;
    background: url(../img/bgs/bg-vango.jpg);
    background-size: contain;
}

.s-form-1 .s_form .plane {
    position: absolute;
    left: -153px;
    top: -125px;
}

.s-form-1 .s_form .title {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 36px;
}

.s-form-1 .s_form .form-button {
    text-align: right;
}

.s-form-1 .s_form .form-button button {
    background-color: #ffffff;
    color: var(--Light-Primary-50);
    font-weight: bold;
    font-size: 18px;
    border-radius: 30px;
}

.s-form-1 .s_form .c-form-border {
    background-color: transparent;
    border: 2px solid #fff;
}

.s-form-1 .s_form .c-form-border .c_input {
    font-weight: 600;
    background: #ffffff38;
}

.s-form-1 .s_form .c-form-border .c_input:focus {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: #fff;
    color: #333;
}

.s-form-1 .c-form .c_error,
.s-form-1 .c-form-border .c_error {
    top: -18%;
    font-weight: 600;
    z-index: 999;
}

.s-form-1 .form-box label {
    color: #fff;
}

.s-form-1 .c-checkbox .c_tick .check {
    width: 1.472em;
    height: 1.472em;
    border: 1px solid #ffffff;
}

.s-form-1 .c-checkbox>label {
    color: #fff;
}

#policy .c-modal-box {
    max-width: 600px;
}

@media screen and (max-width: 991px) {
    .s-form-1 {
        padding: 35px 0 60px;
        border-top: 1px solid #eee;
    }

    .s-form-1 .s_content img {
        display: none;
    }

    .s-form-1 .s_form .plane {
        display: none;
    }

    .s-form-1 .s_form {
        margin-left: 0;
        margin-top: 25px;
    }

    .s-form-1 .s_content h2 {
        font-size: 25px;
    }

    .s-form-1 .s_content h3 {
        font-size: 25px;
    }

    .s-footer-7 {
        border-radius: 0;
    }

    .s-footer-7 .ft-rotage {
        display: none;
    }

    .s-form-1 .s_form {
        padding: 45px 25px 30px 25px;
    }

    .s-form-1 .s_form::after {
        right: 0;
    }
}

@media screen and (max-width: 575px) {
    .s-form-1 .s_content p {
        font-size: 15px;
    }
}

.noti {
    position: fixed;
    top: 20px;
    right: -100px;
    z-index: 9999;
    width: 280px;
    transition: 0.5s;
    border-radius: var(--radius-8);
    padding: var(--sp-16);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.noti.active {
    right: 20px;
    pointer-events: visible;
}

.noti.success {
    border: 1px solid var(--Light-Seventh-50);
    background: var(--Light-Seventh-95, linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%));
}

.noti_top {
    display: flex;
    align-items: center;
    margin-bottom: var(--sp-8);
    gap: var(--sp-8);
}

.noti_top i:first-child {
    color: var(--Light-Seventh-50);
    font-size: var(--fs-20);
}

.noti h3 {
    color: var(--Light-Seventh-50);
    font-weight: 600;
    font-size: var(--fs-14);
}

.noti p {
    color: var(--Light_mode-Gray_Scale-40);
    font-size: var(--fs-12);
    line-height: var(--line-height-16);
    letter-spacing: var(--letter-spacing-12);
    margin-bottom: 0;
}

.noti.active {
    right: 20px;
    opacity: 1;
}

.s-headline-1 {
    text-align: center;
    margin: 45px 0;
}

.s-headline-1 .s_sub {
    color: var(--Light-Primary-50);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}

.s-headline-1 .s_title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 8px;
}

@media (max-width: 575px) {
    .headline-01__title {
        font-size: 32px;
    }
}

.footer {
    background-color: var(--Light-Secondary-50);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0 0;
    position: relative;
    z-index: 10;
    margin-top: 48px;
}

.footer__top-shape {
    z-index: 2;
    position: absolute;
    top: -22px;
    left: 0;
    width: 100%;
    height: 23px;
    background-color: var(--Light-Secondary-50);
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 23"><path d="M1920 22.0088L1920 0.00878906C1880 0.00878906 1880 22.0088 1839.99 22.0088C1799.99 22.0088 1799.99 0.00878906 1759.98 0.00878906C1719.98 0.00878906 1719.98 22.0088 1679.98 22.0088C1639.98 22.0088 1639.98 0.00878906 1599.98 0.00878906C1559.98 0.00878906 1559.98 22.0088 1519.98 22.0088C1479.98 22.0088 1479.98 0.00878906 1439.98 0.00878906C1399.98 0.00878906 1399.98 22.0088 1359.98 22.0088C1319.98 22.0088 1319.98 0.00878906 1279.98 0.00878906C1239.98 0.00878906 1239.98 22.0088 1199.98 22.0088C1159.98 22.0088 1159.98 0.00878906 1119.98 0.00878906C1079.98 0.00878906 1079.98 22.0088 1039.98 22.0088C999.98 22.0088 999.98 0.00878906 959.99 0.00878906C919.99 0.00878906 919.99 22.0088 879.99 22.0088C839.99 22.0088 839.99 0.00878906 799.99 0.00878906C759.99 0.00878906 759.99 22.0088 719.99 22.0088C679.99 22.0088 679.99 0.00878906 639.99 0.00878906C599.99 0.00878906 599.99 22.0088 559.99 22.0088C519.99 22.0088 519.99 0.00878906 479.99 0.00878906C439.99 0.00878906 439.99 22.0088 399.99 22.0088C359.99 22.0088 359.99 0.00878906 319.99 0.00878906C279.99 0.00878906 279.99 22.0088 239.99 22.0088C200 22.0088 200 0.00878906 160 0.00878906C120 0.00878906 120 22.0088 80 22.0088C40 22.0088 40 0.00878906 0 0.00878906L-1.32845e-08 22.0088L1920 22.0088Z"/></svg>');
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: cover;
}

.footer-wrapper {
    padding-bottom: 40px;
}

.footer-logo img {
    width: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.footer-social .fa-facebook {
    background-color: #3b5998;
}

.footer-social .fa-twitter {
    background-color: #000;
}

.footer-social .fa-youtube-play {
    background-color: #ff0000;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
    color: #fff;
}

.footer-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background-color: var(--Light-Primary-20);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a i {
    font-size: 12px;
    color: var(--Light-Primary-20);
}

.footer-links li a:hover {
    color: var(--Light-Primary-20);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact-item i {
    font-size: 20px;
    color: #fff;
    margin-top: 2px;
}

.contact-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--Light-Primary-95);
}

.contact-info .phone-number {
    font-size: 24px;
    font-weight: 700;
    margin: 5px 0;
    color: var(--Light-Primary-95);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 20px;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #fff;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--Light-Primary-20);
}

@media (max-width: 991px) {
    .footer-wrapper .row>div {
        margin-bottom: 40px;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 20px;
    }
}

/* =========================================
           FLOATING SIDEBAR (Fixed Component)
           ========================================= */
.floating-sidebar {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-item {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
}

.float-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.float-item.is-phone {
    border: 2px solid var(--Light-Secondary-50);
}

.float-item.is-zalo {
    border: 2px solid #0068ff;
}

.float-item.is-mes {
    border: 2px solid #0084ff;
}

.float-item.is-top {
    background: var(--Light-Primary-50);
    border: 2px solid var(--Light-Primary-50);
}

.float-item.is-top img {
    filter: brightness(0) invert(1);
    width: 20px;
}

.float-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.float-tooltip::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

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

.float-item:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 991px) {
    .footer-logo {
        margin-bottom: 20px;
    }

    .floating-sidebar {
        right: 10px;
        bottom: 80px;
        gap: 10px;
    }

    .float-item {
        width: 45px;
        height: 45px;
    }

    .float-tooltip {
        display: none;
    }
}

.page-banner {
    position: relative;
    background: var(--Light-Secondary-50);
    padding: 75px 20px 80px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url("../img/bgs/bg-header.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120%;
    filter: sepia(1);
    z-index: -2;
    background-size: cover;
}

.page-banner::after {
    content: "";
    position: absolute;
    bottom: -1px;

    left: 0;
    width: 50%;
    height: 100px;
    background-image: url("../img/bgs/bg-1.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}

.page-banner__bot-shape {
    z-index: 2;
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 23px;
    background-color: var(--Light-Secondary-50);
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 23"><path d="M1920 22.0088L1920 0.00878906C1880 0.00878906 1880 22.0088 1839.99 22.0088C1799.99 22.0088 1799.99 0.00878906 1759.98 0.00878906C1719.98 0.00878906 1719.98 22.0088 1679.98 22.0088C1639.98 22.0088 1639.98 0.00878906 1599.98 0.00878906C1559.98 0.00878906 1559.98 22.0088 1519.98 22.0088C1479.98 22.0088 1479.98 0.00878906 1439.98 0.00878906C1399.98 0.00878906 1399.98 22.0088 1359.98 22.0088C1319.98 22.0088 1319.98 0.00878906 1279.98 0.00878906C1239.98 0.00878906 1239.98 22.0088 1199.98 22.0088C1159.98 22.0088 1159.98 0.00878906 1119.98 0.00878906C1079.98 0.00878906 1079.98 22.0088 1039.98 22.0088C999.98 22.0088 999.98 0.00878906 959.99 0.00878906C919.99 0.00878906 919.99 22.0088 879.99 22.0088C839.99 22.0088 839.99 0.00878906 799.99 0.00878906C759.99 0.00878906 759.99 22.0088 719.99 22.0088C679.99 22.0088 679.99 0.00878906 639.99 0.00878906C599.99 0.00878906 599.99 22.0088 559.99 22.0088C519.99 22.0088 519.99 0.00878906 479.99 0.00878906C439.99 0.00878906 439.99 22.0088 399.99 22.0088C359.99 22.0088 359.99 0.00878906 319.99 0.00878906C279.99 0.00878906 279.99 22.0088 239.99 22.0088C200 22.0088 200 0.00878906 160 0.00878906C120 0.00878906 120 22.0088 80 22.0088C40 22.0088 40 0.00878906 0 0.00878906L-1.32845e-08 22.0088L1920 22.0088Z"/></svg>');
    mask-repeat: no-repeat;
    mask-position: center center;
    transform: rotate(180deg);
    mask-size: cover;
}

/*  dung Banner */
.banner-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
}

.banner-headline {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
    color: var(--Light-Primary-20);
}

.banner-breadcrumb {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    color: #fff;
}

.banner-breadcrumb span {
    margin: 0 8px;
    font-size: 14px;
}

.banner-breadcrumb a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.banner-breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Mobile */
@media (max-width: 991px) {
    .page-banner {
        margin-bottom: 40px;
    }

    .banner-headline {
        font-size: 2rem;
    }

    /*    cao shape  mobile cho   */
    .page-banner::after {
        height: 60px;
    }
}

/* --- ABOUT US SECTION STYLES --- */
.about {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.about__image-column {
    position: relative;
}

.about__blob-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background-color: var(--Light-Tertiary-50);
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    top: -10%;
    left: -10%;
    opacity: 0.15;
    z-index: 1;
    animation: blob-morph 15s ease-in-out infinite alternate;
}

@keyframes blob-morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }

    33% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }

    66% {
        border-radius: 30% 70% 70% 30% / 60% 40% 60% 40%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }
}

.about__image-wrapper {
    position: relative;
    z-index: 2;
}

.about__main-image {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.about__experience {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: var(--Light-Primary-50);
    /* Dark blue badge */
    color: #fff;
    padding: 25px;
    border-radius: 50% 50% 50% 10%;
    text-align: center;
    z-index: 3;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 8px solid #fff;
}

.about__experience-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.about__experience-text {
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
}

.about__decor {
    position: absolute;
    z-index: 3;
}

.about__decor--sun {
    width: 100px;
    bottom: 20%;
    left: -40px;
    animation: rotate 12s linear infinite;
}

.about__decor--bulb {
    width: 60px;
    top: 5%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.about__content-column {
    padding-left: 30px;
}

.about__badge {
    background-color: var(--Light-Secondary-50);
    /* Purple badge */
    color: var(--Light-Primary-20);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.about__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--Light-Primary-10);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about__title span {
    color: var(--Light-Secondary-50);
    position: relative;
}

.about__title span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--Light-Tertiary-50);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.about__desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--Light_mode-Gray_Scale-10);
    margin-bottom: 35px;
}

.about__features {
    margin-bottom: 40px;
}

.about__feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    /* font-weight: 600; */
    font-size: 16px;
}

.about__feature-item i {
    color: var(--Light-Secondary-50);
    font-size: 20px;
}

@media (max-width: 991px) {
    .about {
        padding: 60px 0;
    }

    .about__image-column {
        padding-right: 0;
        margin-bottom: 80px;
    }

    .about__content-column {
        padding-left: 0;
        text-align: center;
    }

    .about__title {
        font-size: 32px;
    }

    .about__features {
        text-align: left;
    }
}

.testimonial-card {
    background: #fff;
    border: 2px solid #333d47;
    border-radius: 40px 120px 40px 120px / 120px 40px 120px 40px;
    /* Irregular shape */
    padding: 50px 30px 30px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    margin-top: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card__avatar {
    position: absolute;
    top: -25px;
    left: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__stars {
    color: #f39c12;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #4d4d4d;
    margin-bottom: 30px;
    font-style: italic;
    min-height: 4.8em;
}

.testimonial-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    border-top: 1px dashed #e6e6e6;
}

.testimonial-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-card__role {
    font-size: 14px;
    color: #808080;
}

.testimonial-card__quote {
    color: var(--Light-Primary-50);
    font-size: 32px;
    opacity: 0.8;
}

/* --- CUTE CLOUD SCHEDULE STYLES --- */
.schedule {
    padding: 48px 0;
    background: linear-gradient(180deg, #fff 0%, #fef6f0 100%);
    position: relative;
    margin-bottom: 52px;
}

.schedule__bot-shape {
    z-index: 2;
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 23px;
    background-color: #fef6f0;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 23"><path d="M1920 22.0088L1920 0.00878906C1880 0.00878906 1880 22.0088 1839.99 22.0088C1799.99 22.0088 1799.99 0.00878906 1759.98 0.00878906C1719.98 0.00878906 1719.98 22.0088 1679.98 22.0088C1639.98 22.0088 1639.98 0.00878906 1599.98 0.00878906C1559.98 0.00878906 1559.98 22.0088 1519.98 22.0088C1479.98 22.0088 1479.98 0.00878906 1439.98 0.00878906C1399.98 0.00878906 1399.98 22.0088 1359.98 22.0088C1319.98 22.0088 1319.98 0.00878906 1279.98 0.00878906C1239.98 0.00878906 1239.98 22.0088 1199.98 22.0088C1159.98 22.0088 1159.98 0.00878906 1119.98 0.00878906C1079.98 0.00878906 1079.98 22.0088 1039.98 22.0088C999.98 22.0088 999.98 0.00878906 959.99 0.00878906C919.99 0.00878906 919.99 22.0088 879.99 22.0088C839.99 22.0088 839.99 0.00878906 799.99 0.00878906C759.99 0.00878906 759.99 22.0088 719.99 22.0088C679.99 22.0088 679.99 0.00878906 639.99 0.00878906C599.99 0.00878906 599.99 22.0088 559.99 22.0088C519.99 22.0088 519.99 0.00878906 479.99 0.00878906C439.99 0.00878906 439.99 22.0088 399.99 22.0088C359.99 22.0088 359.99 0.00878906 319.99 0.00878906C279.99 0.00878906 279.99 22.0088 239.99 22.0088C200 22.0088 200 0.00878906 160 0.00878906C120 0.00878906 120 22.0088 80 22.0088C40 22.0088 40 0.00878906 0 0.00878906L-1.32845e-08 22.0088L1920 22.0088Z"/></svg>');
    mask-repeat: no-repeat;
    mask-position: center center;
    transform: rotate(180deg);
    mask-size: cover;
}

.schedule-cloud-wrapper {
    position: relative;
    padding: 80px 0;
    z-index: 2;
}

/* Cloud Container Base */
.cloud-container {
    background: #fff;
    border: 3px solid #fff;
    border-radius: 100px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Creating cloud ripples using pseudo-elements */
.cloud-container::before,
.cloud-container::after {
    content: "";
    position: absolute;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
}

/* Left Ripple */
.cloud-container::before {
    width: 150px;
    height: 150px;
    top: -50px;
    left: 20%;
}

/* Right Ripple */
.cloud-container::after {
    width: 180px;
    height: 180px;
    top: -60px;
    right: 15%;
}

.cloud-container--mint {
    background: var(--Light-Primary-95);
}

.cloud-container--blue {
    background: var(--Light-Secondary-50);
}

.cloud-header {
    text-align: center;
    margin-bottom: 30px;
}

.cloud-title {
    font-size: 31px;
    font-weight: 800;
    font-family: var(--font-secondary);
    display: block;
}

.cloud-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.text--orange {
    color: #f76707;
}

.text--blue {
    color: var(--Light-Primary-20);
}

/* Time Capsule Styling */
.time-capsule {
    background: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
}

.time-capsule:hover {
    transform: scale(1.05);
    border-color: var(--Light-Primary-50);
}

.time-capsule i {
    width: 35px;
    height: 35px;
    background: #f1f3f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    font-size: 16px;
    border: 2px solid #dee2e6;
}

.time-capsule span {
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.session-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
}

/* Stickers Styling */
.sticker {
    position: absolute;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.sticker--parachute {
    top: 20px;
    right: 10%;
    width: 70px;
}

.sticker--butterfly {
    bottom: 50px;
    left: 10%;
    width: 50px;
    animation-delay: 1s;
}

.sticker--pencil-left {
    top: 50%;
    left: -30px;
    width: 60px;
    transform: translateY(-50%) rotate(-15deg);
}

.sticker--pencil-right {
    top: 20%;
    right: -20px;
    width: 80px;
    transform: rotate(15deg);
    animation-delay: 2s;
}

@media (max-width: 991px) {
    .cloud-container {
        margin-bottom: 80px;
        min-height: auto;
    }

    .schedule-cloud-wrapper {
        padding: 40px 0;
    }

    .sticker--pencil-left,
    .sticker--pencil-right {
        display: none;
    }
}

@media (max-width: 767px) {
    .cloud-title {
        font-size: 28px;
    }

    .time-capsule span {
        font-size: 14px;
    }
}