/* ===== NAVBAR ===== */

.navbar {
    padding-top: 15px;
    transition: .4s;
}

.navbar-brand {
    font-size: 30px;
    font-weight: 700;
    color: #c8102e !important;
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #c8102e;
    transition: .4s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.hero-section{
    background: linear-gradient(rgba(0,0,0,.75),
    rgba(0,0,0,.75)),
    url('../img/banner.jpg');
    background-size:cover;
    background-position:center;
}

.hero-tag{
    background:#dc3545;
    padding:10px 20px;
    border-radius:30px;
    display:inline-block;
    font-size:14px;
}

.hero-image{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.icon-box{
    transition:.5s;
}

.icon-box:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.career-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.career-card:hover{
    transform:translateY(-10px);
}

.career-card i{
    font-size:35px;
    color:#dc3545;
    margin-bottom:15px;
}

.award-card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.award-card:hover{
    transform:translateY(-10px);
}

.award-card i{
    font-size:50px;
    color:#dc3545;
    margin-bottom:20px;
}

.counter-section{
    background:linear-gradient(135deg,#dc3545,#9c1c28);
}

.career-section {
    background: #0f0f0f;
    color: #fff;
}

.career-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.career-section h6 {
    letter-spacing: 2px;
}

.career-card {
    background: #1a1a1a;
    padding: 25px 25px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: 0.4s;
    border-left: 4px solid transparent;
}

.career-card i {
    font-size: 26px;
    color: #c8102e;
    margin-top: 3px;
}

.career-card p {
    margin: 0;
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
}

.career-card:hover {
    transform: translateY(-8px);
    border-left: 4px solid #c8102e;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Highlight card */
.career-card.highlight {
    background: linear-gradient(135deg, #c8102e, #8b0017);
    border-left: none;
}

.career-card.highlight p {
    color: #fff;
}

.career-card.highlight i {
    color: #fff;
}

/* Responsive */
@media(max-width:768px) {
    .career-section h2 {
        font-size: 28px;
    }
}/* ==========================
   Footer
========================== */

.footer-section {
    background: #111;
}

.footer-title {
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #dc3545;
    padding-left: 5px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: .3s;
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-5px);
    background: #bb2d3b;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

/*  */
