.tech-bg{
    position: relative;
    background:#0B1020;
    overflow:hidden;
}

/* Ball 1 */
.tech-bg::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background: radial-gradient(circle, #01E7FF 0%, rgba(1,231,255,0.2) 40%, transparent 70%);
    top:10%;
    left:15%;
    filter: blur(10px);
    animation: floatBall1 12s ease-in-out infinite;
}

/* Ball 2 */
.tech-bg::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background: radial-gradient(circle, #01E7FF 0%, rgba(1,231,255,0.2) 40%, transparent 70%);
    bottom:10%;
    right:10%;
    filter: blur(12px);
    animation: floatBall2 15s ease-in-out infinite;
}

/* Extra glowing ball */
.tech-bg .light-ball{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background: radial-gradient(circle,#01E7FF 0%, rgba(1,231,255,0.15) 50%, transparent 75%);
    top:50%;
    left:50%;
    filter: blur(12px);
    animation: floatBall3 14s ease-in-out infinite;
}

/* Animations */
@keyframes floatBall1{
0%{transform:translate(0,0)}
50%{transform:translate(80px,60px)}
100%{transform:translate(0,0)}
}

@keyframes floatBall2{
0%{transform:translate(0,0)}
50%{transform:translate(-100px,-70px)}
100%{transform:translate(0,0)}
}

@keyframes floatBall3{
0%{transform:translate(-50%,-50%)}
50%{transform:translate(-30%,-70%)}
100%{transform:translate(-50%,-50%)}
}


/* HK Team PRO Advanced Styles */
.hk-team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hk-section-header {
    margin-bottom: 50px;
    text-align: center;
}

.hk-title {
    margin: 0 0 15px 0;
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.hk-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.hk-team-block {
    margin-bottom: 60px;
}

.hk-block-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    color: #444;
}

.hk-team-grid {
    display: grid;
    gap: 30px;
    margin: 0 auto;
}

/* Card Styles */
.hk-team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effects */
.hk-team-card.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.hk-team-card.hover-scale:hover {
    transform: scale(1.02);
}

.hk-team-card.hover-shadow:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Card Image */
.hk-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.hk-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hk-team-card:hover .hk-card-image img {
    transform: scale(1.05);
}

/* Card Info */
.hk-card-info {
    padding: 20px;
    text-align: center;
}

.hk-card-info h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.hk-card-info span {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 15px;
}

/* Team Lead Badge */
.teamlead-card {
    position: relative;
    border: 2px solid #2c6e9e;
}

.teamlead-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2c6e9e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.social-links a {
    color: #999;
    font-size: 16px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #2c6e9e;
}

/* Animations */
.hk-team-section.has-animations .animate-fade-up {
    animation: fadeUp 0.8s forwards;
    opacity: 0;
}

.hk-team-section.has-animations .animate-scale-in {
    animation: scaleIn 0.6s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.delay-0 { animation-delay: 0.1s; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hk-team-section {
        padding: 40px 15px;
    }
    
    .hk-title {
        font-size: 32px;
    }
    
    .hk-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hk-title {
        font-size: 28px;
    }
    
    .hk-block-title {
        font-size: 24px;
    }
    
    .hk-card-image {
        height: 250px;
    }
    
    .hk-team-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hk-title {
        font-size: 24px;
    }
    
    .hk-subtitle {
        font-size: 14px;
    }
    
    .hk-card-image {
        height: 200px;
    }
    
    .hk-card-info h4 {
        font-size: 16px;
    }
}