.projects-section {
    /* background-color: white; */
    /* background-image: url('https://cdn.pixabay.com/photo/2016/12/14/13/59/ball-1906468_1280.png'); */
    /* background-image: url('https://th.bing.com/th/id/R.0ca097c2329b801ebcec52b592749a8e?rik=%2fwxFcEYpJ2NW3w&riu=http%3a%2f%2fwww.pngall.com%2fwp-content%2fuploads%2f2016%2f03%2fStars-PNG-File.png&ehk=EhHCV2ubKgX7Hb2Co1IupcuK33RZqITuZpV%2bPKSdv8Y%3d&risl=&pid=ImgRaw&r=0'); */
    /* background-image: url('https://img.lovepik.com/free-png/20210922/lovepik-security-pattern-background-lines-png-image_401166622_wh1200.png'); */
    /* background-image: url('../assets/loveit.png'); */
    background-image: url('../assets/1341.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 4px 0px;
         /* background-image: url(../assets/white-dotted.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.projects-filter .nav-pills .nav-link {
    color: black !important;
    font-weight: 500;
    padding: 8px 25px !important;
    margin: 0 5px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.projects-filter .nav-pills .nav-link.active {
    background-color:#0E1728;
    /* padding: 6px 15px; */
    color: antiquewhite !important;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #15140db1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}


.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    width: 50px;
    height: 50px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-5px);
}

.project-info {
    padding: 20px;
    background-color: white;
    flex-grow: 1;
}

.project-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.project-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}



















/* smalllprojets */

  .actives{
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
  }
        .small-project-card {
            transition: transform 0.3s;
            margin-bottom: 2rem;
            
        }
        .prjcthd{
            background-color: var(--primary-color) !important;
            color: white !important;
            
        }
        .prjcthd p{
            color: white !important;

        }
        .small-project-card:hover {
            transform: translateY(-5px);
        }
        
        .code-container {
            position: relative;
            background: var(--primary-color);
            border-radius: 5px;
            padding: 1rem;
            color: var(--text-light);
            font-family: 'Courier New', monospace;
            overflow-x: auto;
        }
        
        .copy-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255,255,255,0.1);
            border: none;
            color: var(--text-light);
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
        }
        
        .copy-btn:hover {
            background: rgba(255,255,255,0.2);
            
        }

        .button-tab{
            color: var(--primary-color) !important;
        }
        
        .preview-container {
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 2rem;
            color: #0E1728 !important;

        }
        
        /* Sample project styles */
        .animated-btn {
            padding: 12px 24px;
            background: linear-gradient(45deg, #3498db, #9b59b6);
            color: var(--text-light);
            border: none;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .animated-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
            background: linear-gradient(45deg, #9b59b6, #3498db);
        }
        
        .sample-card {
            width: 18rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .sample-card:hover {
            transform: translateY(-5px);
        }