/* Home Page Content Fix - Minimal CSS */

/* Section spacing */
.section {
    padding: 4rem 0;
}

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.solution-card,
.service-highlight,
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.solution-card:hover,
.service-highlight:hover,
.feature-card:hover {
    transform: translateY(-5px);
}

/* Companies section */
.companies-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.companies-content h4 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.companies-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/* Feature boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-box-content {
    padding: 2rem;
}

.feature-box-content h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-box-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

/* Blog/Insights */
.blog-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-post {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-content .date {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-post-content h5 {
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.blog-post-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

/* Global coverage */
.global-coverage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.global-coverage-content h4 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

/* Back to top button */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 80px;
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

#back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Floating button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 140px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .companies-section,
    .global-coverage {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-boxes {
        grid-template-columns: 1fr;
    }
    
    .blog-slider {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .floating-btn {
        right: 20px;
        bottom: 80px;
    }
    
    #back-to-top {
        right: 20px;
        bottom: 140px;
    }
}