.faculty-sidebar {
    background-color: #f8f9fa; /* Light gray background */
    padding: 15px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: bold;
    color: #343a40;
}

.nav-pills .nav-link {
    color: #495057;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.nav-pills .nav-link i {
    margin-right: 8px;
}

.nav-pills .nav-link:hover {
    background-color: none;
    color: #0056b3;
}

.nav-pills .nav-link.active {
    background-color: #0056b3;
    color: white;
    font-weight: bold;
}
.sidebar-title {
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-color);
}

.sidebar-title a:hover i {
    color: #fb970b;
    transform: scale(1.1);
}

/* Main Content Section */
.content-section {
    padding: 25px;
    transition: all 0.3s ease-in-out;
    border-left: 5px solid #0056b3;
    border-radius: 10px;

}

/* Faculty Header Section */
.faculty-detail-header {
    padding: 20px;
    display: flex;
    align-items: center;
    background: white;
}

/* Profile Image */
.faculty-detail-image-container {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faculty-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-info {
    padding: 20px;
}

.faculty-name {
    font-size: 26px;
    font-weight: 700;
    color: #002b5b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faculty-designation {
    font-size: 17px;
    margin-bottom: 8px;

}

.faculty-email {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-icon {
    color: #0056b3;
    font-size: 17px;
}

.email-link {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.email-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #0056b3;
    transition: width 0.3s ease-in-out;
}

.email-link:hover {
    color: #ff5722;
}


/* Section Title */
.section-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-color);
    border-bottom: 3px solid #0056b3;
    padding-bottom: 8px;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ff9800;
    position: absolute;
    bottom: -3px;
    left: 0;
}



/* Tabs Content */

.tab-pane {
    animation: fadeIn 0.5s ease-in-out;
}
.tab-pane p{
    line-height: 1.6;
}
/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
