/* ===== ROOT THEME ===== */
:root {
    --primary: #014E80;
    --secondary: #0d6efd;
    --light-bg: #f5f8fb;
    --card-bg: #ffffff;
    --text-dark: #222;
    --text-muted: #666;
    --border: #e6ecf1;
}

/* ===== GLOBAL ===== */
body {
    background: white;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.company-hero {
    
    padding: 30px 0;
    color: #014E80;
}

.company-hero-card {
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.company-title h1 {
    color: #014E80;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.company-meta {
    margin-top: 10px;
}

.meta-item {
    font-size: 15px;
    opacity: 0.9;
}

.meta-item i {
    margin-right: 6px;
}

.meta-item.active {
    font-weight: 600;
    text-decoration: underline;
}

/* ===== SECTION CARDS ===== */
.company-section-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

/* ===== TEXT ===== */
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.section-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ===== VIDEO ===== */
.video-box iframe {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    border: none;
}

/* ===== INFO CARDS ===== */
.info-card {
    background: #f9fbfd;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    height: 100%;
}

.info-card h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-card ul {
    padding-left: 18px;
    margin: 0;
}

.info-card ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* ===== FACILITIES ===== */
.facility-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.facility-icons span {
    background: #eef5fb;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.facility-icons i {
    margin-right: 6px;
}

/* ===== APPLY BUTTON ===== */
.apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, #014E80, #1752aa);
    color: #fff;
    padding: 12px 34px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.35);
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.45);
}

/* ===== JOB COUNT ===== */
.job-count h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

/* ===== TOP COMPANIES ===== */
.section-title-sm {
    font-weight: 700;
    color: var(--primary);
}

.company-slider {
    overflow: hidden;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.slide-track {
    display: flex;
    gap: 16px;
}

.company-slide-card {
    min-width: 220px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #f9fbfd;
    text-align: center;
    transition: all 0.25s ease;
}

.company-slide-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.company-slide-card:hover {
    transform: translateY(-4px);
    background: #eef5fb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .company-title h1 {
        font-size: 22px;
    }

    .video-box iframe {
        height: 220px;
        margin-top: 15px;
    }

    .facility-icons {
        justify-content: center;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
    }
}
