/* Additional Content Sections */

/* Technologies Section */
.technologies-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tech-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge-large {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.tech-badge-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.story-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    transition: all 0.4s ease;
    text-align: center;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
    border-left-width: 8px;
}

.story-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.story-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.story-card:nth-child(1) {
    border-left-color: #0ea5e9;
}

.story-card:nth-child(2) {
    border-left-color: #f59e0b;
}

.story-card:nth-child(3) {
    border-left-color: #10b981;
}

.story-card:nth-child(4) {
    border-left-color: #8b5cf6;
}

/* Industries Section */
.industries-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-color);
}

.industry-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.industry-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.industry-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.industry-item:nth-child(1) {
    border-top-color: #f59e0b;
}

.industry-item:nth-child(2) {
    border-top-color: #10b981;
}

.industry-item:nth-child(3) {
    border-top-color: #8b5cf6;
}

.industry-item:nth-child(4) {
    border-top-color: #ec4899;
}

.industry-item:nth-child(5) {
    border-top-color: #0ea5e9;
}

.industry-item:nth-child(6) {
    border-top-color: #f59e0b;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-showcase {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}



