.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.small-hr {
    width: 200px;
    height: 2px;
    border-radius: 10px;
    background-color: var(--ltc1);
}
.home-banner {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.banner-slider {
    width: 100vw;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.banner-content {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.banner-content h1 {
    font-family: "Lato", sans-serif;
    font-size: 55px;
    font-weight: 300;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
}

.banner-content .italic {
    font-style: italic;
    font-family: "Forum", serif;
}

.banner-content p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin: 0 auto;
    max-width: 600px;
    opacity: 0.95;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    color: var(--tc1);
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    opacity: 0.85;
    z-index: 4;
}

.home-sec-two-bg {
    background-image: url('../web-img/homepage/sec-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0px;
}

.home-sec-two {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.home-sec-two h1 {
    font-size: 80px;
    color: var(--tc1);
}

.sec-two-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}


.home-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.home-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
    gap: 20px;
    background-color: var(--ltc1);
    padding: 40px 20px;
    border-radius: 10px;
}

.home-icon-box img {
    height: 80px;
    width: auto;
}

.icon-container-home {
    width: 100px;
    height: 100px;
    padding: 20px;
    background-color: var(--white);
    border: 4px solid var(--tc1);
    border-radius:  100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
}

.icon-container-home i {
    font-size: 40px;
    color: var(--ltc2);
}

.icon-box-txt {
    display: flex;
    flex-direction: column;
    align-content: start;
    justify-content: center;
    gap: 10px;
}

.icon-box-txt h6 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.home-sec-three {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 50px;
}

.home-sec-three {}

.product-portfolio-section {
    padding: 40px 0 80px 0;
    background: transparent;
    text-align: left;
}

.portfolio-title {
    font-family: "Forum", serif;
    font-size: 60px;
    color: var(--tc1);
    font-weight: 400;
    margin-bottom: 32px;
    text-align: center;
}

.portfolio-tabs {
    display: flex;
    justify-content: start;
    gap: 60px;
    margin-bottom: 32px;
}

.portfolio-tab {
    font-family: "Lato", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--gray);
    padding-bottom: 8px;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.portfolio-tab.active {
    color: var(--tc2);
    border-bottom: 3px solid var(--tc2);
    font-weight: 400;
}

.portfolio-tab-panel {
    display: none;
}

.portfolio-tab-panel.active {
    display: block;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
    margin-top: 30px;
}

.portfolio-text h3 {
    font-family: "Forum", serif;
    font-size: 32px;
    color: var(--dgray);
    margin-bottom: 18px;
    font-weight: 400;
}

.portfolio-text p {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    color: var(--dgray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.portfolio-btn {
    display: inline-block;
    padding: 12px 36px;
    border: 1.5px solid var(--tc2);
    border-radius: 28px;
    color: var(--tc2);
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    background: transparent;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.portfolio-btn:hover {
    background: var(--tc2);
    color: var(--white);
}

.portfolio-image {
    text-align: center;
}

.portfolio-image img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: var(--white);
    margin-top: -80px;
}

@media (max-width: 900px) {
    .portfolio-title {
        font-size: 38px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-image img {
        max-width: 220px;
        margin-top: 0px;
    }

    .home-icon-box img {
        height: 60px;
        width: auto;
    }
}

@media (max-width: 600px) {
    .banner-content {
        padding: 0 20px;
    }

    .product-portfolio-section {
        padding: 20px 0 40px 0;
    }

    .portfolio-title {
        font-size: 28px;
    }

    .portfolio-tabs {
        gap: 18px;
        font-size: 15px;
    }

    .portfolio-text h3 {
        font-size: 22px;
    }

    .portfolio-text p {
        font-size: 15px;
    }

    .portfolio-btn {
        font-size: 15px;
        padding: 10px 22px;
    }
}

.sec-five-marquee-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: var(--ltc2);
    overflow: hidden;
    padding: 200px 0 200px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-five-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.sec-five-img {
    position: absolute;
    width: 210px;
    height: 210px;
    object-fit: cover;
    background: var(--white);
}

.sec-five-img.img1 {
    width: 350px;
    height: 350px;
    top: 30px;
    left: 18%;
    border-radius:  100%;
}

.sec-five-img.img2 {
    width: 220px;
    height: 220px;
    top: 60px;
    left: 41%;
    border-radius:  100%;
}

.sec-five-img.img3 {
    width: 320px;
    height: 320px;
    top: 30px;
    right: 18%;
    border-radius:  100%;
    filter: grayscale(1);
}

.sec-five-img.img4 {
    width: 400px;
    height: 400px;
    bottom: 30px;
    left: 28%;
    border-radius:  100%;
    filter: grayscale(1);
}

.sec-five-img.img5 {
    width: 220px;
    height: 220px;
    bottom: 30px;
    right: 28%;
    border-radius:  100%;
}

.sec-five-marquee-wrapper {
    width: 100vw;
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
}

.sec-five-marquee-text {
    font-family: 'Forum', 'Cambon', serif;
    font-size: 86px;
    color: var(--white);
    white-space: nowrap;
    opacity: 0.95;
    line-height: 1.1;
    letter-spacing: 0.01em;
    will-change: transform;
    pointer-events: none;
    user-select: none;
    text-align: center;
}

.home-sec-six-contents {
    padding: 100px 0px;
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.1rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .scroll-down {
        font-size: 0.95rem;
        bottom: 18px;
    }

    .home-sec-two-bg {
        background-image: url('../web-img/homepage/sec-bg.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 100px 0px;
    }

    .home-sec-two h1 {
        font-size: 45px;
        color: var(--tc1);
    }

    .sec-two-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-sec-five {
        padding: 60px 0px;
    }
}

@media (max-width: 700px) {
    .sec-five-marquee-container {
        min-height: 700px;
        padding: 120px 0 120px 0;
    }

    .sec-five-img {
        opacity: 1;
    }

    .sec-five-marquee-text {
        font-size: 64px;
        line-height: 1.1;
        padding: 0 4vw;
        border-radius: 8px;
        display: inline-block;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .sec-five-marquee-wrapper {
        height: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sec-five-img.img1 {
        width: 120px;
        height: 120px;
        left: 8%;
        top: 60px;
    border-radius:  100%;
        z-index: 1;
    }

    .sec-five-img.img2 {
        width: 200px;
        height: 200px;
        left: 32%;
        top: 180px;
    border-radius:  100%;
        z-index: 2;
    }

    .sec-five-img.img3 {
        width: 100px;
        height: 100px;
        right: 8%;
        top: 80px;
    border-radius:  100%;
        z-index: 3;
    }

    .sec-five-img.img4 {
        width: 250px;
        height: 250px;
        left: 22%;
        bottom: 60px;
    border-radius:  100%;
        z-index: 2;
    }

    .sec-five-img.img5 {
        width: 110px;
        height: 110px;
        right: 22%;
        bottom: 80px;
    border-radius:  100%;
        z-index: 1;
    }
}

@media (max-width: 400px) {
    .sec-five-marquee-container {
        min-height: 500px;
        padding: 60px 0 60px 0;
    }

    .sec-five-img {
        width: 120px;
        height: 120px;
        opacity: 1;
    }

    .sec-five-marquee-text {
        font-size: 50px;
        padding: 0 2vw;
        border-radius: 6px;
    }

    .sec-five-marquee-wrapper {
        height: 120px;
    }

    .sec-five-img.img1 {
        left: 5%;
        top: 20px;
    }

    .sec-five-img.img2 {
        left: 28%;
        top: 120px;
    }

    .sec-five-img.img3 {
        right: 5%;
        top: 40px;
    }

    .sec-five-img.img4 {
        left: 15%;
        bottom: 20px;
    }

    .sec-five-img.img5 {
        right: 15%;
        bottom: 40px;
    }
}

.home-sec-six-slider-section {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 60px 0 0 0;
}

.sec-six-title {
    font-family: 'Forum', serif;
    font-size: 48px;
    color: var(--tc1);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.sec-six-nav-row {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 32px;
    margin-bottom: 24px;
}

.sec-six-steps {
    display: flex;
    gap: 48px;
}

.sec-six-step-title {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    color: var(--gray);
    cursor: pointer;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    font-weight: 500;
}

.sec-six-step-title.active {
    color: var(--tc2);
    border-bottom: 2.5px solid var(--tc2);
    font-weight: 500;
}

.sec-six-arrow {
    background: var(--white);
    border: 1.5px solid var(--tc1);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 22px;
    color: var(--tc1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.sec-six-arrow:hover {
    background: var(--tc1);
    color: var(--white);
}

.sec-six-slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 420px;
}

.sec-six-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}

.sec-six-slide {
    min-width: 99%;
    display: flex;
    align-items: stretch;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    margin: 0 8px;
}

.sec-six-slide-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    border-radius: 0;
    position: relative;
}

.sec-six-slide-img img {
    width: 500px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    background: var(--lgray);
}

.sec-six-slide-info {
    background: var(--ltc1);
    padding: 20px 50px 150px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 64px 0 0;
    position: relative;
    min-height: 340px;
    overflow: hidden;
}

.sec-six-slide-info::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: var(--ltc1);
    border-top-right-radius: 64px;
    z-index: 0;
}

.sec-six-slide-inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.sec-six-step-num {
    font-family: 'Forum', serif;
    font-size: 120px;
    color: var(--tc1);
    opacity: 0.2;
    margin-bottom: 12px;
    font-weight: 400;
    z-index: 1;
    text-align: end;
}

.sec-six-step-heading {
    font-family: 'Forum', serif;
    font-size: 32px;
    color: var(--tc2);
    margin-bottom: 12px;
    font-weight: 400;
    z-index: 1;
}

.sec-six-step-desc {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: var(--dgray);
    line-height: 1.6;
    z-index: 1;
}

.button-container-start {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.grid-ctn-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    padding: 150px;
}

.grid-ctn-txt button {
    padding: 20px 30px;
    border: 0px;
    border-radius:  100%;
    background: var(--tc2);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
}

.grid-ctn-txt button:hover {
    background: var(--dtc2);
    color: var(--white);
}

.grid-ctn-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-ctn-img img {
    width: 100%;
    height: auto;
}

.home-sec-nine {
    background-color: var(--ltc1);
    padding: 100px 0px;
}

.home-sec-nine-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.home-sec-nine-contents button {
    border: 1px solid var(--dtc2);
    color: var(--dtc2);
    background-color: transparent;
    padding: 10px 24px;
    border-radius:  100%;
    font-size: 15px;
    text-transform: uppercase;
}

.home-sec-nine-contents button:hover {
    color: var(--white);
    background-color: var(--dtc2);
}

.home-sec-nine-contents p,
.home-sec-nine-contents h3 {
    text-align: center;
}

@media (max-width: 1200px) {
    .sec-five-img {
        width: 140px;
        height: 140px;
    }

    .sec-five-marquee-text {
        font-size: 38px;
    }

    .sec-five-marquee-wrapper {
        height: 120px;
    }

    .grid-ctn-txt {
        padding: 100px;
    }
}

@media (max-width: 900px) {
    .sec-six-title {
        font-size: 35px;
    }

    .sec-six-slide-info {
        padding: 32px 16px;
    }

    .sec-six-step-num {
        font-size: 36px;
    }

    .sec-six-step-heading {
        font-size: 20px;
    }

    .sec-six-step-desc {
        font-size: 15px;
    }

    .grid-ctn-txt {
        padding: 70px;
    }
}

@media (max-width: 700px) {
    .grid-ctn-txt {
        padding: 20px;
    }

    .sec-six-steps {
        display: flex;
        gap: 15px;
    }

    .sec-six-nav-row {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 15px;
        margin-bottom: 24px;
    }

    .home-sec-nine {
        background-color: var(--ltc1);
        padding: 50px 0px;
    }

    .home-sec-six-slider-section {
        padding: 30px 10px;
        max-width: 100%;
    }

    .sec-six-slider-viewport {
        min-height: 420px;
    }

    .sec-six-slide {
        flex-direction: column;
        border-radius: 0;
        min-width: 100%;
        margin: 0 2px;
        background: transparent;
        box-shadow: none;
    }

    .sec-six-slide-img {
        min-height: 180px;
        border-radius: 0;
        padding: 0px 0;
    }

    .sec-six-slide-img img {
        max-width: 100%;
        max-height: auto;
        border-radius: 0;
    }

    .sec-six-slide-info {
        border-radius: 0 0 36px 0;
        padding: 18px 10px;
        min-height: 180px;
    }

    .sec-six-slide-info::before {
        width: 90px;
        height: 90px;
        border-top-right-radius: 36px;
    }

    .sec-six-step-num {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .sec-six-step-heading {
        font-size: 25px;
        margin-bottom: 6px;
    }

    .sec-six-step-desc {
        font-size: 16px;
    }
}


.home-sec-nine-contents button:hover {
    color: var(--white);
    background-color: var(--dtc2);
}

/* Roadmap Section */


.home-sec-13 {
    background: #fff;
    padding: 100px 0 80px 0;
    width: 100%;
}

.roadmap-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.roadmap-title-area {
    text-align: left;
}

.roadmap-year {
    font-family: 'Forum', serif;
    font-size: 80px;
    color: #c09c7b;
    font-weight: 400;
    line-height: 1;
}

.roadmap-main-title {
    font-family: 'Forum', serif;
    font-size: 80px;
    color: #c09c7b;
    font-weight: 400;
    line-height: 1;
    margin-top: -10px;
}

.roadmap-diagram-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-diagram {
    position: relative;
    width: 600px;
    height: 600px;
    max-width: 100vw;
}

.roadmap-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.roadmap-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.roadmap-logo img {
    width: 80px;
    height: auto;
    border-radius: 50%;
}

.goal-point {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: start;
    width: 250px;
    text-align: start;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 2;
}

.goal-point img {
    width: 70px;
    height: auto;
    margin-right: 10px;
}

.goal-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 32px;
    background: var(--tc1);
}

.goal-icon-wrapper.csr {
    background: var(--dtc2);
}

.goal-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.goal-text {
    font-family: 'Lato', sans-serif;
    text-align: star;
    font-size: 16px;
    color: var(--dgray);
    line-height: 1.4;
    font-weight: 400;
}

.category-title {
    position: absolute;
    font-family: 'Forum', serif;
    font-size: 24px;
    color: #222;
    opacity: 1;
    z-index: 3;
    background: #fff;
    padding: 0 10px;
}

.category-title span {
    border-bottom: 1px solid #c09c7b;
    padding-bottom: 2px;
}

.category-title.business-goals-title {
    top: 15%;
    left: -10%;
}

.category-title.csr-goals-title {
    top: 55%;
    right: -10%;
}

/* Positioning Goal Points */
.business-goal-1 {
    top: 7%;
    left: 60%;
    transform: translate(-50%, -50%);
}

.business-goal-2 {
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
}

.business-goal-3 {
    bottom: 8%;
    left: 35%;
    transform: translate(-50%, -50%);
}

.csr-goal-1 {
    top: 28%;
    right: 5%;
    transform: translate(50%, -50%);
}

.csr-goal-2 {
    bottom: 25%;
    right: 28%;
    transform: translate(50%, -50%);
}

@media (max-width: 1200px) {
    .roadmap-diagram {
        width: 420px;
        height: 420px;
    }

    .goal-point {
        width: 140px;
    }

    .goal-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .category-title {
        font-size: 18px;
    }

    .roadmap-logo img {
        width: 100px;
    }

    .roadmap-year,
    .roadmap-main-title {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .home-sec-13 {
        padding: 60px 0 40px 0;
    }

    .roadmap-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .roadmap-title-area {
        margin-bottom: 30px;
        text-align: center;
    }

    .roadmap-diagram {
        margin: 0 auto;
    }

    .roadmap-year,
    .roadmap-main-title {
        font-size: 50px;
    }
}

@media (max-width: 700px) {

    .goal-point img {
        width: 30px;
        height: auto;
        margin-right: 10px;
    }

    .roadmap-diagram {
        width: 100%;
        height: auto;
    }

    .goal-point {
        width: 90px;
    }

    .goal-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .category-title {
        font-size: 12px;
        padding: 0 4px;
    }

    .roadmap-logo img {
        width: 32px;
    }

    .roadmap-year,
    .roadmap-main-title {
        font-size: 32px;
    }

    .goal-text {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .roadmap-diagram {
        width: 300px;
        height: 300px;
    }

    .goal-point {
        width: 60px;
    }

    .goal-icon-wrapper {
        width: 18px;
        height: 18px;
        font-size: 8px;
    }

    .category-title {
        font-size: 8px;
    }

    .roadmap-logo img {
        width: 18px;
    }

    .roadmap-year,
    .roadmap-main-title {
        font-size: 40px;
    }
}

/* Roadmap Circle Animation */
.roadmap-circles circle {
    stroke-dasharray: 1820;
    /* Approximate circumference for r=290 */
    stroke-dashoffset: 1820;
    transition: stroke-dashoffset 1.6s cubic-bezier(.77, 0, .18, 1);
}

.roadmap-diagram.animate-circles .roadmap-circles circle {
    stroke-dashoffset: 0;
}

/* Goal points animation */
.roadmap-diagram .goal-point {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s cubic-bezier(.77, 0, .18, 1), transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.roadmap-diagram.animate-circles .goal-point {
    opacity: 1;
    transform: scale(1);
}

.roadmap-diagram.animate-circles .goal-point.business-goal-1 {
    transition-delay: 0.4s;
}

.roadmap-diagram.animate-circles .goal-point.business-goal-2 {
    transition-delay: 0.7s;
}

.roadmap-diagram.animate-circles .goal-point.business-goal-3 {
    transition-delay: 1.0s;
}

.roadmap-diagram.animate-circles .goal-point.csr-goal-1 {
    transition-delay: 1.3s;
}

.roadmap-diagram.animate-circles .goal-point.csr-goal-2 {
    transition-delay: 1.6s;
}

/* Journey Section */
.home-sec-11 {
    background-image: url('../web-img/homepage/sec-bg-02.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 200px 0px;
}
.home-sec-11-contents {
    background-color: var(--dtc2);
    padding: 100px 0;
}

.journey-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lab-journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lab-journey-title {
    font-family: 'Forum', serif;
    font-size: 48px;
    color: var(--tc1);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 50px;
}

.lab-journey-steps {
    position: relative;
    padding-left: 30px;
    border-left: 1px solid rgba(192, 156, 123, 0.4);
}

.lab-journey-step {
    margin-bottom: 40px;
    position: relative;
}

.lab-journey-step:last-child {
    margin-bottom: 0;
}

.lab-journey-step .step-label {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--tc2);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.lab-journey-step .step-description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--dgray);
    font-weight: 300;
    line-height: 1.6;
}

.lab-journey-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Animation styles */
.lab-journey-title,
.lab-journey-step,
.lab-journey-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.home-sec-11-contents.is-visible .lab-journey-title,
.home-sec-11-contents.is-visible .lab-journey-step,
.home-sec-11-contents.is-visible .lab-journey-image {
    opacity: 1;
    transform: translateY(0);
}

.home-sec-11-contents.is-visible .lab-journey-step:nth-child(1) {
    transition-delay: 0.2s;
}

.home-sec-11-contents.is-visible .lab-journey-step:nth-child(2) {
    transition-delay: 0.4s;
}

.home-sec-11-contents.is-visible .lab-journey-step:nth-child(3) {
    transition-delay: 0.6s;
}

.home-sec-11-contents.is-visible .lab-journey-image {
    transition-delay: 0.3s;
}

@media (max-width: 991px) {
    .home-sec-11-contents {
        padding: 80px 0;
    }

    .lab-journey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lab-journey-image {
        order: -1;
        margin-bottom: 40px;
    }

    .lab-journey-title {
        font-size: 38px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .home-sec-11-contents {
        padding: 60px 0;
    }

    .lab-journey-title {
        font-size: 32px;
    }

    .lab-journey-step .step-label,
    .lab-journey-step .step-description {
        font-size: 16px;
    }
}

/* FAQ Section Styles */
.home-sec-12 {
    padding: 100px 0px;
    background: #faf6f4;
}

.faq-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    border-radius: 0 0 80px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.faq-left {
    flex: 1 1 0;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.faq-title {
    font-family: 'Forum', serif;
    font-size: 56px;
    color: var(--tc1);
    font-weight: 400;
    margin-bottom: 10px;
}

.faq-brochure-btn {
    display: inline-block;
    background: #c09c7b;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    border-radius: 28px;
    padding: 14px 36px;
    text-decoration: none;
    margin-bottom: 24px;
    transition: background 0.2s;
}

.faq-brochure-btn:hover {
    background: #a67c52;
}

.faq-brochure-btn i {
    margin-left: 10px;
    font-size: 18px;
    vertical-align: middle;
}

.faq-list {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid #e0d6ce;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    color: #3d3d3d;
    text-align: left;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question.active {
    color: var(--tc1);
}

.faq-toggle {
    font-size: 28px;
    color: #c09c7b;
    margin-left: 18px;
    transition: transform 0.2s;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    font-size: 18px;
    color: #6d6d6d;
    font-family: 'Lato', sans-serif;
    padding: 0 0 24px 0;
    line-height: 1.6;
    animation: fadeIn 0.3s;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    height: 100%;
}

.faq-image {
    width: 100%;
    height: auto;
    border-radius: 0 120px 0 0;
    object-fit: cover;
    background: #fff;
}

@media (max-width: 991px) {
    .home-sec-12 {
        padding: 50px 0px;
        background: #faf6f4;
    }

    .faq-section {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
        padding: 50px 10px;
        border-radius: 0 0 40px 0;
    }

    .faq-left,
    .faq-right {
        max-width: 100%;
    }

    .faq-image {
        width: 100%;
        border-radius: 0 60px 0 0;
    }
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 32px;
    }

    .faq-section {
        padding: 30px 0 20px 0;
        gap: 24px;
    }

    .faq-brochure-btn {
        font-size: 15px;
        padding: 10px 18px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 0;
    }

    .faq-answer {
        font-size: 15px;
        padding-bottom: 16px;
    }

    .faq-image {
        border-radius: 0 32px 0 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
