* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== NAV ===== */
.main {
    display: flex;
    justify-content: space-between;
    border-radius: 50px;
    width: 84%;
    margin: auto;
    background: #D9D9D9;
}
.sub {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}
.sub img {
    height: 30px;
}
.container {
    display: flex;
    width: 60%;
    height: 100%;
}
.container ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    list-style: none;
    height: 100%;
    width: 90%;
    box-sizing: content-box;
    margin: 1em 0;
    padding-left: 40px;
}
.container ul li {
    width: 200px;
    text-align: center;
}
.container ul li a {
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: 600;
}
.container ul li a:not(.contact-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    transition: width 0.3s ease;
}
.container ul li a:not(.contact-btn):hover::after {
    width: 100%;
}
.contact-btn {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: white !important;
}

/* ===== HERO ===== */
.header-content {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0 0 100px;
    background: url("./imgs/hero-bg.jpg") center/cover no-repeat;
}
.header-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.2) 65%);
}
.nav-wrapper {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 5;
}
.header-container {
    position: absolute;
    bottom: 70px;
    left: 80px;
    right: 80px;
    max-width: 700px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
}
.header-container h1 {
    font-size: 3rem;
    font-weight: 600;
}
.header-container p {
    color: #e6e6e6;
}
.btn-div {
    height: 35px;
    width: 187px;
    border-radius: 20px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #111111;
}

/* ===== WHO WE ARE ===== */
.section-content {
    background: #D9D9D9;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    width: 84%;
    margin: 100px auto;
    overflow: hidden;
}
.section-img {
    flex: 1;
}
.section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    padding: 60px;
    margin: auto;
}
.para {
    display: flex;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: #FF5A1F;
}
.section-txt {
    width: 100%;
}
.section-txt h1 {
    font-size: 3rem;
    font-weight: 600;
}

/* ===== SHARED HELPERS ===== */
.gradient-text {
    background: linear-gradient(90deg, #FF5A1F, #FF3D6E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.label {
    color: #FF5A1F;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.95rem;
}
.label.center {
    text-align: center;
}
.center {
    text-align: center;
}
.btn-solid {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #FF5A1F, #FF3D6E);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}
.btn-solid.light {
    background: white;
    color: #111111;
}
.btn-outline {
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}
.btn-link {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 50px;
    border: 1px solid #111111;
    background: transparent;
    color: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}
.btn-solid,
.btn-outline,
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.arrow {
    font-size: 1rem;
    line-height: 1;
}
.icon-circle {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF5A1F, #FF3D6E);
}
.icon-circle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}
.icon-circle.outline {
    background: transparent;
    border: 1px solid #444444;
}
.icon-circle.outline img {
    width: 24px;
    height: 24px;
    filter: none;
    opacity: 0.85;
}

/* ===== OUR DIRECTION (heading) ===== */
.direction-heading {
    width: 84%;
    margin: 120px auto 0;
}
.direction-heading h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 10px;
}

/* ===== VISION / MISSION ===== */
.vision-mission-section {
    width: 84%;
    margin: 60px auto 100px;
}
.vm-card {
    background: #111111;
    border-radius: 20px;
    padding: 60px;
}
.vm-card.stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.vm-item {
    color: white;
    text-align: center;
    max-width: 520px;
}
.vm-item .icon-circle {
    margin: 0 auto 20px;
}
.vm-item p:not(.label) {
    margin-top: 15px;
    color: #cccccc;
    line-height: 1.7;
}
.vm-divider.horizontal {
    width: 100%;
    max-width: 700px;
    height: 1px;
    background: #333333;
}

/* ===== OUR VALUES ===== */
.values-section {
    width: 84%;
    margin: 100px auto;
}
.values-text {
    max-width: 500px;
    margin: 15px auto 0;
    text-align: center;
    color: #444444;
    line-height: 1.7;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    border-top: 1px solid #e2e2e2;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 12px;
    border-bottom: 1px solid #e2e2e2;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #111111;
}
.value-num {
    color: #111111;
    font-weight: 400;
    font-size: 0.9rem;
}
.values-section .btn-solid {
    margin-top: 40px;
}

/* ===== OUR BUSINESS MODEL ===== */
.business-model-section {
    width: 84%;
    margin: 100px auto;
}
.business-model-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 10px;
}
.business-model-text {
    max-width: 650px;
    margin: 15px auto 0;
    text-align: center;
    color: #444444;
    line-height: 1.7;
}
.org-chart {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.org-box {
    background: #111111;
    color: white;
    border-radius: 18px;
    padding: 34px 54px;
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.18);
}
.org-box.parent {
    padding: 40px 68px;
    font-size: 1.6rem;
}
.org-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #999999;
    margin-top: 8px;
}
.org-branch {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
}
.org-branch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 30px;
    background: #cccccc;
    transform: translateX(-50%);
}
.org-branch::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 25%;
    right: 25%;
    height: 1px;
    background: #cccccc;
}
.org-child-wrap {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
.org-child-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 30px;
    background: #cccccc;
    transform: translateX(-50%);
}

/* ===== LONG TERM PERSPECTIVE ===== */
.ltp-section {
    width: 84%;
    margin: 100px auto 120px;
    padding: 60px 40px;
    background: #EDEDED;
    border-radius: 20px;
}
.ltp-text {
    max-width: 650px;
    margin: 15px auto 0;
    text-align: center;
    color: #444444;
    line-height: 1.7;
}
.ltp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 60px;
    gap: 0;
}
.ltp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 220px;
}
.ltp-step .icon-circle {
    margin-bottom: 15px;
}
.ltp-step .icon-circle.outline img {
    filter: brightness(0);
    opacity: 0.8;
}
.ltp-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.ltp-step p {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.5;
}
.ltp-connector {
    height: 1px;
    width: 50px;
    background: #cccccc;
    margin-top: 30px;
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    margin: 60px 0 0;
    padding: 0;
    background: #111111;
    color: #ffffff;
}
.site-footer{
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 50vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
}
.footer-logo img {
    filter: brightness(0) invert(1);
}
.footer-links{

    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.footer-content{
    gap: 10px;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 200px;
    justify-items: center;
    list-style: none;

}
.footer-content h3 {
    color: #ffffff;
}
.footer-content a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}
.bottom{
    width: 84%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
}
.right{

    display: flex;
    gap: 50px;
    width: 400px;
    justify-content: center;
    align-items: center;
}
.left{
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== RESPONSIVE NAV ===== */
.nav-toggle {
    display: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    margin-right: 15px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #111111;
    border-radius: 2px;
}
@media (max-width: 860px) {
    .main {
        position: relative;
        flex-wrap: wrap;
    }
    .hamburger {
        display: flex;
    }
    .container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 10px;
        width: 100%;
        height: auto;
        background: #D9D9D9;
        border-radius: 20px;
        z-index: 30;
    }
    .nav-toggle:checked ~ .container {
        display: block;
    }
    .container ul {
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 15px;
        padding: 20px;
        margin: 0;
        box-sizing: border-box;
    }
    .container ul li {
        width: 100%;
        text-align: center;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-wrapper {
        z-index: 50;
    }
    .header-content {
        margin: 0 0 60px;
    }
    .header-container {
        left: 30px;
        right: 30px;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .header-container h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    .section-content {
        flex-direction: column;
    }
    .section-img {
        min-height: 260px;
    }
    .section-container {
        max-width: 100%;
        padding: 40px;
    }
    .section-txt {
        width: 100%;
    }
    .direction-heading h2,
    .business-model-section h2 {
        font-size: 1.8rem;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .org-branch {
        width: 100%;
        max-width: 320px;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .org-branch::after {
        display: none;
    }
    .org-child-wrap {
        flex: 0 0 auto;
    }
    .ltp-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .ltp-connector {
        width: 1px;
        height: 30px;
        margin-top: 0;
    }
    .site-footer {
        flex-direction: column;
        height: auto;
        gap: 40px;
        padding: 20px 0;
    }
    .footer-logo {
        width: 100%;
    }
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .footer-content {
        width: 100%;
        height: auto;
    }
    .bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }
    .left, .right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-container h1 {
        font-size: 1.9rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-group > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-group > .reveal:nth-child(6) { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== SPLIT TITLE REVEAL ===== */
.split-title {
    opacity: 0;
}
.split-title.split-ready {
    opacity: 1;
}
.split-title .split-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.14em;
    margin-bottom: -0.14em;
}
.split-title .split-line-inner {
    display: block;
    will-change: transform, opacity;
    transform: translateY(105%) rotate(1.5deg);
    transform-origin: left bottom;
    opacity: 0;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.split-title.center .split-line-inner {
    transform-origin: center bottom;
}
.split-title.split-active .split-line-inner {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
    .split-title {
        opacity: 1;
    }
    .split-title .split-line-inner {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* ===== HOVER SPLIT TEXT (nav links + buttons) ===== */
.hs {
    display: inline-flex;
}
.hs-col {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
    vertical-align: top;
}
.hs-char {
    display: block;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.hs-bottom {
    position: absolute;
    top: 100%;
    left: 0;
}
a:hover .hs-char,
button:hover .hs-char {
    transform: translateY(-100%);
}
@media (prefers-reduced-motion: reduce) {
    .hs-char {
        transition: none;
    }
    a:hover .hs-char,
    button:hover .hs-char {
        transform: none;
    }
}
