﻿.skills-container_thriple {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px; /* Adjusted for 3 columns */
    width: 100%;
}

/* Progress Card Styles */
.progress-card_thriple {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px); /* 3 cards per row */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .progress-card_thriple:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .progress-card_thriple h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #333;
    }

.progress-bar_thriple {
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 10px;
    position: relative;
}

.progress-bar-fill {
    background: #76c7c0; /* Progress bar color */
    height: 100%;
    width: 0; /* Initial width (will be animated) */
    border-radius: 10px;
    transition: width 1s ease;
}

.progress-percentage {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .progress-card_thriple {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row on tablets */
    }
}

@media (max-width: 768px) {
    .progress-card_thriple {
        flex: 1 1 100%; /* 1 card per row on mobile */
    }
}
