 

:root {
    --primary-color: #cb0c0c;
    --primary-dark: #952624;
    --primary-light: #ff4444;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

 
/* Container */
.container-fluid {
    padding: 0;
    max-width: 100%;
}

.row {
    margin: 0;
}

/* Sidebar Styles */
.sidebar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0;
    min-height: 100vh;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
}

.sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--bg-white);
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 100%);
    margin-top: 12px;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav .nav {
    padding: 0;
}

.sidebar-nav .nav-item {
    margin-bottom: 4px;
}

.sidebar-nav .nav-link {
    color: var(--text-medium);
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-nav .nav-link i:first-child {
    font-size: 18px;
    color: var(--text-light);
    transition: var(--transition);
}

.sidebar-nav .nav-link span {
    flex: 1;
}

.sidebar-nav .nav-link .arrow {
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background: linear-gradient(90deg, rgba(203, 12, 12, 0.05) 0%, transparent 100%);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 35px;
}

.sidebar-nav .nav-link:hover i:first-child,
.sidebar-nav .nav-link.active i:first-child {
    color: var(--primary-color);
    transform: scale(1.1);
}

.sidebar-nav .nav-link:hover .arrow,
.sidebar-nav .nav-link.active .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 20px;
    margin-top: auto;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 20px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-dark);
}

/* Content Area */
.content-area {
    background-color: var(--bg-light);
    padding: 0;
    min-height: 100vh;
}

.content-wrapper {
    padding: 40px 60px;
    max-width: 1400px;
}

/* Page Header */
.page-header {
    margin-bottom: 30px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-nav i {
    color: var(--text-light);
    font-size: 12px;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 500;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
    margin: 0;
}


/* Leadership Introduction */
.leadership-intro {
    margin-bottom: 50px;
}

.intro-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 25px;
    align-items: center;
}

.intro-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--bg-white);
    box-shadow: 0 8px 20px rgba(203, 12, 12, 0.3);
}

.intro-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.intro-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.8;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

/* Leader Card */
.leader-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

/* Leader Image Wrapper */
.leader-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-card:hover .leader-image {
    transform: scale(1.05);
}

.leader-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.managing-director {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.executive-director {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.ceo {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.director {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

/* Leader Content */
.leader-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leader-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.leader-position {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.leader-institution {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.leader-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    margin-bottom: 15px;
}

.leader-bio {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Leader Actions */
.leader-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.btn-profile {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 12, 12, 0.4);
    color: var(--bg-white);
}

.btn-contact-leader {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.btn-contact-leader:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 12, 12, 0.3);
}

/* Leadership Stats Section */
.leadership-stats-section {
    margin-bottom: 60px;
    padding: 50px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.stats-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.stat-card-alt {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.stat-card-alt:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-icon-alt {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--bg-white);
    box-shadow: 0 8px 20px rgba(203, 12, 12, 0.3);
}

.stat-number-alt {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.stat-label-alt {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(203, 12, 12, 0.3);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .content-wrapper {
        padding: 40px 50px;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}


 
/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .content-wrapper {
        padding: 40px 50px;
    }
}

/* Tablet View */
@media (max-width: 991px) {
    .sidebar {
        min-height: auto;
        position: relative;
        height: auto;
    }
    
    .sidebar-header {
        padding: 25px 20px;
    }
    
    .sidebar-title {
        font-size: 24px;
    }
    
    .sidebar-nav .nav-link {
        padding: 14px 20px;
    }
    
    .sidebar-footer {
        display: none;
    }
    
    .content-wrapper {
        padding: 35px 30px;
    }
    
    .page-title {
        font-size: 38px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    intro-card {
        padding: 30px;
        gap: 20px;
    }
    
    .intro-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 32px;
    }
    
    .intro-content h3 {
        font-size: 22px;
    }
    
    .intro-content p {
        font-size: 15px;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .leader-image-wrapper {
        height: 300px;
    }
    
    .leadership-stats-section {
        padding: 40px 30px;
    }
    
    .stats-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .cta-section {
        padding: 50px 40px;
    }
    
    .cta-section h3 {
        font-size: 28px;
    }
    
    
}

/* Mobile View */
@media (max-width: 767px) {
    .sidebar-header {
        padding: 20px 15px;
    }
    
    .sidebar-title {
        font-size: 22px;
    }
    
    .sidebar-nav .nav-link {
        padding: 12px 15px;
        font-size: 13px;
        gap: 10px;
    }
    
    .sidebar-nav .nav-link i:first-child {
        font-size: 16px;
    }
    
    .content-wrapper {
        padding: 25px 20px;
    }
    
    .page-header {
        margin-bottom: 35px;
    }
    
    .breadcrumb-nav {
        font-size: 12px;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .philosophy-section {
        margin-bottom: 45px;
    }
    .leadership-intro {
        margin-bottom: 35px;
    }
    
    .intro-card {
        flex-direction: column;
        padding: 25px;
        gap: 15px;
        text-align: center;
    }
    
    .intro-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 28px;
        margin: 0 auto;
    }
    
    .intro-content h3 {
        font-size: 20px;
    }
    
    .intro-content p {
        font-size: 14px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 45px;
    }
    
    .leader-image-wrapper {
        height: 320px;
    }
    
    .leader-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .leader-content {
        padding: 25px;
    }
    
    .leader-name {
        font-size: 22px;
    }
    
    .leader-position {
        font-size: 13px;
    }
    
    .leader-institution {
        font-size: 13px;
    }
    
    .leader-bio {
        font-size: 13px;
    }
    
    .leader-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-profile {
        width: 100%;
    }
    
    .btn-contact-leader {
        width: 100%;
        height: 45px;
    }
    
    .leadership-stats-section {
        padding: 35px 25px;
        margin-bottom: 45px;
    }
    
    .stats-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .stat-card-alt {
        padding: 30px 20px;
        margin-bottom: 15px;
    }
    
    .stat-icon-alt {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .stat-number-alt {
        font-size: 36px;
    }
    
    .stat-label-alt {
        font-size: 12px;
    }
    
    .cta-section {
        padding: 40px 25px;
        border-radius: 16px;
        margin-top: 45px;
    }
    
    .cta-section h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        font-size: 15px;
    }
    
   
}

/* Small Mobile View */
@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }
      
    .intro-content h3 {
        font-size: 18px;
    }
    
    .leader-image-wrapper {
        height: 280px;
    }
    
    .leader-name {
        font-size: 20px;
    }
    
    .stats-title {
        font-size: 22px;
    }
    
    .stat-number-alt {
        font-size: 32px;
    }
    
     
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Animation for content on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.philosophy-section {
    animation: fadeInUp 0.6s ease-out;
}

.philosophy-section:nth-child(2) {
    animation-delay: 0.1s;
}

.philosophy-section:nth-child(3) {
    animation-delay: 0.2s;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .sidebar {
        display: none;
    }
    
    .content-area {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .cta-section {
        display: none;
    }
    
    .page-header {
        margin-bottom: 30px;
    }
    
    .philosophy-section {
        page-break-inside: avoid;
        margin-bottom: 40px;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

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

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f0f0f0 8%, #f8f8f8 18%, #f0f0f0 33%);
    background-size: 2000px 100%;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Animation for content on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leader-card {
    animation: fadeInUp 0.6s ease-out;
}

.leader-card:nth-child(1) { animation-delay: 0.1s; }
.leader-card:nth-child(2) { animation-delay: 0.2s; }
.leader-card:nth-child(3) { animation-delay: 0.3s; }
.leader-card:nth-child(4) { animation-delay: 0.4s; }
.leader-card:nth-child(5) { animation-delay: 0.5s; }
.leader-card:nth-child(6) { animation-delay: 0.6s; }

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .sidebar,
    .cta-section,
    .leader-actions {
        display: none;
    }
    
    .content-area {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leader-card {
        page-break-inside: avoid;
    }
}