:root {
    --primary: #165dff;
    --primary-dark: #0f45c7;
    --secondary: #101828;
    --accent: #42d3b2;
    --background: #f5f7fb;
    --text: #344054;
    --muted: #667085;
    --white: #ffffff;
    --border: #e4e7ec;
    --shadow: 0 20px 50px rgba(16, 24, 40, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
}

p {
    line-height: 1.75;
}

a {
    text-decoration: none;
}

.btn {
    border-radius: 10px;
    font-weight: 700;
    padding: 12px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 24px rgba(22, 93, 255, 0.25);
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
    }

.top-bar {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 9px 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .top-bar-content > div {
        display: flex;
        gap: 24px;
    }

.top-bar i {
    color: var(--accent);
    margin-right: 6px;
}

.top-bar a {
    color: white;
}

    .top-bar a:hover {
        color: var(--accent);
    }

.custom-navbar {
    min-height: 84px;
    border-bottom: 1px solid rgba(228, 231, 236, 0.8);
    box-shadow: 0 5px 20px rgba(16, 24, 40, 0.04);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 52px;
    height: 52px;
    padding: 0 7px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--primary), #6a55ff);
    color: white;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: var(--secondary);
}

    .brand-text strong {
        font-size: 1.25rem;
    }

    .brand-text small {
        margin-top: 4px;
        color: var(--muted);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

.navbar-nav {
    gap: 4px;
}

    .navbar-nav .nav-link {
        padding: 30px 12px;
        color: var(--secondary);
        font-size: 0.94rem;
        font-weight: 600;
    }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--primary);
        }

.navbar-contact-button {
    color: white !important;
    padding: 12px 20px !important;
}

.dropdown-menu {
    min-width: 240px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.dropdown-item {
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--secondary);
    font-weight: 500;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        color: var(--primary);
        background: rgba(22, 93, 255, 0.08);
    }

.hero-section {
    position: relative;
    overflow: hidden;
    color: white;
    background: radial-gradient( circle at 80% 20%, rgba(66, 211, 178, 0.20), transparent 28% ), linear-gradient( 125deg, #101828 0%, #183b7a 55%, #165dff 125% );
}

    .hero-section::after {
        content: "";
        position: absolute;
        right: -120px;
        bottom: -210px;
        width: 540px;
        height: 540px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50%;
    }

.min-vh-75 {
    min-height: 690px;
}

.hero-section h1 {
    max-width: 800px;
    margin: 18px 0 24px;
    color: white;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

    .hero-section h1 span {
        display: block;
        color: var(--accent);
    }

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-section .section-label {
    color: var(--accent);
}

.section-label-light {
    color: var(--accent);
}

.hero-description {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.17rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 32px 0;
}

    .hero-buttons .btn-outline-light:hover {
        color: var(--secondary);
    }

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.91rem;
}

    .hero-features i {
        color: var(--accent);
        margin-right: 6px;
    }

.hero-card {
    position: relative;
    z-index: 2;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.hero-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 28px;
    border-radius: 18px;
    color: var(--secondary);
    background: var(--accent);
    font-size: 2rem;
}

.hero-card h3 {
    color: white;
    font-size: 1.7rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.78);
}

.hero-card a {
    color: var(--accent);
    font-weight: 700;
}

.stats-section {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    padding: 34px 0;
    background: white;
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.07);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .stat-item strong {
        color: var(--primary);
        font-size: 2rem;
    }

    .stat-item span {
        color: var(--muted);
        font-size: 0.88rem;
    }

.content-section {
    padding: 100px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}

    .section-heading h2,
    .content-section h2,
    .industries-section h2,
    .form-section h2 {
        margin: 14px 0 18px;
        font-size: clamp(2rem, 4vw, 3rem);
        letter-spacing: -0.04em;
    }

    .section-heading p {
        color: var(--muted);
        font-size: 1.05rem;
    }

.service-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(22, 93, 255, 0.25);
        box-shadow: var(--shadow);
    }

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(22, 93, 255, 0.09);
    font-size: 1.55rem;
}

.service-card h3 {
    font-size: 1.25rem;
}

.service-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.service-card a {
    color: var(--primary);
    font-weight: 700;
}

.industries-section {
    padding: 100px 0;
    background: var(--background);
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}

    .industry-list div {
        padding: 15px;
        border: 1px solid var(--border);
        border-radius: 11px;
        background: white;
        font-weight: 600;
    }

    .industry-list i {
        color: var(--primary);
        margin-right: 8px;
    }

.process-card {
    padding: 40px;
    border-radius: 22px;
    color: white;
    background: var(--secondary);
    box-shadow: var(--shadow);
}

    .process-card .section-label {
        color: var(--accent);
        margin-bottom: 14px;
    }

.process-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

    .process-item:last-child {
        border-bottom: 0;
    }

    .process-item > span {
        color: var(--accent);
        font-weight: 800;
        font-size: 1.15rem;
    }

    .process-item h4 {
        color: white;
        font-size: 1.1rem;
    }

    .process-item p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.9rem;
    }

.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 55px;
    border-radius: 24px;
    color: white;
    background: linear-gradient(130deg, var(--primary), #6046df);
    box-shadow: 0 25px 60px rgba(22, 93, 255, 0.22);
}

    .cta-container h2 {
        margin: 12px 0;
        color: white;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .cta-container p {
        max-width: 680px;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.8);
    }

.page-banner {
    padding: 105px 0;
    color: white;
    background: radial-gradient( circle at 80% 20%, rgba(66, 211, 178, 0.18), transparent 25% ), linear-gradient(125deg, var(--secondary), #174494);
}

    .page-banner h1 {
        max-width: 850px;
        margin: 15px 0 20px;
        color: white;
        font-size: clamp(2.8rem, 6vw, 4.8rem);
        line-height: 1.08;
        letter-spacing: -0.05em;
    }

    .page-banner p {
        max-width: 700px;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 1.12rem;
    }

.detail-service {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 35px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 110px;
}

    .detail-service:last-child {
        border-bottom: 0;
    }

.detail-service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 86px;
    height: 86px;
    border-radius: 20px;
    color: var(--primary);
    background: rgba(22, 93, 255, 0.09);
    font-size: 2rem;
}

.detail-service h2 {
    margin: 10px 0 18px;
}

.check-list {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

    .check-list li {
        position: relative;
        margin-bottom: 13px;
        padding-left: 30px;
    }

        .check-list li::before {
            content: "\F26E";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-family: "bootstrap-icons";
            font-weight: 700;
        }

.benefit-item {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

    .benefit-item > i {
        display: flex;
        flex: 0 0 auto;
        justify-content: center;
        align-items: center;
        width: 54px;
        height: 54px;
        border-radius: 13px;
        color: var(--primary);
        background: rgba(22, 93, 255, 0.09);
        font-size: 1.35rem;
    }

    .benefit-item h4 {
        margin-bottom: 5px;
        font-size: 1.07rem;
    }

    .benefit-item p {
        color: var(--muted);
        font-size: 0.92rem;
    }

.employer-panel {
    padding: 42px;
    border-radius: 22px;
    background: var(--background);
    box-shadow: var(--shadow);
}

.industries-grid-section {
    padding: 100px 0;
    background: var(--background);
}

.industry-card,
.job-card,
.candidate-benefit,
.value-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: white;
}

    .industry-card > i,
    .job-card > i,
    .candidate-benefit > i,
    .value-card > i {
        display: inline-block;
        margin-bottom: 20px;
        color: var(--primary);
        font-size: 2rem;
    }

    .industry-card h3,
    .job-card h3,
    .candidate-benefit h3,
    .value-card h3 {
        font-size: 1.2rem;
    }

    .job-card span {
        color: var(--primary);
        font-size: 0.83rem;
        font-weight: 700;
    }

.candidate-benefits {
    padding: 80px 0;
    background: var(--background);
}

.form-section {
    padding: 100px 0;
}

.form-container {
    padding: 45px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
}

.form-heading {
    margin-bottom: 30px;
}

.form-control,
.form-select {
    min-height: 52px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    padding: 12px 15px;
}

textarea.form-control {
    min-height: auto;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 93, 255, 0.10);
}

.form-label {
    color: var(--secondary);
    font-size: 0.91rem;
    font-weight: 700;
}

.text-danger {
    display: block;
    margin-top: 5px;
    font-size: 0.82rem;
}

.contact-information {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

    .contact-information > div {
        display: flex;
        align-items: center;
        gap: 17px;
    }

    .contact-information i {
        display: flex;
        flex: 0 0 auto;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        border-radius: 13px;
        color: var(--primary);
        background: rgba(22, 93, 255, 0.09);
        font-size: 1.3rem;
    }

    .contact-information span {
        display: flex;
        flex-direction: column;
    }

    .contact-information small {
        color: var(--muted);
    }

    .contact-information strong {
        color: var(--secondary);
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.thank-you-section {
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 80px 0;
    background: var(--background);
}

.thank-you-card {
    max-width: 700px;
    margin: auto;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    background: white;
    box-shadow: var(--shadow);
}

.thank-you-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 82px;
    height: 82px;
    margin: 0 auto 25px;
    border-radius: 50%;
    color: white;
    background: var(--accent);
    font-size: 2.6rem;
}

.thank-you-card h1 {
    margin: 12px 0;
    font-size: 3rem;
}

.main-footer {
    padding: 75px 0 25px;
    color: rgba(255, 255, 255, 0.64);
    background: var(--secondary);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

    .footer-brand span:last-child {
        display: flex;
        flex-direction: column;
    }

    .footer-brand strong {
        color: white;
        font-size: 1.15rem;
    }

    .footer-brand small {
        font-size: 0.7rem;
        text-transform: uppercase;
    }

.main-footer h5 {
    margin-bottom: 20px;
    color: white;
    font-size: 1rem;
}

.main-footer a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.64);
}

    .main-footer a:hover {
        color: var(--accent);
    }

.social-links {
    display: flex;
    gap: 10px;
}

    .social-links a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        margin: 0;
        border-radius: 9px;
        color: white;
        background: rgba(255, 255, 255, 0.08);
    }

        .social-links a:hover {
            background: var(--primary);
        }

.footer-contact {
    margin-bottom: 12px;
}

    .footer-contact i {
        color: var(--accent);
        margin-right: 8px;
    }

.main-footer hr {
    margin: 45px 0 22px;
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.8rem;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }

    .custom-navbar {
        min-height: 74px;
    }

    .navbar-nav {
        padding: 20px 0;
        align-items: stretch !important;
    }

        .navbar-nav .nav-link {
            padding: 12px 5px;
        }

    .navbar-contact-button {
        margin-top: 10px;
        text-align: center;
    }

    .min-vh-75 {
        min-height: auto;
        padding: 110px 0;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 9px;
    }

    .content-section,
    .industries-section,
    .form-section,
    .industries-grid-section {
        padding: 75px 0;
    }

    .industry-list,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .detail-service {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-container,
    .form-container,
    .thank-you-card {
        padding: 32px 24px;
    }

    .page-banner {
        padding: 80px 0;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
.form-section-title {
    margin: 0;
    color: var(--secondary);
    font-size: 1.3rem;
}

.radio-question {
    height: 100%;
    min-height: 145px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background-color: #f9fafb;
}

    .radio-question legend {
        float: none;
        width: auto;
        margin-bottom: 18px;
        color: var(--secondary);
        font-size: 0.95rem;
        font-weight: 700;
    }

    .radio-question .form-check-input {
        cursor: pointer;
    }

    .radio-question .form-check-label {
        cursor: pointer;
        font-weight: 600;
    }

.upload-box {
    padding: 25px;
    border: 2px dashed #b8c5dc;
    border-radius: 15px;
    background-color: #f8faff;
}

.privacy-notice {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid #b9d5ff;
    border-radius: 14px;
    background-color: #eff6ff;
}

    .privacy-notice > i {
        flex: 0 0 auto;
        color: var(--primary);
        font-size: 1.7rem;
    }

    .privacy-notice strong {
        display: block;
        margin-bottom: 4px;
        color: var(--secondary);
    }

    .privacy-notice p {
        margin: 0;
        color: var(--muted);
        font-size: 0.9rem;
    }
