.elementor-30488 .elementor-element.elementor-element-d5ab8e7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-30488 .elementor-element.elementor-element-8fe59a6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-084a76f */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #2b2e71;
    --green-dark: #266534;
    --green-lime: #b5ce51;
    --orange: #ea5e3a;
    --beige: #efe6d4;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #333;
    background: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease;
}

.logo-section h2 {
    color: var(--navy);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.logo-section p {
    color: var(--orange);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Sections */
.section {
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease;
}

.section-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
}

.section-header h2 {
    font-weight: 600;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    color: white;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff7659 100%);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(234, 94, 58, 0.2);
}

.section-content {
    padding: 30px;
    background: var(--white);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(43, 46, 113, 0.1);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
    border: 1px solid var(--green-lime);
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--orange);
}

.highlight-box h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.metric-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--green-lime);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(43, 46, 113, 0.15);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 10px;
}

.metric-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

/* Tables */
.process-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(43, 46, 113, 0.1);
}

.process-table th,
.process-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--beige);
}

.process-table th {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.process-table tr:nth-child(even) {
    background: var(--light-gray);
}

.process-table tr:hover {
    background: var(--beige);
}

/* ROI Highlight */
.roi-highlight {
    background: linear-gradient(135deg, var(--orange) 0%, #ff7659 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(234, 94, 58, 0.3);
}

.roi-highlight .roi-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.roi-highlight div:last-child {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Competency Matrix */
.competency-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.competency-card {
    background: var(--white);
    border: 2px solid var(--beige);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 46, 113, 0.08);
}

.competency-card:hover {
    transform: translateY(-3px);
    border-color: var(--green-lime);
    box-shadow: 0 8px 25px rgba(43, 46, 113, 0.15);
}

.competency-card h4 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.competency-card h4::before {
    content: '▶';
    color: var(--orange);
    font-size: 14px;
}

.competency-card ul {
    list-style: none;
    padding-left: 0;
}

.competency-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--gray);
}

.competency-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-lime);
    font-weight: bold;
    font-size: 16px;
}

/* KPI Table */
.kpi-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(43, 46, 113, 0.1);
}

.kpi-table th,
.kpi-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--beige);
}

.kpi-table th {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
    color: white;
    font-weight: 600;
}

.kpi-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
}

/* Budget Breakdown */
.budget-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.budget-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--green-lime);
    transition: transform 0.3s ease;
}

.budget-item:hover {
    transform: translateY(-3px);
}

.budget-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

/* Impact/Effort Matrix */
.impact-matrix {
    text-align: center;
    margin: 30px 0;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 700px;
    margin: 20px auto;
}

.matrix-item {
    padding: 12px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.matrix-item:hover {
    transform: scale(1.05);
}

.matrix-high-impact {
    background: var(--orange);
    color: white;
}

.matrix-medium-impact {
    background: var(--green-lime);
    color: var(--navy);
}

.matrix-low-impact {
    background: var(--beige);
    color: var(--navy);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .metrics-grid,
    .competency-matrix {
        grid-template-columns: 1fr;
    }
    
    .matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-table {
        font-size: 0.9rem;
    }
    
    .process-table th,
    .process-table td {
        padding: 10px;
    }
}/* End custom CSS */