.recruitment-banner {
    background: #003b70;
    padding: 90px 0 70px;
}

.rec-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.breadcrumb {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 25px;
    margin-top: 50px;
}

.breadcrumb span {
    margin: 0 12px;
}

/* .recruitment-banner h1 {
    font-size: 46px;
    color: #ffffff;
    margin: 0;
    font-weight: 800;
} */

.recruitment-banner h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.2;

    /* Simple Fade Up Animation */
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.title-line,
.post-line {
    width: 55px;
    height: 5px;
    background: #fff;
    margin-top: 18px;
    border-radius: 10px;
    
}


.recruitment-content {
    padding: 80px 0;
    background: #fff;
}

.rec-layout {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 50px;
}

.rec-post {
    padding-bottom: 55px;
    margin-bottom: 55px;
    border-bottom: 1px solid #ddd;
}

.rec-post h2 {
    font-size: 28px;
    color: #071b31;
    margin-bottom: 10px;
    font-weight: 800;
}

.post-line {
    background: #ffe600;
    height: 4px;
    margin-bottom: 25px;
}

.post-meta {
    color: #777;
    margin-bottom: 20px;
    font-size: 15px;
}

.rec-post p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    max-width: 850px;
}

.read-btn {
    display: inline-block;
    margin-top: 22px;
    background: #003b70;
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: lowercase;
    transition: 0.3s;
}

.read-btn span {
    color: #ffe600;
    font-size: 26px;
    margin-left: 10px;
}

.read-btn:hover {
    background: #ffe600;
    color: #003b70;
}

.rec-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.search-box {
    display: flex;
    margin-bottom: 45px;
}

.search-box input {
    width: 100%;
    padding: 18px;
    border: none;
    background: #ddd;
}

.search-box button {
    width: 60px;
    border: none;
    background: #003b70;
    color: #fff;
    font-size: 22px;
}

.rec-sidebar h3 {
    font-size: 23px;
    color: #071b31;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 4px solid #003b70;
}

.rec-sidebar ul {
    list-style: none;
    padding: 0;
}

.rec-sidebar li {
    color: #003b70;
    font-weight: 700;
    margin: 18px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .rec-layout {
        grid-template-columns: 1fr;
    }

    .recruitment-banner h1 {
        font-size: 34px;
    }

    .rec-post h2 {
        font-size: 24px;
    }

    .rec-sidebar {
        position: static;
    }
}



.recruitment-banner{
    background:#003b70;
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

/* Animated particles */
.recruitment-banner::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
        radial-gradient(circle, rgba(255,255,255,.18) 2px, transparent 2px),
        radial-gradient(circle, rgba(245,184,32,.12) 3px, transparent 3px),
        linear-gradient(45deg, rgba(255,255,255,.05) 1px, transparent 1px);

    background-size:
        160px 160px,
        260px 260px,
        220px 220px;

    animation:heroParticles 2s linear infinite;
}

/* Glow effect */
.recruitment-banner::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    /* background:radial-gradient(circle, rgba(245,184,32,.18), transparent 70%); */
    top:-150px;
    right:-120px;
    animation:glowMove 8s ease-in-out infinite alternate;
}

/* Content */
.rec-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:5;
}

.breadcrumb{
    color:#fff;
    margin-bottom:25px;
    font-size:15px;
    font-weight:500;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#f5b820;
}





/* Floating particles animation */
@keyframes heroParticles{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-180px);
    }
}

/* Glow movement */
@keyframes glowMove{
    from{
        transform:translateY(0) scale(1);
    }

    to{
        transform:translateY(40px) scale(1.1);
    }
}

/* Heading fade */
@keyframes titleFade{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Line animation */
@keyframes lineGrow{
    from{
        width:0;
        opacity:0;
    }

    to{
        width:70px;
        opacity:1;
    }
}

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

    .recruitment-banner{
        padding:70px 0;
    }

    .recruitment-banner h1{
        font-size:40px;
    }

}