:root {
    --primary: #0056b3;
    --secondary: #00356e;
    --light: #f5f7fa;
    --dark: #333;
    --text: #4a4a4a;
    --gray: #e9ecef;
    --accent: #ff6b00;

}




.use-cases-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    position: relative;
    
    color: white !important;
}

.use-cases-section *,
.use-cases-section *::before {
    color: inherit;
    background-color: transparent !important;
}

.section-title {
    position: relative;
    z-index: 2;
}
.subtitle {
    color: white !important;
}

.section-title h2 {
    font-size: 2.5rem;
    color: white !important;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title .subtitle {
    font-size: 1.1rem;
    color: white !important;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 20px;
}

.use-case-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.use-case-content {
    padding: 2rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.use-case-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.icon-wrapper i {
    font-size: 24px;
    color: white;
}

.use-case-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.use-case-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.benefits-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: #3b82f6;
    margin-right: 10px;
    font-size: 14px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #1e3a8a;
}

.learn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .use-case-card {
        margin-bottom: 1rem;
    }
}

.section-title h1:after {
    background: var(--accent) !important;
}
