.feature-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-box:hover::after {
    background: rgba(0, 0, 0, 0.6);
}

.feature-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.feature-box-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.2);
}

.feature-box:hover .feature-box-bg {
    opacity: 1;
    transform: scale(1.05);
}

.feature-box:hover .feature-box-content {
    transform: translateY(-5px);
}

.feature-box i {
    color: #ff6b00;
    margin-bottom: 1rem;
    font-size: 3rem !important;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    opacity: 0;
    transform: scale(0.8);
}

.feature-box h3 {
    color: #fff;
    margin-bottom: 2rem;
    margin-top: 2rem;
    padding-top: 0;
    font-size: 1.5rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

p.feature-box-text {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    margin-bottom: 2rem !important;
}

.tech-tags {
    margin-top: auto;
}

.tech-tags .tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin: 0.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.tech-tags .tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
} 