/*==========================================================
    JOB SEEK
    Professional UI v2.0
==========================================================*/

/*==============================
    Google Font
===============================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/*==============================
    Root Variables
===============================*/

:root {
    --primary: #0F4C81;
    --primary-dark: #0B3A61;
    --secondary: #1E88E5;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #f59e0b;
    --dark: #1e293b;
    --text: #334155;
    --muted: #64748b;
    --white: #ffffff;
    --bg: #f4f7fb;
    --section: #ffffff;
    --border: #e5e7eb;
    --radius: 16px;
    --shadow-sm: 0 4px 10px rgba(0,0,0,.05);
    --shadow: 0 12px 28px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,.12);
    --transition: .3s ease;
}

/*==============================
    Reset
===============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

section {
    padding: 90px 0;
}

.container {
    max-width: 1200px;
}

.display-4 {
    font-weight: 800;
    line-height: 1.15;
}

h1, h2, h3, h4, h5 {
    color: var(--dark);
    font-weight: 700;
}

p {
    color: var(--muted);
}

section h2 {
    font-size: 38px;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

    section h2::after {
        content: "";
        position: absolute;
        width: 70px;
        height: 4px;
        left: 0;
        bottom: -12px;
        background: var(--primary);
        border-radius: 20px;
    }


.navbar {
    background: white !important;
    padding: 18px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary) !important;
}

.nav-link {
    color: var(--text) !important;
    margin-left: 18px;
    font-weight: 600;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }


.hero {
    background: linear-gradient(135deg,#0F4C81,#163B65);
    color: white;
    overflow: hidden;
}

    .hero h1 {
        color: white;
        font-size: 58px;
        font-weight: 800;
    }

    .hero p {
        color: rgba(255,255,255,.85);
        font-size: 18px;
        margin: 25px 0;
    }

    .hero img {
        transition: .5s;
    }

        .hero img:hover {
            transform: translateY(-10px);
        }


.btn {
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    border: none;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

.btn-outline-light {
    border: 2px solid white;
}

    .btn-outline-light:hover {
        color: var(--primary);
        background: white;
    }

.btn-warning {
    background: white;
    color: var(--primary);
    border: none;
}

    .btn-warning:hover {
        background: #f1f5f9;
        color: var(--primary-dark);
    }


.card {
    border: none;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.card-body {
    padding: 30px;
}


.form-control,
.form-select {
    height: 54px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: none;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 .18rem rgba(15,76,129,.15);
    }


.search-box {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 35px;
}

