/* 1. KPI Wrapper for full width banner setup */
.kpi-wrapper {
    max-width: 100%;
    margin: 10px 0 0; /* REDUCED: Top margin is now 10px (was 50px) */
    padding: 0;
    display: flex;
    justify-content: center;
}

/* 2. Main box styled to span 100% width, acting as the background banner */
.kpi-box {
    background: linear-gradient(to right, #086a3b, #FFFF00);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: default;
    border-radius: 0;
}

/* Hover effect */
.kpi-box:hover {
    filter: brightness(1.1);
}

/* 3. Content container (max-width + centering) */
.kpi-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* --- Common Text Styles Grouping --- */
.kpi-value, .kpi-label {
    color: #ffffff;
    line-height: 1;
    margin: 0;
}

/* Value (500+) */
.kpi-value {
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

/* Label (Direct Employees) */
.kpi-label {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 5px 0 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Tagline (Driving innovation...) */
.kpi-tagline {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    color: #fce47c;
    font-style: italic;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* --- BALLOON CELEBRATION STYLES --- */
.balloon {
    width: 35px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    bottom: -50px;
    opacity: 0.9;
    box-shadow: inset -5px -5px 5px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    animation: rise 10s forwards, sway 3s ease-in-out infinite alternate;
}

/* Balloon String and Knot */
.balloon::after, .balloon::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.balloon::after {
    bottom: -15px;
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.7);
}

.balloon::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    bottom: -5px;
}

/* Keyframes are unchanged */
@keyframes rise {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-1800px) rotate(30deg); opacity: 0; }
}

@keyframes sway {
    0% { margin-left: 0px; }
    100% { margin-left: 50px; }
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .kpi-box { padding: 30px 0; }
    .kpi-value { font-size: 4rem; }
    .kpi-label { font-size: 1.2rem; }
    .kpi-tagline { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .kpi-value { font-size: 3rem; }
    .kpi-label { font-size: 1rem; }
    .kpi-tagline { font-size: 1rem; }
    .balloon { width: 25px; height: 35px; }
}

/* Dummy section below the KPI banner */
.next-section {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-top: 5px solid #f58428;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
}

.next-section h2 {
    color: #233e50;
    margin: 0;
}