.hero-section {
    height: 100vh;
    width: 100vw;
    background-image: url("/images/bg-hero-welcome-new.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    overflow-y: hidden;
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.content-left {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.content-left h1 {
    color: #ffffff;
    line-height: 76px;
    font-size: 52px;
}

.content-left p {
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    padding-left: 10px;
    padding-top: 20px;
}

.content-left .content-left-vision {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.vision-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.vision-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.vision-left,
.vision-right p {
    color: #ffffff;
    font-size: 18px;
}

.box-vision {
    display: flex;
    align-items: center;
    gap: 20px;
}

.box-vision img {
    height: 40px;
    width: auto;
}

.box-vision span {
    color: #ffffff;
    font-size: 22px;
}

.content-right {
    justify-content: end;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.content-right .box {
    justify-content: right;
    background-image: url("/images/bg-box.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
    border-radius: 40px;
    width: 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content-right img {
    height: 600px;
    position: absolute;
    bottom: 0;
}

.sub-about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 150px 0px;
    gap: 30px;
}

.sub-about h4 {
    color: #333333;
    font-size: 44px;
    text-align: center;
    width: 60%;
}

.sub-about button {
    padding: 10px 30px;
    background-color: #f68921;
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-about button:hover {
    background-color: #e57a1a;
}

.value-section {
    height: 80vh;
    width: 100%;
    padding: 10px;
}

.value-content {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    background-image: url("/images/bg-value.png");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 80px 200px 50px 200px;
}

.value-content .value-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    width: 100%;
}

.value-content h2 {
    color: #333333;
    font-size: 44px;
    text-align: center;
}

.value-box .box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
}

.value-box .line {
    height: 100%;
    width: 1px;
    background-color: #ffffff;
}

.box .circle {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.circle img {
    height: 40px;
    width: auto;
}

.box p {
    color: #ffffff;
    font-size: 22px;
}

.box span {
    color: #ffffff;
    font-size: 16px;
}

.swipe-section {
    height: auto;
    width: 100%;
    padding: 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.swipe-section h2 {
    color: #333333;
    font-size: 40px;
    text-align: center;
}

.swipe-section button {
    margin-top: 30px;
    padding: 10px 30px;
    background-color: transparent;
    border: none;
    color: #8f8f8f;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.swipe-section button img {
    height: 10px;
    width: auto;
}

.partner-section {
    height: auto;
    width: 100%;
    padding: 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.partner-section h2 {
    color: #8f8f8f;
    font-size: 32px;
    text-align: center;
}

.nav-tab {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-tab button {
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid #f68921;
    color: #f68921;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-tab button:hover {
    background-color: #f68921;
    color: #ffffff;
}

.nav-tab button.active {
    background-color: #f68921;
    color: #ffffff;
}

.partner-section .content {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 100px;
    padding-top: 0;
}

.content .box {
    padding: 10px 50px;
    border-radius: 20px;
    background-color: #F7B5621A;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #db955476;
}

.content .box img {
    height: 50px;
    width: auto;
}

.swipe-section .swipe-content {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 50px;
}

.swipe-content::-webkit-scrollbar {
    display: none;
}

.swipe-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.swipe-content .card {
    border-radius: 20px;
    padding: 20px;
    height: 300px;
    min-width: 33%;
    flex-shrink: 0;
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.swipe-content .card:nth-child(1) {
    background-image: url("/images/bg-carousel1.png");
}

.swipe-content .card:nth-child(2) {
    background-image: url("/images/bg-carousel2-nw.png");
}

.swipe-content .card:nth-child(3) {
    background-image: url("/images/bg-carousel3.png");
}

.swipe-content .card:nth-child(4) {
    background-image: url("/images/bg-carousel4-nw.png");
}

.swipe-content .card:nth-child(5) {
    background-image: url("/images/bg-carousel5.png");
}



@media (max-width: 1550px) {
    .content-left h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .content-left p {
        font-size: 16px;
    }

    .content-left h1 br {
        display: none;
    }

    .content-right .box {
        height: 550px;
    }

    .content-right .box img {
        height: 450px;
    }

    .vision-left {
        gap: 0px;
    }

    .vision-right {
        gap: 0px;
    }
}