#ctechRegisterPopup .rp-card {
    position: relative;
    background: linear-gradient(180deg, #ff5c28 0%, #ff9348 55%, #ffe9c2 100%);
    border-radius: 20px;
    padding: 28px 36px;
    border: 2px solid #d94a1f;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    width: 100%;
    max-width: 420px;
}

#ctechRegisterPopup .rp-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

#ctechRegisterPopup .rp-close:hover {
    opacity: 1;
}

#ctechRegisterPopup .rp-title {
    margin: 0 0 18px;
    text-align: center;
    color: #fff;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-family: "Be Vietnam Pro", sans-serif;
}

#ctechRegisterPopup .rp-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#ctechRegisterPopup .rp-form input,
#ctechRegisterPopup .rp-form select {
    box-sizing: border-box;
    width: 100%;
    height: 42px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    background: #fff;
    font-family: "Be Vietnam Pro", sans-serif;
}

#ctechRegisterPopup .rp-form input::placeholder {
    color: #111;
    opacity: 1;
}

#ctechRegisterPopup .rp-form button[type='submit'] {
    margin-top: 4px;
    border: none;
    height: 46px;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff6b3 0%, #f3ba6a 45%, #e85a2e 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 0 rgba(180, 60, 20, 0.35);
    cursor: pointer;
    font-family: "Be Vietnam Pro", sans-serif;
}

#ctechRegisterPopup .rp-form button[type='submit']:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#ctechRegisterPopup .select2-container {
    width: 100% !important;
}

#ctechRegisterPopup .select2-container .select2-selection--single {
    height: 42px !important;
    border: 1px solid #e8e8e8;
    border-radius: 0;
}

#ctechRegisterPopup .select2-container .select2-selection__rendered {
    height: 42px;
    line-height: 42px;
    padding: 0 34px 0 12px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
}

#ctechRegisterPopup .select2-container .select2-selection__placeholder {
    color: #111;
}

#ctechRegisterPopup .select2-container .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 480px) {
    #ctechRegisterPopup .rp-card {
        border-radius: 16px;
        padding: 22px 20px;
        max-width: 100%;
        margin: 0 12px;
    }
}

/* ========== PROGRAMS SECTION ========== */
.programs-section {
    background: linear-gradient(180deg, #092D99 0%, #092D99 50%, #092D99 100%);
    padding: 80px 0;
    margin-top: -8px;
}

.programs-title {
    text-align: center;
    font-size: 54px;
    font-weight: 900;
    color: white;
    margin-bottom: 50px;
    line-height: 1.3;
}

.programs-title span {
    color: #ffb84d;
}

.program-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px 10px;
    margin-bottom: 48px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: #ffffff4d;
    color: white;
    padding: 14px 12px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0px 9.48px 11.85px -7.11px #0000001a,
        0px 23.7px 29.63px -5.93px #0000001a;
    border: 1px solid #ffffff4d;
    height: fit-content;
}

.tab-btn.active {
    padding: 18px 22px;
    font-size: 20px;
    background: #F65400;
    border-color: #fff;
}

.program-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9) 0%,
            #ffffff 100%);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0px 25px 50px -12px #00000040;
    padding: 32px;
    display: none;
}

.tab-content.active {
    display: grid;
}

.program-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-info {
    padding: 16px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-info h4 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 900;
    color: #f26f21;
    margin-bottom: 20px;
}

.program-info>p {
    font-size: 18px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.program-list {
    margin-bottom: 18px;
    flex: 1;
}

.program-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px dashed #fdaa1c;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
}

.program-item span:first-child {
    font-size: 18px;
    color: #000;
    transition: all 0.2s ease;
}

.program-item span:last-child {
    width: 22px;
    height: 22px;
    color: #000;
    border: 1.5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.program-item:hover span:first-child {
    font-weight: 700;
}

.program-item:hover span:last-child,
.program-item.active span:last-child {
    border-color: #f26f21;
    transform: scale(1.3);
    color: v#f26f21;
}

.btn-register-program {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f26f21;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
    margin-left: auto;
    width: fit-content;
    text-transform: uppercase;
    line-height: 1.2;
}

.btn-register-program i {
    font-size: 16px;
}

/* ========== CAREERS SECTION ========== */
.careers-section {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg,
            rgba(255, 247, 237, 0.5) 0%,
            #ffffff 50%,
            rgba(239, 246, 255, 0.5) 100%);
}

.careers-title {
    margin-bottom: 20px;
}

.section-subtitle {
    margin-bottom: 24px;
}

.careers-slider {
    padding: 0px 30px 50px !important;
}

.career-card {
    background: #ffffffcc;
    border: 1px solid #ffffff66;
    box-shadow: 0px 0px 10px -7px #00000090;
    border-radius: 16px;
    overflow: hidden;
    height: auto !important;
    display: flex !important;
    flex-direction: column;
}

.career-image {
    position: relative;
    height: 200px;
    width: 100%;
}

.career-image img {
    width: 100%;
    height: 100%;
}

.career-content {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.careers-main {
    position: relative;
}

.careers-btn-swiper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.swiper-button-prev,
.swiper-button-next {
    width: 48px !important;
    height: 48px !important;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid #f9f9f9;
    display: flex !important;
    box-shadow: 0px 8px 10px -6px #0000001a, 0px 20px 25px -5px #0000001a;
    transition: all 0.3s ease;
}

.swiper-button-prev {
    left: -35px !important;
}

.swiper-button-next {
    right: -35px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #f26f21;
    color: #fff;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: #fff;
}

.swiper-pagination span {
    width: 42px;
    height: 6px;
    border-radius: 3px;
    background: #ffe4c8;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #f26f21 !important;
    opacity: 1;
}

.career-content h4 {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(269.78deg, #00a3ff 0.19%, #f37021 76.76%),
        linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.career-content ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.career-content ul li {
    font-size: 12px;
    color: #333;
    gap: 8px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
}

.career-content ul li::before {
    content: "";
    background-image: url("./images/icon-star.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    display: block;
    flex-shrink: 0;
}

.career-link {
    color: #F65400;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    justify-content: flex-end;
    width: fit-content;
    text-decoration: underline;
    padding: 8px 0px;
    margin-left: auto;
    margin-right: 4px;
}

.career-link:hover {
    text-decoration: underline;
}

.center-btn {
    background: linear-gradient(180deg, #f37021 0%, #F65400 100%);
    margin: 30px auto 0px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: white;
    font-weight: 700;
    padding: 20px 24px;
    border-radius: 50px;
    line-height: 1.2;
}

.center-btn i {
    font-size: 14px;
}


/* Hiệu ứng Fade-in cho nội dung tab */
@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-content.tab-content {
    display: none;
    /* Ẩn mặc định */
}

.program-content.tab-content.active {
    display: grid;
    /* Hoặc display hiện tại của bạn */
    animation: tabFadeIn 0.6s ease-out forwards;
}

/* Tối ưu cho thanh tiêu đề cuộn ngang */
.program-tabs {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    /* Cuộn mượt trên mobile */
    gap: 10px;
    padding-bottom: 10px;
}

/* Ẩn thanh cuộn để giao diện đẹp hơn */
.program-tabs::-webkit-scrollbar {
    display: none;
}

button.tab-btn {
    transition: all 0.3s ease;
}


.admissions-why {
    text-align: center;
    padding: 100px 0px;
    position: relative;
}

.admissions-why::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(246, 251, 255, 0.8);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.admissions-why::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("images/admissions-why.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.admissions-why-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.admissions-why-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 2.41px 4.81px -2.41px rgba(10, 13, 18, 0.06),
        0px 4.81px 9.63px -2.41px rgba(10, 13, 18, 0.1);
    display: flex;
    flex-direction: column;
}

.admissions-why-item>span {
    max-height: 170px;
    overflow: hidden;
    display: block;
    height: 100%;
}

.admissions-why-item>span>img {
    height: 100%;
    width: 100%;
}

.admissions-why-item>div {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 36px 16px;
    margin-top: -36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.admissions-why-item>div>span {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -31px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 159, 90, 1);
    font-family: "Inter", sans-serif;
    font-size: 30px;
    color: white;
    font-weight: 900;
    letter-spacing: 1px;
}

.admissions-why-item>div h3 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(34, 34, 34, 1);
    margin-bottom: 14px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.admissions-why-item>div p {
    font-family: "Inter", sans-serif;
    color: rgba(102, 102, 102, 1);
}

.admissions-why-item:nth-child(1)>div>span {
    background-color: rgba(255, 159, 90, 1);
}

.admissions-why-item:nth-child(2)>div>span {
    background-color: rgba(0, 163, 255, 1);
}

.admissions-why-item:nth-child(3)>div>span {
    background-color: rgba(255, 159, 90, 1);
}

.admissions-why-item:nth-child(4)>div>span {
    background-color: rgba(92, 179, 255, 1);
}

.admissions-why-item:nth-child(5)>div>span {
    background-color: rgba(255, 159, 90, 1);
}

.admissions-form {
    padding: 60px 0px;
}

.admissions-form-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.admissions-form-video {
    position: relative;
}

.admissions-form-video iframe {
    aspect-ratio: 16/9;
    max-height: 365px;
    border-radius: 24px;
}

.admissions-form-video::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 24px;
    background-color: rgba(254, 242, 234, 1);
    z-index: -1;
}

.admissions-form-video::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -20%;
    width: 435px;
    height: 320px;
    border-radius: 24px;
    background-color: rgba(242, 247, 252, 1);
    z-index: -1;
}

.admissions-form-content {
    padding: 48px;
}

.admissions-form-content h2 {
    text-align: center;
}

.admissions-form-content .section-badge {
    margin-bottom: 10px;
}

.admissions-form-content form {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.admissions-form-content form .form-group:nth-child(1),
.admissions-form-content form .form-group:nth-child(6) {
    grid-column: span 2;
}

.admissions-form-content form label {
    color: rgba(65, 70, 81, 1);
}

.admissions-form-content form button {
    width: 100%;
    background: linear-gradient(180deg, #f37021 0%, #F65400 100%);
    border-radius: 18px;
    grid-column: span 2;
    justify-content: center;
    margin-top: 10px;
}

.review-content {
    position: relative;
}

.admissions-review {
    padding: 64px 0px;
}

.review-main {
    background-color: #0B3395;
    border-radius: 40px;
    padding: 64px;
    position: relative;
}

.review-item {
    background-color: white;
    display: flex !important;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    padding: 48px;
}

.review-item>span {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    overflow: hidden;
}

.review-item>span img {
    width: 100%;
    height: 100%;
}

.review-item-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.review-item-content>div {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-item-content>div::after {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    background-image: url("./images/icon-quote.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 48px;
    height: 48px;
}

.review-item-content>div h3 {
    color: black;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.review-item-content>div>span {
    font-style: italic;
    font-size: 18px;
    color: black;
}

.review-item-content>p {
    color: rgba(51, 51, 51, 1);
    font-size: 18px;
}

.review-slider {
    max-width: 992px;
    margin: 0px auto;
    padding-bottom: 50px !important;
}

.review-content {
    margin-top: 38px;
}

.review-content .swiper-button-prev {
    left: 0 !important;
}

.review-content .swiper-button-next {
    right: 0 !important;
}

.review-content .swiper-button-prev,
.review-content .swiper-button-next {
    top: 40%;
}

.section-title-admissions {
    font-size: 54px;
    font-weight: 900;
    background: linear-gradient(0deg, #ffffff 37.85%, #f37021 60.47%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: normal;
    text-align: center;
}


#metu .tg-container {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 9999;
}

#metu .mmt-app {
    position: relative;
    display: flex;
    flex-direction: row;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    justify-content: center;
    box-sizing: border-box;
    min-height: 56px;
    -webkit-transition: all 0.24s;
    transition: all 0.24s;
}

#metu .mmt-menu__item--mobile {
    background-color: hsla(0, 0%, 100%, 0.2);
    margin: 10px 5px;
}

#metu .mmt-button--mobile {
    height: 40px;
    justify-content: center;
}

#metu .mmt-button {
    display: flex;
    align-items: center;
    align-self: stretch;
    padding: 0 10px;
    flex-direction: row;
    cursor: pointer;
}

#metu .mmt-button--mobile .mmt-button__icon {
    margin-right: 10px;
}

#metu .mmt-button__icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    box-sizing: border-box;
}

#metu .mmt-button--mobile .mmt-button__label {
    font-size: 12px;
    line-height: 13px;
    max-height: 26px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#metu .mmt-button--mobile .mmt-button__label a {
    color: #fff;
}

.metu-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #c00d00 !important;
    opacity: 1;
    color: rgb(232, 232, 232);
    border-top: 1px solid #efefef;
}

.create-profile {
    position: fixed;
    top: 40%;
    right: 0;
    width: 71px;
    height: 77px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    background: #c00d00;
    padding: 10px 3px;
    z-index: 100000;
}

.create-profile a {
    line-height: 15px;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.create-profile a .img {
    margin-bottom: 5px;
    overflow: hidden;
    transition: ease-in-out 0.3s;
}

footer {
    margin-bottom: 60px;
}

.ts-banner-v2 {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    font-family: 'Exo', sans-serif;
}

.ts-banner-v2__bg img {
    width: 100%;
    display: block;
}

.ts-banner-v2__bg--mobile {
    display: none;
}

.ts-banner-v2__form-wrap {
    position: absolute;
    top: var(--ts-form-top, 11.2%);
    right: var(--ts-form-right, 8.2%);
    left: var(--ts-form-left, auto);
    width: var(--ts-form-width, 25%);
    max-width: 100%;
    z-index: 3;
}

.ts-banner-v2__form-card {
    background: linear-gradient(180deg, #ff5c28 0%, #ff9348 55%, #ffe9c2 100%);
    border-radius: 20px;
    padding: 18px 35px 20px;
    border: 2px solid #d94a1f;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    min-height: 340px;
}

.ts-banner-v2__form-card h3 {
    margin: 0 0 14px;
    padding: 4px 0 2px;
    text-align: center;
    color: #fff;
    font-size: clamp(28px, 2.2vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ts-banner-v2__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 260px;
}

.ts-banner-v2__form input,
.ts-banner-v2__form select {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    min-height: 40px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    padding: 0 10px;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 500;
    line-height: 40px;
    color: #111;
    background: #fff;
}

.ts-banner-v2__form input::placeholder {
    font-weight: 500;
    color: #111;
    opacity: 1;
}

.ts-banner-v2__form input::-webkit-input-placeholder {
    font-weight: 500;
    color: #111;
}

.ts-banner-v2__form input::-moz-placeholder {
    font-weight: 500;
    color: #111;
    opacity: 1;
}

.ts-banner-v2__form button {
    margin-top: 4px;
    border: none;
    min-height: 44px;
    height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff6b3 0%, #f3ba6a 45%, #e85a2e 100%);
    color: #fff;
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 44px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 0 rgba(180, 60, 20, 0.35);
    cursor: pointer;
    animation:
        ctech-cta-blink-ring 1.6s ease-out infinite,
        ctech-cta-blink-glow 1.6s ease-in-out infinite;
}

.ts-banner-v2__form button:hover {
    animation-play-state: paused;
}

.ts-banner-v2__form .select2-container {
    width: 100% !important;
}

.ts-banner-v2__form .select2-container .select2-selection--single {
    box-sizing: border-box;
    height: 40px !important;
    min-height: 40px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
}

.ts-banner-v2__form .select2-container .select2-selection__rendered {
    box-sizing: border-box;
    height: 40px;
    min-height: 40px;
    line-height: 40px;
    padding: 0 34px 0 10px;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 500;
    color: #111;
}

.ts-banner-v2__form .select2-container .select2-selection__placeholder {
    font-weight: 500;
    color: #111;
}

.ts-banner-v2__form .select2-container .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    height: 38px;
}

.ts-banner-v2__form .select2-container .select2-selection__arrow b {
    border-color: #333 transparent transparent transparent;
}

.select2-container .select2-results__options {
    max-height: 220px;
    overflow-y: auto;
}

@media (max-width: 991px) {
    .ts-banner-v2 {
        overflow: visible;
    }

    .ts-banner-v2__bg--desktop {
        display: none;
    }

    .ts-banner-v2__bg--mobile {
        display: block;
    }

    .ts-banner-v2__form-wrap {
        position: static;
        width: 100%;
        max-width: none;
        padding: 10px 0 0;
        margin-top: -2px;
        top: auto;
        left: auto;
        right: auto;
    }

    .ts-banner-v2__form-card {
        border-radius: 20px;
        padding: 18px 35px 20px;
        border-width: 2px;
        min-height: 300px;
    }

    .ts-banner-v2__form-card h3 {
        margin-bottom: 14px;
        font-size: clamp(22px, 6vw, 32px);
        letter-spacing: 0.35px;
    }

    .ts-banner-v2__form {
        gap: 10px;
        min-height: 248px;
    }

    .ts-banner-v2__form input,
    .ts-banner-v2__form select,
    .ts-banner-v2__form .select2-container .select2-selection--single {
        font-size: 15px;
        font-weight: 500;
        height: 42px;
        min-height: 42px;
        border-radius: 0;
        padding: 0 20px;
        line-height: 42px;
    }

    .ts-banner-v2__form .select2-container {
        margin-bottom: 0;
    }

    .ts-banner-v2__form .select2-container .select2-selection__rendered {
        height: 42px;
        min-height: 42px;
        line-height: 42px;
        font-size: 15px;
        padding: 0;
    }

    .ts-banner-v2__form .select2-container .select2-selection__placeholder {
        font-weight: 500;
        color: #111;
    }

    .ts-banner-v2__form .select2-container .select2-selection__arrow {
        height: 40px;
    }

    .ts-banner-v2__form button {
        margin-top: 6px;
        min-height: 46px;
        height: 46px;
        padding: 0 10px;
        border-radius: 999px;
        font-size: clamp(15px, 4.2vw, 19px);
        line-height: 46px;
        letter-spacing: 0.25px;
    }

    .select2-container .select2-results__options {
        max-height: 180px;
    }
}

@keyframes ctech-cta-blink-ring {

    0%,
    100% {
        box-shadow:
            0 4px 0 rgba(180, 60, 20, 0.35),
            0 0 0 0 rgba(255, 149, 0, 0.7),
            0 0 0 0 rgba(255, 149, 0, 0.4);
    }

    50% {
        box-shadow:
            0 4px 0 rgba(180, 60, 20, 0.35),
            0 0 0 8px rgba(255, 149, 0, 0.25),
            0 0 0 16px rgba(255, 149, 0, 0);
    }
}

@keyframes ctech-cta-blink-glow {

    0%,
    100% {
        filter: brightness(1) saturate(1);
    }

    50% {
        filter: brightness(1.12) saturate(1.2);
    }
}

@media (max-width: 768px) {
    .program-tabs {
        gap: 8px;
        flex-wrap: nowrap;
        max-width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 30px;
        margin-bottom: 0px;
    }

    .program-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn.active {
        font-size: 14px;
        padding: 12px 16px;
    }

    .program-tabs>button {
        flex-shrink: 0;
    }

    .program-image {
        border-radius: 18px;
    }

    .program-content {
        padding: 8px;
        border-radius: 24px;
        gap: 0px;
    }

    .programs-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .programs-section {
        padding: 40px 0px;
    }

    .program-image {
        flex: none;
    }

    .program-image img {
        min-height: 300px;
    }

    .program-info {
        padding: 12px;
    }

    .program-info h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .program-item {
        padding: 10px 0px;
    }

    .program-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-card::before,
    .form-card::after {
        display: none;
    }

    .btn-register-program {
        margin-left: auto;
        margin-right: auto;
    }

    .section-title-admissions {
        font-size: 24px;
    }

    .admissions-about-content {
        width: 100%;
        position: static;
        transform: none;
    }

    .admissions-about {
        display: flex;
        flex-direction: column-reverse;
        padding-top: 24px;
    }

    .admissions-about-content p {
        font-size: 16px;
        font-weight: 600;
        max-width: 60%;
        margin: 0px auto 20px;
    }

    .admissions-about-content a {
        font-size: 14px;
        padding: 12px 10px;
    }

    .admissions-course {
        padding: 24px 0px;
    }

    .review-item {
        flex-direction: column;
        padding: 20px;
    }

    .review-main {
        padding: 32px;
        margin: 0px -16px;
        border-radius: 0px;
    }

    .review-item>span {
        width: 100px;
        height: 100px;
    }

    .review-item-content>div h3 {
        font-size: 16px;
        text-align: center;
    }

    .review-item-content>div>span,
    .review-item-content>p {
        font-size: 14px;
        text-align: center;
    }

    .review-btn>div {
        width: 32px !important;
        height: 32px !important;
    }

    .review-btn>div::before,
    .review-btn>div::after {
        font-size: 12px !important;
    }

    .review-item-content>div::after {
        display: none;
    }

    .review-content .swiper-button-next {
        right: -15px !important;
    }

    .review-content .swiper-button-prev {
        left: -15px !important;
    }

    .review-slider {
        padding-bottom: 20px !important;
    }

    #metu .mmt-button__icon {
        width: 14px;
        height: 14px;
    }

    #metu .mmt-button {
        padding: 0 4px;
    }

    .section-banner.ts-banner-v2 {
        margin-bottom: 8px;
    }
}