@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/* ===================================
   BREADCRUMB SECTION
   =================================== */
.breadcrumb {
    background: url("../img/breadcrumb-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    margin-bottom: 0;
}

.breadcrumb h1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===================================
   FACULTY PROFILE SECTION
   =================================== */
.faculty-profile-wrap {
    background-color: #FFFFFF;
    padding: 60px 0;
    font-family: 'Source Sans 3', sans-serif;
    color: #262626;
}

.faculty-page-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.faculty-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 30px;
}

.faculty-image-panel {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faculty-profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.faculty-profile-head {
    margin-bottom: 12px;
}

.faculty-profile-label {
    color: #B84110;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-family: "Source Sans 3", sans-serif;
}

.faculty-profile-name {
    color: #B84110;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: "Source Sans 3", sans-serif;
}

.faculty-profile-designation {
    color:#034B9F;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    font-family: "Source Sans 3", sans-serif;
}

.faculty-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.faculty-chip {
    border-radius: 4px;
    padding: 4px 12px;
    background: #F3F4F6;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #E5E7EB;
    font-family: "Source Sans 3", sans-serif;
}

.faculty-chip-primary {
    background: #034B9F;
    color: #FFFFFF;
    border-color: #034B9F;
}

.faculty-key-details {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.faculty-key-details li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    line-height: 1.6;
}

.faculty-key-label {
    color: #B84110; 
    font-size: 18px;
    font-weight: 600;
    margin-right: 8px;
    font-family: "Source Sans 3", sans-serif;
}

.faculty-key-value {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    flex: 1;
    font-family: "Source Sans 3", sans-serif;
}

.faculty-email-link {
    color: #034B9F;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faculty-email-link:hover {
    color: #B84110;
    text-decoration: underline;
}

/* ===================================
   FACULTY TABS SECTION
   =================================== */
.faculty-sections {
    margin-top: 20px;
}


.faculty-tabs-wrapper {
    margin-bottom: 10px; 
    border-bottom: 2px solid #E5E7EB;
}

.faculty-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faculty-tab-pill {
    background: none;
    border: none;
    padding: 0 0 10px 0;
    color: #262626;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Source Sans 3', sans-serif;
}

.faculty-tab-pill::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #B84110;
    transition: width 0.3s ease;
}

.faculty-tab-pill:hover {
    color: #034B9F;
}

.faculty-tab-pill.active {
    color: #034B9F;
}

.faculty-tab-pill.active::after {
    width: 100%;
}

.faculty-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out forwards;
}

.faculty-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.faculty-section-content {
    color: #000000;
    line-height: 1.7;
    font-size: 18px;
    font-weight: 400;
    background: #FFFFFF;
    font-family: 'Source Sans 3', sans-serif;
    padding-top: 10px; /* Space control kiya gaya hai */
}
.faculty-section-content p,
.faculty-section-content span,
.faculty-section-content li {
    font-size: 18px !important;
    font-family: 'Source Sans 3', sans-serif !important;
    color: #000000 !important;
    line-height: 1.7 !important;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 991px) {
    .faculty-top {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }
    
    .faculty-profile-name {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .breadcrumb {
        padding: 50px 0;
    }

    .breadcrumb h1 {
        font-size: 36px;
    }

    .faculty-top {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .faculty-image-panel {
        max-width: 300px;
        margin: 0 auto;
    }

    .faculty-key-details li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .faculty-key-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 2px;
    }

    .faculty-tabs-nav {
        justify-content: center;
        gap: 15px;
    }

    .faculty-profile-name {
        font-size: 32px;
    }

    .faculty-profile-designation {
        font-size: 20px;
    }
    .faculty-tab-pill {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .breadcrumb h1 {
        font-size: 28px;
    }

    .faculty-profile-name {
        font-size: 28px;
    }

    .faculty-tab-pill {
        font-size: 16px;
        padding-bottom: 10px;
    }
}