/* ==========================================
   Shared Styling for Industry Pages
   Synchronized with Main Site Palette
   ========================================== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: #1a1c36; /* Changed from #ffffff to Dark Blue */
}
.sx-industry-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    /* Force dark text for readability on light cards */
    color: #1a1c36 !important; 
    position: relative;
    z-index: 10; /* Ensures content is above global-bg-blobs */
}

.sx-hero-header {
    text-align: center;
    padding: 80px 40px;
    /* Soft cyan background to match your site's service boxes */
    background: #f0f9ff; 
    border-radius: 24px;
    margin-bottom: 60px;
    border: 1px solid rgba(47, 128, 237, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sx-hero-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    /* Matching your .lead-headline color */
    color: #0d0e26; 
    margin-bottom: 25px;
}

.sx-hero-header p {
    color: #486069;
    max-width: 800px;
    margin: 0 auto 15px auto;
}

.sx-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 40px 0 20px;
    /* Using your brand blue gradient start color */
    color: #02698c; 
    text-align: center;
}

.sx-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.sx-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    /* Border top matching your Send Message Button gradient */
    border-top: 5px solid #2F80ED; 
    transition: transform 0.3s ease;
}

.sx-card:hover {
    transform: translateY(-5px);
}

.sx-card h3 { 
    font-size: 1.4rem; 
    margin-bottom: 15px; 
    color: #0d0e26; 
}

.sx-card h4 { 
    font-size: 0.9rem; 
    margin-top: 25px; 
    color: #2F80ED; 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    font-weight: 700;
}

.sx-feature-list { list-style: none; padding: 0; margin-top: 15px; }

.sx-feature-list li { 
    margin-bottom: 12px; 
    display: flex; 
    align-items: flex-start; 
    color: #486069; 
    font-size: 0.95rem;
}

/* Bullet point matching your cyan accent #56CCF2 */
.sx-feature-list li::before { 
    content: "•"; 
    color: #56CCF2; 
    font-weight: bold; 
    font-size: 1.5rem;
    line-height: 1;
    margin-right: 12px; 
}

/* --- REVEAL ANIMATIONS (Fixes blank page issues) --- */

.sx-reveal {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.sx-reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sx-hero-header h1 { font-size: 2rem; }
    .sx-section-title { font-size: 1.8rem; }
}