/* =========================================
   BRIGHT ANGEL - NURSING RECRUITMENT UI
   ========================================= */

:root {
    --nur-primary: #0f172a;      /* Slate Dark */
    --nur-secondary: #0284c7;    /* Medical Blue */
    --nur-accent: #38bdf8;       /* Light Cyan */
    --nur-bg: #f8fafc;           /* Light Slate Background */
    --nur-text: #334155;
    --nur-white: #ffffff;
    --nur-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --nur-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--nur-bg);
    font-family: 'Times New Roman', Times, serif; /* Aligning with master site font */
    color: var(--nur-text);
    margin: 0;
    padding: 0;
}

/* --- Hero Section --- */
.nur-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 160px 20px 80px 20px;
    color: var(--nur-white);
    position: relative;
    border-bottom: 4px solid var(--nur-secondary);
}

.nur-hero-tag {
    background: rgba(2, 132, 199, 0.2);
    border: 1px solid rgba(2, 132, 199, 0.4);
    color: #7dd3fc;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Clean sans for tags */
}

.nur-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.nur-hero-img {
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
    border: 3px solid rgba(255, 255, 255, 0.1);
}

/* --- Hero Buttons --- */
.nur-btn-solid {
    background-color: var(--nur-secondary);
    color: white !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--nur-secondary);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nur-btn-solid:hover {
    background-color: #0369a1;
    border-color: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3);
}

.nur-btn-outline {
    background-color: transparent;
    color: white !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nur-btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* --- Section Typography --- */
.nur-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--nur-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.nur-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--nur-secondary);
}

.nur-section-title.text-start::after {
    left: 0;
    transform: translateX(0);
}

.nur-section-subtitle { 
    color: var(--nur-secondary); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700; 
    font-size: 0.9rem; 
    margin-bottom: 12px; 
    display: block; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Service Cards --- */
.nur-service-card {
    background: var(--nur-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--nur-shadow);
}

.nur-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nur-hover);
    border-color: var(--nur-secondary);
}

.nur-icon-box {
    width: 60px; 
    height: 60px;
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    background: #e0f2fe;
    color: var(--nur-secondary);
    transition: transform 0.3s ease;
}

.nur-service-card:hover .nur-icon-box {
    transform: scale(1.1);
    background: var(--nur-secondary);
    color: white;
}

.nur-service-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--nur-primary);
}

.nur-check-list { 
    padding-left: 0; 
    list-style: none; 
}

.nur-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nur-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0; 
    top: 2px;
    color: var(--nur-secondary);
    font-size: 1rem;
}

/* --- Deployment Roadmap Cards --- */
.nur-process-card {
    background: white;
    padding: 40px 30px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--nur-shadow);
    height: 100%;
}

.nur-process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nur-hover);
    border-color: var(--nur-secondary);
}

.nur-process-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--nur-secondary);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nur-process-arrow {
    display: none;
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #cbd5e1;
    z-index: 1;
}

@media (min-width: 992px) {
    .col-lg-4:not(:last-child) .nur-process-arrow { display: block; }
}

/* --- Facts / Standards Grid --- */
.nur-fact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    box-shadow: var(--nur-shadow);
}

.nur-fact-card:hover {
    transform: translateY(-5px);
    border-color: var(--nur-secondary);
    box-shadow: var(--nur-hover);
}

.nur-fact-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: #f0f9ff;
    color: var(--nur-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 20px;
}

.nur-fact-card h6 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--nur-primary);
    margin-bottom: 5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .nur-hero { padding: 130px 20px 60px 20px; text-align: center; }
    .nur-hero h1 { font-size: 2.5rem; }
    .nur-section-title::after { left: 50%; transform: translateX(-50%); }
    .nur-section-title.text-start { text-align: center; display: block; }
}