.projects-section{
padding:80px 6%;
display:flex;
justify-content:center;
}


.projects-card{
background:#fff;
border-radius:22px;
padding:60px;
max-width:1200px;
width:100%;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
box-shadow:0 30px 80px rgba(0,0,0,0.25);
}

#hee2{
    color:var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
}


.projects-image{
display:flex;
align-items:center;
justify-content:center;
}


.projects-image img{
max-width:100%;
height:auto;
}


.projects-content h2{
font-size:42px;
font-weight:700;
margin-bottom:18px;
color:#000;
}


.projects-content h2 span{
color:#04ff00;
border-bottom:3px solid #00ff0d;
}


.projects-content p{
font-size:15px;
line-height:1.9;
color:#444;
margin-bottom:18px;
}


/* Tablet */
@media(max-width:992px){
.projects-card{
grid-template-columns:1fr;
padding:50px;
text-align:center;
}
}


/* Mobile */
@media(max-width:600px){
.projects-section{padding:50px 4%}
.projects-card{padding:35px;border-radius:18px}
.projects-content h2{font-size:30px}
.projects-content p{font-size:14px}
}
        /* Section Header Styles */
        .team-section {
            padding: 80px 20px;
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            background-color: #000;
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .team-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-title .highlight {
            color: #39ff14; /* Neon green */
            text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14;
            position: relative;
            display: inline-block;
        }

        .section-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: #000000;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-top: 60px;
            padding: 20px 0;
        }

        .slider-wrapper {
            display: flex;
            transition: none;
            will-change: transform;
        }

        .slider-track {
            display: flex;
            gap: 20px;
            padding: 0 10px;
        }

        /* Team Card Styles */
        .team-card {
            flex: 0 0 auto;
            width: 280px;
            height: 350px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .team-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(57, 255, 20, 0.3);
        }

        .team-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .team-card:hover .team-card-overlay {
            transform: translateY(0);
        }

        .team-card-name {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #fff;
        }

        .team-card-role {
            font-size: 1rem;
            color: #39ff14;
            font-weight: 400;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .team-card {
                width: 240px;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .team-card {
                width: 200px;
                height: 260px;
            }
            
            .slider-track {
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .team-card {
                width: 160px;
                height: 220px;
            }
            
            .slider-track {
                gap: 10px;
            }
        }

        /* Loading animation */
        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        .loading {
            animation: pulse 1.5s infinite;
        }