﻿:root {
    --ink: #0B2545;
    --steel: #145DA0;
    --steel-light: #E8F1FA;
    --amber: #2EC4A6;
    --amber-dark: #229D84;
    --slate: #3C4657;
    --slate-light: #7A8496;
    --paper: #F6F7FA;
    --line: #DFE4EC;
    --danger: #D64545;
    --radius-lg: 14px;
    --radius-sm: 8px;
}

* {
    font-family: Inter, sans-serif;
    box-sizing: border-box;
}

h1, h2, h3, .curvebtn, .banner-button {
    font-family: Inter, sans-serif;
}

body {
    color: var(--slate);
    background: var(--paper);
    margin: 0px;
}

a {
    color: var(--steel);
}

.banner-wrapper {
    width: 100%;
    background: linear-gradient(120deg, rgb(11, 37, 69) 0%, rgb(15, 52, 96) 55%, rgb(20, 71, 110) 100%);
    position: relative;
    overflow: hidden;
    padding: 20px 0px;
}

.banner-backdrop {
    position: absolute;
    inset: 0px;
    background: radial-gradient(circle at 12% 20%, rgba(46, 196, 166, 0.1) 0%, transparent 45%), radial-gradient(circle at 88% 78%, rgba(20, 93, 160, 0.35) 0%, transparent 50%);
    z-index: 1;
}

.rivet-line {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 4px;
    background: linear-gradient(90deg, var(--amber), var(--steel));
    z-index: 3;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1240px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.banner-logo {
    display: block;
    margin-bottom: 4px;
}

    .banner-logo img {
        height: 50px;
        width: auto;
        display: block;
        background: rgb(255, 255, 255);
        border-radius: 5px;
    }

.banner-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 196, 166, 0.14);
    border: 1px solid rgba(46, 196, 166, 0.5);
    color: var(--amber);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
}

.banner-main-text h1 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.18;
    color: rgb(255, 255, 255);
    letter-spacing: -0.5px;
    margin: 0px;
}

.banner-main-text .free-highlight {
    color: var(--amber);
}

.banner-main-text .justjob-highlight {
    color: rgb(127, 200, 248);
}

.banner-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    max-width: 460px;
    font-weight: 500;
}

.banner-cta-section {
    display: flex;
    gap: 14px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.banner-button {
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.banner-button-primary {
    background: var(--amber);
    color: rgb(255, 255, 255);
    box-shadow: rgba(46, 196, 166, 0.25) 0px 10px 24px;
}

a:focus, a:hover {
    outline: none;
    color: rgb(255, 255, 255) !important;
    text-decoration: none !important;
}

.banner-button-secondary {
    background: transparent;
    color: rgb(255, 255, 255);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

    .banner-button-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.7);
    }

.banner-trust {
    display: flex;
    gap: 22px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    gap: 7px;
    align-items: center;
}

.trust-icon {
    color: var(--amber);
    font-size: 14px;
}

.trust-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.banner-right {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: 16px;
    backdrop-filter: blur(12px);
    max-width: 340px;
    width: 100%;
}

    .visual-card h2 {
        font-size: 23px;
        font-weight: 600;
        color: rgb(255, 255, 255);
        margin: 0px 0px 6px;
    }

    .visual-card > p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        margin: 0px 0px 18px;
    }

    .visual-card ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .visual-card li {
        display: flex;
        gap: 10px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 500;
        line-height: 1.4;
        align-items: flex-start;
    }

        .visual-card li::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--amber);
            margin-top: 6px;
            flex-shrink: 0;
        }

.highlight-box {
    background: rgba(46, 196, 166, 0.1);
    border-left: 3px solid var(--amber);
    padding: 12px 14px;
    border-radius: 6px;
    margin-top: 18px;
}

    .highlight-box p {
        margin: 0px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.85);
    }

.contents {
    background: var(--paper);
    padding: 25px 0px;
}

.custom-container {
    width: 90%;
    max-width: 1240px;
    margin: 0px auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.page-head {
    color: var(--ink);
    font-weight: 800;
    font-size: 24px;
    margin: 0px 0px 6px;
    letter-spacing: -0.4px;
}

.lead-line {
    font-size: 16px;
    font-weight: 600;
    color: var(--steel);
    margin: 0px 0px 5px;
}

.abtcompany p {
    color: var(--slate);
    font-size: 13px;
    line-height: 1.65;
}

.subject-heading {
    color: var(--ink);
    font-weight: 700;
    font-size: 19px;
    margin: 10px 0px;
}

.feature-list {
    list-style: none;
    padding: 0px;
    margin: 0px 0px 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 7px;
        background: rgb(255, 255, 255);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        color: var(--slate);
        font-size: 13.5px;
        line-height: 1.55;
    }

    .feature-list .bullet-icon {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: var(--steel-light);
        color: var(--steel);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

    .feature-list li b {
        color: var(--ink);
        font-size: 14.5px;
    }

.cta-box {
    background: var(--ink);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin: 15px 0px 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-box::before {
        content: "";
        position: absolute;
        top: -40%;
        right: -10%;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(46, 196, 166, 0.18), transparent 70%);
    }

    .cta-box .subject-heading {
        margin-top: 0px;
        color: rgb(255, 255, 255);
    }

    .cta-box p {
        color: rgba(255, 255, 255, 0.72);
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

.curvebtn {
    display: inline-block;
    border-radius: var(--radius-sm);
    background: var(--amber);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: transform 0.18s, background 0.18s;
    color: rgb(22, 35, 58) !important;
}

    .curvebtn:hover {
        background: var(--amber-dark);
        transform: translateY(-1px);
        color: rgb(22, 35, 58) !important;
    }

.cta-sub {
    margin-top: 16px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    z-index: 1;
    margin-bottom: 0px !important;
}

.tagline {
    text-align: center;
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
    margin-top: 15px;
}

.position_sticky {
    position: sticky;
    top: 24px;
}

.enquiry-frm-bx {
    position: relative;
    background: rgb(255, 255, 255);
    border: 1px solid var(--line);
    box-shadow: rgba(11, 37, 69, 0.06) 0px 10px 30px;
    border-radius: var(--radius-lg);
    padding: 15px 20px !important;
}

.connect-header {
    color: var(--ink);
    font-size: 17px;
    text-align: left;
    font-weight: 700;
    line-height: 1.4;
    margin: 0px 0px 4px;
}

.connect-sub {
    font-size: 12.5px;
    color: var(--slate-light);
    margin: 0px 0px 5px;
}

.field-label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.form-bx .wpcf7-form-control-wrap {
    margin-bottom: 6px;
}

.justjoblink:hover {
}

.form-bx .form-control, .form-bx select.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--slate);
    font-weight: 300;
}

    .form-bx .form-control:focus {
        outline: none;
        border-color: var(--steel);
        background: rgb(255, 255, 255);
        box-shadow: rgba(20, 93, 160, 0.12) 0px 0px 0px 3px;
    }

.form-bx textarea.form-control {
    min-height: 78px;
    resize: vertical;
}

.form-control:not(.note-image-input) {
    height: 36px !important;
}

.captch-bx {
    padding: 0px;
    margin: 0px 0px 6px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    height: 37px;
}

    .captch-bx .captcha_text {
        background-image: url("../Images/captchaimg.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        font-family: Inter, sans-serif;
        font-weight: 700;
        font-size: 16px;
        padding: 6px 15px;
        display: block;
        height: 38px;
        color: rgb(255, 255, 255) !important;
    }

.btn-box {
    margin-top: 10px;
    text-align: center;
}

.morebutton.redbg {
    background: rgb(0, 90, 148);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 13px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    transition: background 0.18s, transform 0.18s;
    color: rgb(255, 255, 255) !important;
}

    .morebutton.redbg:hover {
        background: rgb(0, 90, 148);
        transform: translateY(-1px);
    }

.validity, .errormsg {
    color: var(--danger);
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.form-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: var(--steel-light);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--steel);
}

#enquiryModal .modal-content {
    border-radius: var(--radius-lg);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    overflow: hidden;
}

#enquiryModal .modal-header {
    background: var(--ink);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 18px 24px;
}

    #enquiryModal .modal-header .close {
        color: rgb(255, 255, 255);
        opacity: 0.8;
        text-shadow: none;
    }

#enquiryModal .modal-body {
    padding: 26px;
}

@media (max-width: 991px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .position_sticky {
        position: static;
        margin-top: -41px;
    }

    .banner-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
    }

    .banner-right {
        order: -1;
        margin-top: -25px;
        width: 330px !important;
    }

    .visual-card {
        max-width: 100%;
    }

    .form-control:not(.note-image-input) {
        height: 35px !important;
    }

    .form-bx .form-control, .form-bx select.form-control {
        padding: 8px 9px;
        font-size: 12px;
    }

    #txtVerificationCode:not(.note-image-input) {
        height: 42px !important;
    }
}

@media (max-width: 767px) {
    .banner-wrapper {
        padding: 18px 0px;
    }

    .banner-main-text h1 {
        font-size: 32px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .banner-cta-section {
        flex-direction: column;
    }

    .banner-button {
        width: 100%;
        text-align: center;
    }

    .page-head {
        font-size: 24px;
    }
}
