/* Package Icons Styling */
.package-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    opacity: 0.9;
}

.package-card-liquid:hover .package-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Enhanced package cards */
.package-card-liquid {
    position: relative;
    overflow: hidden;
}

.package-card-liquid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s ease;
}

.package-card-liquid:hover::before {
    left: 100%;
}

/* Service icons for industry sections */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

/* Logo styling */
.logo-text {
    font-weight: 900;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo-text:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}