:root {
    --primary-color: #0070C0;
    --secondary-color: #ffa726;
    --text-color: #333;
    --light-bg: #f9f9f9;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0px;
    background-color: #f8f9fa;
}

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

/* Control buttons styles */
button {
    padding: 0.5rem 1rem;
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-right: 1rem;
}

button.toggle-button {
    background-color: #3b82f6;
}

button.pause-button {
    background-color: #6b7280;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.text-primary {
    color: var(--primary-color) !important;
}

.hero-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0%;

}

.header-text {
    /* font-family: Roboto; */
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;

    max-width: 600px;
    margin-bottom: 2rem;
}

/* Panel styles */
.panel-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border: 1px solid #e5e7eb;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    margin-top: 1rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.name {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
}

.title {
    font-size: 0.875rem;
    margin: 0;
    color: #4b5563;
}

.profile {
    margin: 0;
    margin-top: 0.5rem;
    font-style: italic;
    color: #4b5563;
}

/* Chart container styles */
.chart-container {
    /* border: 1px solid #d1d5db; */
    border-radius: 0.5rem;
    padding: 0.5rem;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff, #f0f0f0); */
}

.chart-svg {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
}

.profile-img {
    /* height: 400px;
    width: 400px; */
}

/* Responsive layout */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

/* .chart-area {
    flex: 1 1 100%;
    padding: 1rem;
} */

/* .details-panel {
    flex: 1 1 100%;
    padding: 0.5rem;
} */

@media (min-width: 768px) {
    /* .chart-area {
        flex: 3 1 60%;
    } */

    /* .details-panel {
        flex: 2 1 40%;
    } */

    .panel-container {
        margin-top: 0;
    }
}

.navbar {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.login-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-radius: 6px;
}

.login-btn:hover {
    background-color: #0277bd;
    color: white;
}

.hero-section {
    background: url('images/leadership-bg.png');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: var(--text-color);
}



.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0277bd;
    color: white;
}

.section-padding {
    padding: 5rem 0;
}

.details-panel {
    position: relative;
}

.profile-info {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.profile-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.profile-details {
    position: absolute;
    top: 60%;
    right: 0;
    width: 100%;
    max-width: 334px;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, #FFFFFF 0%, #E8E8E8 100%);

}

.profile-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;

}

.profile-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0%;
    color: #4A4A4A;
    margin: 5px auto;

}

.profile-desc {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0%;
}

.heading-2 {
    /* font-family: Roboto; */
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;

}

.level-title {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-matters {
    /* background-color: var(--primary-color); */
    background: url('images/bg-img.png') no-repeat center center;
    background-size: cover;
    color: white;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #0277bd;
    color: white;
}

.footer {
    background-color: #f5f5f5;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}
@media (max-width: 992px) {
    .flex-container{
        justify-content: center;
    }
    
}