        /* CSS Variables for Brand Colors */
        :root {
            --primary-red: #7E272F;
            --dark-red: #5B1C22;
            --black: #171719;
            --dark-gray: #2E2E30;
            --light-gray: #E6E6E6;
            --soft-white: #F8F8F8;
            --white: #FFFFFF;
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Base Styles */
        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            background-color: var(--soft-white);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: var(--primary-red);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--dark-red);
        }

        /* Container Responsiveness */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


        .section {
            padding: 4rem 0;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .btn-primary {
            background-color: var(--primary-red);
            color: var(--white);
            border: none;
        }

        .btn-primary:hover {
            background-color: var(--dark-red);
            color: var(--white);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--black);
            color: var(--black);
        }

        .btn-secondary:hover {
            background-color: var(--black);
            color: var(--white);
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 50px; /* Maintains the same height as the previous placeholder */
            width: auto; /* Maintains aspect ratio */
        }
        
        .logo-text {
            margin-left: 0.5rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--primary-red);
            font-size: 1.2rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
            margin-right: 0;
        }
        
        nav ul li a {
            color: var(--black);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary-red);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--black);
            cursor: pointer;
            padding-left: 70px;
        }
        
        /* Page Title Section */
        .page-title-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/executive.png') no-repeat center center;
        background-size: cover;
        color: var(--white);
        padding: 12rem 0;
        text-align: center;
        }

           /* Add media query for smaller screens */
@media screen and (max-width: 600px) {
    .page-title-section {
        /* Change background position to show more center/top of image for portrait view */
        background-position: center top;
        padding: 10rem 0;
        /* You can also use a different image optimized for mobile if needed */
         background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/executive-mobile.jpeg'); 
    }
}


        .page-title-section h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }

        .breadcrumb li {
            margin: 0 0.5rem;
        }

        .breadcrumb li:after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--light-gray);
        }

        .breadcrumb li:last-child:after {
            content: '';
        }

        .breadcrumb li a {
            color: var(--light-gray);
        }

        .breadcrumb li a:hover {
            color: var(--white);
        }

        .breadcrumb li.active {
            color: var(--white);
            font-weight: 600;
        }

        /* Executive Team and Trustees Section Responsive Styles */
.executives-section, .trustees-section {
    padding: 3rem 0;
}

.trustees-section {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--black);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: clamp(60px, 10vw, 80px);
    height: 4px;
    background-color: var(--primary-red);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--dark-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* Base executive container */
.executives-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
    padding: 0 10px;
}

/* Executive Card Styling */
.executive-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.executive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.executive-image {
    height: 250px;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

/* Additional styling for image containers to ensure proper display */
.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    display: block; /* Ensures no extra space */
}

/* Fix for missing images - provide default styling */
.executive-image:not(:has(img)) {
    background-color: #f0f0f0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0f0f0"/><path d="M30,40 Q50,20 70,40 L70,60 Q50,80 30,60 Z" stroke="%23cccccc" fill="%23dddddd"/><circle cx="50" cy="30" r="10" stroke="%23cccccc" fill="%23dddddd"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

.executive-card:hover .executive-image img {
    transform: scale(1.05);
}

.executive-role {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(126, 39, 47, 0.9);
    color: var(--white);
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.executive-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.executive-name {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 0.5rem;
    color: var(--black);
}

.executive-class {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.executive-bio {
    color: var(--dark-gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: 1rem;
}

/* Media Queries for Better Responsiveness */
@media screen and (max-width: 1400px) {
    .executives-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .executive-image {
        height: 400px;
    }
}

@media screen and (max-width: 992px) {
    .executives-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .executive-image {
        height: 500px;
    }
    
    .executive-details {
        padding: 1.2rem 1rem;
    }
}

@media screen and (max-width: 768px) {
    .executives-section, .trustees-section {
        padding: 2.5rem 0;
    }
    
    .executives-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
  .executive-image {
        height: 600px;
        
    }
    
    .executive-details {
        padding: 1rem;
    }
    
    .executive-name {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .executives-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 5px;
    }
    
  .executive-image {
        height: 500px;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .executive-details {
        padding: 1rem 0.8rem;
    }
    
    .executive-name {
        font-size: 1rem;
    }
    
    .executive-class {
        font-size: 0.8rem;
    }
    
    .executive-role {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}

/* Additional Enhancements for Small Screens */
@media screen and (max-width: 360px) {
    .executive-image {
        height: 350px;
    }
    .executive-details {
        padding: 1rem;
    }
}

/* Accessibility and Print Media */
@media (prefers-reduced-motion: reduce) {
    .executive-card,
    .executive-card:hover,
    .executive-image img,
    .executive-card:hover .executive-image img {
        transition: none;
        transform: none;
    }
}

@media print {
    .executives-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .executive-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
  
    
    .section-title:after {
        display: none;
    }
}
    
        /* Tenure Section */
        .tenure-section {
            background-color: var(--white);
            padding: 4rem 0;
        }

        .tenure-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .tenure-item {
            border-left: 3px solid var(--primary-red);
            padding-left: 2rem;
            position: relative;
            margin-bottom: 2rem;
        }

        .tenure-item:last-child {
            margin-bottom: 0;
        }

        .tenure-item:before {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            background-color: var(--primary-red);
            border-radius: 50%;
            left: -9px;
            top: 5px;
        }

        .tenure-year {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 0.5rem;
        }

        .tenure-details h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .tenure-details p {
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
        }

        .cta-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .cta-text {
            max-width: 700px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .btn-white {
            background-color: var(--white);
            color: var(--primary-red);
            border: none;
        }

        .btn-white:hover {
            background-color: var(--light-gray);
            color: var(--primary-red);
        }

        .btn-outline-white {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline-white:hover {
            background-color: var(--white);
            color: var(--primary-red);
        }

        /* Footer Styles */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 4rem 0 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .footer-logo-img {
            height: 40px;
            margin-right: 0.5rem;
        }

        .footer-about p {
            color: var(--light-gray);
            margin-bottom: 1rem;
        }

        .footer-title {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--primary-red);
            bottom: -10px;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.8rem;
        }

        .footer-links ul li a {
            color: var(--light-gray);
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--primary-red);
        }

        .footer-newsletter p {
            color: var(--light-gray);
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-btn {
            background-color: var(--primary-red);
            color: var(--white);
            border: none;
            padding: 0 1rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: var(--dark-red);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            background-color: var(--dark-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: background-color 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary-red);
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--dark-gray);
            text-align: center;
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        /* Responsive Styles */

         /* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 0.8rem;
    }
    
    nav ul li {
        margin-left: 1rem;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }


}
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .executives-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-title-section h1 {
                font-size: 2rem;
            }
            
            .executives-container {
                grid-template-columns: 1fr;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                flex-direction: column;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .mobile-menu-btn {
                display: block;
                padding-left: 350px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

         /* Mobile Styles (up to 600px) */
@media (max-width: 600px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
   

    .mobile-menu-btn {
            display: block;
            padding-left: 200px;
        }

    
    nav ul li a {
        font-size: 0.95rem;
        padding: 0.8rem 0;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .header-container {
        padding: 0.6rem 0.8rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .mobile-menu-btn {
        font-size: 1.3rem;
        padding-left: 100px;
    }
    
   
    
    nav ul li a {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
}

.footer-links a[title="Coming Soon"] {
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none; /* Optional: make it fully unclickable */
}