/* ============================================
   PROFESSIONAL EPCMV SECTION DESIGN
   ============================================ */

.epcmv-professional {
    margin: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.epcmv-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.header-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.header-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.epcmv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.epcmv-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.epcmv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.epcmv-item:nth-child(2) .item-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.epcmv-item:nth-child(3) .item-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.epcmv-item:nth-child(4) .item-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.epcmv-item:hover .item-icon {
    transform: scale(1.05) rotate(5deg);
}

.item-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.item-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-content ul li {
    font-size: 0.95rem;
    color: #475569;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.item-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #3b82f6;
    font-weight: 700;
}

.epcmv-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.badge-icon {
    font-size: 1.25rem;
}

.epcmv-footer p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   PROFESSIONAL COMPLIANCE SECTION DESIGN
   ============================================ */

.compliance-professional {
    margin: 3rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid #bbf7d0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.compliance-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #bbf7d0;
}

.compliance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.compliance-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.compliance-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.compliance-item:hover .logo-circle {
    transform: scale(1.05) rotate(5deg);
}

.compliance-logo {
    flex-shrink: 0;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-circle.nabh {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.logo-circle.htm {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.logo-circle.infection {
    background: linear-gradient(135deg, #10b981, #059669);
}

.logo-circle.fire {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.compliance-info {
    flex: 1;
}

.compliance-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.compliance-info p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.compliance-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0284c7;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #bae6fd;
}

.compliance-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #bbf7d0;
}

.compliance-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compliance-footer p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .epcmv-professional,
    .compliance-professional {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .epcmv-header,
    .compliance-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .epcmv-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .epcmv-item,
    .compliance-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .compliance-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ============================================
   COMPLIANCE BADGES - MODERN DESIGN
   ============================================ */

.compliance-showcase {
    margin: 2.5rem 0;
}

.compliance-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.compliance-row:last-child {
    margin-bottom: 0;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    max-width: 320px;
}

.compliance-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: #cbd5e1;
}

.badge-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-icon.nabh {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.badge-icon.htm {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.badge-icon.infection {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.badge-icon.fire {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.compliance-badge:hover .badge-icon {
    transform: scale(1.05) rotate(5deg);
}

.badge-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.badge-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.compliance-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

.guarantee-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.compliance-guarantee p {
    margin: 0;
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .compliance-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .compliance-badge {
        max-width: 100%;
        padding: 1.25rem;
    }
    
    .badge-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .compliance-showcase {
        margin: 1.5rem 0;
    }
}

/* ============================================
   EPCMV PROCESS FLOW - MODERN DESIGN
   ============================================ */

.epcmv-process {
    margin: 2.5rem 0;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 1rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.process-step:nth-child(5) .step-number {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.process-step:nth-child(7) .step-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.process-step:hover .step-number {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    max-width: 180px;
}

.process-connector {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    position: relative;
    margin: 0 -5px;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #06b6d4;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.epcmv-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.summary-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.epcmv-summary p {
    margin: 0;
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        width: 100%;
        gap: 1rem;
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .step-content p {
        max-width: 100%;
    }
    
    .process-connector {
        display: none;
    }
    
    .epcmv-process {
        margin: 1.5rem 0;
    }
}

/* ============================================
   SECTOR PAGES - PROFESSIONAL STYLES
   Reusable across all sector detail pages
   ============================================ */

/* Breadcrumb */
.breadcrumb-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb .sep {
    color: #cbd5e1;
}

.breadcrumb .current {
    color: #3b82f6;
    font-weight: 600;
}

/* Hero Enhancements */
.hero.sector-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(30,41,59,0.7) 50%, rgba(15,23,42,0.6) 100%);
}

.hero.sector-hero .hero-content {
    text-align: left;
    max-width: 900px;
    padding: 0 40px;
}

.hero.sector-hero .hero-title {
    color: white;
    font-size: 3.5rem;
}

.hero.sector-hero .hero-subtitle {
color: rgba(255,255,255,0.85);
font-size: 1.25rem;
max-width: 600px;
margin-left: 0;
margin-right: 0;
}

.container {
max-width: 1800px;
margin: 0 auto;
padding: 0 15px;
}

.hero.sector-hero .hero-buttons {
    justify-content: flex-start;
}

.hero.sector-hero .btn-secondary {
    color: white;
    border-color: rgba(255,255,255,0.6);
}

.hero.sector-hero .btn-secondary:hover {
    background: white;
    color: #0f172a;
    border-color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero.sector-hero .scroll-arrow {
    border-right-color: rgba(255,255,255,0.7);
    border-bottom-color: rgba(255,255,255,0.7);
}


/* Section Base - Consistent White Flow */
.sector-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.sector-section.alt {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #3b82f6;
    margin-bottom: 1.25rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
}

.sector-section .section-title {
    margin-bottom: 1.5rem;
}

.sector-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #475569;
    max-width: 900px;
}

/* Cards */
.sector-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sector-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
    border-color: transparent;
}

.sector-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.sector-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.sector-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-card ul li {
    font-size: 0.9rem;
    color: #64748b;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.sector-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
}

.sector-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 2s ease-in-out infinite;
}

.sector-icon.teal { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.sector-icon.emerald { background: linear-gradient(135deg, #10b981, #059669); }
.sector-icon.violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.sector-icon.amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.sector-icon.rose { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.sector-icon.cyan { background: linear-gradient(135deg, #22d3ee, #06b6d4); }
.sector-icon.indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }

/* List Grid (for philosophy/features) */
.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.list-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59,130,246,0.08);
    transform: translateY(-2px);
}

.list-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.list-item span {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
}

/* Capability cards */
.capability-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.capability-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(20px);
    opacity: 0;
    animation: cardSlideIn 0.8s ease forwards;
}

.capability-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #3b82f6;
    box-shadow: 0 30px 60px rgba(59,130,246,0.15);
}

.capability-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.capability-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.capability-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.capability-card ul li {
    font-size: 1rem;
    color: #475569;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.capability-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card ul li:hover::before {
    transform: scale(1.3) rotate(45deg);
    background: #06b6d4;
}

.capability-card .card-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Stats Bar (dark) */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 1.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
}

.stat-box .num {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box .lbl {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.standard-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.standard-card:hover::before {
    transform: scaleX(1);
}

.standard-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    border-color: transparent;
}

.standard-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.standard-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.standard-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.sector-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 40%, #f8fafc 100%);
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

.sector-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(59,130,246,0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6,182,212,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.sector-cta h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #0f172a;
    position: relative;
}

.sector-cta p {
    font-size: 1.15rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Facility Cards */
.facility-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.facility-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
    border-color: transparent;
}

.facility-card .card-top {
    padding: 1.75rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.facility-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.facility-card .card-body {
    padding: 1.75rem;
}

.facility-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-card ul li {
    font-size: 0.9rem;
    color: #475569;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.facility-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
}

/* ============================================
   MODERN IMAGE SECTIONS
   ============================================ */

/* Full-width Image Banner */
.image-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.image-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,41,59,0.82) 50%, rgba(15,23,42,0.75) 100%);
    z-index: 1;
}

.image-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 40px;
}

.image-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.image-banner p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Image + Text Split Section */
.img-text-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 550px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.img-text-split.reverse {
    direction: rtl;
}

.img-text-split.reverse > * {
    direction: ltr;
}

.img-text-split .split-image {
    position: relative;
    overflow: hidden;
    min-height: 550px;
}

.img-text-split .split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.img-text-split:hover .split-image img {
    transform: scale(1.05);
}

.img-text-split .split-text {
    padding: 2rem;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img-text-split .split-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.img-text-split .split-text p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.img-text-split .split-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.img-text-split .split-text ul li {
    font-size: 0.95rem;
    color: #334155;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.img-text-split .split-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 2px;
}

/* Image Grid Cards */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.image-grid-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.image-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.image-grid-card:hover img {
    transform: scale(1.08);
}

.image-grid-card .grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.5) 60%, transparent 100%);
    transition: all 0.4s ease;
}

.image-grid-card:hover .grid-overlay {
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 70%, transparent 100%);
    padding-bottom: 2rem;
}

.image-grid-card .grid-overlay h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.image-grid-card .grid-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.image-grid-card:hover .grid-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1100px) {
    .capability-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero.sector-hero .hero-title {
        font-size: 2.25rem;
    }

    .sector-cta h2 {
        font-size: 1.75rem;
    }

    .sector-cards,
    .capability-cards,
    .facility-cards,
    .list-grid,
    .stats-bar,
    .standards-grid,
    .image-grid {
        grid-template-columns: 1fr;
    }

    .img-text-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .img-text-split .split-image {
        min-height: 350px;
    }

    .img-text-split .split-text {
        padding: 2rem;
    }

    .image-banner {
        background-attachment: scroll;
    }

    .image-banner h2 {
        font-size: 1.75rem;
    }

    .image-banner p {
        font-size: 1rem;
    }

    .image-grid-card {
        height: 220px;
    }
}

/* Additional mobile tightening for sector pages */
@media (max-width: 768px) {
    .breadcrumb-bar {
        padding: 10px 0;
    }

    .breadcrumb {
        font-size: 0.78rem;
        row-gap: 0.35rem;
    }

    .hero.sector-hero .hero-content {
        padding: 0;
    }

    .hero.sector-hero .hero-title {
        font-size: clamp(1.7rem, 7vw, 2.15rem);
        line-height: 1.2;
    }

    .hero.sector-hero .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .sector-section,
    .sector-cta {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .sector-card,
    .list-item,
    .facility-card .card-top,
    .facility-card .card-body {
        padding: 1.1rem;
    }

    .section-label {
        letter-spacing: 1.6px;
    }
}

@media (max-width: 480px) {
    .hero.sector-hero .hero-title {
        font-size: clamp(1.45rem, 8vw, 1.9rem);
    }

    .hero.sector-hero .hero-subtitle {
        font-size: 0.9rem;
    }

    .sector-cta h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */

@keyframes cardSlideIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Staggered animation delays for cards */
.capability-card:nth-child(1) { animation-delay: 0.1s; }
.capability-card:nth-child(2) { animation-delay: 0.2s; }
.capability-card:nth-child(3) { animation-delay: 0.3s; }
.capability-card:nth-child(4) { animation-delay: 0.4s; }

