/* Hero Tech Icons Styling */

.hero-tech-strip {
    margin-top: 30px;
}

.hero-tech-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.hero-tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.hero-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
    position: relative;
}

.hero-tech-item:hover {
    transform: translateY(-5px);
}

/* Remove any counter or numbering */
.hero-tech-item::before,
.hero-tech-item::after {
    content: none !important;
    counter-increment: none !important;
}

/* Icon styling */
.hero-tech-item i {
    font-size: 36px;
    color: #333;
    transition: color 0.3s ease;
}

/* Individual icon colors */
.hero-tech-item:nth-child(1) i { color: #61DAFB; } /* React */
.hero-tech-item:nth-child(2) i { color: #339933; } /* Node.js */
.hero-tech-item:nth-child(3) i { color: #DD0031; } /* Angular */
.hero-tech-item:nth-child(4) i { color: #4FC08D; } /* Vue.js */
.hero-tech-item:nth-child(5) i { color: #FF2D20; } /* Laravel */
.hero-tech-item:nth-child(6) i { color: #3776AB; } /* Python */
.hero-tech-item:nth-child(7) i { color: #FF9900; } /* AWS */
.hero-tech-item:nth-child(8) i { color: #2496ED; } /* Docker */

.hero-tech-item span {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
    .hero-tech-logos {
        gap: 20px;
    }
    
    .hero-tech-item i {
        font-size: 32px;
    }
    
    .hero-tech-item span {
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .hero-tech-strip {
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .hero-tech-label {
        font-size: 11px;
        margin-bottom: 16px;
    }
    
    .hero-tech-logos {
        gap: 10px;
        justify-content: center;
    }
    
    .hero-tech-item {
        gap: 6px;
    }
    
    .hero-tech-item i {
        font-size: 24px;
    }
    
    .hero-tech-item span {
        font-size: 11px;
    }
}

@media screen and (max-width: 480px) {
    .hero-tech-strip {
        padding: 0 10px;
    }
    
    .hero-tech-logos {
        gap: 8px;
    }
    
    .hero-tech-item {
        gap: 5px;
    }
    
    .hero-tech-item i {
        font-size: 20px;
    }
    
    .hero-tech-item span {
        font-size: 10px;
    }
}
