/* HEADER */
.corporate-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #f7f9fc;
    border-radius: 0 0 18px 18px;
    box-shadow:
        8px 8px 16px rgba(0,0,0,0.06),
        -8px -8px 16px rgba(255,255,255,0.9);
}

.corporate-header .navbar {
    padding: 18px 0;
}


.corporate-header .nav-link {
    font-weight: 500;
    font-size: 15px;
    color: #222;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all .25s ease;
}

.corporate-header .nav-link:hover {
    background: #f0f3f8;
    box-shadow:
        inset 4px 4px 8px rgba(0,0,0,0.06),
        inset -4px -4px 8px rgba(255,255,255,0.9);
}

.corporate-header .btn {
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 500;
    font-size: 14px;
    transition: all .25s ease;
}

/* PRIMARY */
.corporate-header .btn-primary {
    background: #0d6efd;
    border: none;
    color: #fff;
    box-shadow:
        6px 6px 14px rgba(0,0,0,0.15),
        -4px -4px 10px rgba(255,255,255,0.4);
}

.corporate-header .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow:
        10px 10px 22px rgba(0,0,0,0.2),
        -6px -6px 14px rgba(255,255,255,0.4);
}

/* OUTLINE */
.corporate-header .btn-outline-primary {
    background: #f7f9fc;
    border: none;
    color: #0d6efd;
    box-shadow:
        inset 4px 4px 8px rgba(0,0,0,0.08),
        inset -4px -4px 8px rgba(255,255,255,0.9);
}

.corporate-header .btn-outline-primary:hover {
    color: #084298;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7f9fc;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow:
        inset 4px 4px 8px rgba(0,0,0,0.08),
        inset -4px -4px 8px rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
}

.lang-switcher img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.dropdown-menu {
    border-radius: 16px;
    border: none;
    padding: 10px;
    background: #f7f9fc;
    box-shadow:
        8px 8px 20px rgba(0,0,0,0.12),
        -8px -8px 20px rgba(255,255,255,0.9);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #eef2f7;
}



/* =========================
   HERO – PREMIUM CORPORATE
========================= */

.home-hero {
    position: relative;
    padding: 100px 0 120px;
    background:
        linear-gradient(
            rgba(245, 247, 251, 0.92),
            rgba(245, 247, 251, 0.92)
        ),
        url('/images/hero-background.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* GRID LAYOUT */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

/* HERO CARD */
.hero-content {
    background: #f5f7fb;
    padding: 56px 54px;
    border-radius: 36px;
    box-shadow:
        14px 14px 30px rgba(0, 0, 0, 0.14),
        -14px -14px 30px rgba(255, 255, 255, 0.95);
    animation: fadeUp 0.8s ease forwards;
}

/* TITLE */
.home-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #111;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 36px;
}

/* CTA */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* TRUST BADGE */
.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 13px;
    color: #555;
    padding: 10px 18px;
    border-radius: 20px;
    background: #f5f7fb;
    box-shadow:
        inset 4px 4px 8px rgba(0, 0, 0, 0.12),
        inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.hero-trust svg {
    color: #2563eb;
}

/* HERO IMAGE */
.hero-visual img {
    width: 100%;
    border-radius: 32px;
    box-shadow:
        18px 18px 36px rgba(0, 0, 0, 0.18),
        -18px -18px 36px rgba(255, 255, 255, 0.85);
    animation: fadeUp 1s ease forwards;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .home-hero h1 {
        font-size: 36px;
    }
}


/* =========================
   ABOUT SECTION – FINAL FIX
========================= */

.home-about {
    padding: 100px 0;
    background: #f5f7fb;
}

/* TITLE */
.home-about h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

/* INTRO */
.home-about .about-intro {
    max-width: 760px;
    margin: 0 auto 60px;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* CARD GRID */
.home-about .about-points {
    row-gap: 30px;
}

/* NEOMORPHIC CARD (TARGET LANGSUNG KE col-md-4) */
.home-about .about-points > .col-md-4 {
    background: #f5f7fb;
    border-radius: 28px;
    padding: 36px 32px;
    height: 100%;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.14),
        -12px -12px 24px rgba(255, 255, 255, 0.95);
    transition: all 0.35s ease;
}

/* HOVER – PREMIUM LIFT */
.home-about .about-points > .col-md-4:hover {
    transform: translateY(-6px);
    box-shadow:
        16px 16px 32px rgba(0, 0, 0, 0.18),
        -16px -16px 32px rgba(255, 255, 255, 1);
}

/* POINT TITLE */
.about-points h5 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 12px;
    color: #222;
}

/* POINT TEXT */
.about-points p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.6;
}


/* PLACEMENT SECTION */
/* ================================
   NEOMORPHISM PLACEMENT SECTION
================================ */

.home-placement {
    padding: 100px 0;
    background: #f4f6f8;
}

.home-placement h2 {
    font-weight: 700;
    margin-bottom: 14px;
}

.placement-intro {
    max-width: 760px;
    color: #6b7280;
    margin-bottom: 60px;
    font-size: 17px;
}

/* Card */
.placement-card {
    background: #f4f6f8;
    border-radius: 20px;
    padding: 36px 32px;
    height: 100%;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9);
    transition: all 0.35s ease;
}

/* Hover effect */
.placement-card:hover {
    box-shadow:
        4px 4px 12px rgba(0, 0, 0, 0.12),
        -4px -4px 12px rgba(255, 255, 255, 1);
    transform: translateY(-4px);
}

/* Title */
.placement-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

/* Description */
.placement-card p {
    color: #4b5563;
    font-size: 15.5px;
    line-height: 1.6;
}

/* Industry tag */
.placement-industry {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #0d6efd;
    background: #f4f6f8;
    box-shadow:
        inset 3px 3px 6px rgba(0, 0, 0, 0.08),
        inset -3px -3px 6px rgba(255, 255, 255, 0.9);
}

/* SERVICE SECTION */
/* ================================
   NEOMORPHISM PLACEMENT SECTION
================================ */
.home-services {
    padding: 100px 0;
    background: #ffffff;
}

.services-intro {
    max-width: 720px;
    margin: 0 auto;
    color: #6b7280;
}

.service-card {
    background: #f4f6f8;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow:
        10px 10px 20px rgba(0, 0, 0, 0.08),
        -10px -10px 20px rgba(255, 255, 255, 0.95);
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: #4b5563;
}

.service-card ul {
    margin-top: 20px;
    padding-left: 18px;
}

.service-card ul li {
    margin-bottom: 10px;
    color: #374151;
}

/* FINAL CTA SECTION */
/* ================================
   NEOMORPHISM PLACEMENT SECTION
================================ */
.home-final-cta {
    padding: 120px 0;
    background: #f4f6f8;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 60px;
    border-radius: 28px;
    background: #f4f6f8;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -12px -12px 24px rgba(255, 255, 255, 0.95);
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
}

.cta-buttons .btn {
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 500;
}
/* ================================
   PARTNER COUNTRIES SECTION
================================ */

.home-partner-countries {
    padding: 110px 0;
    background: #ffffff;
}

.countries-intro {
    max-width: 760px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 17px;
}

/* Card */
.country-card {
    background: #f4f6f8;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow:
        10px 10px 20px rgba(0, 0, 0, 0.08),
        -10px -10px 20px rgba(255, 255, 255, 0.95);

    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-6px);
}

/* Flag */
.country-card img {
    max-width: 80px;
    margin-bottom: 14px;
}

/* Country name */
.country-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

/* Status badge */
.status-badge {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
}

/* Status variants */
.country-card.active .status-badge {
    background: #e7f3ff;
    color: #0d6efd;
}

.country-card.soon .status-badge {
    background: #fef3c7;
    color: #92400e;
}

/* INDUSTRIES SLIDER */
.industries-slider-wrap {
    position: relative;
}

.industry-card {
    background: #f3f5f9;
    border-radius: 22px;
    padding: 32px 20px;
    text-align: center;
    box-shadow:
        8px 8px 16px rgba(0,0,0,0.08),
        -8px -8px 16px rgba(255,255,255,0.9);
    transition: all .3s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow:
        12px 12px 22px rgba(0,0,0,0.12),
        -12px -12px 22px rgba(255,255,255,1);
}

.industry-card img {
    max-width: 64px;
    margin-bottom: 16px;
}

.industry-card h6 {
    font-weight: 600;
    font-size: 15px;
}

/* NAV BUTTON */
.industries-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: #f3f5f9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        6px 6px 14px rgba(0,0,0,0.15),
        -6px -6px 14px rgba(255,255,255,0.95);
    transition: all .25s ease;
    z-index: 10;
}

.industries-nav svg {
    width: 22px;
    height: 22px;
    color: #1f2937;
}

.industries-nav:hover {
    box-shadow:
        inset 4px 4px 10px rgba(0,0,0,0.15),
        inset -4px -4px 10px rgba(255,255,255,0.9);
}

.industries-nav.prev {
    left: -28px;
}

.industries-nav.next {
    right: -28px;
}

/* MOBILE */
@media (max-width: 768px) {
    .industries-nav {
        display: none;
    }
}


/* HOW IT WORKS */
.home-how-it-works {
    padding: 90px 0;
    background: #f5f7fb;
}

.how-intro {
    max-width: 640px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

.how-card {
    height: 100%;
    background: #f5f7fb;
    border-radius: 28px;
    padding: 36px 32px;
    box-shadow:
        10px 10px 20px rgba(0,0,0,0.1),
        -10px -10px 20px rgba(255,255,255,0.95);
}

.how-heading {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 28px;
}

.how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 15px;
    color: #333;
}

.how-steps li:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: #f5f7fb;
    box-shadow:
        inset 4px 4px 8px rgba(0,0,0,0.15),
        inset -4px -4px 8px rgba(255,255,255,0.9);
}

/* =========================
   FOOTER – CORPORATE PREMIUM
========================= */

.corporate-footer {
    background: #f5f7fb;
    padding: 80px 0 40px;
    margin-top: 120px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-col h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
}

.footer-col ul li a {
    color: inherit;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #2563eb;
}

/* SOCIAL */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fb;
    box-shadow:
        6px 6px 12px rgba(0,0,0,0.15),
        -6px -6px 12px rgba(255,255,255,0.9);
    color: #2563eb;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
}

/* CONTACT */
.footer-contact {
    margin-top: 12px;
    font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
.dashboard-stat.dashboard-stat-v2{
border-radius:16px;
overflow:hidden;
}
.dashboard-stats{
margin-top:25px;
margin-bottom:25px;
}

.stat-box{
background:#fff;
border-radius:10px;
padding:20px;
display:flex;
align-items:center;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.stat-icon{
font-size:30px;
color:#2f80ed;
margin-right:15px;
}

.stat-info h3{
font-size:28px;
margin:0;
font-weight:700;
}

.stat-info p{
margin:0;
color:#777;
}
.dashboard-section{
margin-top:30px;
}

.pipeline-wrapper{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
}

.pipeline-stage{
text-align:center;
flex:1;
position:relative;
}

.pipeline-stage:not(:last-child):after{
content:'';
position:absolute;
right:-50%;
top:22px;
width:100%;
height:3px;
background:#e5e5e5;
z-index:0;
}

.pipeline-count{
font-size:24px;
font-weight:700;
color:#2f80ed;
margin-bottom:5px;
}

.pipeline-label{
font-size:14px;
color:#777;
}
.employer-summary-cards{
margin-top:25px;
margin-bottom:30px;
}

.dashboard-card{
background:#ffffff;
border-radius:12px;
padding:20px;
display:flex;
align-items:center;
gap:15px;
box-shadow:0 4px 15px rgba(0,0,0,0.06);
transition:all .2s ease;
}

.dashboard-card:hover{
transform:translateY(-3px);
box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.card-icon{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
background:#eef4ff;
border-radius:10px;
font-size:22px;
color:#2f80ed;
}

.card-content h3{
margin:0;
font-size:26px;
font-weight:700;
}

.card-content p{
margin:0;
color:#777;
font-size:14px;
}
.pipeline-modern{
display:flex;
align-items:center;
justify-content:space-between;
margin-top:20px;
}

.pipeline-step{
text-align:center;
position:relative;
}

.step-circle{
width:45px;
height:45px;
border-radius:50%;
background:#2f80ed;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
margin:auto;
}

.step-label{
margin-top:8px;
font-size:13px;
color:#555;
}

.pipeline-line{
flex:1;
height:3px;
background:#e5e5e5;
margin:0 10px;
}
.dashboard-table{
margin-top:10px;
}

.dashboard-table thead{
background:#f5f7fb;
}

.dashboard-table thead th{
font-weight:600;
font-size:14px;
color:#444;
}

.dashboard-table tbody td{
font-size:14px;
vertical-align:middle;
}

.badge-primary{
background:#2f80ed;
padding:6px 10px;
border-radius:6px;
font-size:12px;
color:#fff;
}
.status-applied{
background:#3498db;
color:#fff;
padding:5px 10px;
border-radius:5px;
font-size:12px;
}

.status-shortlisted{
background:#f39c12;
color:#fff;
padding:5px 10px;
border-radius:5px;
font-size:12px;
}

.status-interview{
background:#8e44ad;
color:#fff;
padding:5px 10px;
border-radius:5px;
font-size:12px;
}

.status-selected{
background:#27ae60;
color:#fff;
padding:5px 10px;
border-radius:5px;
font-size:12px;
}

.status-deployed{
background:#2c3e50;
color:#fff;
padding:5px 10px;
border-radius:5px;
font-size:12px;
}
