:root {
    --primary-blue: #3661bd;
    --primary-default-blue: #265ECA;
    --text-black: #1F2124;
    --text-white: #FFFFFF;
    --bg-gray: #f2f4f6;
    --header-height: 90px;
    --font-family: 'Poppins', sans-serif;
    --text-black-default: #000000;
    --text-footer-gray: #333333;
    --font-size-default: 17px;
    --font-size-small: 14px;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
}

/* about-hero-section */
.about-hero-section {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 20px;
    background-color: #fff;
}

.about-hero-wrapper {
    overflow: hidden;
    padding-bottom: 5px;
}

.about-page-title {
    font-family: var(--font-family);
    font-size: 100px;
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    line-height: 1.2em;
    margin: 0;
    transform: translateY(110%);
    opacity: 0;
    animation: slideUpReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    letter-spacing: 0.3rem;
    margin-top: -60px;
}

@keyframes slideUpReveal {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



/* about-focus-section */
.about-focus-section {
    width: 100%;
    height: 750px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.about-focus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 20px;
}

.focus-title {
    font-family: var(--font-family);
    font-size: 26px;
    font-weight: var(--font-bold);
    line-height: 1.3em;
    color: var(--text-white);
    margin: 0;
}

.focus-subtitle {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: var(--font-medium);
    color: #fff;
    margin: 0;
}

.focus-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 2px solid #fff;
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    margin-top: 10px;
}

.focus-btn i {
    font-size: 14px;
}

.focus-btn:hover {
    background-color: #fff;
    color: var(--text-black-default);
}

@media (max-width: 992px) {
    .about-hero-section {
        height: 50vh;
        min-height: 400px;
        margin-bottom: -80px;
    }

    .about-page-title {
        font-size: 80px;
    }

    .about-focus-section {
        height: 450px;
    }

    .focus-title {
        font-size: 36px;
    }

    .focus-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .about-hero-section {
        height: 40vh;
        min-height: 300px;
        margin-bottom: -80px;
    }

    .about-page-title {
        font-size: 48px;
        letter-spacing: 1px;
    }

    .about-focus-section {
        height: 350px;
    }

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

    .focus-subtitle {
        font-size: 16px;
    }

    .focus-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* company-section */
.company-section {
    width: 100%;
    background-color: var(--text-white);
    padding: 80px 0;
}

.company-container {
    width: 99%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.company-left {
    flex: 0 0 200px;
}

.company-label {
    display: block;
    font-size: 16px;
    font-weight: var(--font-semibold);
    color: var(--text-black-default);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-family);
    line-height: 1;
    margin: 0;
    padding: 0;
}

.company-right {
    flex: 1;
    max-width: 900px;
}

.company-title {
    font-size: 30px;
    font-weight: var(--font-bold);
    color: var(--text-black-default);
    line-height: 1.3;
    margin-bottom: 40px;
    font-family: var(--font-family);
}

.company-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-family: var(--font-family);
    font-weight: var(--font-medium);
}

.company-content p strong {
    font-weight: var(--font-bold);
    color: var(--text-black-default);
}

@media (max-width: 1200px) {
    .company-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .company-section {
        padding: 60px 0;
    }

    .company-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .company-left {
        flex: auto;
        width: 100%;
        margin-bottom: 10px;
    }

    .company-label {
        margin-top: 0;
    }

    .company-right {
        max-width: 100%;
    }

    .company-title {
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

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

/* stat-section */
.stat-section {
    width: 100%;
    background-color: #fff;
}

.stat-container {
    width: 99%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.stat-left {
    flex: 0 0 200px;
}

.stat-label {
    display: block;
    font-size: var(--font-size-default);
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1;
    color: var(--text-black-default);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 325px;
}

.stat-number {
    font-size: 60px;
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    line-height: 1;
    font-family: var(--font-family);
    display: flex;
    align-items: flex-start;
    letter-spacing: 0.05rem;
}

.stat-number sup {
    font-size: 40px;
    font-weight: var(--font-semibold);
    margin-top: 15px;
}

.full-width-hr {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    border: none;
    margin: 0;
    display: block;
}

@media (max-width: 992px) {
    .stat-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        gap: 15px;
    }

    .stat-left {
        flex: auto;
        width: 100%;
    }

    .stat-right {
        width: 100%;
        justify-content: flex-start;
        padding-left: 0;
    }

    .stat-number {
        font-size: 60px;
    }

    .stat-number sup {
        font-size: 30px;
        margin-top: 5px;
    }
}

@media (max-width: 600px) {
    .stat-number {
        font-size: 48px;
    }
    
    .stat-number sup {
        font-size: 24px;
    }
}

/* values-section */
.values-section {
    width: 100%;
    background-color: #fff;
    padding: 100px 0;
}

.values-container {
    width: 99%;
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 30px;
    aspect-ratio: 4/3;
}

.value-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.value-card:hover .value-img {
    transform: scale(1.05);
}

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

.value-number {
    font-size: 16px;
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    margin-bottom: 15px;
    font-family: var(--font-family);
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black-default);
    margin-bottom: 20px;
    font-family: var(--font-family);
}

.value-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-footer-gray);
    font-family: var(--font-family);
    margin: 0;
    font-weight: var(--font-medium)
}

@media (max-width: 992px) {
    .values-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .values-section {
        padding: 60px 0;
    }

    .values-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .value-image-wrapper {
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .value-title {
        font-size: 22px;
    }
}

/* together-hero */
.together-hero-section {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--text-white);
    margin-top: -60px;
}

.together-hero-wrapper {
    overflow: hidden;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}

.together-page-title {
    font-family: var(--font-family);
    font-size: 60px;
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    line-height: 1.2em;
    margin: 0;
    transform: translateY(110%);
    opacity: 0;
    animation: slideUpReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    text-transform: uppercase;
    text-align: center;
}

@keyframes slideUpReveal {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .together-hero-section {
        height: 500px;
    }

    .together-page-title {
        font-size: 50px;
    }
}

@media (max-width: 600px) {
    .together-hero-section {
        height: 180px;
    }

    .together-page-title {
        font-size: 32px;
    }
}

/* partners-section */
.partners-section {
    width: 100%;
    background-color: var(--text-white);
    padding: 3px 0;
}

.partners-container {
    width: 99%;
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.partners-left {
    flex: 0 0 200px;
}

.partners-label {
    display: block;
    font-size: var(--font-size-default);
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-family);
    margin-top: 5px;
    margin: 0;
    padding: 0;
}

.partners-right {
    flex: 1;
    max-width: 900px;
}

.partners-desc {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-black-default);
    font-weight: var(--font-medium);
    font-family: var(--font-family);
}

@media (max-width: 992px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .partners-left {
        flex: auto;
        width: 100%;
        margin-bottom: 10px;
    }

    .partners-label {
        margin-top: 0;
    }

    .partners-right {
        max-width: 100%;
    }

    .partners-desc {
        font-size: 16px;
    }
}

.partner-slider-section {
    width: 100%;
    background-color: #fff;
    padding: 50px 0 100px 0;
}

.partner-slider-container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.partner-logo-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
}

.partner-logo {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
}

.partner-name {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.partner-desc {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .partner-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .partner-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* quality-hero */
.quality-hero-section {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--text-white);
}

.quality-hero-wrapper {
    overflow: hidden;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}

.quality-page-title {
    font-family: var(--font-family);
    font-size: 60px;
    font-weight: 500;
    color: var(--text-black-default);
    line-height: 1.5em;
    margin: 0;
    transform: translateY(110%);
    opacity: 0;
    animation: slideUpReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    text-transform: uppercase;
    text-align: center;
}

@keyframes slideUpReveal {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .quality-hero-section {
        height: 500px;
    }

    .quality-page-title {
        font-size: 50px;
    }
}

@media (max-width: 600px) {
    .quality-hero-section {
        height: 400px;
    }

    .quality-page-title {
        font-size: 32px;
    }
}

/* quality-section */
.quality-section {
    width: 100%;
    background-color: var(--text-white);
    padding: 90px 0;
}

.quality-container {
    width: 99%;
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.quality-left {
    flex: 0 0 200px;
}

.quality-label {
    display: block;
    font-size: var(--font-size-default);
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-family);
    margin-top: 5px;
    margin: 0;
    padding: 0;
}

.quality-right {
    flex: 1;
    max-width: 900px;
}

.quality-desc {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-black-default);
    font-weight: var(--font-medium);
    font-family: var(--font-family);
}

@media (max-width: 992px) {
    .quality-section {
        padding: 60px 0;
    }

    .quality-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .quality-left {
        flex: auto;
        width: 100%;
        margin-bottom: 10px;
    }

    .quality-label {
        margin-top: 0;
    }

    .quality-right {
        max-width: 100%;
    }

    .quality-desc {
        font-size: 16px;
    }
}

/* manufacturing-section */
.manufacturing-section {
    width: 100%;
    background-color: var(--text-white);
    padding: 100px 0;
}

.manufacturing-container {
    width: 99%;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 80px;
}

.manufacturing-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.manufacturing-img-box {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
}

.manufacturing-image {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.manufacturing-title {
    font-size: 22px;
    font-weight: var(--font-bold);
    color: var(--text-black-default);
    margin-bottom: 20px;
    font-family: var(--font-family);
}

.manufacturing-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-footer-gray);
    margin: 0;
    font-family: var(--font-family);
    max-width: 95%;
}

@media (max-width: 992px) {
    .manufacturing-container {
        column-gap: 30px;
        row-gap: 50px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .manufacturing-section {
        padding: 60px 0;
    }

    .manufacturing-container {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }

    .manufacturing-img-box {
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .manufacturing-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .manufacturing-desc {
        max-width: 100%;
    }
}

/* screen-hero */
.screen-hero-section {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--text-white);
}

.screen-hero-wrapper {
    overflow: hidden;
    padding-bottom: 0px;
    display: flex;
    justify-content: center;
}

.screen-page-title {
    font-family: var(--font-family);
    font-size: 40px;
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    line-height: 1.5em;
    margin: 0;
    transform: translateY(110%);
    opacity: 0;
    animation: slideUpReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    text-transform: uppercase;
    text-align: center;
}

@keyframes slideUpReveal {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .screen-hero-section {
        height: 500px;
    }

    .screen-page-title {
        font-size: 50px;
    }
}

@media (max-width: 600px) {
    .screen-hero-section {
        height: 400px;
    }

    .screen-page-title {
        font-size: 32px;
    }
}

.colorlit-desc-section {
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--text-white);
    padding: 80px 20px 60px 20px;
}

.colorlit-desc-wrapper {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.colorlit-desc-text {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    line-height: 1.5em;
    margin: 0;
    text-align: center;
    transform: translateY(110%);
    opacity: 0;
    animation: slideUpReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideUpReveal {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .colorlit-desc-text {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .colorlit-desc-section {
        min-height: auto;
        padding: 60px 20px;
    }

    .colorlit-desc-text {
        font-size: 24px;
        line-height: 1.4em;
    }
}

@media (max-width: 600px) {
    .colorlit-desc-section {
        padding: 40px 20px;
    }

    .colorlit-desc-text {
        font-size: 18px;
    }
}


/* contact-us-popup */
.pricing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none; 
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.pricing-modal-content {
    background-color: var(--text-white);
    width: 96%;
    max-width: none;
    border-radius: 24px;
    padding: 60px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: scale(0.9); 
    transition: transform 0.3s ease;
}

.pricing-modal-overlay.open .pricing-modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-footer-gray);
    transition: transform 0.2s ease;
}

.modal-close-btn:hover {
    transform: rotate(90deg);
}

.pricing-modal-body {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    height: 100%;
}

.pm-left {
    flex: 0 0 30%;
    padding-top: 10px;
}

.pm-title {
    font-size: 30px;
    font-weight: var(--font-extrabold);
    color: var(--text-black-default);
    margin-bottom: 20px;
    font-family: var(--font-family, sans-serif);
}

.pm-desc {
    font-size: 15px;
    font-weight: var(--font-semibold);
    line-height: 1.5;
    color: var(--text-footer-gray);
    font-family: var(--font-family, sans-serif);
}

.pm-right {
    flex: 1;
}

.pm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pm-form-row {
    display: flex;
    gap: 20px;
}

.pm-input, .pm-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #888;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family, sans-serif);
    outline: none;
    transition: border-color 0.3s ease;
}

.pm-input:focus, .pm-textarea:focus {
    border-color: var(--primary-default-blue);
}

.pm-textarea {
    height: 150px;
    resize: none;
}

.pm-send-btn {
    background-color: var(--primary-default-blue); 
    color: var(--text-white);
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: var(--font-bold);
    border-radius: 50px;
    cursor: pointer;
    align-self: flex-start;
    font-family: var(--font-family, sans-serif);
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.pm-send-btn:hover {
    background-color: #2a4ca0;
}

@media (max-width: 992px) {
    .pricing-modal-content {
        width: 95%;
        padding: 30px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .pricing-modal-body {
        flex-direction: column;
        gap: 30px;
    }

    .pm-left {
        text-align: center;
        padding-top: 0;
    }
    
    .pm-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .pm-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .pm-title {
        font-size: 24px;
    }
    
    .pm-send-btn {
        width: 100%;
    }
    
    .modal-close-btn {
        top: 15px;
        right: 15px;
        font-size: 24px;
    }
}