:root {
    --primary-color: #00579C;
    --heading-color: #1B1B1B;
    --text-color: #353535;
    --border-color: #C8C8C8;
    --background-color: #FAFAFA;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
.member-card a {
    text-decoration: none;
}
.member-details-area {
    background: var(--background-color);
    border-radius: 0 0 16px 16px;
}
.member-cover {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.member-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-details {
    position: relative;
    padding: 80px 20px 30px;
    background: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.profile-photo {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-info {
    width: 100%;
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    color: var(--text-color);
}
.member-content {
    padding: 40px 30px;
}
.member-info h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.member-info p {
    font-size: 16px;
    margin: 12px 0;
    line-height: 1.6;
}

.contact-form {
    width: 100%;
    margin-right: 30px;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--background-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    padding: 14px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.members-area, .team-list {
    padding: 60px 0;
}
.member-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}


.member-card a img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-card a:hover img {
    transform: scale(1.05);
}

.content-area {
    padding: 16px 12px 0;
}

.member-card h2 {
    font-size: 18px;
    margin: 10px 0 6px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.assigned-teams {
    font-size: 14px;
    color: #555;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.5;
    padding: 0 10px;
}

.team-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-item h2 {
    font-size: 34px;
    color: var(--heading-color);
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.team-item a:hover h2 {
    color: var(--primary-color);
}

.team-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.team-details-area {
    padding: 30px 0;
}

.assign-member-list .image-wrapper {
    text-align: center;
    padding-bottom: 10px;
}
.assign-member-list .image-wrapper img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.team-details-area h3 {
    margin-bottom: 30px;
}
.team-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
}

.assign-member-list a {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.assign-member-list p {
    margin: 0;
}
.assign-member-list {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.breadcrumb-area {
    padding: 80px 0;
    h1 {
        text-align: center;
    }
}

.explore-more-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

