#page-about {
    overflow: hidden;
}

/* About Page Intro Section */
.about-intro {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Watermark Background */
.about-intro__watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 140px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    animation: watermarkRun 30s linear infinite;
    text-transform: uppercase;
}

@keyframes watermarkRun {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.about-intro .ctnr {
    position: relative;
    z-index: 1;
}

.about-intro__image-wrapper {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-intro__image-wrapper:hover {
    transform: translateY(-5px);
}

.about-intro__image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.about-title {
    color: var(--color-3);
    /* Brand Red */
    font-size: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}





@media (max-width: 992px) {
    .about-intro__title {
        font-size: 24px;
    }

    .about-intro__image-wrapper {
        border-radius: 20px;
        padding: 15px;
    }
}

/* History Section */
.about-history {
    position: relative;
    background-color: #f9f9f9;
    overflow: hidden;
    z-index: 1;
}

/* Gear Watermark */
.about-history::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 400px;
    height: 400px;
    background: url('../images/setting.gif') no-repeat center/contain;

    z-index: -1;
    transform: translateY(-50%) rotate(30deg);
    pointer-events: none;
}

.about-history__wrapper {
    position: relative;
    padding-right: 60px;
}

.about-history__timeline {
    position: absolute;
    top: 112px;
    left: 108px;
    width: 2px;
    bottom: 111px;
    background-color: var(--color-3);
    opacity: 0.2;
    z-index: 1;
}

.about-history__slider {
    position: relative;
    z-index: 2;
}

.about-history__slider .slick-list {
    margin: 0 -15px;
    /* For hover shadow space */
    padding: 15px;
}

/* Vertical Arrows Positioning (Desktop) */
.about-history__slider .slick-arrow {
    left: auto;
    right: -70px;
    top: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dddddd;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
    padding: 0;
    opacity: 1;
}

.about-history__slider .slick-arrow svg {
    width: 20px;
    height: 20px;
}

.about-history__slider .slick-arrow:hover {
    background: var(--color-3);
    color: #ffffff;
    border-color: var(--color-3);
}

.about-history__slider .slick-prev {
    top: 0;
    transform: none;
}

.about-history__slider .slick-next {
    top: 55px;
    transform: none;
}

.about-history__item {
    outline: none;
    padding: 15px 0;
    position: relative;
    padding-left: 140px;
}

.about-history__info {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 60px;
}

.about-history__year {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-3);
}

.about-history__dot {
    position: absolute;
    right: 23px;
    width: 20px;
    height: 20px;
    background-color: var(--color-3);
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(var(--color-3-rgb, 237, 28, 36), 0.3);
    z-index: 1;
}

.about-history__card {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    width: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-history__card:hover {
    background-color: var(--color-3);
    border-color: var(--color-3);
}

.about-history__card:hover .about-history__card-title,
.about-history__card:hover .about-history__card-desc {
    color: #ffffff;
}

.about-history__card-img {
    border-radius: 10px;
    overflow: hidden;
    padding-top: 67%;
    position: relative;
}

.about-history__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.about-history__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.about-history__card-desc {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .about-history__slider .slick-arrow {
        right: -40px;
    }
}

@media (max-width: 992px) {
    .about-history__mobile-top {
        position: relative;
        margin-bottom: 10px;
    }



    .about-history__year {
        display: none;
    }

    .about-history__mobile-gear {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 150px;
        height: 150px;
        background: url('../images/setting.gif') no-repeat center/contain;
        opacity: 0.1;
        z-index: 1;
    }

    .about-history__mobile-year {
        font-size: 32px;
        font-weight: 700;
        color: var(--color-3);
        position: relative;
        z-index: 2;
        margin-bottom: 20px;
    }

    .about-history__mobile-line {
        position: relative;
        width: 100%;
        height: 2px;
        background: var(--color-3);
        margin: 20px 0;
    }

    .about-history__mobile-dot {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 16px;
        height: 16px;
        background: var(--color-3);
        border-radius: 50%;
        border: 3px solid #f9f9f9;
    }

    .about-history__wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .about-history__item {
        padding-left: 0;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .about-history__card {
        padding: 20px;
    }

    .about-history__card-title {
        color: var(--color-3);
        font-size: 18px;
        text-align: center;
        margin-top: 20px;
    }

    .about-history__card-desc {
        text-align: center;
        font-size: 14px;
    }

    .about-history__slider .slick-arrow {
        position: absolute;
        top: 180px;
        /* Align with image center on mobile */
        width: 35px;
        height: 35px;
        background: var(--color-3);
        color: #ffffff;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .about-history__slider .slick-prev {
        left: -10px;
    }

    .about-history__slider .slick-next {
        right: -10px;
    }

    .about-history__slider .slick-next svg {
        transform: rotate(-90deg);
    }

    .about-history__slider .slick-prev svg {
        transform: rotate(-90deg);
    }
}

/* Values Section */
.about-values {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    position: relative;
}

.about-values::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #040812;
    opacity: 0.35;
}

.about-values__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.about-values__side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-values__side--left {
    text-align: right;
}

.about-values__side--left .about-values__item {
    flex-direction: column;
    align-items: flex-end;
}

.about-values__side--right {
    text-align: left;
}

.about-values__side--right .about-values__item {
    flex-direction: column;
    align-items: flex-start;
}

.about-values__item {
    display: flex;
    gap: 20px;
}

.about-values__icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.about-values__item:hover .about-values__icon {
    transform: rotateY(360deg);
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-values__item:hover .about-values__icon img {
    filter: brightness(0);
}

.about-values__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.5s ease;
}

.about-values__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-3);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-values__desc {
    line-height: 1.6;
    max-width: 400px;
}

.about-values__content-inner {
    transition: max-height 0.3s ease;
}

.about-values__content-inner.content-collapsed {
    max-height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.about-values__readmore {
    color: var(--color-3);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
    text-transform: uppercase;
}

.about-values__readmore:hover {
    text-decoration: underline;
}

.about-values__readmore-wrap {
    margin-top: 5px;
}

.about-values__side--left .about-values__desc {
    margin-left: auto;
}

.about-values__center {
    width: 450px;
    flex-shrink: 0;
    position: relative;
}

.about-values__circle {
    width: 100%;
    padding-top: 100%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 8px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.about-values__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.about-values__img-frame {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-values__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-values__link:hover img {
    transform: scale(1.05);
}

.about-values__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

/* Add Hex Pattern as Pseudo-element */
.about-values__center::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCA2MCAzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMzAgMEw2MCAxNUwzMCAzMEwwIDE1TDMwIDBaIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjM3LDI4LDM2LDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPjwvc3ZnPg==');
    background-size: 60px 30px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.8;
    animation: rotateHex 20s linear infinite;
}

@keyframes rotateHex {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-values__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--color-3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 10px rgba(var(--color-3-rgb, 237, 28, 36), 0.2);
    animation: pulsePlay 2s infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.about-values__play::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px dashed var(--color-3);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.about-values__link:hover .about-values__play {
    background-color: #ffffff;
    color: var(--color-3);
    transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
}

.about-values__link:hover .about-values__play::before {
    opacity: 1;
    transform: rotate(-180deg);
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--color-3-rgb, 237, 28, 36), 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(var(--color-3-rgb, 237, 28, 36), 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--color-3-rgb, 237, 28, 36), 0);
    }
}

@media (max-width: 1200px) {
    .about-values__center {
        width: 350px;
    }
}

@media (max-width: 992px) {
    .about-values__wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-values__side {
        text-align: center;
        align-items: center;
    }

    .about-values__item {
        align-items: center !important;
        text-align: center !important;
    }

    .about-values__desc {
        margin: 0 auto !important;
    }

    .about-values__center {
        width: 280px;
    }
}

/* People Section */
.about-people {
    overflow: hidden;
}

.about-people__slider-main {
    margin: 0;
}

.about-people__item {
    padding: 20px 10px;
    outline: none;
    transition: all 0.5s ease;
}

.about-people__image {
    position: relative;
    padding-top: 67%;
    border-radius: 20px;

    overflow: hidden;
    /* transform: scale(0.9); */
    opacity: 0.4;
    filter: blur(4px);
    transition: all 0.5s ease;
    box-shadow: 0 3px 13px hsla(197, 3%, 54%, .39);
}

.about-people__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-people__item.slick-center .about-people__image {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); */
}

.about-people__slider-info {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.about-people__info-item {
    outline: none;
}

.about-people__name {
    color: var(--color-3);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-people__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.about-people__nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.about-people__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    inset: unset;
    opacity: 1;
}

.about-people__arrow svg {
    width: 24px;
}

.about-people__arrow:hover {
    background: var(--color-3);
    border-color: var(--color-3);
    color: #fff;
}

@media (max-width: 992px) {
    .about-people__image {
        padding-top: 75%;
    }

    .about-people__name {
        font-size: 20px;
    }

    .about-people__desc {
        font-size: 14px;
    }
}