.wrapper-real-world .banner-rw {
    background: #003967;
    color: #fff;
    position: relative;
}

.wrapper-real-world .banner-rw::after {
    content: "";
    position: absolute;
    left: 60%;
    top: 0;
    width: 500px;
    height: 100%;
    background: url(../images/newsletter-bulb.png);
    background-size: cover;
}

.wrapper-real-world .banner-rw .content-box {
    width: 50%;
    padding: 60px 0px;
}

.wrapper-real-world .banner-rw .content-box h3 {
    font-weight: 500;
    color: #c3d4dd;
    font-size: 22px;
    text-transform: uppercase;
}

.wrapper-real-world .banner-rw .content-box h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 53px;
    margin-bottom: 25px;
}

.wrapper-real-world .banner-rw .content-box p {
    font-size: 20px;
    font-weight: 500;
}

.wrapper-real-world .about-rw {
    padding: 60px 0px;
}

.wrapper-real-world .about-rw .rw-content {
    display: flex;
    width: 100%;

}

.wrapper-real-world .about-rw .rw-content .rw-menu {
    width: 33.33%;
}

.wrapper-real-world .about-rw .rw-detail {
    display: flex;
    align-items: self-start;
    gap: 10px;
    padding: 10px 20px;

}

.wrapper-real-world .about-rw .rw-detail .icon {
    width: 30px;
    height: 25px;
    flex-shrink: 0;
    color: var(--main-color);
}

.wrapper-real-world .about-rw .rw-detail p {
    margin: 0;
    color: #676767;
}

.wrapper-real-world .data-expertise {
    padding: 60px 0px;
    background-image: url(../images/background05.png);
    background-color: #f4f7fc;
}

.wrapper-real-world .data-expertise .expertise-wrap {
    display: flex;

}

.wrapper-real-world .data-expertise .expertise-wrap .expertise-img {
    width: 45%;
    height: fit-content;
    flex-shrink: 0;
}

.wrapper-real-world .our-expertise h3 {
    color: var(--text-color);
    font-size: 36px;
    padding-bottom: 15px;
    font-weight: 600;
}

.wrapper-real-world .our-expertise p {
    font-size: 17px;

}

.wrapper-real-world .our-expertise p span {
    font-size: 17px;
    font-weight: 600;
    color: var(--main-color);
}

.wrapper-real-world .our-expertise .list-expertise {
    color: var(--text-color);
}

.wrapper-real-world .our-expertise .list-expertise .item-expertise {
    display: flex;
    gap: 10px;
    padding: 10px 0px;
    font-size: 17px;
    align-items: center;
    color: #393939;
}

.wrapper-real-world .our-expertise .list-expertise .item-expertise .icon {
    width: 30px;
    height: fit-content;
    flex-shrink: 0;
    font-size: 17px;
}

.wrapper-real-world .our-expertise .list-expertise .get-touch {
    background: var(--main-color);
    color: #fff;
    margin-top: 15px;
}

.wrapper-real-world .our-expertise .list-expertise .get-touch .arrow {
    color: #fff;
}

.wrapper-real-world .our-expertise .list-expertise .get-touch .arrow::before {
    border-color: #fff;
}

.wrapper-real-world .our-expertise .list-expertise .get-touch .arrow::after {
    border-color: #fff;
}

.wrapper-real-world .rw-evidence {
    padding: 60px 0px;
}

.list-program-session {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.list-program-session .item-program {
    width: calc(25% - 20px);
    background-color: #ffffff91;
    border-radius: 5px;
    border: 1px solid var(--main-color);
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 10px 0 10px rgb(0 0 0 / 10%);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.list-program-session .item-program:hover {
    background-color: #fdead324;
    box-shadow: 1px 1px 19px #f88b005c;
    transform: translateY(-10px);
}

.item-program:hover .icon::after {
    animation: roteIcon 7.1s linear infinite;
    border-color: var(--main-color);
}

.list-program-session .head {
    display: flex;
    width: 100%;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.list-program-session .icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 75px;
    height: 75px;
    padding: 20px;
    flex-shrink: 0;
    margin-bottom: 0;
    background-color: #fbad15;
    border-radius: 50%;
    transition: background-color .2s ease-in-out;
    text-align: center;

}

.list-program-session .icon::after {
    content: "";
    display: inline-block;
    position: absolute;
    background: transparent;
    border: 2px dashed #fbad15;
    width: 84px;
    height: 84px;
    right: -4px;
    top: -4px;
    border-radius: 100px;
}

.list-program-session .icon i {
    font-size: 36px;

}

.list-program-session .title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0px;
    transition: all .3s ease-in-out;
}

.list-program-session .item-program .detail {
    position: relative;
    font-size: 15px;
    margin-top: 10px;
    padding-left: 20px;
    color: #444444;
    transition: all .3s ease-in-out;
}

.list-program-session .item-program .detail::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: transparent;
    border: 2px solid #444444;
    border-radius: 100px;
    position: absolute;
    left: 5px;
    top: 9px;
}

.list-program-session .ask-about {
    opacity: 0;
    border: 1px dashed;
    border-radius: 10px;
    font-size: 17px;
    display: flex;
    margin-top: 7px;
    padding: 7px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    transform: translateY(10px);
    transition: all .2s ease-in-out;

}

.list-program-session .ask-about:hover {
    background: var(--main-color);
    color: #fff;
    border: 1px solid;
    transition: all .2s ease-in-out;
}

.list-program-session .item-program:hover .ask-about {
    opacity: 1;
    transform: translateY(0px);
}

@keyframes roteIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.wrapper-real-world .rw-flexible {
    padding: 60px 0px;
}

.wrapper-real-world .rw-flexible .flexible-wrap {
    display: flex;
    gap: 50px;
}

.wrapper-real-world .rw-flexible .flexible-wrap .box-img {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.wrapper-real-world .rw-flexible .flexible-wrap img {
    width: 80%;
}

.wrapper-real-world .rw-flexible .flexible-wrap .flexible-box h3 {
    text-transform: uppercase;
    font-size: 22px;

    color: var(--main-color);
}

.wrapper-real-world .rw-flexible .flexible-wrap .flexible-box h1 {
    font-size: 36px;
    color: var(--text-color);
    font-weight: 600;
}

.wrapper-real-world .rw-flexible .flexible-wrap p {
    font-size: 17px;
    text-align: justify;
    margin: 20px 0px;
}

.flexible-box .learn-more {
    color: var(--main-color);
    border-color: var(--main-color);
    transition: all .3s ease-in-out;
}

.flexible-box .learn-more .arrow::after,
.flexible-box .learn-more .arrow::before {
    border-color: var(--main-color);
}

.flexible-box .learn-more:hover {
    background: var(--main-color);
    color: #fff;
}

.flexible-box .learn-more:hover .arrow::after,
.flexible-box .learn-more:hover .arrow::before {
    border-color: #fff;
}

.wrapper-real-world .rw-enhance {
    padding: 80px 0px;
    background: url(../images/data-set-background.jpg);
    background-size: 90%;
    background-position: center;
    text-align: center;
    color: #fff;
}

.wrapper-real-world .rw-enhance .enhance-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 15px;
}

.wrapper-real-world .rw-enhance p {
    padding: 0px 15%;
    font-size: 18px;
}

.wrapper-real-world .rw-enhance .discover {
    position: relative;
    z-index: 0;
    overflow: hidden;
    color: #fff;
    padding-right: 30px;
    margin-top: 20px;
}

.wrapper-real-world .rw-enhance .discover::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 202%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(90deg, #ff9100d9, #ff7100, #ff9100d9);
    transition: all .3s ease-in-out;
}

.wrapper-real-world .rw-enhance .discover .arrow::after,
.wrapper-real-world .rw-enhance .discover .arrow::before {
    border-color: #fff;
}

.wrapper-real-world .rw-enhance .discover:hover::after {
    transform: translateX(-50%);
}


.wrapper-heal-tech .banner-heal-tech {
    background: url(../images/service-bg.jpeg);
    height: 40vh;
    padding: 30px 0px;
    display: flex;
    align-items: center;
    text-align: left;
}

.wrapper-heal-tech .banner-heal-tech .container-web {
    width: 100%;
}

.wrapper-heal-tech .banner-heal-tech .banner-title {
    font-weight: bold;
    font-size: 81px;
    line-height: 1;
    color: #fff;
    text-align: start;
}

.wrapper-heal-tech .healtech-content .main-content {
    padding: 30px 0px;
    display: flex;
    align-items: center;
}

.wrapper-heal-tech .healtech-content .main-content .detail-content {
    width: 50%;
    flex-shrink: 0;
}

.wrapper-heal-tech .healtech-content .main-content .detail-content p {
    margin-bottom: 25px;
    font-size: 21px;
    line-height: 32px;
    color: #140032;
}

.wrapper-heal-tech .healtech-content .main-content .img1 {
    margin-left: 75px;
    width: 500px;
    height: 500px;
    background: url(../images/icon-orange.png);
    background-size: cover;
    background-position: center;
}

.wrapper-heal-tech .healtech-content .main-content .img1 img {
    padding: 90px;
    border-radius: 100%;
}

.wrapper-heal-tech .healtech-content.two .detail-content {
    margin-left: 50px;
}

.wrapper-heal-tech .healtech-content.two .show-img {
    border-radius: 30px;
    overflow: hidden;
}

.wrapper-heal-tech .heal-tech-include {
    padding: 60px 0px;
    background: url(../images/background05.png);
}

.wrapper-heal-tech .heal-tech-include .list-heal {
    display: flex;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.wrapper-heal-tech .heal-tech-include .list-heal .item-heal {
    display: flex;
    align-items: center;
    gap: 5px;
    width: calc(33.33% - 30px);
    padding: 10px 20px;
    margin-bottom: 5px;
    font-size: 20px;
    background: #ffffff;
    color: #140032;
    border-radius: 10px;
    border: 1px solid #f88b0057;
    box-shadow: 0px 0px 11px #ddddddad;
    cursor: pointer;
}

.wrapper-heal-tech .heal-tech-include .list-heal .item-heal i {
    font-size: 16px;
    color: var(--main-color);
}






.wrapper-services.career .news-banner {
    background-image: url(../images/career-banner.jpg);
    height: 50vh;
    z-index: -1;
}

.wrapper-services.career .news-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: #00000046;
    z-index: 0;

}

.wrapper-services.career .news-banner h1 {
    position: absolute;
    z-index: 1;
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 0px 0px 4px #000000;
}
.wrapper-services.career .main-benefit{
    padding: 60px 0px;
}
.wrapper-services.career .box-benefit .list-benefit{
    margin-top: 20px;
    margin-bottom: 0;
    grid-template-columns: repeat(4, 1fr);
}
.wrapper-services.career .box-benefit .list-benefit .item-benefit {
    width: auto;
}
.wrapper-services.career .box-benefit .list-benefit .item-benefit .content-box {
    min-height: 195px;
}

.wrapper-services.career .profile-main {
    display: flex;
    align-items: center;
        justify-content: center;
}

.wrapper-services.career .profile-main .profile-list {
    width: 50%;
    flex-shrink: 0;
}

.wrapper-services.career .profile-main .profile-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 20px;
}

.wrapper-services.career .profile-main .profile-list li i {
    color: var(--main-color);
}

.wrapper-services.career .profile-main .img-profile .show-img {
    background: url(../images/icon-orange.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 350px;
    height: 350px;
    padding: 60px;
}

.wrapper-services.career .profile-main .img-profile img {
    border-radius: 50%;
}

/* ===== Career Sections Common ===== */
.career-benefits,
.career-profile {
    padding: 60px 0;
    background: #fff;
}

.career-benefits .section-head,
.career-profile .section-head {
    text-align: center;
    margin-bottom: 50px;
}

.career-benefits .sub-title,
.career-profile .sub-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f88b00;
    margin-bottom: 10px;
}

.career-benefits h2,
.career-profile h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    background: #fafafa;
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #f88b00;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.career-profile {
    background: #f9f9f9;
}


.profile-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}