/*faculty details*/
/* General container styling */
.profile-container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
}

/* Tabs container styling */
.tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #e0e0e0;
    background-color: #f7f7f7;
}

/* Tab button styling */
.tab-button {
    flex-grow: 1;
    padding: 15px 10px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    color: #555;
    border: none;
    background-color: transparent;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Active tab button styling */
.tab-button.active {
    background-color: #0f1748;
    color: white;
}

/* Tab button hover effect */
.tab-button:hover {
    background-color: #0f1748;
    color: white;
}

/* Tab content container styling */
.tab-content {
    padding: 20px 25px;
    display: none; /* Hide content by default */
}

/* Display active tab content */
.tab-content.active {
    display: block;
}

/* Styling for each tab's content */
h3 {
    font-size: 1.6rem;
    color: #333;
    border-bottom: 2px solid #0f1748;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.tab-content p ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

ul li {
    padding: 5px 0;
}

/* Profile Header */
.profile-header {
    display: flex;
    padding: 20px;
    border-bottom: 2px solid #e0e0e0;
    align-items: center;
}

.profile-header img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px;
}

.profile-header h2 {
    font-size: 2rem;
    margin: 0;
    color: #0f1748;
}

.profile-header p {
    font-size: 1.1rem;
    color: #555;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        padding: 10px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-header img {
        margin-bottom: 10px;
    }

    .profile-container {
        margin: 10px;
    }

    h3 {
        font-size: 1.4rem;
    }
}