﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 73px);
    overflow: hidden;
    background: #0f0f1a;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif
}

.banner-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    background: #0f0f1a
}

.banner {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2
}

.banner-left {
    width: 70%;
    height: 100%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0
}

.image-strip {
    display: flex;
    height: 100%;
    width: 400%;
    will-change: transform;
    transition: transform 1.2s cubic-bezier(0.22,1,0.36,1)
}

    .image-strip .slide {
        flex: 0 0 25%;
        height: 100%
    }

        .image-strip .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block
        }

.banner-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,rgba(15,15,26,0) 40%,rgba(15,15,26,.85) 85%,#0f0f1a 100%);
    pointer-events: none;
    z-index: 5
}

.banner-right {
    width: 30%;
    height: 100%;
    background: #0f0f1a;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    z-index: 6
}

.text-strip {
    display: flex;
    height: 100%;
    width: 400%;
    will-change: transform;
    transition: transform 1.2s cubic-bezier(0.22,1,0.36,1)
}

.text-slide {
    flex: 0 0 25%;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f0f4ff
}

    .text-slide h3 {
        font-size: clamp(1.2rem,2vw,1.8rem);
        font-weight: 700;
        margin-bottom: .8rem;
        background: linear-gradient(135deg,#f7971e,#ffd200);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2
    }

    .text-slide p {
        font-size: clamp(.85rem,1.1vw,1rem);
        line-height: 1.6;
        color: #c8d0e0;
        margin-bottom: 1.2rem
    }

    .text-slide .btn {
        display: inline-block;
        padding: .6rem 1.6rem;
        background: linear-gradient(135deg,#f7971e,#ffd200);
        color: #0d0d0d;
        font-weight: 700;
        font-size: clamp(.75rem,.8vw,.85rem);
        border-radius: 50px;
        text-decoration: none;
        text-align: center;
        transition: transform .3s ease;
        width: fit-content
    }

.banner-mobile {
    display: none;
    width: 100%;
    height: 100%;
    position: relative
}

.mobile-slider-container {
    position: relative;
    width: 100%;
    height: 100%
}

.mobile-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease,visibility 1s ease;
    z-index: 1
}

    .mobile-frame.active {
        opacity: 1;
        visibility: visible;
        z-index: 2
    }

.mobile-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

    .mobile-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

.mobile-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(15,15,26,.95) 15%,rgba(15,15,26,.4) 100%);
    z-index: 2
}

.mobile-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff
}

    .mobile-content h2 {
        font-size: clamp(1.6rem,6vw,2.4rem);
        font-weight: 800;
        background: linear-gradient(135deg,#f7971e,#ffd200);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: .6rem;
        line-height: 1.2
    }

    .mobile-content p {
        font-size: clamp(.9rem,3.5vw,1.05rem);
        color: #e0e6f0;
        line-height: 1.5;
        margin-bottom: 1.2rem
    }

    .mobile-content .btn {
        display: inline-block;
        padding: .6rem 1.8rem;
        background: linear-gradient(135deg,#f7971e,#ffd200);
        color: #0d0d0d;
        font-weight: 700;
        font-size: .9rem;
        border-radius: 50px;
        text-decoration: none;
        width: fit-content
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    pointer-events: none;
    z-index: 8
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top,rgba(0,0,0,.55),transparent);
    pointer-events: none;
    z-index: 8
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 73px)
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(0,0,0,.30);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin: 0 auto 40px
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C8451A;
    flex-shrink: 0
}

.hero-badge-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.70);
    white-space: nowrap
}

.hero-heading {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #fff;
    margin: 0 0 28px
}

    .hero-heading .orange {
        color: #C8451A;
        display: block
    }

.hero-divider {
    width: 40px;
    height: 2px;
    background: #C8451A;
    margin: 0 auto 28px
}

.hero-desc {
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 40px
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 47px;
    padding: 0 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease,border-color .2s ease,color .2s ease;
    cursor: pointer;
    white-space: nowrap
}

.hero-btn-primary {
    background: #C8451A;
    color: #fff;
    border: none;
    min-width: 215px
}

    .hero-btn-primary:hover {
        background: #A83612
    }

.hero-btn-secondary {
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.45);
    min-width: 200px
}

    .hero-btn-secondary:hover {
        border-color: rgba(255,255,255,.70);
        color: #fff
    }

.hero-btn-arrow {
    font-size: 16px;
    line-height: 1
}

.hero-footer {
    border-top: 1px solid rgba(255,255,255,.12);
    max-width: 680px;
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap
}

.hero-footer-item {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    letter-spacing: .3px;
    padding: 0 18px
}

.hero-footer-sep {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.20);
    flex-shrink: 0
}

@media(max-width:992px) {
    .banner {
        display: none !important
    }

        .banner-mobile {
        display: flex !important
    }

    .hero-heading {
        font-size: 48px
    }
}

@media(max-width:640px) {
    .hero-inner {
        padding: 48px 20px 64px
    }

    .hero-badge {
        margin-bottom: 28px;
        padding: 6px 12px
    }

    .hero-badge-text {
        font-size: 10px;
        letter-spacing: .6px
    }

    .hero-heading {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 22px
    }

    .hero-divider {
        margin-bottom: 22px
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 32px
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
        min-width: 0
    }

    .hero-footer {
        flex-direction: column;
        gap: 12px;
        padding-top: 24px
    }

    .hero-footer-sep {
        display: none
    }

    .hero-footer-item {
        padding: 0
    }
}
.site-header {
    position: relative;
    background: #fff;
    z-index: 50
}

.logo-break {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 60
}

    .logo-break img {
        height: 92px;
        width: auto;
        margin-top: -28px;
        display: block;
        transform: translateY(14px);
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .25));
    }

@media(max-width:1024px) {
    .logo-break img {
        height: 80px;
        margin-top: -28px;
        transform: translateY(15px);
    }
}

@media(max-width:768px) {
    .logo-break img {
        height: 70px;
        margin-top: -35px;
        transform: translateY(20px)
    }
}

@media(max-width:480px) {
    .logo-break img {
        height: 56px;
        margin-top: -28px;
        transform: translateY(17px)
    }
}
.services-section {
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 0 20px;
}

.services-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

/* Header */
.services-header {
    margin-bottom: 56px;
}

.services-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C8451A;
    margin: 0 0 12px;
}

.services-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.18;
    color: #161525;
    margin: 0 0 16px;
    max-width: 560px;
}

.services-intro {
    font-size: 18px;
    line-height: 1.72;
    color: #5a5a6e;
    max-width: 620px;
    margin: 0;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 280px;
    background: #161525;
}

    .service-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-card:hover img {
        transform: scale(1.04);
    }

.service-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(22, 21, 37, 0.94) 0%, rgba(22, 21, 37, 0.82) 42%, rgba(22, 21, 37, 0.30) 72%, transparent 100% );
    pointer-events: none;
}

.service-card-content {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.service-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C8451A;
    margin-bottom: 20px;
}

.service-name {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.28;
    margin: 0 0 10px;
    max-width: 54%;
}

.service-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.68;
    max-width: 50%;
    margin: 0;
    flex: 1;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 55%;
    margin-top: auto;
}

    .service-tag svg {
        width: 14px;
        height: 14px;
        color: #C8451A;
        flex-shrink: 0;
    }

    .service-tag span {
        font-size: 10.5px;
        color: rgba(255, 255, 255, 0.60);
        line-height: 1.3;
    }

/* CTA */
.services-cta {
    margin-top: 40px;
    text-align: center;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    border: 1.5px solid rgba(22, 21, 37, 0.25);
    background: transparent;
    color: #161525;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .services-btn:hover {
        border-color: #161525;
        background: rgba(22, 21, 37, 0.04);
    }

/* Responsive */
@media (max-width: 900px) {
    .services-title {
        font-size: 36px;
    }

    .services-intro {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 260px;
    }

    .service-name,
    .service-desc,
    .service-tag {
        max-width: 65%;
    }
}

@media (max-width: 640px) {
    .services-inner {
        padding: 48px 0 64px;
    }

    .services-header {
        margin-bottom: 36px;
    }

    .services-title {
        font-size: 28px;
    }

    .services-intro {
        font-size: 15px;
    }

    .service-card {
        height: 240px;
    }

    .service-card-content {
        padding: 22px;
    }

    .service-name,
    .service-desc,
    .service-tag {
        max-width: 70%;
    }
}
.philosophy-section {
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 0 20px;
}

.philosophy-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 0 120px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left column */
.philosophy-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C8451A;
    margin: 0 0 16px;
}

.philosophy-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.15;
    color: #161525;
    margin: 0 0 20px;
}

.philosophy-intro {
    font-size: 16px;
    line-height: 1.78;
    color: #5a5a6e;
    max-width: 440px;
    margin: 0 0 40px;
}

.philosophy-list {
    border-top: 1px solid #e8e8ed;
    margin-bottom: 40px;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e8e8ed;
}

.philosophy-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #C8451A;
    padding-top: 3px;
    width: 24px;
    flex-shrink: 0;
}

.philosophy-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #161525;
    margin: 0 0 2px;
}

.philosophy-item-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #5a5a6e;
    margin: 0;
}

.philosophy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    background: #0013a0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    transition: background 0.2s ease;
}

    .philosophy-btn:hover {
        background: #2a2a42;
    }

/* Right column – image card */
.philosophy-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #161525;
    min-height: 520px;
    position: sticky;
    top: 88px;
}

    .philosophy-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.55;
    }

.philosophy-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
    pointer-events: none;
}

.philosophy-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
}

.philosophy-card-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C8451A;
    margin: 0 0 12px;
}

.philosophy-card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    margin: 0 0 8px;
}

.philosophy-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.70);
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .philosophy-card {
        position: relative;
        top: auto;
        min-height: 400px;
    }

    .philosophy-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .philosophy-inner {
        padding: 56px 0 72px;
    }

    .philosophy-title {
        font-size: 28px;
    }

    .philosophy-intro {
        font-size: 15px;
    }

    .philosophy-card {
        min-height: 360px;
    }

    .philosophy-card-content {
        padding: 24px;
    }

    .philosophy-card-title {
        font-size: 18px;
    }
}
.how-section {
    background: #f5f5f8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 80px 20px 100px;
}

.how-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left column */
.how-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C8451A;
    margin: 0 0 12px;
}

.how-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.15;
    color: #161525;
    margin: 0 0 20px;
}

.how-intro {
    font-size: 15px;
    line-height: 1.78;
    color: #5a5a6e;
    margin: 0 0 40px;
}

.how-list {
    border-top: 1px solid #e0e0e6;
    margin-bottom: 40px;
}

.how-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e6;
}

.how-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #C8451A;
    padding-top: 3px;
    width: 24px;
    flex-shrink: 0;
}

.how-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #161525;
    margin: 0 0 4px;
    line-height: 1.35;
}

.how-item-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #5a5a6e;
    margin: 0;
}

.how-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    background: #0013a0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    transition: background 0.2s ease;
}

    .how-btn:hover {
        background: #2a2a42;
    }

/* Right column – image card */
.how-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #161525;
    min-height: 520px;
    position: sticky;
    top: 88px;
}

.how-card-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.60;
}

.how-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.30) 55%, transparent 100%);
    pointer-events: none;
}

.how-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
}

.how-card-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C8451A;
    margin: 0 0 12px;
}

.how-card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    margin: 0 0 8px;
}

.how-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.70);
    margin: 0;
}

/* Floating secondary image */
.how-card-float {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 112px;
    height: 112px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.20);
    background: rgba(22, 21, 37, 0.60);
}

    .how-card-float img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.70;
        display: block;
    }

/* Responsive */
@media (max-width: 900px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .how-card {
        position: relative;
        top: auto;
        min-height: 400px;
    }

    .how-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .how-section {
        padding: 56px 20px 72px;
    }

    .how-title {
        font-size: 28px;
    }

    .how-intro {
        font-size: 14px;
    }

    .how-card {
        min-height: 360px;
    }

    .how-card-content {
        padding: 24px;
    }

    .how-card-title {
        font-size: 18px;
    }

    .how-card-float {
        width: 88px;
        height: 88px;
        top: 16px;
        right: 16px;
    }
}
/* Dropdown container */
.nav-item {
    position: relative;
    display: inline-block;
}

    /* Main link */
    .nav-item > a {
        display: inline-block;
        padding: 8px 12px;
        text-decoration: none;
        color: inherit; /* keeps your original text-brand-body color */
    }

/* Submenu (hidden by default) */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
    padding: 6px 0;
    list-style: none;
    margin: 0;
}

/* Show submenu on hover */
.nav-item:hover .submenu {
    display: block;
}

/* Submenu links */
.submenu a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

    .submenu a:hover {
        background: #f3f4f6;
        color: #111;
    }
.musthoverbtn {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    color: inherit;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.3s ease;
    transform-origin: center;
}

    /* Hover effects */
    .musthoverbtn:hover {
        background: #c0040473;
        color:black;
        font-weight:500;
        transform: scale(1.08) translateY(-2px);
    }