﻿/* HERO SECTION */
.careers-hero {
    height: 90vh;
    background: url('/img/careers/1_ca.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

    .careers-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
    }

.careers-hero-content {
    position: relative;
    z-index: 2;
}

.careers-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.careers-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* BUTTON */
.btn-danger {
    background-color: #d32f2f;
    border: none;
}

/* SECTION SPACING */
.section {
    padding: 60px 0;
}

/* CARD */
.career-card {
    border: none;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .career-card:hover {
        transform: translateY(-5px);
    }

/* COUNTER */
.counter-box {
    text-align: center;
}

    .counter-box h2 {
        font-weight: 700;
        color: #d32f2f;
    }


.hero-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s;
}

    .slide.active {
        opacity: 1;
    }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.footer-link {
    color: #ccc;
    text-decoration: none;
}

    .footer-link:hover {
        color: #fff;
    }

.footer-bottom {
    background: #111;
}

.back-to-top {
    font-size: 18px;
}
:root {
    --brand-red: #dc3545; /* Bootstrap danger */
    --brand-red-dark: #b02a37;
    --brand-light: #f8f9fa;
}