/* Industry Solutions Layout */
.solutions-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

@media (max-width: 992px) {
    .solutions-container {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
    }
    
    .solutions-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .industry-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .solutions-container {
        padding: 1rem 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .industry-card {
        padding: 1.25rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .sidebar-cta .btn {
        width: 100%;
    }
}

/* Sidebar Styles */
.solutions-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.sidebar-header h3 {
    color: var(--primary-dark);
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.solutions-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solutions-nav li {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.nav-link i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.sidebar-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.sidebar-cta p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Main Content */
.solutions-main {
    max-width: 100%;
    overflow: hidden;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0.5rem 0 1rem;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid var(--border);
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: var(--primary-light);
}

.industry-content {
    padding: 1.5rem;
}

.industry-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.industry-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.industry-content h3 {
    color: var(--primary-dark);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.industry-content p {
    color: var(--text-light);
    margin: 0 0 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.solution-details {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.solution-details h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin: 0 0 0.75rem;
}

.solution-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.solution-details li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.solution-details li:before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0.5rem;
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .industry-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .solutions-container {
        padding: 1.5rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .industry-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .industry-icon {
        margin-bottom: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* CTA Section */
.cta-showcase {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1e293b;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
        border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.cta-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M30 30l40 40M70 30L30 70" stroke="rgba(15, 23, 42, 0.05)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
      background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(5px);
      border: 1px solid rgba(203, 213, 225, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
     color: #1e293b;
}

@media (max-width: 768px) {
    .cta-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

.cta-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
   color: #475569;
    line-height: 1.7;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .industry-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .industry-grid {
        gap: 1.25rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .industry-solutions {
        padding: 2rem 0;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-showcase {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .industry-icon {
        padding: 1.25rem;
        min-height: 90px;
        font-size: 1.75rem;
    }
    
    .industry-content {
        padding: 1.25rem;
    }
    
    .industry-content h3 {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
}
