/* =============================
INFO ICONS BLOCK
============================= */
.info-icons-block {
    display: flex;                
    justify-content: center;      
    gap: 120px;                   
    padding: 40px 20px;           
    flex-wrap: wrap;              
    position: relative;

    /* Білий фон з прозорістю 0.75, як у portfolio-sections */
    background: rgba(255, 255, 255, 0.75); /* 75% прозорості */
    /* border-radius прибрано для прямокутної форми */
}

/* Іконки */
.info-icons-block > .info-icon {
    position: relative;
    z-index: 2;
    width: auto;                  
    max-width: 300px;             
    text-align: center;           
    font-family: inherit;         
    opacity: 0;
    transform: translateX(-100px); 
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.8s ease-out;
    flex: 0 1 auto;
}

/* клас для появи іконки */
.info-icon.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Іконка */
.info-icon img {
    width: 100px;                 
    margin-bottom: 12px;          
}

/* Заголовок h3 */
.info-icon h3 {
    font-size: 16px;              
    line-height: 1.3;
    margin-bottom: 8px;           
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}
.info-icon.show-title h3 {
    opacity: 1;
    transform: translateY(0);
}

/* Опис p */
.info-icon p {
    font-size: 14px;              
    line-height: 1.5;
    color: #333;
    margin-bottom: 0;
    white-space: normal;          
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}
.info-icon.show-text p {
    opacity: 1;
    transform: translateY(0);
}

/* Анімація при наведенні */
.info-icon:hover {
    transform: translateY(-5px);  
    opacity: 0.95;                
}