:root{
    --primary:#0B3C5D;
    --secondary:#D4AF37;
    --accent:#F8FAFC;
    --text:#1F2937;
    --white:#ffffff;
    --hover:#08263C;
}


Top Bar
Background : #08263C

Navigation
Background : rgba(255,255,255,.95)

Hover
Gold (#D4AF37)

Active Menu
Navy Blue (#0B3C5D)




/*==========================
BACK TO TOP
==========================*/

#backTop{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#0B3C5D;

color:#fff;

font-size:20px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:9999;

box-shadow:0 10px 30px rgba(0,0,0,.2);

}

#backTop.show{

opacity:1;

visibility:visible;

}

#backTop:hover{

background:#D4AF37;

color:#08263C;

transform:translateY(-4px);

}

/* Smooth image transition */

.team-photo{

transition:.4s;

}

/* Card transition */

.team-card{

transition:.35s;

}


/* ==========================================
   RETIREMENT GREETING POPUP
========================================== */

.retirement-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.78);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 999999;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease,
                visibility 0.3s ease;
}

.retirement-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.retirement-popup {
    position: relative;

    width: 100%;
    max-width: 620px;

    max-height: 94vh;

    background: #ffffff;

    border-radius: 18px;

    padding: 12px;

    box-shadow: 0 25px 80px rgba(0,0,0,0.35);

    transform: scale(0.92);

    transition: transform 0.3s ease;

    overflow: hidden;
}

.retirement-popup-overlay.show .retirement-popup {
    transform: scale(1);
}

.retirement-popup-image {
    display: block;

    width: 100%;
    height: auto;

    max-height: 84vh;

    object-fit: contain;

    border-radius: 12px;
}

/* Close X */

.retirement-popup-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(11, 60, 93, 0.95);

    color: #ffffff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    z-index: 5;

    transition: 0.3s ease;
}

.retirement-popup-close:hover {
    background: #D4AF37;
    color: #08263C;

    transform: rotate(90deg);
}

/* Close button */

.retirement-popup-btn {
    display: block;

    margin: 12px auto 4px;

    border: none;

    padding: 10px 28px;

    border-radius: 30px;

    background: #0B3C5D;

    color: #ffffff;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.retirement-popup-btn:hover {
    background: #D4AF37;
    color: #08263C;
}

/* Mobile */

@media (max-width: 576px) {

    .retirement-popup-overlay {
        padding: 10px;
    }

    .retirement-popup {
        max-width: 100%;
        padding: 8px;
        border-radius: 14px;
    }

    .retirement-popup-close {
        width: 36px;
        height: 36px;

        top: 12px;
        right: 12px;

        font-size: 23px;
    }

    .retirement-popup-btn {
        padding: 9px 22px;
        font-size: 14px;
    }
}

#spinner,
#preloader,
.preloader,
.loader,
.loading {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}