.tmm_photo {
    width: 200px !important;
    height: 200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 50% !important;
    border: 5px solid #f5f5f5 !important;
    display: block !important;
}

.tmm_member {
    border: 1px solid #f0f0f0 !important;
    border-radius: 10px !important;
    padding: 50px !important;
    margin: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
}

.tmm_member:hover {
    transform: translateY(-10px) !important;
}

.tmm_container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.tmm_fname {
    font-size: 20px !important;
    color: #045296 !important;
    font-weight: bold !important;
}

.tmm_job {
    font-style: italic !important;
    color: #666 !important;
    margin-top: 5px !important;
    margin-bottom: 15px !important;
}

/* Make sure the plugin's containers are properly sized */
.tmm_wrap {
    width: 100% !important;
}

/* Make sure images are visible */
[class^="tmm_pic_"] {
    display: block !important;
    width: 200px !important;
    height: 200px !important;
}
    
/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #175086;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* About Header */
.about-header {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 3rem;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Open Sans', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #175186;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Vision, Mission, Objectives Section */
.vision-mission-objectives-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%); */
    font-family: 'Open Sans', sans-serif;
}

.vmo-content {
    text-align: center;
}

.vmo-top-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.vmo-bottom-card {
    max-width: 1200px;
    margin: 0 auto;
}

.vmo-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border-left: 5px solid #175186;
}

.vmo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(232, 62, 140, 0.15);
}

.vmo-title {
    font-size: 1.8rem;
    color: #175087;
    margin-bottom: 15px;
    font-weight: 700;
}

.vmo-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.objectives-list {
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0;
}

.objectives-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.objectives-list li strong {
    color: #333;
    font-weight: 600;
}

/* CEO Section */
.ceo-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
}

.ceo-profile {
    background: #f8f0f5;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.ceo-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.ceo-left,
.ceo-right {
    padding: 20px;
}

.ceo-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #175087;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.ceo-name {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.ceo-left h4,
.ceo-right h4 {
    font-size: 1.5rem;
    color: #175087;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.ceo-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.ceo-accomplishments,
.ceo-experiences,
.ceo-skills,
.ceo-values {
    list-style-type: none;
    padding-left: 0;
    margin-left: 20px;
}

.ceo-accomplishments li,
.ceo-experiences li,
.ceo-skills li,
.ceo-values li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.ceo-accomplishments li::before,
.ceo-experiences li::before,
.ceo-skills li::before,
.ceo-values li::before {
    content: '•';
    color: #175087;
    position: absolute;
    left: 0;
    top: 0;
}

/* Team Section - Enhanced Design */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    font-family: 'Open Sans', sans-serif;
}

.team-content {
    text-align: center;
    padding: 20px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: none;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(232, 62, 140, 0.15);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #175087;
    transition: transform 0.3s ease;
}

.team-member:hover .team-image {
    transform: scale(1.1);
}

.team-name {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.team-member:hover .team-name {
    color: #175087;
}

.team-role {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header {
        height: 200px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-section,
    .ceo-section,
    .team-section,
    .vision-mission-objectives-section {
        padding: 50px 0;
    }

    .about-content,
    .ceo-profile,
    .vmo-card {
        padding: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content p,
    .ceo-text,
    .vmo-text,
    .objectives-list li,
    .team-role {
        font-size: 14px;
    }

    .ceo-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ceo-left,
    .ceo-right {
        padding: 0;
    }

    .ceo-name {
        font-size: 1.5rem;
    }

    .ceo-image {
        width: 120px;
        height: 120px;
    }

    .ceo-left h4,
    .ceo-right h4 {
        font-size: 1.3rem;
    }

    .ceo-accomplishments li,
    .ceo-experiences li,
    .ceo-skills li,
    .ceo-values li {
        font-size: 14px;
    }

    .vmo-title {
        font-size: 1.5rem;
    }

    .team-image {
        width: 120px;
        height: 120px;
    }

    .team-name {
        font-size: 1.5rem;
    }

    .vmo-top-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-content p,
    .ceo-text,
    .vmo-text,
    .objectives-list li,
    .team-role {
        font-size: 14px;
    }

    .ceo-name {
        font-size: 1.3rem;
    }

    .ceo-image {
        width: 100px;
        height: 100px;
    }

    .ceo-left h4,
    .ceo-right h4 {
        font-size: 1.2rem;
    }

    .ceo-accomplishments li,
    .ceo-experiences li,
    .ceo-skills li,
    .ceo-values li {
        font-size: 14px;
    }

    .vmo-title {
        font-size: 1.3rem;
    }

    .team-image {
        width: 100px;
        height: 100px;
    }

    .team-name {
        font-size: 1.3rem;
    }

    .team-grid,
    .vmo-top-cards {
        grid-template-columns: 1fr;
    }

    .tmm_member {
        border-top: white !important;
    }
}