/* ================= HERO SECTION ================= */
.career-hero{
    padding:80px 0;
    background:#fff;
}
.career-container{
    width:90%;
    max-width:1100px;
    margin:auto;
    display:flex;
    align-items:stretch;
    justify-content:space-between;
    gap:60px;
}
.career-left{
    flex:1;
}
.hero-tag{
    display:inline-block;
    padding:8px 18px;
    background:#FFF7E9;
    color:#555;
    border-radius:30px;
    font-size:13px;
    font-weight: 800;
    margin-bottom:25px;
}
.hero-title{
    font-size:35px;
    font-weight:800;
    line-height:1.08;
    color:#22253E;
    margin-bottom:22px;
}
.hero-title .highlight{
    color:#F4B234;
}
.hero-description{
    color:#777;
    font-size:15px;
    line-height:1.8;
    max-width:560px;
    margin-bottom:15px;
}
/* ================= BUTTONS ================= */
.hero-buttons{
    display:flex;
    align-items:center;
    gap:35px;
    flex-wrap:wrap;
    margin-bottom:10px;
}
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#ff4486;
    color:#fff;
    padding:10px 10px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 8px 20px rgba(47,59,120,.18);
    transition:all .3s ease;
}
.btn-primary:hover{
    background:#243161;
    color:#fff;
    transform:translateY(-2px);
}
.btn-secondary{
    background:transparent;
    border:none;
    color:#444;
    padding:0;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}
.btn-secondary:hover{
    background:transparent;
    color:#2F3B78;
}
/* ================= STATISTICS ================= */
.hero-stats{
    margin-top:10px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:16px;
    flex-wrap:nowrap;
}
.hero-stat-card{
    flex:1;
    min-width:0;
    background:#fff;
    border-radius:18px;
    padding:22px 14px;
    text-align:center;
    border:1px solid #f2f2f2;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:all .3s ease;
}
.hero-stat-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);
}
.hero-stat-card h2{
    margin:0;
    color:#232B5C;
    font-size:30px;
    font-weight:700;
}
.hero-stat-card p{
    margin-top:8px;
    color:#8c8c8c;
    font-size:8px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
    line-height:1.5;
}
/* ================= IMAGE ================= */
.career-right{
    flex:1.3;
    position:relative;
    display:flex;
}
.career-right img{
    width:100%;
    height:100%;
    min-height:100%;
    display:block;
    border-radius:28px;
    margin-left: auto;
    margin-right: auto;
}

.floating-card{
    position:absolute;
    top:20px;
    right:20px;
    background:#fff;
    padding:18px 22px;
    border-radius:16px;
    text-align:center;
    color:#444;
    font-weight:600;
    line-height:1.6;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}
/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .career-container{
        flex-direction:column;
        text-align:center;
        gap:40px;
        align-items:center;
    }
    .career-right{
        width:100%;
    }
    .hero-title{
        font-size:28px;
    }
    .hero-description{
        margin:0 auto 30px;
    }
    .hero-buttons{
        justify-content:center;
        gap:25px;
    }
    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
    }
    .hero-stat-card{
        flex:0 1 150px;
    }
    .floating-card{
        right:20px;
        top:20px;
    }
}
@media(max-width:768px){
    .career-hero{
        padding:60px 0;
    }
    .career-container{
        width:92%;
    }
    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:18px;
    }
    .hero-stats{
        justify-content:center;
        gap:10px;
        flex-wrap:nowrap;
    }
    .hero-stat-card{
        flex:1;
        padding:14px 8px;
    }
    .hero-stat-card h2{
        font-size:20px;
    }
    .floating-card{
        position:static;
        display:inline-block;
        margin-top:20px;
    }
}

/* ================= PROBLEM SECTION ================= */
.problem-section{
    padding:10px 0;
}
.problem-container{
    width:90%;
    max-width:1100px;
    margin:auto;
    text-align:center;
}
.problem-eyebrow{
    display:block;
    color:#ff4486;
    font-size:25px;
    font-weight:800;
    letter-spacing:1.5px;
    margin-bottom:16px;
}
.problem-title{
    color:#232B5C;
    font-size:32px;
    font-weight:800;
    line-height:1.25;
    max-width:800px;
    margin:0 auto 22px;
}
.problem-subtext{
    color:#002;
    font-size:15px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 45px;
}

/* ---- Grid of problem items ---- */
.problem-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:40px;
}
.problem-item{
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    border-radius:12px;
    padding:22px 20px;
    text-align:left;
    color:#333;
    font-size:11px;
    font-weight:700;
}
.problem-item:nth-child(4),
.problem-item:nth-child(5){
    grid-column:span 1;
}
.problem-icon{
    flex-shrink:0;
    width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#FCE8EA;
    color:#ff4486;
    font-size:13px;
    font-weight:700;
}

/* ---- Bottom banner ---- */
.problem-banner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    background:#232B5C;
    border-radius:20px;
    padding:26px 34px;
    text-align:left;
}
.problem-banner p{
    color:#fff;
    font-size:15px;
    margin:0;
    max-width:650px;
}
.problem-banner strong{
    color:#F4B234;
}
.btn-clarity{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#F4B234;
    color:#22253E;
    font-weight:700;
    font-size:14px;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    white-space:nowrap;
    transition:.3s ease;
}
.btn-clarity:hover{
    background:#e6a622;
    transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .problem-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){
    .problem-title{
        font-size:24px;
    }
    .problem-grid{
        grid-template-columns:1fr;
    }
    .problem-banner{
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
    }
    .btn-clarity{
        width:100%;
        justify-content:center;
    }
}

/* ================= MENTOR SECTION ================= */
.mentor-section{
    padding:80px 0;
}
.mentor-container{
    width:90%;
    max-width:1100px;
    margin:auto;
    display:flex;
    flex-direction:row-reverse;
    align-items:stretch;
    justify-content:space-between;
    gap:60px;
}
.mentor-container .career-left{
    flex:1;
    min-width:0;
}
.mentor-image{
    flex:1.3;
    min-width:0;
    max-width:100%;
    position:relative;
    display:flex;
    overflow:hidden;
    border-radius:28px;
}
.mentor-image img{
    width:100%;
    height:100%;
    display:block;
    border-radius:28px;
    object-fit:cover;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/* ---- Stats overlay on image ---- */
.mentor-image .hero-stats{
    position:absolute;
    left:0;
    right:0;
    bottom:16px;
    margin:0;
    padding:0 12px;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    display:flex;
    justify-content:center;
    flex-wrap:nowrap;
    gap:8px;
}
.mentor-image .hero-stat-card{
    flex:1;
    min-width:0;
    width:auto;
    max-width:33%;
    padding:12px 6px;
    box-sizing:border-box;
}

.mentor-image .hero-stat-card h2{
    font-size:20px;
    white-space:nowrap;
}

.mentor-image .hero-stat-card p{
    font-size:9px;
    white-space:nowrap;
}

/* ---- Checklist ---- */
.mentor-checklist{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px 30px;
    margin-bottom:35px;
}
.mentor-check-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#444;
    font-size:14px;
    line-height:1.6;
    text-align:left;
}
.check-icon{
    flex-shrink:0;
    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1.5px solid #F4B234;
    color:#F4B234;
    font-size:11px;
    font-weight:700;
    margin-top:2px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .mentor-container{
        flex-direction:column;
        text-align:center;
        gap:40px;
        align-items:center;
    }
    .mentor-image{
        width:100%;
    }
    .mentor-container .hero-title{
        font-size:28px;
    }
    .mentor-container .hero-description{
        margin:0 auto 30px;
    }
    .mentor-checklist{
        text-align:left;
    }
    .mentor-container .hero-buttons{
        justify-content:center;
        gap:25px;
    }
}

@media(max-width:768px){
    .mentor-section{
        padding:60px 0;
    }
    .mentor-container{
        width:92%;
    }
    .mentor-image .hero-stats{
        gap:8px;
        padding:0 12px;
        bottom:14px;
    }
    .mentor-image .hero-stat-card{
        padding:10px 6px;
    }
    .mentor-image .hero-stat-card h2{
        font-size:20px;
    }
    .mentor-image .hero-stat-card p{
        font-size:9px;
    }
    .mentor-container .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:18px;
    }
}

@media(max-width:600px){
    .mentor-checklist{
        grid-template-columns:1fr;
        text-align:left;
    }
}

@media(max-width:480px){
    .mentor-image .hero-stats{
        gap:6px;
        padding:0 8px;
        bottom:12px;
    }
    .mentor-image .hero-stat-card{
        padding:8px 4px;
        border-radius:10px;
    }
    .mentor-image .hero-stat-card h2{
        font-size:16px;
    }
    .mentor-image .hero-stat-card p{
        font-size:8px;
        letter-spacing:0;
    }
}
/* ================= ASSESSMENT SECTION ================= */
.assessment-container{
    align-items:stretch;
}

/* ---- Feature list (left side) ---- */
.feature-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:35px;
}
.feature-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:15px;
    font-weight:600;
    color:#333;
    text-align:left;
}
.feature-icon{
    flex-shrink:0;
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#FFF3D6;
    color:#F4B234;
    border-radius:10px;
    font-size:15px;
}

/* ---- Report card (right side) ---- */
.report-card{
    flex:1.2;
    background:#fff;
    border-radius:24px;
    padding:30px 32px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    border:1px solid #f0f0f0;
    text-align:left;
}
.report-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:26px;
}
.report-header h3{
    margin:0;
    font-size:18px;
    color:#22253E;
    font-weight:700;
}
.report-badge{
    background:#F4B234;
    color:#22253E;
    font-size:11px;
    font-weight:700;
    padding:5px 12px;
    border-radius:20px;
}

/* ---- Bars ---- */
.report-bar-item{
    margin-bottom:20px;
}
.report-bar-label{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    font-weight:600;
    color:#444;
    margin-bottom:8px;
}
.report-bar-track{
    width:100%;
    height:8px;
    background:#EEF0F5;
    border-radius:10px;
    overflow:hidden;
}
.report-bar-fill{
    height:100%;
    width:0%;
    border-radius:10px;
    background:linear-gradient(90deg,#2F3B78,#4C5FB5);
    background-size:200% 100%;
    animation:
        fillBar 1.4s ease forwards,
        shimmer 1.8s linear infinite;
    animation-delay:0.2s, 0.2s;
}
.report-bar-item:nth-child(2) .report-bar-fill{ animation-delay:0.4s,0.4s; }
.report-bar-item:nth-child(3) .report-bar-fill{ animation-delay:0.6s,0.6s; }
.report-bar-item:nth-child(4) .report-bar-fill{ animation-delay:0.8s,0.8s; }

@keyframes fillBar{
    from{ width:0%; }
    to{ width:var(--target); }
}
@keyframes shimmer{
    0%{ background-position:200% 0; }
    100%{ background-position:-200% 0; }
}

/* ---- Best fit careers box ---- */
.best-fit-box{
    background:#232B5C;
    border-radius:16px;
    padding:20px 22px;
    margin-top:30px;
}
.best-fit-label{
    display:block;
    color:#F4899A;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:14px;
}
.best-fit-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.best-fit-tags span{
    color:#fff;
    font-size:13px;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .assessment-container{
        flex-direction:column;
        align-items:center;
    }
    .report-card{
        width:100%;
    }
    .feature-item{
        justify-content:center;
    }
}
@media(max-width:600px){
    .report-card{
        padding:24px 20px;
    }
    .best-fit-tags{
        gap:10px 16px;
    }
}
/* ================= TESTIMONIAL SECTION ================= */
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}
.testimonial-card{
    background:#fff;
    border-radius:18px;
    padding:28px 26px;
    text-align:left;
    border:1px solid #f0f0f0;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:all .3s ease;
}
.testimonial-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}
.testimonial-stars{
    color:#F4B234;
    font-size:16px;
    letter-spacing:2px;
    margin-bottom:18px;
}
.testimonial-quote{
    color:#444;
    font-size:14.5px;
    line-height:1.75;
    margin-bottom:26px;
    min-height:95px;
}
.testimonial-author{
    display:flex;
    align-items:center;
    gap:12px;
}
.testimonial-author img{
    width:44px;
    height:44px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}
.testimonial-author h4{
    margin:0;
    font-size:14px;
    font-weight:700;
    color:#22253E;
}
.testimonial-author p{
    margin:2px 0 0;
    font-size:12px;
    color:#999;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){
    .testimonial-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
    .testimonial-quote{
        min-height:auto;
    }
}

/* ================= CAREER EXPLORER ================= */
.career-explorer{
    padding:60px 0;
}

/* ---- Tabs ---- */
.explorer-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-bottom:35px;
}
.explorer-tab{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#F7F8FA;
    border:1px solid #eee;
    color:#444;
    font-size:14px;
    font-weight:600;
    padding:12px 20px;
    border-radius:30px;
    cursor:pointer;
    transition:all .25s ease;
}
.explorer-tab:hover{
    background:#EFF1F6;
}
.explorer-tab.active{
    background:#232B5C;
    border-color:#232B5C;
    color:#fff;
}
.tab-icon{
    font-size:15px;
}

/* ---- Panel ---- */
.explorer-panel{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    align-items:start;
    gap:30px;
    background:#fff;
    border-radius:20px;
    padding:36px 34px;
    text-align:left;
    border:1px solid #f0f0f0;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    animation:panelFade .4s ease;
}
@keyframes panelFade{
    from{ opacity:0; transform:translateY(8px); }
    to{ opacity:1; transform:translateY(0); }
}

.explorer-icon-box{
    grid-column:1;
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F4B234;
    border-radius:16px;
    font-size:26px;
    margin-bottom:14px;
}
.explorer-info{
    grid-column:1;
}
.explorer-info h3{
    margin:0 0 6px;
    font-size:24px;
    color:#22253E;
    font-weight:800;
}
.explorer-info p{
    margin:0;
    font-size:13px;
    color:#888;
}
.stars{
    color:#F4B234;
    letter-spacing:2px;
}

.explorer-label{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:.6px;
    color:#999;
    margin-bottom:14px;
}
.explorer-skill-list{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.explorer-skill-list li{
    font-size:14px;
    color:#333;
    padding-left:22px;
    position:relative;
}
.explorer-skill-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#F4B234;
    font-weight:700;
}
#explorerSalary{
    margin:0 0 8px;
    font-size:26px;
    font-weight:800;
    color:#22253E;
}
.explorer-note{
    margin:0;
    font-size:13px;
    color:#888;
    line-height:1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .explorer-panel{
        grid-template-columns:1fr 1fr;
        row-gap:26px;
    }
    .explorer-icon-box,
    .explorer-info{
        grid-column:1 / -1;
    }
}
@media(max-width:600px){
    .explorer-tabs{
        gap:8px;
    }
    .explorer-tab{
        padding:10px 14px;
        font-size:13px;
    }
    .explorer-panel{
        grid-template-columns:1fr;
        padding:26px 22px;
    }
}
/* ================= SERVICES SECTION (DARK) ================= */
.services-section{
    background:#1B2249;
    padding:80px 0;
    text-align:center;
}
.services-title{
    color:#fff;
    font-size:32px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:14px;
}
.services-title .highlight{
    color:#F4B234;
}
.services-subtext{
    color:#B8BCD6;
    font-size:15px;
    margin-bottom:50px;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}
.service-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:28px 24px;
    text-align:left;
    transition:all .3s ease;
}
.service-card:hover{
    background:rgba(255,255,255,.1);
    transform:translateY(-5px);
}
.service-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F4B234;
    border-radius:14px;
    font-size:24px;
    margin-bottom:22px;
}
.service-card h3{
    color:#fff;
    font-size:17px;
    font-weight:700;
    margin:0 0 10px;
}
.service-card p{
    color:#AEB2CE;
    font-size:13.5px;
    line-height:1.7;
    margin:0;
}

/* ================= WHY SECTION (DARK) ================= */
.why-section{
    background:#1B2249;
    padding:80px 0;
}
.why-container{
    align-items:center;
}
.why-tag{
    background:rgba(244,178,52,.12);
    color:#F4B234;
}
.why-title{
    color:#fff;
}
.why-title .highlight{
    color:#F4B234;
}
.why-description{
    color:#B8BCD6;
}

.why-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    flex:1.2;
}
.why-feature-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:20px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    text-align:left;
}
.why-feature-item.wide{
    grid-column:span 2;
}
.why-feature-item .check-icon{
    border-color:#F4B234;
    color:#F4B234;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .why-container{
        flex-direction:column;
    }
    .why-features{
        width:100%;
    }
}
@media(max-width:600px){
    .services-grid{
        grid-template-columns:1fr;
    }
    .why-feature-item.wide{
        grid-column:span 1;
    }
    .why-features{
        grid-template-columns:1fr;
    }
}