/* Feature Showcase Styles */
:root {
    --feature-bg-1: #ffffff;
    --feature-bg-2: #f8f9fa;
    --feature-accent-1: #4e73df;
    --feature-accent-2: #858796;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Section Styling */
.feature-showcase-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 10% 20%, rgb(242, 246, 255) 0%, rgb(255, 255, 255) 90%);
    overflow: hidden;
}

.feature-header {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.feature-header .badge {
    padding: 0.8em 1.5em;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.2);
}

.text-gradient {
    background: linear-gradient(135deg, #2c3e50 0%, #4e73df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature Cards - Glassmorphism */
.feature-showcase-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Decorative Background Blobs */
.feature-showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 115, 223, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.feature-showcase-card:hover::before {
    transform: scale(1.2);
}

/* Feature Icons */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fc 0%, #e3e6f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--feature-accent-1);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 1), 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-showcase-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    transform: rotate(5deg);
}

/* Typography */
.feature-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

.feature-desc {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Feature List */
.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-points li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    color: #4a5568;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-points li:last-child {
    border-bottom: none;
}

.feature-points i {
    color: #1cc88a;
    margin-right: 1rem;
    background: rgba(28, 200, 138, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Reverse Column Order for Alternating Layout */
@media (min-width: 992px) {
    .row.reverse-lg {
        flex-direction: row-reverse;
    }

    .feature-showcase-card {
        padding: 4rem;
    }
}

/* Tech Tags */
.tech-tag {
    display: inline-block;
    padding: 0.4em 1em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4e73df;
    background: rgba(78, 115, 223, 0.1);
    border-radius: 50px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: #4e73df;
    color: white;
}