@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/web/InterVariable.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/web/InterVariable-Italic.woff2') format('woff2');
}

html {
    font-size: 16px;
}

html,
body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    position: relative;
    min-height: 100dvh;
    background-color: #212121;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #000000;
    overflow-x: hidden;
}

.fixed-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: #212121;
    background-image: url('/images/napatree.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media screen and (orientation: portrait) {
    .fixed-bg {
        background-image: url('/images/napatree_portrait.jpg');
        background-position: center top;
    }
}

@media (max-width: 900px) {
    .fixed-bg {
        background-position: center top;
    }
}

html.loading body {
    visibility: hidden;
}

div.bottom_bar {
    background-color: rgba(255, 255, 255, 0.5);
    color: #000000;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 100%;
}

div.top_bar {
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    width: 100%;
}

div.top_bar_inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: min(1000px, calc(100% - 32px));
    min-width: 0;
    gap: 24px;
}

div.top_bar_left {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    padding: 12px 0;
}

div.top_bar_left img {
    display: block;
    height: 150px;
    width: auto;
}

div.top_bar_right {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 42px;
    font-size: 1.125rem;
    font-weight: 600;
    width: 100%;
}

div.top_bar_right a {
    color: #000000;
    text-decoration: none;
}

div.top_bar_right a:hover {
    color: #28b0fc;
    text-decoration: none;
}

div.content {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 0;
    height: auto;
    flex: 1;
}

div.content_inner {
    width: min(1000px, calc(100% - 32px));
    min-width: 0;
    padding-top: 10px;
    padding-bottom: 28px;
}

@keyframes drop_in {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    60% {
        opacity: 1;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

div.content_tile,
div.content_tile_wide,
div.content_tile_short,
div.content_tile_wide_short {
    animation: drop_in 0.6s ease-out forwards;
    opacity: 0;
}

div.content_tile_short:hover {
    background-color: rgba(206, 219, 225, 0.8);
    border: 1px solid #57b0df;
    cursor: pointer;
}

div.cts_a { animation-delay: 0.10s; }
div.cts_b { animation-delay: 0.20s; }
div.cts_c { animation-delay: 0.30s; }
div.cts_d { animation-delay: 0.40s; }
div.cts_e { animation-delay: 0.50s; }
div.cts_f { animation-delay: 0.60s; }
div.cts_g { animation-delay: 0.70s; }
div.cts_h { animation-delay: 0.80s; }

div.services_grid {
    width: 100%;
}

div.services_row_single {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

div.services_row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

span.box_text {
    font-size: 1rem;
    font-weight: 400;
}

.whc_tiles {
    width: 100%;
    box-sizing: border-box;
}

.whc_tiles div.content_tile_wide_short,
.whc_tiles div.content_tile {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    border-radius: 28px;
    border: none;
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow:
        0 18px 45px rgba(18, 38, 63, 0.22),
        0 4px 12px rgba(18, 38, 63, 0.10);
    color: #13283a;
}

.whc_tiles div.content_tile_wide_short::before,
.whc_tiles div.content_tile::before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(90deg, #9cc3df 0%, #5f8eb9 45%, #2f567d 100%);
}

.whc_card_inner {
    padding: 24px 28px 26px 28px;
    box-sizing: border-box;
}

.whc_card_welcome .whc_card_inner {
    padding: 26px 30px 26px 30px;
}

.whc_card_inner_flex {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 100%;
}

.whc_eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #5b7f9e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.whc_title {
    margin: 0;
    color: #142a3d;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.whc_title_welcome {
    font-size: 34px;
    margin-bottom: 14px;
}

.whc_card_header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.whc_icon_badge {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(107,156,197,0.16) 0%, rgba(47,86,125,0.12) 100%);
    border: 1px solid rgba(70,113,150,0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.60);
}

.whc_icon_badge svg {
    width: 24px;
    height: 24px;
    fill: #2f567d;
}

.whc_text,
.whc_intro {
    margin: 0;
    color: #263847;
    font-size: 16px;
    line-height: 1.62;
    font-weight: 400;
}

.whc_text + .whc_text {
    margin-top: 16px;
}

.whc_intro {
    margin-bottom: 16px;
}

.whc_list {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 10px;
    list-style: none;
}

.whc_list li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 18px;
    color: #243645;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.whc_list li:last-child {
    margin-bottom: 0;
}

.whc_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5e8fbc;
    box-shadow: 0 0 0 4px rgba(94, 143, 188, 0.12);
}


.whc_spacer {
    flex: 1 1 auto;
    min-height: 16px;
}

.whc_cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #1e4f79;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.whc_cta:hover {
    color: #133954;
    transform: translateX(2px);
}

.whc_cta_arrow {
    font-size: 17px;
    line-height: 1;
}

.contact-card {
    animation: drop_in 0.6s ease-out forwards;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 980px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    box-shadow: 0px 6px 6px #ababab;
    overflow: hidden;
    line-height: 1.5;
    width: 980px;
    margin: 10px;
}

.contact-card * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contact-card-header {
    background: #2A3648;
    padding: 1.75rem 2rem;
}

.contact-card-header h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card-header p {
    color: #94a3b8;
    font-size: 1rem;
}

.contact-card-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contact-card-body * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contact-form-section h3,
.contact-info-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #1e293b;
}

.contact-form-group {
    margin-bottom: 1rem;
}

.contact-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-group select {
    background-color: #ffffff;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.contact-form-group textarea {
    resize: none;
    min-height: 100px;
}

.contact-form-group input::placeholder,
.contact-form-group select::placeholder,
.contact-form-group textarea::placeholder {
    color: #94a3b8;
}

.contact-form-tos label {
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    color: #64748b;
    margin-bottom: 1rem;
}

.contact-submit-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: #57b0df;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

.contact-submit-btn:hover {
    background: #0e7490;
}

.contact-submit-btn:active {
    transform: scale(0.98);
}

.contact-form-note {
    text-align: center;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 0.75rem;
}

.contact-info-section {
    border-left: 1px solid #e2e8f0;
    padding-left: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: #64748b;
}

.contact-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.15rem;
}

.contact-value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

.contact-value.email {
    color: #57b0df;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-address {
    line-height: 1.6;
}

.contact-trust-badge {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-trust-icon {
    width: 32px;
    height: 32px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-trust-icon svg {
    width: 16px;
    height: 16px;
    stroke: #059669;
}

.contact-trust-text strong {
    display: block;
    font-size: 0.875rem;
    color: #1e293b;
}

.contact-trust-text span {
    font-size: 0.875rem;
    color: #64748b;
}

@media (max-width: 900px) {
    div.top_bar {
        padding: 8px 0 12px 0;
    }

    div.top_bar_inner {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }

    div.top_bar_left {
        justify-content: center;
        padding: 6px 0 0 0;
    }

    div.top_bar_left img {
        height: 110px;
    }

    div.top_bar_right {
        justify-content: center;
        gap: 18px 24px;
        font-size: 1rem;
        text-align: center;
    }

    div.services_row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        width: auto;
        max-width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    body {
        min-height: 100svh;
        min-height: 100dvh;
    }

    div.content_inner {
        width: calc(100% - 24px);
        padding-top: 8px;
        padding-bottom: 24px;
    }

    .contact-card-body {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding-left: 0;
        padding-top: 2rem;
    }
}

@media (max-width: 640px) {
    div.top_bar_left img {
        height: 92px;
    }

    div.top_bar_right {
        gap: 14px 18px;
        font-size: 0.95rem;
    }

    .whc_card_inner,
    .whc_card_welcome .whc_card_inner {
        padding: 20px;
    }

    .whc_title {
        font-size: 22px;
    }

    .whc_title_welcome {
        font-size: 28px;
    }

    .whc_text,
    .whc_intro,
    .whc_list li {
        font-size: 15px;
    }

    .whc_card_header {
        gap: 12px;
    }

    .whc_icon_badge {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .whc_icon_badge svg {
        width: 22px;
        height: 22px;
    }
}


div.view_service {
    display: flex;
}

div.service_left {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 20px;
    margin-left: 10px;
    flex: 1;
}

div.service_right {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-left: 20px;
    flex: 1;
}

div.view_service_bottom {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-left: 10px;
}

div.pricing_row {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

div.pricing_box {
    background-color: #f8f8f8;
    border: 1px solid #5e8fbc;
    border-radius: 8px;
    flex: 1;
    margin: 10px;
    min-width: 230px;
    padding: 10px;
}

div.pricing_box_head {
    align-items: center;
    display: flex;
    flex-direction: column;
}

div.pricing_box_head_title {
    font-size: 1.3rem;
    font-weight: bold;
}

div.pricing_box_head_price {
    font-size: 1.3rem;
    font-weight: bold;
}

div.pricing_box_head_trial {
    background-color: #F4D06F;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    padding-left: 8px;
    padding-right: 8px;
}

div.pricing_box_head_right {
    align-items: center;
    display: flex;
    justify-content: right;
    flex: 1;
    font-size: 1rem;
    text-align: right;
}

.signup-submit-btn {
    width: 80%;
    padding: 0.8rem 1.5rem;
    background: #57b0df;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

.signup-submit-btn:hover {
    background: #0e7490;
}

.signup-submit-btn:active {
    transform: scale(0.98);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pillar-header {
    align-items: center;
    font-size: 12pt;
    font-weight: 800;
    color: var(--ocean-deep);
    display: flex;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillar-header svg {
    margin-right: 8px;
}

.pillar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar li {
    font-size: 12pt;
    margin-bottom: 12px;
    color: var(--text-main);
    position: relative;
    padding-left: 15px;
}

.pillar li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5e8fbc;
    box-shadow: 0 0 0 4px rgba(94, 143, 188, 0.12);
}

.pillar li strong {
    display: block;
    font-weight: 600;
    color: var(--ocean-mid);
    font-size: 12.5pt;
}

.solution-bridge {
    margin-bottom: 30px;
    text-align: center;
}

.solution-bridge h2 {
    font-size: 13pt;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--ocean-mid);
    margin: 0;
    display: inline-block;
    border-bottom: 2px solid #5b7f9e;
    padding-bottom: 5px;
}

@media screen and (max-width: 900px) {
    div.view_service_bottom .pillars-grid {
        display: block !important;
    }

    div.view_service_bottom .pillar {
        width: 100% !important;
        margin-bottom: 40px !important;
        display: block !important;
    }

    .whc_eyebrow {
        display: inline-block;
        margin-bottom: 8px;
        color: #5b7f9e;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }
}


.whc_hero_trust_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.whc_trust_item {
    display: flex;
    align-items: center;
    flex: 1;
}

.whc_trust_item + .whc_trust_item {
    margin-left: 20px;
}

.whc_trust_icon {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    color: #1a2b3c;
    flex-shrink: 0;
}

.whc_trust_icon svg {
    width: 100%;
    height: 100%;
}

.whc_trust_text h3 {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whc_trust_text p {
    margin: 2px 0 0 0;
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 768px) {
    .whc_hero_trust_row {
        flex-direction: column;
        align-items: flex-start;
        border-top: none;
        margin-top: 10px;
        padding-top: 0;
    }

    .whc_trust_item {
        margin: 15px 0;
        width: 100%;
    }

    .whc_trust_item + .whc_trust_item {
        margin-left: 0;
    }
}


.nav_dropdown {
    position: relative;
    display: inline-block;
}

.dropdown_trigger {
    cursor: default;
}

.dropdown_menu {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(18, 38, 63, 0.2);
    padding: 10px 0;
    z-index: 9999;
}

.dropdown_menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown_menu a {
    color: #000000 !important;
    padding: 12px 24px !important;
    display: block !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-align: left !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown_menu a:hover {
    background-color: rgba(40, 176, 252, 0.1);
    color: #28b0fc !important;
    padding-left: 30px !important;
}

.nav_dropdown:hover .dropdown_menu {
    display: block;
    animation: dropdown_fade_in 0.3s ease-out forwards;
}

@keyframes dropdown_fade_in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .dropdown_menu {
        position: absolute !important;
        top: calc(100% + 5px) !important;
        left: 0 !important;
        transform: none !important;
        min-width: 220px;
        background: rgba(255, 255, 255, 0.95) !important;
    }

    .dropdown_menu::before {
        height: 5px !important;
        top: -5px !important;
    }

    .dropdown_menu a {
        text-align: left !important;
        font-size: 0.9rem !important;
        padding: 10px 20px !important;
        white-space: nowrap;
    }
}

.expertise_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.expertise_card {
    height: 100%;
    padding: 0 !important;
}

.whc_title_small {
    font-size: 20px;
    margin-bottom: 16px;
}

.solution_bridge {
    text-align: center;
    margin: 40px 0 30px 0;
}

.solution_bridge h2 {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #142a3d;
    display: inline-block;
    border-bottom: 2px solid #5b7f9e;
    padding-bottom: 8px;
}

.cta_container {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.contact-card_modern {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(18, 38, 63, 0.15);
}

.contact-card_inner_wrapper {
    padding: 40px;
}

.contact_title {
    font-size: 28px;
    font-weight: 800;
    color: #142a3d;
    margin-bottom: 8px;
    text-align: center;
}

.contact_subtitle {
    text-align: center;
    color: #5b7f9e;
    margin-bottom: 32px;
    font-size: 1rem;
}

.modern_form .form_row {
    display: flex;
    gap: 20px;
}

.modern_form .contact-form-group {
    margin-bottom: 16px;
    flex: 1;
}

@media (max-width: 900px) {
    .expertise_grid {
        grid-template-columns: 1fr;
    }
    
    .modern_form .form_row {
        flex-direction: column;
        gap: 0;
    }

    .contact-card_inner_wrapper {
        padding: 25px;
    }

    .contact_title {
        font-size: 24px;
    }
}

footer {
    /* background-color: #1a1a1a; */
    background-color: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}
