@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@400;500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #333333;
}

:root {
  --primary-color: #A7383D;
  --secondary-color: #016D33;
  --text-color: #333;
  --light-beige:#F8F4EF;
  --soft-grey:#E5E5E5;
  --charcoal-gray:#333333;
  --White:#FFFFFF;
--golden-yellow:#FFD700;
--light-green:#A4D3A2;
--pale-red:#E89C9D;
--background:#016D33 ;
--icons-color:#FFD700;
  --text-white:#fff;



  --background-color: #F7F7F7;
  --bg-grey:#F9F9F9;
  --font-size-large: 1.5rem;
}

  .upper-header {
    width: 100%;
    padding: 1rem;
    background-color:var(--light-beige);
  }
  .upper-header-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .clg-header-logo {
      width: 80px;
      height: 80px;
      margin-right: 2rem;
  }
  
  .clg-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .clg-header-titles {
    text-align: center;
  }
  .title-1{
    font-weight: 600;
    font-size: 0.9rem;
    
  }
  
  .header-title {
    font-weight:600;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    margin: 0.2rem 0;
    color: #A7383D;
  }
  
  .header-subtitle {
    font-size: 0.8rem;
    font-family: 'Roboto', sans-serif;
    color: #555;
    margin: 0.1rem 0;
  }
  
  .footer-section-header {
    width: 100%;
    background-color:var(--soft-grey);
    padding: 5px;
    text-align: center;
    font-size: 0.8rem;
    font-family: 'Roboto', sans-serif;
    color: #555;
  }
  
  .footer-section-header span {
    font-weight: 500;
    color: #333;
  }
  

  /* General Styling for Mobile and Tablet */
@media (max-width: 1024px) { /* Tablet and smaller devices */
  .clg-header-logo {
    width: 90px;
    height: 90px;
    margin-right: 1rem;
  }
  
  .header-title {
    font-size: 1.3rem;
  }
  
  .header-subtitle {
    font-size: 0.8rem;
  }
  
  .upper-header-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .clg-header-logo {
    margin: 0 auto 1rem auto;
  }
}

@media (max-width: 768px) { /* Tablet Portrait and large mobile phones */
  .clg-header-logo {
    width: 80px;
    height: 80px;
  }

  .header-title {
    font-size: 1.2rem;
  }

  .header-subtitle {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) { /* Mobile Phones */
  .upper-header {
    padding: 0.5rem;
  }

  .clg-header-logo {
    width: 70px;
    height: 70px;
  }

  .header-title {
    font-size: 1.1rem;
  }

  .header-subtitle {
    font-size: 0.7rem;
  }

  .footer-section-header {
    font-size: 0.8rem;
    padding: 3px;
  }
}

.custom-navbar {
  width: 100%;
  background-color: var(--primary-color);
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-navbar.scrolled{
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  left: 0;
}
.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.navbar-nav .nav-link {
  color: var(--text-white);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover{
  /* color:#D3D3D3 ; */
  /* border-bottom: 1px solid var(--light-green); */
  background-color: rgba(255, 255, 255, 0.1);
  color:#000 ;
  border-radius: 5px;
}
.navbar-nav .nav-link.active{
  /* border-bottom: 2px solid var(--light-green); */
  background-color: rgba(255, 255, 255, 0.1);
 border-radius: 5px;
 color: #000;
  /* color:#FFD700 !important */
}

.dropdown-menu {
  background-color: var(--light-beige);
  border: none;
  border-radius: 5px;
}

.dropdown-menu .dropdown-item {
  color: var(--text-color-light);
  font-size: 0.9rem;
  /* padding: 0.5rem 6rem; */
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgb(85, 77, 77);
  color: #fff;
  border-radius: 2px;

}
.dropdown-menu .dropdown-item.active{
 background-color: var(--primary-color);
 color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
    text-align: center;
  }

  .navbar-brand {
    font-size: 1rem;
  }
}


/* banner */

.banner {
  position: relative;

}

.banner .swiper-slide {
  height: 85vh;
}

.banner .swiper img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}


.banner .swiper-button-next,
.banner .swiper-button-prev {
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 50%;
  background-image: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
  content: "";
}

.banner .swiper-button-next i,
.banner .swiper-button-prev i {
  font-size: 1rem;
  color: #000 !important;
}

@media screen and (max-width:900px) {

  .banner .swiper-slide {
      height: 45vh;

  }
}

@media screen and (max-width:768px) {

  .banner .swiper-slide {
      height: 35vh !important;

  }

  .banner .swiper img {
      width: 100%;
      height: 100%;
      object-fit: fill;

  }
}

@media screen and (max-width:468px) {


  .banner .swiper-button-next,
  .banner .swiper-button-prev {
  display: none;
  }

}

/* end banner  */



/* important links */
.important-link-sec{
  width: 100%;
  padding: 3rem 0rem;
  background-color: var(--bg-grey);
}

.important-link-header{
  display: flex;
  /* padding: 0.5rem 1rem; */
  background-color:var(--charcoal-gray);
  border-radius: 2px;
}
.important-link-header span{
  width: 200px;
  height: 100%;
  padding: 0;
  margin: 0;
  padding: 0.6rem 1rem;
  clip-path: polygon(0% 0%, 75% 0%, 93% 50%, 75% 100%, 0% 100%);
  background-color: var(--primary-color);
  color: #fff;
}

.important-link-header h6{
  color: #fff;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  padding: 0.5rem 0rem;

}
.import-link-boards-card{
  width: 100%;
  height: 350px;
  margin-top: 1rem;
  border: 1px solid rgba(172, 167, 167, 0.733);
  border-radius: 10px;
  background-color: var(--light-beige);
  
}
.card-header{
  width: 100%;
  height: 40px;
  padding: 0.6rem 1rem;
  background-color:var(--charcoal-gray);
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  text-align: center;
  color: #fff;
}
.card-header h4{
  font-size: 1rem;
}
.event-sec{
  padding: 0.5rem 1rem;
  gap:1rem;
  margin-top: 0.3rem;
  /* height: 250px; */
  overflow: hidden; /* Hide the rest of the notices */
  position: relative;
}
.notice-board .event-wrapper {
  position: absolute;
  /* animation: scroll-up 6s infinite */
}
.event-1{
  display: flex;
 margin-bottom: 0.6rem;
  display: flex;
  /* align-items: center; */
  /* height: 70px; */
  
}

/* @keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  33.33% {
    transform: translateY(-70px); 
  }
  66.66% {
    transform: translateY(-140px);
  }
  100% {
    transform: translateY(0); 
  }
} */
.event-1 .event-left-date{
  background-color: var(--primary-color);
  padding: 0.5rem;
  width:80px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: #fff;
  margin-right: 0.5rem;
}
.event-left-date p,.event-left-date span{
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.8rem;
}
.event-name-imp{
  font-size: 0.9rem;
  padding: 0rem 0.5rem;
  font-weight: 500;
  color: rgb(88, 85, 85);
}
.know-more-btn-sec a{
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: var(--charcoal-gray);
  color: #fff;
  margin-bottom: 1rem;
}
.know-more-btn-sec a:hover{
  border: 1px solid var(--charcoal-gray);
}
/* about */
.homepage-about {
  padding: 4rem 0;
}

.about__img {
  position: relative;

}

.about__img .esta__date {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 200px;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
  border-bottom: 5px solid var(--primary-color);
}

.about__img .esta__date h5 {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
}

.about__info {
  padding-left: 2rem;
}

.about__info h5{
  font-size: 1rem;
  font-weight:600;
  font-family: 'Poppins', sans-serif;
}

.about__info h4 {
  font-weight:600;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about__info p {
  color: var(--text-color);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.7;
}

.about__points {

  padding-right: .20rem;
}

.about__points span {
  margin-bottom: .40rem;
}

.about__points span i {
  color: var(--primary);
}

.about__info .btn {
  margin-top: 1rem;
  border-radius: 0;
  color: #fff;
  font-size: 1rem;
  padding: .60rem 1rem;
  background-color: var(--primary);
  transition: 0.3s;
}

.about__info .btn:hover {
  background-color: var(--text-color);
}

@media screen and (max-width:768px) {
  .about__info {
      padding: .90rem;
  }

  .about__points {
      flex-direction: column;
  }

  .about__points .bx span {
      margin-bottom: 1rem;
  }
}

.gallery{
  background-color: var(--background-color);
  padding-top: 3rem ;
}
.gallery h5 {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal-gray);
  font-weight: 600;
}

.gallery .img {
  width: 100%;
  height: 160px;
  position: relative;
  z-index: -1;

}

.gallery .swiper {
  padding: 4rem 0;
}

.gallery .img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  border-radius: 4px;
}

.gallery .swiper-slide-active .img {
  border: 3px solid var(--primary-color);
  border-radius: 5px;
  transform: scale(1.1);
  position: relative;
  z-index: 100;
  padding: .90rem;
}

.gallery .swiper-pagination {
  margin-top: 4rem !important;
}

.gallery .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  transition: 0.3s;
  transform: scale(1.4);

}


@media screen and (max-width:768px) {

  .gallery .swiper-slide-active .img {
      border: 0;
      transform: none;
  }

  .gallery .swiper .swiper-slide {
      height: 280px;
  }

  .gallery .img {

      height: 280px;
  }
}

/* end gallery */




/* About Us Start */
.common-banner {
  width: 100%;
  height: 45vh;
  padding: 4rem 0rem;
  background-image: url("Images/common-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;

}

.common-banner-titles {
  width: 100%;
  height: 100%;
  position: relative;
  color: #ffffff;
  /* text-align: center !important; */
  text-align: left;
}


.common-banner-footer{
  padding: 0.9rem 0rem;
  background-color: var(--charcoal-gray);
}

.common-banner-footer p{
display: flex;
align-items: center;
color: #fff;
margin: 0;
padding: 0;
font-size: 0.9rem;
}
.common-banner-footer p i{
  font-size: 0.6rem;
}

.about-us-page{
  padding: 2rem 0rem;
  background-color: var(--background-color);
  text-align: center;
}

.about-us-page h4,.sub-head-title{
  /* font-size: 1.2rem; */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--charcoal-gray);
  margin: 2rem 0rem;
  position: relative;
}
.sub-head-title::before{
  position: absolute;
  content: "";
  width: 80px;
  height: 1px;
  border: 1px solid var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);


}
.about-us-page p{
  font-size:1rem;
  /* font-family: 'Poppins', sans-serif; */

}
/* our-mission-vision */
.our-mission-vision {
  padding: 3rem;
  background-color: #FAE5C2;
  position: relative;
}

.mission {
  display: flex;
  padding: 1rem;
  justify-content: center;

  /* align-items: center; */
  /* background-color: red; */
}

.mission-visson-logo i {
  font-size: 2rem;
  margin-right: 1rem;
  color:var(--primary-color);
}

.vission-mission-text h4{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--charcoal-gray);

}
.vission-mission-text h6 {
  color: #333333;
  font-weight: 500;
}

.mission-line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background-color:var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .our-mission-vision {
      padding: 2.5rem 0rem;
  }

  .mission {
      padding: 1rem 0rem;
  }

  .mission-line::after {
      display: none;
  }
}

.about-us {
  position: relative;
  background-color:var(--background-color);
  padding-top: 3rem;
  padding-bottom: 4rem;
  text-align: center;
}
.about-us .container {
  position: relative;
  z-index: 50;
}
.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color:var(--background-color);
  z-index: 2;
}

.about-us .bx img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.about-us .item {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
.about-us .item h5 {
  color: var(--charcoal-gray);
  font-weight: 900;
  text-transform: capitalize;
}

.about-us .item ul {
  list-style-type: none;
  padding: 0;
}

.about-us .item h6 {
  margin: 0;
  padding: 0;
  color:var(--primary-color);
}

.about-us .item ul li i {
  color: var(--orange);
  display: inline-block;
}

.about-us .item ul li {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.about-us .item ul li span {
  color: #1e1c1c;
  font-weight: 700;
}

.about-us h6 {
  font-size: 0.9rem;
  line-height: 1.8;
}

.about-us .item {
  background-color:#ffffff;
  box-shadow: 0 0 10px rgba(12, 105, 184, 0.1);
  padding: 1.9rem;
  height: 100%;
}
.our-vission-list{
  color: #333;
  font-weight: 300;
}
.our-vission-list li::marker{
  color: var(--primary-color) !important;
  font-weight: 400;
  font-size: 1.2rem;
}

/* about us end */


/* gallary page start */
.gallary-sec{
  width: 100%;
  height: 100%;
  padding: 3rem 1rem;
  background-color:var(--background-color);
  text-align: center;
  display: flex;
}
.gallary-nav{
  display: flex;
  justify-content: center;
}
.gallary-nav .nav-item{ 
  margin: 0.2rem;
}

.result-item-gallary{
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  margin-top: 1rem;

}
.result-item-gallary img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallary-img-title{
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;

}
.result-item-gallary:hover .gallary-img-title{
  opacity: 1;
}
.img-title{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}
.gallary-sec .nav-link{
  color: #fff;
  background-color:var(--charcoal-gray);
}
.gallary-sec .nav-link.active{
  background-color: var(--skyblue-color);
}
.gallary-sec .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: var(--primary-color) !important;
} 
/* gallary page end */



/* B-Pharm Start */
.b-pharm-sec{
  width: 100%;
  padding: 2rem 0rem;
  background-color: var(--background-color);
}
.b-pharm-sec ul li{
  list-style: disc;
 margin: 0.4rem 0;
}
.b-pharm-sec h6{
  font-size: 1.1rem;
}
.b-pharm-sec ul li::marker{
  color: var(--primary-color) ;
  font-size: 1.1rem;
}
.b-pharm-key-fearures{
  width: 100%;
  padding: 2rem 0rem;
  background-color: var(--background-color);
}
.key-features-card{
  width: 100%;
  height: 220px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  background-color:#F8F4EF;
  text-align: center;
  padding: 1rem;
}
.key-features-card .key-logo i{
  padding: 1.2rem;
  background-color: var(--background-color);
  color: #000;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border: 1px solid var(--soft-grey);
}
.admission-table-sec{
  padding: 2.5rem 0rem;
  text-align: center;
}
.admission-table-sec h4,.b-pharm-sec h4{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin:1rem 0;
}
.admission-table {
  /* margin-top: 10px; */
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.admission-table th {
  background-color:var(--charcoal-gray);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgb(160, 158, 158);
}
.admission-table td {
  text-align: center;
  vertical-align: middle;
  font-size: 0.9rem;
  background-color: var(--light-beige);
  border: 1px solid rgb(160, 158, 158);
}
.table-wrapper {
  padding: 20px;
  /* background-color: #f8f9fa; */
  border-radius: 10px;
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
  /* background-color:#FAE5C2 !important; */
  background-color:var(--light-beige) !important;
}
.year-title{
  width: 100%;
  margin-bottom: 0rem !important;
  margin-top: 2rem;
}
/* .syllabus{
  width: 100%;
  display:flex ;
  margin-top: 2rem;
} */
.syllabus-table th,.syllabus-table td{
  font-size: 0.8rem;
  
}
.syllabus-table th{
  background-color:var(--charcoal-gray);
  color: #fff;
  font-weight: 300;
}
.semester-table{
  text-align: left;
}
.b-pharm-sec h4{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.table-wrapper p{
  font-size: 0.9rem;
}
/* faculty page  */
.faculty {
  padding: 2rem 0;
  text-align: center;
  background-color: var(--background-color);
}


.faculty .faculty__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  margin-top: 1.2rem;
}

.faculty .faculty__card img {
  width: 140px;
  height: 140px;
  background-color: #e0dedee7;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  object-fit: cover;
}

.faculty .name {
  color: var(--charcoal-gray);
  margin-top: .8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;

}

.faculty .info label {
  color: var(--charcoal-gray);
  font-size: .90rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.faculty .info span i {
  color:var(--primary-color);
}

.faculty .info p {
  color: var(--text-dark);
  font-size: .80rem;
}



/* contact page */
.contact-details {
  padding: 3rem 0;
  padding-bottom: 2.5rem;
  background-color: #f8f8f8;
}

.contact-details h4{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--charcoal-gray);
}

.contact-details p {
  font-weight: 400;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.contact-details ul {
  list-style-type: none;
  padding: 0;
  margin-top: 2rem;
}

.contact-details ul li {
  display: flex;
  align-items: start;
  margin-bottom: 1.4rem;
}

.contact-details ul li .icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(12, 105, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.contact-details ul li .icon i {
  color: #ab3757;
}

.contact-details ul li .info {
  padding-left: 1.4rem;
}

.contact-details ul li .info h6 {
  color:var(--charcoal-gray);
  font-size: 1rem;
}

.contact-details ul li a {
  width: 35px;
  height: 35px;
  background-color: var(--charcoal-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  margin-right: 0.4rem;
  transition: all 0.5s;
  box-shadow: 0 0 10px rgba(12, 105, 184, 0.1);
}

.contact-details ul li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.contact-details .form h5 {
  /* color: #1e1c1c;
  font-weight: 600; */
  margin-bottom: 1rem;
}

.contact-details .form .form-control {
  background-color: transparent;
  font-size: 0.9rem;
  box-shadow: none !important;
  color: #1e1c1c;
  font-weight: 400;
  border-radius: 0;
  padding: 0.8rem 1rem;
}

.contact-details .form .form-select {
  background-color: transparent;
  font-size: 0.9rem;
  box-shadow: none !important;
  color: #1e1c1c;
  font-weight: 400;
  border-radius: 0;
  padding: 0.8rem 1rem;
}

.contact-details .form .form-control::placeholder {
  font-size: 0.9rem;
}

.contact-details .form .btn {
  background-color: var(--charcoal-gray);
  color: #fff;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  transition: all 0.4s;
}

.contact-details .form .btn:hover {
  background-color: var(--primary-color);
}

/* Secretery Start */
.secretery-messages{
  width: 100%;
  padding: 3rem 0rem;
}
.secretery-message-head{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--charcoal-gray);
  margin: 1rem 0rem;
  position: relative;
}

.secretery-message-head::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--charcoal-gray);
  bottom: -10px;

}
.about-pages-navbar ul{
  padding-left: 0;
  margin-top: 2rem;
}
.about-pages-navbar ul li{
  width: 100%;
  list-style: none;
  /* background-color: var(--charcoal-gray); */
  background-color: #273E47;
  padding: 0.6rem 0rem;
  margin: 0.4rem 0rem;
  border-right: 6px solid var(--primary-color);
}
.about-pages-navbar ul li:hover{
  background-color: #000;
}
.about-pages-navbar ul li.active{
  background-color: black !important;
  color: white; /* Ensure the text is readable */
}

.about-pages-navbar ul li a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 1rem;
  color: #fff;
}
.messages-sec{
  padding: 0rem 1rem;
}
.secretery-message-profile-card{
    width: 100%;
    height: 250px;
    padding: 0.4rem;
    border: 1px solid rgba(128, 128, 128, 0.705);
    border-radius: 5px;
    margin: 1rem 0;
}

.secretery-message-profile-card img{
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.secretery-message-two-words{
  width: 100%;
  height: 100px;
  margin: 1rem 0rem;
  background-color: #DDDDDD;
  padding: 1rem;
}
.secretery-message-two-words h6{
  font-family: 'Poppins', sans-serif;
  font-weight: 600; 
  color: var(--charcoal-gray);
}
.secretery-message-two-words p {
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.message-parapghaps p{
  font-size: 0.9rem;
}
.secretery-proffesor-name p{
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--charcoal-gray);
}

/* Grievance */
.grievance-table-sec {
  padding: 2.5rem 0rem;
  text-align: center;
}

.grievance-table-sec h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 1rem 0;
}

.grievance-table {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.grievance-table th {
  background-color: var(--charcoal-gray);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgb(160, 158, 158);
}

.grievance-table td {
  text-align: center;
  vertical-align: middle;
  font-size: 0.9rem;
  background-color: var(--light-beige);
  border: 1px solid rgb(160, 158, 158);
}

.table-wrapper {
  padding: 20px;
  border-radius: 10px;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: var(--light-beige) !important;
}

/* footer */
footer {
  /* margin-top: 4rem; */
  /* background-color: #22253A; */
  background-color: #222931;
  padding: 4rem 0 0 0;
}

footer h5 {
  /* font-size: 1.2rem; */
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  position: relative;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
footer h4{
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  margin:1rem 0rem;
}

footer .logo {
  width: 80px;
  height: 80px;
  margin: 0;
}

footer .logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

footer .logo span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 2rem;
  height: 4px;
  background-color: var(--primary-color);
}

footer .footer__social i {
  background-color: var(--primary-color);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .90rem;
  margin: 0 .30rem;
  transition: 0.4s;
  color: #fff;
}

footer .footer__social i:hover {
  /* background-color: var(--light-green); */
  background-color: rgba(48, 19, 19, 0.712);

  color: #fff;
}

footer a {
  text-decoration: none;
}

footer p {
  line-height: 1.7;
  font-size: .80rem;
}

footer li,
footer p,
footer a {
  /* color: #fff; */
  /* font-size: .80rem; */
  color: #E3E4EB;
  font-size: 15px;
}



footer li {
  margin: .80rem 0;
}

.footer__copy {
  /* background-color: #2b304e; */
  background-color: #00000091;
  padding: 1rem 0;
}

.footer__copy h6 {
  font-size: .70rem;
  font-weight: 500;
}
 .add-icon{
  color:#fff;
 }


/* scroll top button */

.scrolltop {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.4rem;
  padding: 0.3rem;
  background-color:var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform: translateX(200px);
  z-index: 99;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(12, 105, 184, 0.1);
  /* animation: rubber 4s linear infinite; */
}

.scrolltop i {
  color: #fff;
  font-weight: 600;
}

.scrolltop.active {
  transform: translateX(0px);
}

.scrolltop:hover {
  background-color: rgba(48, 19, 19, 0.712);

  color: #fff;
}

/* social media icon  */

.fabs .action {
  position: fixed;
  left: -350px;
  bottom: 3rem;
  height: 35px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s;
}

.fabs .action i {
  transition: .3s;
}

.fabs .action.show {
  left: 2rem;
}

.fabs .action i.active {
  transform: rotate(45deg);
}

.fabs .box {
  overflow: hidden;
  position: fixed;
  bottom: 3rem;
  left: 2.1rem;
  height: 0;
  transition-delay: 0.3s;
  transition: 0.4s;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fabs .box.active {
  height: 150px;
  bottom: 7rem;
}

.fabs .box a {
  text-decoration: none;
  color: #fff

}

.fabs .box .item {
  overflow: hidden;
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.fabs .box .item:hover {
  background-color: rgba(48, 19, 19, 0.712);
  color:#fff;
}

.fabs .box .item-1 {
  transition-delay: 0.3s;

}

.fabs .box .item-1 {
  transition-delay: 0.5s;

}

.fabs .box .item-1 {
  transition-delay: 0.6s;

}


