.ramm-tech-icons-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.ramm-tech-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ramm-tech-item {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.ramm-tech-item:hover {
    transform: translateY(-10px);
}

.ramm-tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #142b63, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(20, 43, 99, 0.2);
    transition: all 0.3s ease;
}

.ramm-tech-item:hover .ramm-tech-icon {
    background: linear-gradient(135deg, #f8b82f, #f5a623);
    transform: scale(1.1);
}

.ramm-tech-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #142b63;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ramm-tech-wave {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #142b63, #f8b82f);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ramm-tech-item:hover .ramm-tech-wave {
    width: 80px;
    opacity: 1;
}

/* Background decorative elements */
.ramm-tech-icons-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 184, 47, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.ramm-tech-icons-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(20, 43, 99, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ramm-tech-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .ramm-tech-item {
        padding: 1.5rem 1rem;
    }
    
    .ramm-tech-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .ramm-tech-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ramm-tech-icons-section {
        margin-top: 3rem;
        padding: 2rem 0;
    }
    
    .ramm-tech-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .ramm-tech-item {
        padding: 1rem 0.5rem;
    }
    
    .ramm-tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .ramm-tech-title {
        font-size: 0.9rem;
    }
}