.facultyBanner
{
	width: 100%;
	height: auto;
	position: relative;
}
.facultyBanner img
{
  width: 100%;
}
.facultyBanner h1 {
  position: absolute;
  top: 50%;
  left: 0;              /* distance from left */
  transform: translateY(-50%); /* vertical center only */
  color: #fff;
  font-size: 48px;
  line-height: 150%;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
}
.dc-none
{
  display: none;
}

.facultySection
{
	width: 100%;
	height: auto;
	padding: 60px 0;
}
.facultySection .heading h2, .facultySection .heading p
{
	text-align: left;
}

/* Tabs */
.fstab-buttons, .frptab-buttons, .fmtab-buttons{
  display: flex;
  gap: 10px;
  width: 100%;
  height: auto;
  margin-top: 30px;
}

.fstab-btn, .frptab-btn, .fmtab-btn {
  padding: 10px 20px;
  border: 1px solid #223D71;
  background: #fff;
  cursor: pointer;
  border-radius: 15px;
  width: auto;
  color: #223D71;
  font-family: var(--font-inter);
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
  text-transform: uppercase;

}

.fstab-btn.active, .frptab-btn.active, .fmtab-btn.active {
  background: linear-gradient(180deg, #C52F32 0%, #5F1718 100%);
  color: #fff;
  border: 1px solid #fff;
}

/* Tab Content */
.fstab-content, .frptab-content, .fmtab-content {
  display: none;
  padding: 40px 0px 0;
}
.fstab-content.active, .frptab-content.active, .fmtab-content.active {
  display: block;
}

.faculty-table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dcdcdc;
}

.faculty-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
}

/* Header */
.faculty-table thead th {
  background: linear-gradient(180deg, #2E5298 0%, #002263 100%);
  color: #fff;
  text-align: left;
  padding:30px 20px;
  font-size: 18px;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.faculty-table thead th:last-child {
  border-right: none;
}

/* Body */
.faculty-table tbody td {
  padding: 20px;
  font-size: 18px;
  color: #1E1E1E;
  border-top: 1px solid #CCC9C9;
  border-right: 1px solid #CCC9C9;
  vertical-align: top;
  width:24%;
  line-height: 140%;
  font-weight: 400;
}

.faculty-table tbody td:last-child {
  border-right: none;
  width:76%;
}

/* Alternate Row */
.faculty-table tbody tr:nth-child(even) {
  background-color: #F4F9FF;
}

/* First row slightly darker like design */
.faculty-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.facR h4
{
  color: #555555;
  font-family: var(--font-inter);
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  margin: 30px 0 0px 0;
}


/* Faculty Extention Page */


.facultyExtention
{
	width: 100%;
	height: auto;
	padding: 60px 0;
}
.facultyExtention .heading h2, .facultyExtention .heading p
{
	text-align: left;
}
.facultyExtention .heading h3
{
  color: #223D71;
  font-size: 32px;
  line-height: 100%;
  font-weight: 500;
  margin: 30px 0 30px 0;
}
.extentionFlx
{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 40px;
}
.extentionBox
{
	width: 49%;
	background: #F5F8FF;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 10px;
}
.extainPic
{
	width: 100%;
	height: auto;
	margin: 0 0 20px 0;
}
.extentionBox h4
{
  color: #223D71;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin: 0 0 15px 0;
}
.extentionBox p
{
  color: #555555;
  font-size: 16px;
  line-height:150%;
  font-weight: 400;
  margin: 0 0 0px 0;
}

.accordion {
  width: 100%;
}

.accordion-item {
  background: #eef1f6;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  padding: 20px 45px 20px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: #223D71;
  font-size: 24px;
  line-height: 36px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* active */
.accordion-item.active .accordion-content {
  max-height: 2000px; /* large enough instead of 700px */
  padding: 20px;
  background: #F5F8FF;
}

.icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 32px;
}
.icon::before {
  content: "";
  width: 18px;
  height: 10px;
  background: url(../assets/images/faculty/ac-down.webp) no-repeat;
  background-size: 100%;
  transition: transform 0.3s;
  position: absolute;
}

/* rotate */
.accordion-item.active .icon::before {
  transform: rotate(180deg);
}
.acfl
{
  width: 100%;
  height: auto;
  border-bottom:1px solid #D6DCE9;
  padding: 10px 0;
  display: flex;
  gap: 10px;
}
.acfl:last-child
{
  border-bottom:0px solid #D6DCE9;
}
.acfl h4
{
  color: #1E1E1E;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  min-width: 250px;
  max-width: 250px;
}
.acfl p
{
  color: #555555;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 5px 0;
}
.acfl p a:hover
{
  color: #C62E34;
}
.acfl ul li
{
  color: #555555;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 5px 0;
}
.acfl ul
{
  padding: 0 0 0 20px;
}



.frpFlx
{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.frpLeft
{
  width: 65%;
  height: auto;
  padding: 0 70px 0 0;
}
.frpLeft p
{
  color: #555555;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 30px 0;
}
.frpRight
{
  width: 35%;
  height: auto;
  margin: 0px 0 0 0;
}
.frpRight img
{
  width: 100%;
}

.frpFl
{
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.frpBox
{
  width: 32%;
  background: #F5F8FF url(../assets/images/faculty/right-arw.webp) no-repeat ;
  background-position: 96% 52%;
  gap: 30px;
  display: flex;
  padding: 30px;
  border-radius: 20px;
  justify-content: left;
  align-items: center;
}
.frpPdfText
{
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
  color: #555555;
}
.frpPdfText a 
{
  color: #555555;
}
.frpBox:hover a
{
  color: #C52F32;
}
.frpBox:hover
{
  background: #E9F0FD url(../assets/images/faculty/right-arw.webp) no-repeat;
  background-position: 96% 52%;
}
.frptab-content ul
{
  padding: 0 0 0 20px;
}
.frptab-content ul li
{
  color: #555555;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 20px 0;
}

.tab-btnprn{
  padding:10px 25px;
  border:1px solid #223D71;
  background:#fff;
  cursor:pointer;
  font-size:20px;
  font-family: var(--banner-heading-font-family);
  color: #223D71;
  line-height: 150%;
  font-weight: 600;
  border-radius: 40px;
  min-width: 278px;
}

.tab-btnprn.active{
  background:#223D71;
  color:#fff;
}

.tab-contentprn{
  display:none;
  padding:20px 0;
  border:0px solid #ddd;
}

.tab-contentprn.active{
  display:block;
}


.pubTable {
  width: 100%;
  margin: 40px auto;
}

/* Header */
.pubHeader {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 0.5fr 1.5fr;
  gap: 15px;
  margin-bottom: 15px;
}

.pubHeader div {
  background: #2e4a7f;
  color: #fff;
  padding: 18px;
  border-radius: 10px;
  font-weight: 500;
}

/* Rows */
.pubRow {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 0.5fr 1.5fr;
  gap: 15px;
  margin-bottom: 15px;
}

.pubRow div {
  background: #EAF0FF;
  padding: 20px;
  border-radius: 10px;
  color: #223D71;
  font-size: 20px;
  line-height: 1.5;
  color: #555555;
  align-items: center;
}
.pubRow div:first-child
{
  color:#223D71 ;
}

.pubFlx
{
  display: flex;
  justify-content: space-between;
}

.custom-select {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #223D71;
  border-radius: 10px;
  padding: 20px 25px;
  background: #f8f9fb;
  position: relative;
}

.custom-select::after {
  content: "▼";
  position: absolute;
  right: 20px;
  pointer-events: none;
  font-size: 14px;
  color: #2f4a7a;
}


.custom-select label {
  color: #555555;
  font-size: 20px;
  font-weight: 400;
}

.custom-select select {
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 600;
  color: #223D71;
  background: transparent;
  appearance: none;
  cursor: pointer;
  padding-right: 20px;
}

.rscFlx
{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 50px;
}
.rscLeft
{
  width: 35%;
  background: url(../assets/images/faculty/pub-bg.webp) no-repeat center;
  background-size: cover;
  border-radius: 20px;
  text-align: center;
  min-height: 400px;
  padding: 150px 30px 30px;
}
.rscLeft h4
{
  color: #fff;
  font-size: 24px;
  line-height: 150%;
  font-weight: 400;
}
.rscLeft h5
{
  color: #fff;
  font-size: 30px;
  line-height: 150%;
  font-weight: 600;
}
.rscLeft img
{
  margin: 25px 0;
}
.rscLeft p
{
  color: #fff;
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
}

.rscRight
{
  width: 62%;
}
.rscRight p 
{
  margin: 0 0 30px 0;
  color: #555555;
  line-height: 150%;
  font-size: 20px;
}
.pscBtn
{
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 30px;
}
.pscBtn .button-with-corner-dots span
{
  height: 50px;
}
.pscBtn .button-variant-primary
{
  margin-right: 20px;
}

.outcomeFlx
{
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.outcomeFl
{
  width: 100%;
  border: 1px solid #E8E8E8;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 30px;
  justify-content: left;
  align-items: center;
}
.outcomePic
{
  min-width: 240px;
}
.outcomeDec h4
{
  color: #555555;
  font-size: 24px;
  line-height: 140%;
  font-weight: 400;
  margin: 0 0 20px 0;
}
.outcomeDec h5
{
  color: #223D71;
  font-size: 16px;
  font-weight: 500;
}
.outcomeDec h5 a:hover 
{
  color: #223D71;
}
.outcomeDec h5 a:hover 
{
  color: #C62E34;
}

.facultyFull
{
  width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.faculty
{
  width: 32%;
  background: #F5F8FF;
  padding: 30px;
  border-radius: 20px;
}
.faculty h3 
{
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin: 0 0 15px 0;
}
.facultyTop
{
  display: flex;
  gap: 20px;
  margin: 0 0 20px 0;
}
.facultyPic
{
  min-width: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.facultyDec
{
  padding: 20px 0 0 0;
}
.facultyDec h2
{
  color: #223D71;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  margin: 0 0 10px 0;
}
.facultyDec p
{
  color: #555555;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 10px 0;
}
.facultyMiddle
{
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 0 0 20px 0;
  min-height: 200px;
}
.facmdl
{
  width: 100%;
}
.facmdl ul 
{
  padding: 0 0 0 16px;
}
.facmdl ul li
{
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 3px 0;
}

.facultyMiddle h4 
{
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin: 0 0 10px 0;
}

.facultyBtm
{
  width: 100%;
  display: flex;
  gap: 10px;
}







/* Media Query Start */

@media screen and (max-width: 1750px){

  .fstab-btn
  {
    font-size: 18px;
  }
  .faculty-table tbody td
  {
  	font-size: 16px;
  }
  .faculty-table thead th
  {
  	padding: 20px 20px;
    font-size: 16px;
  }
  .acfl h4
  {
    font-size: 18px;
  }
  .accordion-header 
  {
    font-size: 20px;
  }
  .rscRight p
  {
    font-size: 18px;
  }
  .rscLeft h5
  {
    font-size: 26px;
  }

}
@media screen and (max-width: 1600px){

  .fstab-btn, .frptab-btn {
    font-size: 16px;
  }
  .fstab-buttons, .frptab-buttons {
	  overflow-x: auto;
	  white-space: nowrap;
  	flex-wrap: nowrap; /* IMPORTANT */
  	padding: 0 0 10px 0;
  }
  .frpLeft p
  {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
  .frpLeft
  {
    padding: 0 20px 0 0;
  }
	
}
@media screen and (max-width: 1550px){

	.facultyBanner h1
	{
		font-size: 40px;
	}
  .rscLeft h4
  {
    font-size: 20px;
  }
   .rscLeft h5 {
    font-size: 24px;
  }
  .rscLeft p
  {
    font-size: 18px;
  }
  .outcomeDec h4
  {
    font-size:20px ;
  }
	
}
@media screen and (max-width: 1400px){

	.facultyBanner h1
	{
		font-size: 36px;
	}
	.facultyExtention .heading h3
	{
		font-size: 28px;
	}
	.extentionBox h4
	{
		font-size: 20px;
		margin: 0 0 7px 0;
	}
	.extentionBox
  	{
  		padding: 20px;
  	}
  .frpBox
  {
    gap: 20px;
  }
  .frpPdfText
  {
    font-size: 18px;
  }
  .frptab-content ul li
  {
    font-size: 18px;
  }
  .frpLeft p
  {
    font-size: 16px;
    margin: 0 0 10px 0;
  }
  .frpRight img 
  {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
   .rscRight p {
    font-size: 16px;
  }
  .rscLeft
  {
    padding: 140px 15px 20px;
  }
  .rscLeft h4 {
    font-size: 16px;
  }
   .rscLeft h5 {
    font-size: 22px;
  }
   .rscLeft p {
    font-size: 16px;
  }
  .outcomeDec h4 {
    font-size: 16px;
  }
	
}
@media screen and (max-width: 1200px){

	.facultyBanner h1 {
      font-size: 32px;
  	}
  	.extentionFlx
  	{
  		gap: 0;
  	}
  	.extentionBox
  	{
  		margin-bottom: 20px;
  	}
  	.extentionBox p
  	{
  		font-size: 15px;
  	}
    .acfl h4
    {
      width: 100%;
      max-width: 100%;
    }
    .acfl
    {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .frpBox
    {
      padding: 20px;
      gap: 7px;
      border-radius: 5px;
      width: 31%;
    }
     .frptab-content ul li {
       font-size: 16px;
     }
     .pubRow div
     {
      font-size: 16px;
      padding: 15px;
     }
     .outcomeFl
     {
      padding: 15px;
      gap: 18px;
    }
    .outcomeFlx
    {
      gap: 10px;
    }

	
}
@media screen and (max-width: 991px){

	.facultyBanner img {
	  height: 300px;
	  object-fit: cover;
	}
	.extainPic img
	{
		height: 150px;
		object-fit: cover;
	}
   .facultyExtention .heading h3 {
    font-size: 24px;
    line-height: 130%;
  }
  .frpBox
    {
      width: 48%;
    }
  .frpLeft
  {
    width: 100%;
    padding: 0 0 0 0;
  }
  .frpRight
  {
    width: 100%;
    height: auto;
    margin: 20px 0 0 0;
  }
  .pubRow div
   {
    font-size: 15px;
   }
   .rscFlx
   {
    flex-direction: column-reverse;
   }
   .rscLeft
   {
    width: 100%;
    margin: 30px 0 0px 0;
   }
   .rscRight
   {
    width: 100%;
   }
   .outcomePic {
     min-width: 170px;
    }

	
}

@media screen and (max-width: 767px){
  .faculty-table tbody td {
    font-size: 14px;
    padding: 10px 10px;
  }
  .faculty-table thead th
  {
  	font-size: 14px;
  	padding: 20px 10px;
  }
  .fstab-content
  {
  	padding: 20px 0 0 0;
  }
  .faculty-table
  {
  	overflow-x: auto;
  	padding:0 0 10px 0;
  }
  .faculty-table table
  {
  	width: 800px;
  }
  .facultySection, .facultyExtention
  {
  	padding: 30px 0;
  }
  .extentionBox h4
  {
  	font-size: 16px;
  }
   .extentionBox p {
    font-size: 14px;
  }
  .acfl h4
  {
    font-size: 16px;
  }
  .acfl p, .acfl ul li
  {
    font-size: 14px;
  }
   .accordion-header {
    font-size: 16px;
    line-height: 120%;
    padding: 10px 45px 10px 10px;
  }
  .icon
  {
    right: 12px;
    top: 27px;
  }
   .frpBox {
    padding: 20px 20px 20px 10px;
  }
  .frpPdfText {
    font-size: 15px;
  }
  .frpLeft p {
    font-size: 14px;
    margin: 0 0 10px 0;
  }

  .pubHeader {
    display: none;
  }

  .pubRow {
    grid-template-columns: 1fr;
    border-bottom: 4px solid #223D71;
  }

  .pubRow div {
    position: relative;
    padding-left: 120px;
  }

  .pubRow div:nth-child(1)::before { content: "Publication"; }
  .pubRow div:nth-child(2)::before { content: "Author"; }
  .pubRow div:nth-child(3)::before { content: "Year"; }
  .pubRow div:nth-child(4)::before { content: "Description"; }

  .pubRow div::before {
    position: absolute;
    left: 15px;
    top: 15px;
    font-weight: bold;
    color: #000;
  }
  .pubFlx
  {
    display: block;
  }
  .custom-select
  {
    padding: 15px 21px;
  }
  .custom-select label
  {
    font-size: 18px;
  }
  .custom-select select
  {
    font-size: 18px;
  }
  .rscFlx
  {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .outcomeFlx
  {
    flex-wrap: wrap;
  }
  
	
}
@media screen and (max-width: 570px){

	.mb-none
	{
		display: none;
	}	
	.dc-none
	{
		display: block;
	}
	.facultyBanner h1
	{
		font-size: 28px;
		transform: translateY(-0%);
		top: 30px;
	}
	.extentionBox
	{
		width: 100%;
	}
	.extainPic
	{
		border-radius: 10px;
		overflow: hidden;
	}
   .frpBox {
    padding: 20px 20px 20px 10px;
    width: 100%;
  }
   .frptab-content ul li {
    font-size: 14px;
  }
   .outcomeFl {
    display: block;
  }
   .outcomePic {
   width: 100%;
  }
  .outcomeDec
  {
    width: 100%;
    padding: 15px 0 0 0;
  }
  .rscRight p {
    font-size: 14px;
  }
  .rscLeft h4 {
    font-size: 14px;
  }
  .rscLeft h5 {
    font-size: 20px;
  }
  .rscLeft p{
    font-size: 14px;
  }
  .rscLeft
  {
    min-height: auto;
  }
   .outcomeDec h4 {
    font-size: 14px;
  }
  .outcomePic img
  {
    width: 100%;
  }
  .pscBtn .button-variant-primary {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 10px;
  }
  .pscBtn .button-with-corner-dots span {
    width: 100%;
  }
	
}
@media screen and (max-width: 400px){
	
}



