
/* Start Tech Team Style - Updated 2026-01-20 for Light Theme */
.tech-team-section {
    background: #f5f7fa; /* Light tech background */
    position: relative;
    padding: 100px 0;
}

.tech-team-section .section-header h2 {
    color: #333 !important;
}

.tech-team-section .section-header h3 {
    color: #1a48bb;
}

.tech-team-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    height: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: none;
    margin-bottom: 30px;
}

.tech-team-card .member-img {
    height: 100%;
    width: 100%;
    position: relative;
}

.tech-team-card .member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.tech-team-card:hover .member-img img {
    transform: scale(1.1);
    filter: blur(2px) brightness(0.7);
}

/* Default Info (Visible initially) */
.tech-team-card .member-info-initial {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 60%, transparent 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.tech-team-card:hover .member-info-initial {
    opacity: 0;
}

.tech-team-card .member-name {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.tech-team-card .member-role {
    color: #1a48bb;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hover Overlay */
.tech-team-card .member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 68, 0.96);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border-top: 3px solid #1a48bb;
}

.tech-team-card:hover .member-overlay {
    transform: translateY(0);
}

.tech-team-card .overlay-name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tech-team-card .overlay-role {
    color: #1a48bb;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.tech-tags {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    background: rgba(26, 72, 187, 0.08);
    color: #1a48bb;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(26, 72, 187, 0.15);
}

/* Collaboration Section Styles */
.collaboration-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px dashed rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.collaboration-title {
    color: #333;
    margin-bottom: 30px;
}

.collaboration-item {
    color: #666;
}

.collaboration-item h5 {
    color: #333;
    margin-top: 10px;
}

/* Contribution Chart */
.contribution-stats {
    margin-bottom: 20px;
    width: 100%;
}

.stat-item {
    margin-bottom: 10px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    font-size: 12px;
    margin-bottom: 4px;
}

.stat-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: #1a48bb;
    border-radius: 3px;
    width: 0;
    transition: width 1s ease-out 0.2s;
}

.tech-team-card:hover .stat-fill {
    width: var(--percent);
}

/* Social Links in Overlay */
.overlay-social {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.overlay-social a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.overlay-social a:hover {
    color: #1a48bb;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .tech-team-card {
        height: 380px;
    }
}
