﻿/* BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter','Segoe UI',sans-serif;
    line-height: 1.6;
    color: #333;
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* UTILITIES */
.my-4 {
    margin: 2rem 0;
}

.text-center {
    text-align: center;
}

.text-md-right {
    text-align: right;
}

.align-items-center {
    align-items: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* PAGE AREA */
.page-content-area {
    padding: 2rem 0;
    background: #f8f9fa;
}

/* PAGE TITLE */
.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0b326d;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: block;
}

/* HERO */
.career-hero {
    background: linear-gradient(135deg,#0b326d 0%,#14417d 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

    .career-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle,rgba(255,255,255,.1) 0%,transparent 70%);
        border-radius: 50%;
    }

    .career-hero h2 {
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
        text-transform: uppercase;
    }

    .career-hero .subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        opacity: .95;
        position: relative;
        z-index: 2;
    }

    .career-hero p {
        font-size: 1.1rem;
        line-height: 1.8;
        opacity: .9;
        position: relative;
        z-index: 2;
    }

/* CONTENT BOX */
.content-box {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

    .content-box h2 {
        font-size: 2.5rem;
        font-weight: 900;
        color: #0b326d;
        margin-bottom: 2rem;
        text-transform: uppercase;
        letter-spacing: -.5px;
    }

    .content-box h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 2rem 0 1rem;
        padding-bottom: .5rem;
        border-bottom: 3px solid #0b326d;
        display: inline-block;
    }

    .content-box p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #495057;
        margin-bottom: 1.5rem;
    }

    .content-box ul {
        list-style: none;
        padding-left: 0;
        margin: 1.5rem 0;
    }

        .content-box ul li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            font-size: 1.05rem;
            line-height: 1.6;
            color: #495057;
        }

            .content-box ul li::before {
                content: '';
                position: absolute;
                left: 0;
                top: .5rem;
                width: 8px;
                height: 8px;
                background: #0b326d;
                border-radius: 50%;
            }

/* VALUES GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #0b326d;
    transition: transform .3s ease,box-shadow .3s ease,background .3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(11,50,109,.15);
        background: linear-gradient(135deg,#e3f2fd 0%,#bbdefb 100%);
    }

    .value-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #0b326d;
        margin: 0 0 1rem;
        border: none;
        padding: 0;
        display: block;
    }

    .value-card p {
        font-size: 1rem;
        color: #495057;
        margin: 0;
        line-height: 1.6;
    }

/* BENEFITS */
.benefits-section {
    background: linear-gradient(135deg,#1a1a1a 0%,#2d2d2d 100%);
    padding: 3rem;
    border-radius: 24px;
    color: white;
    margin: 3rem 0;
}

    .benefits-section h3 {
        font-size: 2rem;
        font-weight: 900;
        color: white;
        margin: 0 0 2rem;
        border: none;
        padding: 0;
        text-transform: uppercase;
    }

    .benefits-section ul {
        list-style: none;
        padding: 0;
    }

        .benefits-section ul li {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 1.25rem;
            font-size: 1.1rem;
            color: rgba(255,255,255,.95);
        }

            .benefits-section ul li::before {
                content: '✓';
                position: absolute;
                left: 0;
                top: 0;
                width: 30px;
                height: 30px;
                background: #0b326d;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                font-size: 1.2rem;
            }

/* CTA APPLY */
.cta-apply {
    background: linear-gradient(135deg,#0b326d 0%,#14417d 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    color: white;
    margin: 3rem 0;
}

    .cta-apply h3 {
        font-size: 2rem;
        font-weight: 900;
        color: white;
        margin: 0 0 1rem;
        border: none;
        text-transform: uppercase;
    }

    .cta-apply p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: .95;
    }

    .cta-apply .apply-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 1.2rem 3rem;
    background: white;
    color: #0b326d;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all .3s ease;
    border: 2px solid white;
    text-transform: uppercase;
}

    .apply-btn:hover {
        background: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255,255,255,.3);
    }

/* CALLTOACTION */
.calltoaction {
    background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    margin: 3rem 0;
}

    .calltoaction h4 {
        margin: 0;
        color: #0b326d;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .calltoaction .col-md-4 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

        .calltoaction .col-md-4 img {
            width: auto;
            height: 48px;
            object-fit: contain;
            display: block;
        }

/* RESPONSIVE */
@media (max-width:768px) {
    .container {
        padding: 0 1rem;
    }

    .col-md-8, .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .text-md-right {
        text-align: center;
        margin-top: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .career-hero {
        padding: 2.5rem 2rem;
    }

        .career-hero h2 {
            font-size: 2rem;
        }

        .career-hero .subtitle {
            font-size: 1.25rem;
        }

    .content-box {
        padding: 2rem;
    }

        .content-box h2 {
            font-size: 2rem;
        }

        .content-box h3 {
            font-size: 1.25rem;
        }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-section {
        padding: 2rem;
    }

    .cta-apply {
        padding: 2rem;
    }

        .cta-apply h3 {
            font-size: 1.5rem;
        }

    .apply-buttons {
        flex-direction: column;
    }

    .apply-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width:480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .career-hero h2 {
        font-size: 1.75rem;
    }

    .content-box {
        padding: 1.5rem;
    }

        .content-box h2 {
            font-size: 1.75rem;
        }
}