/* ==========================================
   Custom Styles for Qucodo
   Tech Stack Section Styles
   ========================================== */

/* Tech Stack Icons Container */
.tech-stack-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

/* Individual Tech Icon Styling */
.tech-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.tech-icon:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tech-icon i {
    transition: all 0.3s ease;
}

.tech-icon:hover i {
    transform: scale(1.1);
}

/* Tech Icon Text Badge */
.tech-icon-text {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Tech Category Cards */
.item .mb-30px.d-flex {
    align-items: center;
}

.item .mb-30px.d-flex i {
    transition: all 0.3s ease;
}

.item:hover .mb-30px.d-flex i {
    transform: scale(1.1);
}

/* Dark Mode Adjustments */
.dark .tech-icon {
    background: rgba(255, 255, 255, 0.08);
}

.dark .tech-icon:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tech-icon {
        width: 60px;
        height: 60px;
    }
    
    .tech-icon i {
        font-size: 36px !important;
    }
    
    .tech-stack-icons {
        gap: 1rem;
    }
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .tech-stack-icons {
        justify-content: center;
    }
}

/* Tech Category Cards - Compact Size */
.team-intro.style2 .item {
    padding: 30px !important;
    min-height: auto;
}

.team-intro.style2 .item .mb-20px,
.team-intro.style2 .item .mb-30px {
    margin-bottom: 20px !important;
}

.team-intro.style2 .item .mb-20px i,
.team-intro.style2 .item .mb-30px i {
    font-size: 32px !important;
}

/* Backend Card - Multiple Icons Support */
.team-intro.style2 .item .mb-20px.flex-wrap {
    max-height: 80px;
    overflow: visible;
}

.team-intro.style2 .item h4.fs-30 {
    font-size: 22px !important;
    margin-bottom: 15px !important;
}

.team-intro.style2 .item p {
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-intro.style2 .item .text-uppercase.opacity-7 {
    font-size: 11px !important;
    margin-bottom: 10px !important;
}

/* Mobile adjustments for cards */
@media (max-width: 768px) {
    .team-intro.style2 .item {
        padding: 25px !important;
    }
    
    .team-intro.style2 .item .mb-30px i {
        font-size: 28px !important;
    }
    
    .team-intro.style2 .item h4.fs-30 {
        font-size: 20px !important;
    }
}

