/* Employee Engagement Page CSS */
:root {
    --ee-accent: #0d4d4d;
    --ee-blue: #001f3f;
    --ee-text: #5a5a5a;
    --ee-light: #faf8f5;
    --ee-white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ee-text);
}

.ee-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.ee-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

.ee-hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.ee-section {
    padding: 80px 0;
}

.light-bg {
    background-color: var(--ee-light);
}

.ee-list {
    list-style: none;
    padding: 0;
}

.ee-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.ee-list li::before {
    content: "★";
    color: var(--ee-accent);
    position: absolute;
    left: 0;
    font-size: 1.4rem;
}

.ee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ee-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--ee-blue);
}

.ee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.ee-card h3 {
    color: var(--ee-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.success-stories {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

.story-card {
    min-width: 300px;
    background: var(--ee-white);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #eee;
}

.story-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: #888;
}

.ee-cta {
    background: linear-gradient(135deg, var(--ee-blue) 0%, var(--ee-accent) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.btn-ee {
    background: var(--ee-accent);
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    margin-top: 20px;
}

.btn-ee:hover {
    background: #1a5f5f;
}
