/* Reset and base styles for this component only */
.stats-dashboard * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.stats-dashboard {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f3f4f6;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header styles */
.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #686462;
    margin-bottom: 1rem;
}

.stats-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Grid layout */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card styles */
.stats-card {
    background-color: #E2E4F1;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Device illustrations */
.device-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.dstv-device {
    width: 12rem;
    height: 8rem;
    background-color: #374151;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dstv-box {
    width: 10rem;
    height: 6rem;
    background-color: #000;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dstv-inner {
    width: 8rem;
    height: 4rem;
    background-color: #4b5563;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dstv-logo {
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.remote-control {
    position: absolute;
    right: -0.5rem;
    top: 0.5rem;
    width: 3rem;
    height: 5rem;
    background-color: #111827;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.remote-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.remote-button {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
}

.remote-button:nth-child(1) { background-color: #60a5fa; }
.remote-button:nth-child(2) { background-color: #f87171; }
.remote-button:nth-child(3) { background-color: #34d399; }
.remote-button:nth-child(4) { background-color: #fbbf24; }
.remote-button:nth-child(5) { background-color: #a78bfa; }
.remote-button:nth-child(6) { background-color: #f472b6; }

.remote-center {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #4b5563;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remote-inner {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #3b82f6;
    border-radius: 50%;
}

/* Sports device */
.sports-device {
    width: 12rem;
    height: 8rem;
    background: linear-gradient(to right, #ef4444, #2563eb);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sports-figures {
    display: flex;
    gap: 0.5rem;
}

.sports-figure {
    width: 2rem;
    border-radius: 50% 50% 0 0;
}

.sports-figure:nth-child(1) { height: 4rem; background-color: #fbbf24; }
.sports-figure:nth-child(2) { height: 4.5rem; background-color: #ef4444; }
.sports-figure:nth-child(3) { height: 4rem; background-color: #2563eb; }
.sports-figure:nth-child(4) { height: 4.25rem; background-color: #10b981; }

.soccer-ball {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soccer-ball-inner {
    width: 1rem;
    height: 1rem;
    border: 2px solid black;
    border-radius: 50%;
}

/* Streaming device */
.streaming-device {
    width: 12rem;
    height: 8rem;
    background-color: #111827;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tv-screen {
    width: 8rem;
    height: 5rem;
    background-color: #000;
    border-radius: 0.25rem;
    border: 2px solid #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-content {
    width: 7rem;
    height: 4rem;
    background-color: #1e3a8a;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.streaming-box {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    width: 2rem;
    height: 0.75rem;
    background-color: #4b5563;
    border-radius: 0.25rem;
}

.streaming-remote {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streaming-remote-inner {
    width: 1rem;
    height: 1rem;
    background-color: #374151;
    border-radius: 50%;
}

.phone-device {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1rem;
    height: 2rem;
    background-color: #d1d5db;
    border-radius: 0.125rem;
}

/* Card content */
.card-title {
    color: #1E5BA3;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.stat-section {
    margin-bottom: 2rem;
}

.stat-section:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #1E5BA3;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-unit {
    font-size: 1.875rem;
}

.stat-description {
    color: #1E5BA3;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-comparison {
    color: #1E5BA3;
    font-size: 0.875rem;
}

/* Info section */
.info-section {
    margin-top: 4rem;
    text-align: center;
}

.info-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #686462;
    margin-bottom: 1rem;
}

.info-description {
    color: #6b7280;
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.2;
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.delay-200 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.delay-400 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.delay-600 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

/* Responsive design */
@media (max-width: 768px) {
    .stats-dashboard {
        padding: 1rem 0.5rem;
    }

    .stats-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-card {
        padding: 1.5rem;
    }
}
/* Initial hidden state */
.slide-in-left-on-scroll,
.slide-in-right-on-scroll {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease-out;
}

.slide-in-left-on-scroll {
    transform: translateX(-100px);
}

.slide-in-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Hover effect (scale up slightly) */
.grid-2-60-40:hover, .stats-card:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

/***Strategy priority**/
.container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.section {
    padding: 20px;
}

.performance-section {
    background: #E6F1F5;
    border-radius: 20px;
}

.looking-ahead-section {
    background: #B3D4E0;
    border-radius: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 30px;
    /*border-bottom: 3px solid #2c5f7c;*/
    padding-bottom: 10px;
}

.looking-ahead-section .section-title {
    color: #2c5f7c;
}

ul {
    list-style: none;
}
.col-span-2{
    grid-column: span 2 / span 2;
}
.performance-section li, .looking-ahead-section li, .leverage li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
    color: #000000;
    font-size: 17px;
}

.performance-section li::before, .looking-ahead-section li::before, .leverage li::before {
    content: "•";
    color: #2c5f7c;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}


.looking-ahead-section li::before {
    color: #1a4a5c;
}

.highlight {
    font-style: italic;
}

.looking-ahead-section .stats {
    color: #1a4a5c;
}

.looking-ahead-section .horizon-tag {
    color: #2a4a5a;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 0;
        display: block;
        padding: 16px;
    }
    .section {
        padding: 20px 20px;
        margin: 16px 0px 16px 0px;
    }

    .section-title {
        font-size: 20px;
    }

    li {
        font-size: 14px;
    }
}



/* Connecting lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.connection-line {
    position: absolute;
    background: #B8A9C9;
    border-radius: 1px;
}

/* Horizontal line connecting top row */
.top-horizontal {
    top: 140px;
    left: 25%;
    right: 25%;
    height: 2px;
}

/* Vertical line from top to bottom */
.main-vertical {
    top: 120px;
    left: 64%;
    width: 2px;
    height: 80px;
    transform: translateX(-50%);
}
.main-vertical1 {
    top: 120px;
    left: 35%;
    width: 2px;
    height: 80px;
    transform: translateX(-50%);
}


/* Horizontal line connecting bottom row */
.bottom-horizontal {
    top: 220px;
    left: 35%;
    right: 35%;
    height: 2px;
}

@media (max-width: 1024px) {
    .main-vertical {
        left: 70%;
    }
    .main-vertical1 {
        left: 30%;
    }

}
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .committee-box {
        width: 300px;
        padding: 15px;
    }

    .committee-title {
        font-size: 14px;
    }

    .page-reference {
        font-size: 12px;
    }

    /* Hide connecting lines on mobile for cleaner look */
    .connection-lines {
        display: none;
    }
}

@media (max-width: 480px) {
    .committee-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .grid-2-60-40 {
        display: block;
    }


    .committee-box {
        width: 300px;
    }
}

/*****Committee****/
.col-committee {

    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content {
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: 600px;
}

.left-panel {
    background: linear-gradient(135deg, #D4C4D9 0%, #C8B5CE 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.right-panel {
    padding: 30px;
    background: white;
}

.committee-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.member-profile {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #8B4A9C 0%, #6B2C7A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.flag-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 25px;
    height: 18px;
    background: linear-gradient(to bottom, #007749 0%, #007749 33%, white 33%, white 66%, #de3831 66%);
    border-radius: 3px;
    border: 1px solid #ccc;
}

.member-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.attendance-section {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.attendance-title {
    font-size: 16px;
    font-weight: 600;
    color: #6B2C7A;
    margin-bottom: 15px;
}

.attendance-list {
    list-style: none;
}

.attendance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(107, 44, 122, 0.2);
}

.attendance-item:last-child {
    border-bottom: none;
}

.member-info {
    color: #2c3e50;
    font-size: 17px;
}
.intro-text {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.chair-label {
    color: #6B2C7A;
    font-size: 14px;
    font-style: italic;
}

.attendance-score {
    font-weight: 600;
    color: #2c3e50;
}

.footnote {
    font-size: 14px;
    color: #6B2C7A;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
}

.overall-attendance {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

.attendance-percentage {
    font-size: 36px;
    font-weight: 700;
    color: #6B2C7A;
    margin-bottom: 5px;
}

.attendance-label {
    font-size: 14px;
    color: #6B2C7A;
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 17px;
    margin-bottom: 10px;
}

.responsibilities-list {
    list-style: none;
    margin-bottom: 10px;
}

.responsibility-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.2;
}

.responsibility-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6B2C7A;
    font-weight: bold;
    font-size: 16px;
}

.committee-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 17px;
}

.focus-section {
    margin-top: 30px;
}

.focus-reference {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.document-icon {
    width: 20px;
    height: 20px;
    background: #6B2C7A;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}

.document-icon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.document-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 3px;
    right: 3px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.reference-text {
    font-size: 14px;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
    }

    .left-panel {
        order: 2;
    }

    .right-panel {
        order: 1;
    }

    .committee-title {
        font-size: 24px;
    }
}
.link{
    color: #6B2C7A;
    font-size: 14px;
}


/****Home page borad****/
.mcg-executive-messages-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.mcg-tabs-navigation-wrapper {
    background: #007bff;
    padding: 0;
    position: relative;
}

.mcg-tabs-list-container {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mcg-tab-item-element {
    flex: 1;
}

.mcg-tab-button-control {
    width: 100%;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mcg-tab-button-control:last-child {
    border-right: none;
}

.mcg-tab-button-control:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.mcg-tab-button-control.mcg-active-tab-state {
    background: #0056b3;
    color: #FFFFFF;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.mcg-tab-button-control::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mcg-tab-button-control:hover::before {
    left: 100%;
}

.mcg-tab-content-display-area {
    padding: 50px;
    min-height: 500px;
}

.mcg-executive-profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.mcg-executive-image-container {
    position: relative;
}

.mcg-executive-photo-frame {
    width: 310px;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);*/
    position: relative;
}

.mcg-executive-photo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);*/
    z-index: 1;
}

.mcg-executive-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mcg-executive-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.mcg-message-content-wrapper {
    position: relative;
}

.mcg-quote-bubble-container {
    background: white;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #667eea;
}

.mcg-quote-bubble-container::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #667eea;
}

.mcg-quote-bubble-container::after {
    content: '';
    position: absolute;
    left: -17px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-right: 17px solid white;
}

.mcg-executive-quote-text {
    font-size: 22px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 500;
}

.mcg-executive-details-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.mcg-executive-name-title-group {
    flex: 1;
}

.mcg-executive-name-display {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.mcg-executive-title-display {
    font-size: 16px;
    color: #007bff;
    font-weight: 500;
}

.mcg-download-report-button {
    display: inline-flex;
    width: auto;
    justify-content: space-between;
    background: var(--blue);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.mcg-download-report-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.mcg-download-icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mcg-tab-panel-content {
    display: none;
}

.mcg-tab-panel-content.mcg-active-panel-state {
    display: block;
    animation: mcg-fadeInUp 0.5s ease-out;
}

@keyframes mcg-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mcg-decorative-pattern-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .mcg-executive-profile-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .mcg-executive-photo-frame {
        /*width: 200px;
        height: 250px;*/
        margin: 0 auto;
    }

    .mcg-tab-content-display-area {
        padding: 30px 20px;
    }

    .mcg-quote-bubble-container {
        padding: 25px;
    }

    .mcg-quote-bubble-container::before,
    .mcg-quote-bubble-container::after {
        display: none;
    }

    .mcg-executive-quote-text {
        font-size: 18px;
    }

    .mcg-executive-details-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .mcg-tab-button-control {
        padding: 15px 20px;
        font-size: 14px;
    }
    .mcg-tabs-list-container {
        display: block;
    }
}

/****Our vision****/
.mcg-vision-hero-section-wrapper {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../../images/2025/vision.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.mcg-vision-hero-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(205, 133, 63, 0.2) 50%, rgba(244, 164, 96, 0.3) 100%);
    z-index: 1;
}

.mcg-top-navigation-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
}

.mcg-find-out-more-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.mcg-find-out-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mcg-find-out-more-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.mcg-find-out-more-button:hover::before {
    left: 100%;
}

.mcg-find-out-more-button:active {
    transform: translateY(-1px);
}

.mcg-button-arrow-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.mcg-find-out-more-button:hover .mcg-button-arrow-icon {
    transform: translateX(5px);
}

.mcg-vision-content-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.mcg-vision-main-heading-display {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 80px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
}

.mcg-vision-purpose-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.mcg-vision-section-block,
.mcg-purpose-section-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mcg-vision-section-block:hover,
.mcg-purpose-section-block:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mcg-vision-section-heading,
.mcg-purpose-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.mcg-vision-description-text,
.mcg-purpose-description-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.mcg-values-section-container {
    margin-top: 60px;
}

.mcg-values-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.mcg-values-grid-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.mcg-value-item-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.mcg-value-item-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.mcg-value-title-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.mcg-value-description-content {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.mcg-floating-particles-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mcg-particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: mcg-float-animation 6s ease-in-out infinite;
}

.mcg-particle-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.mcg-particle-dot:nth-child(2) { top: 60%; left: 20%; animation-delay: 2s; }
.mcg-particle-dot:nth-child(3) { top: 30%; left: 80%; animation-delay: 4s; }
.mcg-particle-dot:nth-child(4) { top: 80%; left: 70%; animation-delay: 1s; }
.mcg-particle-dot:nth-child(5) { top: 40%; left: 90%; animation-delay: 3s; }

@keyframes mcg-float-animation {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

.mcg-purpose-quote-accent {
    font-style: italic;
    color: #FFD700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
    .mcg-vision-purpose-grid-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 80px;
    }

    .mcg-values-grid-display {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mcg-vision-hero-section-wrapper {
        padding: 40px 30px;
    }

    .mcg-top-navigation-bar {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .mcg-vision-hero-section-wrapper {
        padding: 30px 20px;
        background-attachment: scroll;
    }

    .mcg-top-navigation-bar {
        padding: 15px 20px;
    }

    .mcg-find-out-more-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .mcg-vision-main-heading-display {
        margin-bottom: 60px;
    }

    .mcg-vision-section-block,
    .mcg-purpose-section-block,
    .mcg-value-item-card {
        padding: 30px;
    }

    .mcg-vision-section-heading,
    .mcg-purpose-section-heading,
    .mcg-values-main-heading {
        font-size: 2rem;
    }

    .mcg-value-title-heading {
        font-size: 1.5rem;
    }

    .mcg-vision-description-text,
    .mcg-purpose-description-text {
        font-size: 1.1rem;
    }

    .mcg-value-description-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mcg-vision-hero-section-wrapper {
        padding: 20px 15px;
    }

    .mcg-top-navigation-bar {
        padding: 10px 15px;
        top: 70px;
    }

    .mcg-find-out-more-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .mcg-vision-section-block,
    .mcg-purpose-section-block,
    .mcg-value-item-card {
        padding: 25px;
    }
}
table tr:hover td{
    background-color: #e9f3fc;
    cursor: pointer; /* optional, shows it's clickable */
}
table tr td{
    transition: background-color 0.3s ease;
}
/*****CEO**/



.mcg-main-title {
    font-size: clamp(2rem, 4vw, 1rem);
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mcg-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

.mcg-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.mcg-content-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mcg-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mcg-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mcg-card-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}


.mcg-card-content p {
    margin-bottom: 15px;
}

.mcg-card-content p:last-child {
    margin-bottom: 0;
}

.mcg-highlight-text {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.mcg-metric-highlight {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9em;
}

.mcg-expandable-section {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.mcg-section-header {
    padding: 0px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.mcg-section-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.mcg-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00143c;
}

.mcg-expand-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.mcg-section-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mcg-section-content.mcg-expanded {
    padding: 30px;
    max-height: 1000px;
}

.mcg-expand-icon.mcg-rotated {
    transform: rotate(180deg);
}

.mcg-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.mcg-stat-card {
    background: #A16FA6;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.mcg-stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.mcg-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.mcg-quote-callout {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    position: relative;
    font-style: italic;
    font-size: 1.1rem;
}

.mcg-quote-callout::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .mcg-content-grid {
        grid-template-columns: 1fr;
    }

    .mcg-page-header {
        padding: 30px 20px;
    }

    .mcg-content-card {
        padding: 25px;
    }

    .mcg-section-header {
        padding: 20px;
    }

    .mcg-section-content.mcg-expanded {
        padding: 20px;
    }
}

/***********CFO********/
.mcg-chart-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mcg-chart-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: left;
}

.mcg-chart-wrapper {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
}

.mcg-custom-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.mcg-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.mcg-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.mcg-south-africa-color {
    background-color: #4a5d7a;
}

.mcg-rest-africa-color {
    background-color: #a8a8d4;
}

.mcg-percentage-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.mcg-percentage-label {
    position: absolute;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mcg-chart-container {
        padding: 25px;
    }

    .mcg-chart-wrapper {
        height: 250px;
    }

    .mcg-custom-legend {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
/***Downloads**/
.mcg-nav-container-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.mcg-nav-header-section {
    text-align: center;
    margin-bottom: 50px;
}

.mcg-nav-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.mcg-nav-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.mcg-sections-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mcg-section-card-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mcg-section-card-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.mcg-section-header-bar {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}

.mcg-section-header-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mcg-section-card-container:hover .mcg-section-header-bar::before {
    opacity: 0.1;
}

.mcg-section-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-weight: 800;
    font-size: 16px;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.mcg-section-title-text {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.mcg-section-content-area {
    padding: 30px;
}

.mcg-subsection-group {
    margin-bottom: 25px;
}

.mcg-subsection-group:last-child {
    margin-bottom: 0;
}

.mcg-subsection-title {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mcg-nav-item-wrapper {
    display: flex;
    align-items: center;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.mcg-nav-item-wrapper:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateX(5px);
}

.mcg-custom-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.mcg-checkbox-visual-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mcg-custom-checkbox-input:checked + .mcg-checkbox-visual-indicator {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    transform: scale(1.1);
}

.mcg-custom-checkbox-input:checked + .mcg-checkbox-visual-indicator::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.mcg-nav-item-label {
    color: #2d3748;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mcg-nav-item-wrapper:hover .mcg-nav-item-label {
    color: #667eea;
}

.mcg-submit-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.mcg-submit-button-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mcg-submit-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.mcg-submit-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.mcg-submit-button-primary:hover::before {
    left: 100%;
}

.mcg-submit-button-primary:active {
    transform: translateY(-2px);
}

.mcg-submit-button-primary:disabled {
    background: #cbd5e0;
    color: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.mcg-submit-button-primary:disabled::before {
    display: none;
}

.mcg-progress-indicator-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.mcg-progress-text {
    color: #2d3748;
    font-weight: 600;
    font-size: 14px;
}

.mcg-floating-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    pointer-events: none;
}

.mcg-floating-decoration:nth-child(1) {
    top: 10%;
    left: 5%;
    animation: mcg-float-animation 6s ease-in-out infinite;
}

.mcg-floating-decoration:nth-child(2) {
    top: 60%;
    right: 10%;
    animation: mcg-float-animation 8s ease-in-out infinite reverse;
}

.mcg-floating-decoration:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation: mcg-float-animation 7s ease-in-out infinite;
}

@keyframes mcg-float-animation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.mcg-success-message {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
    display: none;
    animation: mcg-slideIn 0.5s ease-out;
}

.mcg-success-message.mcg-show {
    display: block;
}

@keyframes mcg-slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mcg-sections-grid-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mcg-section-header-bar {
        padding: 20px 25px;
    }

    .mcg-section-content-area {
        padding: 25px;
    }

    .mcg-nav-main-title {
        margin-bottom: 30px;
    }

    .mcg-submit-button-primary {
        padding: 18px 40px;
        font-size: 16px;
    }
}