        /* ==== DIRECTORS SECTION ==== */
        .directors-wrapper {
            width: 100%;
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .directors-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 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="none"/><circle cx="50" cy="50" r="40" stroke="rgba(0,23,55,0.03)" stroke-width="1" fill="none"/></svg>');
            background-size: 100px 100px;
            z-index: 0;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .directors-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #001737;
            text-align: center;
            position: relative;
            display: inline-block;
        }
        
        .directors-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4361ee, #3a0ca3);
            border-radius: 2px;
        }
        
        .title-container {
            text-align: center;
            margin-bottom: 60px;
            margin-top: 50px;
        }
        
        .lead-desc {
            max-width: 700px;
            margin: 30px auto 0;
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* Main container holding all cards - Modified for responsive layout */
        .directors-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        
        /* Each BOD card */
        .bods-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .bods-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        /* Image container with fixed aspect ratio */
     .bods-img-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f3f4f6;                 /* neutral background */
    display: flex;
    align-items: center;
    justify-content: center;
}
.bods-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

        
.bods-img {
    width: -webkit-fill-available;
    /* height: auto; */
    min-height: 396px;
    object-fit: cover;
    display: block;
}


    /* Content section */
        .bods-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .bods-content h3 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
            color: #001737;
        }
        
        .bods-content h4 {
            margin: 8px 0 15px 0;
            font-size: 1rem;
            font-weight: 600;
            color: #4361ee;
            display: flex;
            align-items: center;
        }
        
        .bods-content h4::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #4361ee;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .bods-content p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.6;
        }
        
        .education {
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
            color: #666;
            display: flex;
            align-items: center;
        }
        
        .education i {
            margin-right: 8px;
            color: #4361ee;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f0f2f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #001737;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: #4361ee;
            color: white;
            transform: translateY(-3px);
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            margin-top: 70px;
            padding: 40px;
            background: #001737;
            border-radius: 16px;
            color: white;
        }
        
        .cta-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .cta-desc {
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, #4361ee, #3a0ca3);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }
        
        /* For odd number of cards, ensure the last one is centered */
        .directors-container > .bods-card:last-child:nth-child(odd) {
            grid-column: 1 / -1;
            max-width: 500px;
            margin: 0 auto;
            justify-self: center;
        }
        
        /* RESPONSIVE - Modified for new breakpoint at 1000px */
        @media (max-width: 1000px) {
            .directors-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .directors-wrapper {
                padding: 60px 0;
            }
            
            .directors-title {
                font-size: 2.2rem;
            }
            
            .directors-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .bods-content {
                padding: 25px;
            }
            
            .cta-section {
                padding: 30px 20px;
            }
        }
        
        /* Large screens - Above 1000px width - Cards in a row */
        @media (min-width: 901px) {
            .directors-container {
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
            }
            
            .bods-content h3 {
                font-size: 1.3rem;
            }
            
            .bods-content p {
                font-size: 0.9rem;
            }
            
            .education {
                font-size: 0.8rem;
            }
        }