:root {
    --primary-color: #059669; /* Emerald/Zamrud Green */
    --secondary-color: #1e293b; /* Dark Slate */
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-muted: #64748b;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--secondary-color);
}

.team-hero {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background-color: #e2e8f0;
    border-radius: 50%;
    margin: 2rem auto 1rem;
    border: 3px solid var(--primary-color);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.card-content h4 {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}


.flex {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.kotak-saja30 {

    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #fffdfd;
    color: #000000;
    border-style: solid;
    transition: 0.3s;
    border-radius: 6px;
    margin-top: 6px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 6px;
    padding: 10px;
}

.fade_in_out {
    animation: flickerAnimation 1s ease reverse forwards infinite;

}

@keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




.kotak-saja32 {

    border-width: 1px;
    border-right: 4px solid blue;
    border-bottom: 4px solid blue;
    border-color: rgba(0, 0, 0, 0.3);
    background-color: #fffdfd;
    color: #000000;
    border-style: solid;
    transition: 0.3s;
    border-radius: 8px;
    margin-top: 11px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 11px;
    padding: 10px;
}

.kotak-saja32:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}



.gradient-box {
    border-radius: 12px;
    color:white;
  background: linear-gradient(#7e987b, #344732);
}

.gradient-box2 {
    border-radius: 12px;
    color:white;
  background: linear-gradient(#4f684c, #7e987b);
}
