/* Updated Skill Styles */
.skill-logo {
    width: 40px;
    height: 40px;
    margin-top: 0.5rem;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.skill-logo:hover {
    transform: scale(1.1);
    filter: brightness(1) invert(0);
}

.skill-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-top: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.skill-icon:hover {
    transform: scale(1.1);
    color: #FF9900; /* AWS brand color */
}

/* Specific styling for AWS icon */
.fa-aws {
    font-size: 45px; /* Slightly larger for better visibility */
}

.multi-tools {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tool-item p {
    margin: 0;
}

/* Responsive adjustments for tools */
@media (max-width: 768px) {
    .multi-tools {
        gap: 1rem;
    }
    
    .skill-logo {
        width: 35px;
        height: 35px;
    }
    
    .skill-icon {
        font-size: 35px;
    }
}