* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

section {
    scroll-margin-top: 90px;
}

.tab-3 {
    margin-right: 10px;
}

.container {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}


.desktop-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(6, 28, 60, 0.08);
}

.desktop-header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px;
}

footer {
    .logo {
        width: 200px;
        height: 60px;
        object-fit: contain;
    }

}

.thank-you-section {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    background: rgba(0, 0, 0, 0.6);

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.open {
    display: flex;
}

.thank-you-content {
    display: flex;
    flex-direction: column; 
    gap: 12px;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 550px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.thank-you-image {
    width: 200px;
}

.thank-you-close {
    position: absolute;
    top: 15px;
    right: 20px;

    border: 0;
    background: none;

    font-size: 30px;
    cursor: pointer;
}

/* ========================================
   Full Screen Loading Overlay
======================================== */

.loading-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
    padding: 30px;
}

.klanko-loader {
    width: 280px;
    max-width: 80vw;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.loading-content h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    color: #12365d;
}

.loading-content p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

.desktop-header .logo {
    width: 200px;
    height: 60px;
    object-fit: contain;
}

.desktop-header .nav-tabs {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-header .nav-tabs li {
    margin: 0;
    padding: 0;
}

.desktop-header .nav-tabs a {
    position: relative;
    display: inline-block;
    color: #0B1F3A;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Hover */
.desktop-header .nav-tabs a:hover {
    color: #E21B23;
}

/* Active link */
.desktop-header .nav-tabs a.active {
    color: #E21B23;
}

/* Active underline */
.desktop-header .nav-tabs a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #E21B23;
    transition: width 0.3s ease;
}

/* Show underline on active */
.desktop-header .nav-tabs a.active::after {
    width: 100%;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent sticky header from covering sections */
#home,
#about,
#categories,
#cta {
    scroll-margin-top: 90px;
}

.nav-tabs {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 0 auto;
}

.nav-tabs a {
    text-decoration: none;
    color: #0b1f3a;
    font-size: 18px;
    font-weight: 700;
}

footer {
    background: #0b1f3a;
    display: flex;
}

.footer-wrapper {
    display: flex;
    padding: 20px 28px;
}

.footer-sections {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 0 auto;
    color: white;
}

.title {
    font-size: 18px;
    font-weight: 600;
    color: #112b52;
}

.cta-tagline {
    font-size: 40px;
    font-weight: 600;
}

.cta-desc {
    font-size: 18px;
    color: #666;
}

.highlight-secondary {
    color: #e21b23;
}

.highlight-primary {
    color: #112b52;
}

.highlight-teritiary {
    color: #64748B;
}

.cta-section {
    background: #f5f8fc;
}

.cta {
    display: flex;
    gap: 50px;

    .left {
        padding: 0 50px;
    }

    .right {
        padding-right: 75px;
    }
}

.pt-4 {
    padding-top: 40px;
}

.pt-2 {
    padding-top: 20px;
}

.pt-3 {
    padding-top: 30px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-4 {
    padding-bottom: 40px;
}

.usp-wrapper {
    display: flex;
    justify-content: space-evenly;
    background: #0B1F3A;
    padding: 30px;
}

.usp {
    display: flex;
    gap: 18px;
    position: relative;

    img {
        height: 55px;
    }

    .usp-content {
        display: flex;
        flex-direction: column;
        gap: 5px;
        justify-content: center;
        align-items: center;

        p {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
        }

        span {
            color: #fff;
            font-size: 12px;
        }
    }
}

.usp:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #fff;
}

.requirement-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(25, 55, 90, 0.12);
}

.form-title {
    color: #0b1f3a;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.form-title : :after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #e21b23;
    margin-top: 9px;
}

.form-description {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.requirement-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.row {
    display: flex;
    gap: 10px;
}

.field {
    position: relative;
    width: 100%;
}

.row .field {
    flex: 1;
}

.field-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 12px;
    pointer-events: none;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #e2e5e9;
    border-radius: 6px;
    background: #fff;
    color: #555;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}

.field input,
.field select {
    height: 50px;
    padding: 0 11px;
}

.field input.has-icon,
.field select.has-icon {
    padding-left: 29px;
}

.field textarea {
    height: 150px;
    padding: 11px;
    resize: none;
    line-height: 1.5;
}

.field input : :placeholder,
.field textarea : :placeholder {
    color: #777;
    opacity: 1;
}

.field input : focus,
.field select : focus,
.field textarea : focus {
    border-color: #c91829;
    box-shadow: 0 0 0 2px rgba(201, 24, 41, 0.06);
}

.textarea-field {
    position: relative;
}

.char-count {
    position: absolute;
    right: 10px;
    bottom: 8px;
    font-size: 8px;
    color: #777;
}

.expert-help {
    height: 50px;
    padding: 25px;
    border: none;
    border-radius: 6px;
    background: #e21b23;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease, transform 0.2s ease;

    i {
        font-size: 18px;
    }
}

.prefer-cta {
    padding: 20px;
    border: none;
    border-radius: 6px;
    background: #112b52;
    color: #fff;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.2s ease, transform 0.2s ease;

    i {
        font-size: 20px;
        color: #112b52;
    }

    .white-circle {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .prefer-cta-right {
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 16px;
    }
}

.cta-icons {
    display: flex;
    gap: 20px;
}

.cta-icon-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;

    span {
        color: #112b52;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.3;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #ddd;
        display: flex;
        align-items: center;
        justify-content: center;

        i {
            font-size: 25px;
            color: #112b52;
        }
    }
}

.categories {
    padding-top: 20px;
    padding-bottom: 20px;
}

.categories-wrapper {
    display: flex;
    padding: 25px 50px;
    gap: 20px;
    align-items: center;
}

.categories-icon-wrapper {
    display: flex;
    gap: 10px;
}

.category {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    position: relative;

    span {
        color: #112b52;
        font-weight: 700;
        font-size: 14px;
    }

    p {
        font-size: 12px;
        color: #64748B;
    }

    img {
        width: 130px;
    }
}

.category:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #d9d9d9;
}

.submit-btn {
    height: 50px;
    width: 100%;
    border: none;
    border-radius: 6px;
    background: #e21b23;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.submit-btn : hover {
    background: #c51020;
}

.submit-btn : active {
    transform: translateY(1px);
}

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

.privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #777;
    font-size: 12px;
    margin-top: 1px;
}

.privacy i {
    color: #777;
    font-size: 12px;
}

.field-icon {
    font-size: 14px;
}

.about-banner {
    position: relative;
    min-height: 430px;
    background-image: url("../images/about-us.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    min-height: 430px;
    background-image: url("../images/home-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content,
.about-content {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px;
    box-sizing: border-box;
    color: #ffffff;
}

.hero-eyebrow {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    flex-direction: column;
}

.dash {
    display: block;
    width: 45px;
    height: 3px;
    background: #e21b23;
    margin-top: 9px;
}

.hero-eyebrow p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 500;
    color: #ffffff;
}

.hero-content h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.about-content h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-content h1 strong {
    color: #e21b23;
    font-weight: 700;
}

.about-content h1 strong {
    color: #e21b23;
    font-weight: 700;
}

.hero-description {
    max-width: 570px;
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    color: #ffffff;
}

.about-description {
    max-width: 570px;
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

.about-goal {
    display: flex;
    align-items: center;
    gap: 10px;

    i {
        font-size: 50px;
        color: #E21B23;
    }

    p {
        font-size: 18px;
    }
}

.mobile-header,
.mobile-menu {
    display: none;
}



/*Mobile Styles*/

@media (max-width: 768px) {
    .mobile-header {
        width: 100%;
        background: #ffffff;
        position: relative;
        z-index: 1000;
        display: block;
    }

    .mobile-header .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
    }

    .mobile-header .logo {
        width: 115px;
        height: auto;
    }


    /* =========================================
   HAMBURGER
========================================= */

    .hamburger {
        width: 42px;
        height: 42px;

        border: none;
        background: transparent;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;

        background: #061c3c;
        border-radius: 3px;
    }


    /* =========================================
   FULL SCREEN MOBILE MENU
========================================= */

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        z-index: 9999;
        overflow: hidden;

        /* Start outside screen */
        transform: translateX(100%);

        /* Smooth right → left animation */
        transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    }


    /* Menu open */

    .mobile-menu.active {
        transform: translateX(0);
    }


    /* =========================================
   MENU HEADER
========================================= */

    .mobile-menu-header {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 18px 40px;
    }

    .menu-logo {
        width: 115px;
        height: auto;
    }


    /* =========================================
   CLOSE BUTTON
========================================= */

    .close-menu {
        width: 36px;
        height: 36px;

        border: none;
        background: transparent;

        color: #061c3c;

        font-size: 32px;
        font-weight: 300;

        line-height: 1;

        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* =========================================
   MENU LINKS
========================================= */

    .mobile-nav-links {
        list-style: none;
        margin: 0;
        padding: 40px;
    }

    .mobile-nav-links li {
        margin-bottom: 28px;
        opacity: 0;
        transform: translateX(30px);
        transition:
            opacity 0.35s ease,
            transform 0.35s ease;
    }


    /* Animate links when menu opens */

    .mobile-menu.active .mobile-nav-links li {
        opacity: 1;
        transform: translateX(0);
    }


    /* Stagger animation */

    .mobile-menu.active .mobile-nav-links li:nth-child(1) {
        transition-delay: 0.10s;
    }

    .mobile-menu.active .mobile-nav-links li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .mobile-menu.active .mobile-nav-links li:nth-child(3) {
        transition-delay: 0.20s;
    }

    .mobile-menu.active .mobile-nav-links li:nth-child(4) {
        transition-delay: 0.25s;
    }


    .mobile-nav-links a {
        color: #061c3c;
        text-decoration: none;
        font-size: 26px;
        font-weight: 600;
        display: block;
        transition: color 0.2s ease;
    }

    .mobile-nav-links a:hover {
        color: #E21B23;
    }


    .footer-sections {
        margin: unset;
    }

    .categories {
        padding-top: 40px;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 5px;
    }

    .desktop-header {
        display: none;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-banner {
        min-height: 520px;
        background-position: 62% center;
    }

    .hero-content {
        padding: 40px 25px;
        background-color: rgba(4, 51, 115, 0.79);
    }

    .about-content {
        padding: 40px 25px;
        background-color: rgb(211 219 227 / 74%);
    }

    .hero-eyebrow {
        gap: 10px;
    }

    .hero-eyebrow span {
        width: 35px;
    }

    .hero-eyebrow p {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -1px;
        color: #ffffff;
    }

    .about-content h1 {
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero-description {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.6;
    }

    .cta {
        flex-direction: column;
    }

    .categories-wrapper {
        flex-direction: column;
        padding: 0px;
    }

    .categories-icon-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        width: 100%;
    }

    .category {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
        text-align: center;
    }

    .category img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 8px;
    }

    .category span {
        font-size: 14px;
        line-height: 1.3;
    }

    /* Line only on left column (odd items) */
    .category:nth-child(odd)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #d9d9d9;
    }

    /* Explicitly ensure right column (even items) never gets a line */
    .category:nth-child(even)::after {
        display: none;
    }

    /* Covers case where the last item is alone in its row (odd total count) */
    .category:last-child::after {
        display: none;
    }

    .cta {
        gap: 30px;
        padding-top: 10px;

        .left {
            padding: 0;
        }

        .right {
            padding-right: 0;
        }
    }

    .hero-banner {
        min-height: 350px;
    }

    .prefer-cta {
        .white-circle {
            width: 50px;
            height: 30px;
        }

        i {
            font-size: 18px;
        }
    }


    .cta-tagline {
        font-size: 30px;
    }

    .cta-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        width: 100%;
    }

    .icon-circle {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
        text-align: center;
    }


    .usp-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        width: 100%;
    }

    .usp {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
        text-align: center;
    }

    .usp:nth-child(odd)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #d9d9d9;
    }

    .expert-help-wrapper {
        align-items: center;
        display: flex;
        justify-content: center;
        padding-top: 35px;
    }

    .prefer-cta {
        width: 100%;
    }
}

/*Tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

    .desktop-header .navbar {
        padding: 10px 0px;
    }

    .categories-wrapper {
        flex-direction: column;
    }

    .categories-content {
        align-self: flex-start;
    }

    .cta {
        flex-direction: column;

        .right {
            padding: 0 50px;
        }
    }

    .cta-icons {
        justify-content: space-evenly;
    }

    .expert-help-wrapper {
        display: none;
    }

    .prefer-cta-wrapper {
        padding-top: 30px;
    }
}