/* ==================================
   CAREERS HERO SECTION
================================== */

.career-hero {
    position: relative;
    padding: 150px 0px 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg,
            #0c4a6e 0%,
            #075985 45%,
            #0f766e 100%);
    color: #fff;
}

.career-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(255, 255, 255, 0.12),
            transparent 40%);
}



.career-content {
    max-width: 650px;
}

.career-badge {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.career-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.career-content h1 span {
    color: #fcd34d;
}

.career-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.career-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
}

.btn-primary {
    background: #fff;
    color: #0c4a6e;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #0c4a6e;
}

.career-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    min-width: 150px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.stat-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* ==================================
   FLOATING SHAPES
================================== */

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 8s ease-in-out infinite;
}

.shape1 {
    width: 220px;
    height: 220px;
    top: 10%;
    right: 8%;
}

.shape2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 25%;
}

.shape3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 5%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ==================================
   TABLET
================================== */

@media(max-width:991px) {



    .career-content h1 {
        font-size: 42px;
    }

    .career-content p {
        font-size: 16px;
    }

    .shape1 {
        width: 180px;
        height: 180px;
    }

    .shape2 {
        width: 100px;
        height: 100px;
    }
}

/* ==================================
   MOBILE
================================== */

@media(max-width:768px) {

    .career-hero {
        min-height: auto;
    }



    .career-content {
        max-width: 100%;
    }

    .career-content h1 {
        font-size: 34px;
    }

    .career-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .career-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: fit-content;
    }

    .career-stats {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
    }

    .shape1,
    .shape2,
    .shape3 {
        display: none;
    }
}

/* ==================================
   SMALL MOBILE
================================== */

@media(max-width:480px) {

    .career-content h1 {
        font-size: 28px;
    }

    .career-content p {
        font-size: 14px;
    }

    .career-badge {
        font-size: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    .stat-box p {
        font-size: 13px;
    }
}

/* ==================================
   WHY WORK SECTION
================================== */

.why-work-section {
    background: #f8fafc;
}

.section-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
}

.section-desc {
    max-width: 650px;
    margin: auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.why-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    height: 100%;
    transition: 0.4s;
    border: 1px solid #e2e8f0;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: #ecfeff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 28px;
    color: #0f766e;
}

.why-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.why-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* Responsive */

@media(max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .section-desc {
        font-size: 15px;
    }

    .why-card {
        padding: 25px;
    }

    .why-card h4 {
        font-size: 20px;
    }
}

@media(max-width:576px) {

    .section-title {
        font-size: 26px;
    }

    .why-card {
        text-align: center;
    }

    .icon-box {
        margin: 0 auto 20px;
    }
}

.career-opportunities {
    background: #fff;
}

.career-tag {
    background: #e6fffa;
    color: #0f766e;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.career-opportunities h2 {
    font-size: 42px;
    font-weight: 700;
    margin-top: 20px;
    color: #0f172a;
}

.career-opportunities p {
    color: #64748b;
    max-width: 650px;
    margin: auto;
}

.position-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    border: 1px solid #edf2f7;
    transition: .4s;
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
}

.position-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #f0fdfa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.position-icon i {
    font-size: 30px;
    color: #0f766e;
}

.position-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.position-footer {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-footer span {
    background: #f8fafc;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
}

.position-footer a {
    color: #0f766e;
    font-weight: 600;
    text-decoration: none;
}

/* ==================================
   LIFE AT Integrated Resilient Development Alliance Foundation
================================== */

.life-irda-section {
    background: #f8fafc;
}

.life-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.life-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.life-content p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
}

.life-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.life-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.life-item i {
    color: #0f766e;
    font-size: 18px;
}

.life-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.life-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: .4s;
}

.life-gallery img:hover {
    transform: scale(1.03);
}

@media(max-width:768px) {

    .life-content h2 {
        font-size: 32px;
    }

    .life-gallery img {
        height: 180px;
    }
}

@media(max-width:576px) {

    .life-content h2 {
        font-size: 28px;
    }
}

/* ==================================
   APPLY SECTION
================================== */

.career-apply-section {
    background: #f8fafc;
}

.apply-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin: 15px 0;
}

.apply-content p {
    color: #64748b;
    line-height: 1.9;
}

.apply-badge {
    background: #dcfce7;
    color: #166534;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.apply-feature {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.feature-item i {
    color: #0f766e;
    font-size: 22px;
    margin-top: 5px;
}

.feature-item h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
}

.hiring-box {
    margin-top: 35px;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
}

.hiring-box h6 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hiring-box ul {
    margin: 0;
    padding-left: 18px;
}

.hiring-box li {
    margin-bottom: 10px;
}

/* Form Card */

.career-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.career-form-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #0f172a;
}

.career-form-card .form-control,
.career-form-card .form-select {
    height: 55px;
    border-radius: 12px;
}

.career-form-card textarea.form-control {
    height: auto;
}

.resume-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.apply-submit-btn {
    width: 100%;
    border: none;
    background: #0f766e;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: .3s;
}

.apply-submit-btn:hover {
    background: #115e59;
}

@media(max-width:768px) {

    .apply-content h2 {
        font-size: 32px;
    }

    .career-form-card {
        padding: 25px;
    }
}