.dropdown-toggle {
    font-size: 1rem;
    padding: 5px 10px;
}
/* Carousel Styling */
#portfolioCarousel {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.carousel-inner {
    padding: 10px;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    bottom: -40px;
    transform: translateX(-50%);
}

.carousel-control-prev {
    left: 45%;
}

.carousel-control-next {
    right: 45%;
}

.custom-arrow {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.custom-arrow:hover {
    color: #ffcc00;
}
.technologies-container {
    text-align: center;
    margin-top: 50px;
}

.tool-filter {
    margin-bottom: 20px;
    color: white;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.tool-widget {
    background-color: #2c2c2e;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.tool-widget:hover {
    transform: scale(1.02);
}

.tool-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    border-radius: 10px;
    object-fit: cover;
    background-color: white;
    padding: 5px;
}

.tool-info {
    flex-grow: 1;
    text-align: left;
}

.tool-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.skill-level {
    font-size: 0.9rem;
    margin-top: 4px;
    color: #aaa;
}

.progress-bar-container {
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.progress-bar {
    height: 8px;
    background-color: #444;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 4px;
}

.progress-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

.progress-text {
    font-size: 0.75rem;
    color: #ddd;
    text-align: right;
    padding-top: 2px;
}
