.hero-section{
  width:100%;
  padding: 0 5%;
  display: flex;
  flex-direction: row;
  gap:5%;
}
.hero-section >  .slider-container {
  width: 65% !important;
}

.hero-section >  .board {
  width: 30% !important;
  height:350px;
}

.slider-container {
  width:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider-container h3 {
  border: 2px solid black;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}

/*Latest Events*/
/* Container styles */
.scrolling-text-container {
  background-color: #eff5ff;
  border-radius: 4px;
  overflow: hidden;
}

/* Inner container styles */
.scrolling-text-inner {
  display: flex;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
}

/* Text styles */
.scrolling-text {
  display: flex;
}

.scrolling-text-item {
  padding: 0 30px;
}

/* Apply the animation to the text items */
.scrolling-text-inner > div {
  animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-text-container:hover .scrolling-text-inner > div {
  animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
      transform: translateY(-100%);
  }
  100% {
      transform: translateY(0%);
  }
}

.scrolling-text-inner::before{
  content: attr(data-title);
  background-color: var(--bg-color);
  color: white;
  font-weight: 400;
  font-size: 1rem;
  padding: 2px;
  outline: 3px solid var(--bg-color);
  z-index: 3 !important;
}

.scrolling-text div * {
  color: black;
  text-decoration: none;
}



.scrolling-text div a {
  color: black;
  font-family: var(--poppins);
}

.scrolling-text div a:hover {
  color: var(--highlight);
}

.new-link::before {
  content: "NEW!" !important;
  text-transform: uppercase;
  color: red !important;
  font-weight: bold;
  width: fit-content;
  padding-right: 5px;
  animation: blink 0.5s ease-in-out infinite;
}

[data-status="newLink"]::after{
  content: "NEW!";
  text-transform: uppercase;
  color: red;
  font-weight: bold;
  width: fit-content;
  padding-left: 5px;
  scale: 1;
  animation: blink 1.5s ease-in-out infinite;
}
.hnew-link::after {
  content: "NEW!";
  text-transform: uppercase;
  color: rgb(179, 255, 37);
  font-weight: bold;
  width: fit-content;
  padding-left: 5px;
  scale: 1;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* About section  */

.about-section {
  padding: 2% 5%;
  margin-bottom: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--secondary);
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  gap: 5%;
  padding: 5%;
  margin-top: 10px;
}

.about > * {
  width: calc(100% / 3) !important;
}
.about-video {
  width: 100%;
}
.about-video video {
  width: 100% !important;
  height: 100%;
}
.about-college {
  text-align: justify;
}

.about-college h3 {
  margin-bottom: 10px;
}

.about-college p {
  font-size: 0.9rem;
}

/* Director profile */
.dp-outer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dp-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.dp-image-box {
  height: 200px;
  width: 100%;
  background: white;
}

.dp-image-box img {
  height: 100%;
  width: 100%;
  padding: 0 15%;
  border-radius: 1px solid var(--bg-color);
  object-position: top;
  object-fit: cover;
  border: 3px solid #fff;
}

.dp-content .dp-details {
  width: 69%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 15% 20px 15%;
  padding: 10px 0;
  color: #fdfdfd;
  background-color: var(--bg-color);
}

.dp-content .dp-details .dp-name {
  font-size: 1.3rem;
  font-weight: 900;
}

.dp-content .dp-details .dp-job {
  font-size: 1rem;
  font-weight: 500;
}

.dp-content .dp-details p {
  font-size: 0.9rem;
  margin-top: 6px;
  text-align: justify;
}

.dp-content a {
  display: block;
  margin-top: 16px;
  outline: none;
  border: none;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  background: var(--dark-bg-color);
  transition: all 0.3s ease;
  text-align: center;
}

.dp-content a:hover {
  transform: scale(0.97);
}

.three-column-layout {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3%;
  margin-bottom: 15px;
}

.three-column-layout > * {
  width: calc(84% / 3);
}

/*Notice board*/
.board {
  background-color: var(--secondary);
  height: 400px;
  overflow: hidden;
}


.mainc {
  position: relative;
}

.box {
  position: relative;
  width: 100%;
  height: 100%;
}
.mainC, .box {
  height: 100%;
}
.container-vt {
  position: relative;
  overflow: hidden;
  height: 440px;
}
.main-vt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
}
.news-vt {
  padding: 5px;
  border-bottom: 1px dashed var(--highlight);
  font-size: 16px;
}

.vertical-list div {
  color: black;
  font-size: 0.8rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: justify;
  gap:5%;
  
}

.vertical-list div .dy-container {
  width: 15%;
  display: flex;
  flex-direction: column;
}

.vertical-list div .dy-container .date,
.vertical-list div .dy-container .year {
  display: block;
  text-align: center;
  white-space: nowrap;
  padding: 3px;
  margin-bottom: 2px;
  color: white;
  width: 100%;
  background-color: var(--bg-color);
}

.vertical-list div .description-container {
  width: 75%;
  justify-content: left;
}

.vertical-list div .description-container a {
  color: black;
  transition: all 0.3s ease-in-out;
  font-size: 0.9rem;
}


.vertical-list div .description-container a:hover {
  cursor: pointer;
  color: var(--highlight);
}


.board{
  max-height: 100%;
  overflow-y: auto;
  position: relative;
}
.board h2:first-child
{
  background-color: var(--bg-color);
  position: sticky;
  top:0;
  display: inline-block;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  padding: 12px 0px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: capitalize;
  z-index: 3;
}

#first-board
{
  overflow-y: hidden;
}
.w-fit {
  width: fit-content !important;
}
.board-links,
.service-links {
  list-style-type: none !important;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 20px;
}

.board-links:first-child,
.service-links:first-child {
  margin-top: 10px;
}

.board-links:last-child,
.service-links:last-child {
  margin-bottom: 10px;
}

.board-links li,
.service-links li {
  text-align: justify;
  border-bottom: 0.5px;
  border-bottom-style: outset;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.board-links li a::before {
  font-family: var(--font-awesome);
  content: "\f054";
  padding: 5px;
  padding-right: 10px;
  font-weight: 900;
  color: var(--bg-color);
}

.board-links li a[data-status="new"]::after,
.service-links li a[data-status="new"]::after {
  margin-left: 5px;
}

.board-links li a,
.service-links li a {
  color: black;
  font-size: 0.9rem;

  transition: all 0.3s ease-in-out;
}

.board-links li a:hover,
.service-links li a:hover {
  color: var(--bg-color);
}

.service-links li a::before {
  font-family: var(--font-awesome);
  content: "\f35d";
  padding: 5px;
  padding-right: 10px;
  font-weight: 900;
  color: var(--bg-color);
}

/*no of student,branch,sujects,teacher*/

.details-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
  margin-bottom: 15px;
}

.details-container > * {
  width: calc(84% / 4);
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 2% 1%;
  border-radius: 6px;
  background-color: var(--bg-color);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: var(--poppins);
  gap: 5%;
}

/*Courses section*/
.courses-section {
  padding: 0 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--secondary);
}

.courses-section .heading h2 {
  margin: 10px 0;
  font-size: 2rem;
}

.courses-offered {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10%;
  margin-bottom: 15px;
}

.courses-offered > * {
  width: calc(80% / 3);
}

.course {
  display: flex;
  font-size: 1.5rem;
  flex-direction: column;
  margin-bottom: 20px;
  border-radius: 10px;
  
  box-shadow: rgba(9, 30, 66, 0);
  position: relative;
  border: 1px solid whitesmoke;
  transition: all 0.3s ease-in-out;
  overflow: hidden;

}

.course:hover img{
  opacity:0.7;
  transform:scale(1.05);
}
.course img {
  aspect-ratio: 16/9;
  transition: all 0.3s ease-in-out;

}

.course .name-duration {
  display: flex;
  padding: 0 2%;
  width: 100%;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  font-size: 1rem;
}

.course .name-duration .name {
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 900;
  font-size: 1.1rem;
}

.course .name-duration .duration {
  text-wrap: nowrap;
  font-weight: 900;
  font-size: 0.8 rem;
}

.course .name-duration .duration::before {
  font-family: var(--font-awesome);
  content: "\f017";
  margin-right: 5px;
}

.course .name-duration .duration::after {
  content: " Years";
  text-transform: capitalize;
  font-size: 0.9rem;
}

.course .description {
  margin: 10px 0;
  padding: 0 2%;
  font-size: 0.9rem;
  text-align: justify;
  margin-bottom: 15%;
}

.course .read-more-btn a{
  text-decoration-color: none;
  background-color: var(--bg-color);
  color: white !important;
  width: 100%;
  height: 40px;
  font-size: 1rem;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  transition: all 0.3s ease-in;
}

.course .read-more-btn a:hover{
  background-color: var(--dark-bg-hover-color);
}
.read-more-btn a{
  text-decoration-color: none;
  background-color: var(--bg-color);
  color: white !important;
  width: 100%;
  height: 40px;
  font-size: 1rem;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  bottom: 0;
  transition: all 0.3s ease-in;
}

.read-more-btn a:hover {
  background-color: var(--dark-bg-hover-color);
}
/* Facilities section */
.facilities-section {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.facilities-section div h3 {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  margin: 0.6em 0;
  font-weight: 600;
  color: #070024;
}
.facilities-section .services-container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3%;
  margin-bottom: 15px;
}

.facilities-section .services-container > * {
  width: calc(84% / 3);
}

.facilities-section .services-container .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  box-shadow: rgba(9, 30, 66, 0);
  transition: all 0.3s ease-in-out;
  gap: 5%;
  border: 1px solid var(--secondary);
  padding: 2%;
  margin-bottom: 10px;
  transition: all 0.3s ease-in;
}
.facilities-section .services-container .service-card > * {
  margin-bottom: 2%;
}
.facilities-section .services-container .service-card:hover {
  border: 1px solid var(--dark-bg-hover-color);
}
.facilities-section .services-container .service-card a {
  text-decoration-line: none;
  width: fit-content;
  height: fit-content;
  padding: 2%;
  background-color: var(--bg-color);
  color: white;

  font-size: 0.8rem;
}
.facilities-section .services-container .service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
  font-size: 0.8rem;
}
/*National portals slider*/
.national-portals {
  padding: 0 5%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}
/* Footer layout */
.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
  padding: 2% 2% 2% 2%;
  background-color: var(--bg-color);
}

.footer > * {
  width: calc(90% / 4);
}

.footer-div h4 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-div ul {
  list-style-type: none;
}

.footer-div ul li a::before {
  font-family: var(--font-awesome);
  content: "\f138";
  padding: 5px;
  padding-right: 10px;
  font-weight: 900;
  color: var(--dark-bg-color);
}

.footer-div ul li a {
  font-weight: normal;
  color: var(--secondary);
  transition: all 0.3s ease-in;
}

.footer-div ul li a:hover {
  margin-left: 5px;
  color: var(--dark-bg-hover-color);
}
.copyright{
  width:100%;
}

.contact {
  color: var(--secondary);
  font-size: 0.9rem;
}

.contact a {
  color: var(--dark-bg-color);
  border-bottom: 1px solid var(--dark-bg-color);
}

/* Table styles */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

.c-table {
  background-color: var(--background-color);

  font-size: 0.9rem;
  line-height: 1.25;
  margin-bottom: 24px;
  min-width: 100%;
  border: 2px solid var(--dark-bg-color);
  border-radius: 10px;
}

.c-table-cell {
  padding: 12px 6px 12px 12px;
  word-wrap:break-word;
  text-transform: capitalize !important;
}
.c-table-cell a {
  color: var(--dark-bg-color);
  transition: all 0.5s;
  white-space: nowrap;
}
.c-table-cell a:hover {
  color: var(--dark-bg-hover-color);
}
.c-table-header tr {
  color: #fff;
}

.c-table-header th {
  
  background-color: var(--dark-bg-color);
  padding: 18px 6px 18px 12px;
}

.c-table-header th:first-child {
  border-top-left-radius: 4px;
}

.c-table-header th:last-child {
  border-top-right-radius: 4px;
}

.c-table-body tr {
  border-bottom: 1px solid var(--dark-bg-color);
}

.c-table-body tr:last-child {
  border-bottom: none;
}

.c-table-body tr:hover {
  background-color: rgba(113, 110, 182, 0.15);
  color: #272b37;
}

.c-table-label {
  display: none;
}

.t-f-small .c-table-cell {
  width: auto ;
  text-transform: capitalize;
}
.note {
  border: none;
  border-left: 5px solid var(--dark-bg-color);
  font-weight: 600;
  background-color: var(--secondary);
  color: var(--dark-bg-hover-color);
  padding: 10px 15px;
  height: auto;
}

.break-line {
  padding: 10px;
  text-decoration-line: underline;
  text-decoration-color: black;
}

.pdf::before {
  font-family: var(--font-awesome);
  content: "\f1c1" !important;
  padding: 5px;
  margin-left: 2px;
  font-weight: 900;
  color: rgb(255, 12, 223) !important;
}
.form::before {
  font-family: var(--font-awesome);
  content: "\f31c" !important;
  padding: 5px;
  margin-left: 2px;
  font-weight: 900;
}

.payment::before {
  font-family: var(--font-awesome);
  content: "\f09d" !important;
  padding: 5px;
  margin-left: 2px;
  font-weight: 900;
}
.image::before {
  font-family: var(--font-awesome);
  content: "\f1c5" !important;
  padding: 5px;
  margin-left: 2px;
  font-weight: 900;
  color: rgb(19, 21, 133) !important;
}
.video::before {
  font-family: var(--font-awesome);
  content: "\f03d" !important;
  padding: 5px;
  margin-left: 2px;
  font-weight: 900;
}
.view::before {
  font-family: var(--font-awesome);
  content: "\f2bb" !important;
  padding: 5px;
  margin-left: 2px;
  font-weight: 900;
}

.home::before {
  font-family: var(--font-awesome);
  content: "\f015" !important;
  padding: 5px;
  margin-left: 2px;
  font-weight: 900;
}

.down-btn::before {
  font-family: var(--font-awesome);
  content: "\f019";
  padding-right: 10px;
  font-weight: 900;
  color: white !important;
}
.down-btn {
  display: inline-block;
  position: inherit;
  outline: none;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 2px;
  height: 36px;
  line-height: 34px;
  font-size: 14px;
  color: #ffffff !important;
  background-color: #007c89;
  transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
  padding: 0 12px;
}
.down-btn:hover {
  color: #ffffff;
  background-color: #006570;
}

/*Team section*/
.team {
  width: auto;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.team .member {
  width: 350px;
  margin: 10px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--secondary);
  padding: 15px;
}
.team .member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
.team .member h3 {
  color: #444;
  margin-bottom: 10px;
}
.team .member p {
  text-align: center !important;
  font-size: 0.8rem !important;
  color: var(--dark-bg-color) !important;
}
.team .member p {
  margin: 15px 0;
  font-weight: 400;
  color: #999;
  font-size: 15px;
  text-align: justify;
}
.team .member .btn-member {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faculty-member {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
/* Faculty member page */
.faculty-member .profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  border: solid 5px #0066dd;
  user-select: none;
  pointer-events: none;
}
.faculty-member .profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.faculty-member .profile-name {
  padding: 10px 0;
  letter-spacing: 1px;
}

.faculty-member .profile-name h1 {
  font-size: 1.3rem;
  margin: 0;
}
.faculty-member .profile-name h1 strong {
  color: #0066dd !important;
}
.faculty-member .profile-name h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
}
.faculty-member .contact-details,
.faculty-member .biography,
.faculty-member .experience {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.faculty-member .title h3 {
  text-transform: uppercase;
  text-align: center;
  width: fit-content;
  padding: 5px;
  margin: 10px 0;
  border-top: 1px solid var(--bg-color);
  border-bottom: 1px solid var(--bg-color);
}
.faculty-member .contact-details .ofice-details li {
  line-height: 40px;
}

.faculty-member .biography ul li,
.faculty-member .experience ul li {
  line-height: 30px;
}
.ribbon {
  position: relative;
  margin-bottom: 30px;
  background: url(https://html5book.ru/wp-content/uploads/2015/10/snow-road.jpg);
  background-size: cover;
  
  color: white;
}
.ribbon1 {
  position: absolute;
  top: -6.1px;
  right: 10px;
}
.ribbon1 span {
  position: relative;
  display: block;
  text-align: center;
  background: var(--dark-bg-color);
  font-size: 0.7rem !important;
  line-height: 1;
  padding: 12px 5px 10px;
  border-top-right-radius: 8px;
  width: auto;
  text-transform: capitalize;
}
.active::before {
  content: "Currently ";
  color: var(--dark-bg-color);
  font-weight: 600;
  text-decoration-line: underline;
}
.ul-text-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
  text-align: left;
  font-size: 1rem;
  line-height: 30px;
}

.copyright {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  padding-top: 15px;
}
.copyright a {
  color: #021d3b;
  border-bottom: 1px solid white;
}
/*links on acedemics page*/
.container_enlaces {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  gap: 1%;
}

.enlaces {
  width: 49%;
  padding: 10px;
  text-decoration: none;
  transition-duration: 0.3s;
  color: black;
  border: 1px solid var(--dark-bg-color);
  margin-bottom: 1%;
}

.container_enlaces-full {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  gap: 1%;
}
.container_enlaces-full > * {
  min-width: 100%;
}
.enlaces::before,.link::after {
  font-family: var(--font-awesome);
  content: "\f14c";
  padding: 5px;
  font-weight: 900;
  color: var(--dark-bg-color);
}

.pdf::before {
  font-family: var(--font-awesome);
  content: "\f1c1";
  padding: 5px;
  font-weight: 900;
  color: rgb(255, 12, 223);
}
.enlaces:hover {
  background-color: var(--secondary);
  transition-duration: 0.3s;
  color: var(--highlight);
}

.text-color-b {
  color: var(--dark-bg-color);
  font-weight: 600;
}
.w-100 {
  min-width: 100% !important;
}
.download-icon::before {
  font-family: var(--font-awesome);
  content: "\f019";
  padding-right: 10px;
  font-weight: 900;
  color: white;
}
.pdf-icon::before {
  font-family: var(--font-awesome);
  content: "\f1c1";
  padding-right: 10px;
  font-weight: 900;
  color: white;
}
.btn {
  display: inline-block;
  width: fit-content;
  outline: none;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 2px;
  line-height: 34px;
  font-size: 14px;
  color: #ffffff !important;
  background-color: #007c89;
  transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
  padding: 0 12px;

  word-wrap: unset !important;
}

.btn::after,
.btn::before {
  color: white !important;
}
.btn:hover {
  color: #ffffff;
  background-color: #006570;
}

@media screen and (max-width: 450px) {
  .enlaces {
    min-width: 100%;
    margin-bottom: 2%;
  }
}


@media screen and (max-width: 1250px) {
  .footer > * {
    width: calc(90% / 4);
    margin-bottom: 20px;
  }
  .copyright
  {
    width: 100%;
  }
}

@media screen and (max-width: 900px) and (min-width: 451px) {
  .scrolling-text-inner::before{
    font-family: var(--font-awesome);
    content: "\f0a1";
    padding-right:5px 3px;
    text-align: center;
    font-weight: 900;
    color: white;
  }
  .scrolling-text div *
  {
    font-size: 0.8rem !important;
  }
  .three-column-layout {
    gap: 20px;
  }

  .three-column-layout > * {
    width: 90%;
  }

  .details-container {
    gap: 20px;
  }

  .details-container > * {
    width: 90%;
  }

  .details {
    padding: 5% 2%;
  }
  .dp-image-box {
    height: 200px;
    width: 200px;
    background: white;
  }

  .courses-offered {
    gap: 2%;
  }

  .courses-offered > * {
    width: calc(98% / 2);
  }

  .footer > * {
    width: calc(90% / 2);
  }
  .copyright
  {
    width: 100%;
  }

  .about-college h3 {
    text-align: center;
  }

  .about-section {
    flex-direction: column;
    gap: 5%;
    padding: 0%;
  }

  .about {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .about > * {
    width: 100% !important;
    margin-bottom: 5%;
  }

  .dp-content {
    display: flex;
    flex-direction: column;
  }
  .about-video {
    display: block;
    margin-bottom: 40px;
    position: static;
  }

  .dp-content {
    box-shadow: none;
  }

  .dp-content > * {
    width: 100%;
    margin-bottom: 5%;
  }

  .dp-image-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .dp-image-box img {
    width: 100%;
    display: block;
    height: 300px;
    object-fit: cover;
    object-position: top;
    border: 3px solid #fff;
  }

  .dp-content .dp-details {
    width: auto;
    margin: 0;
  }

  .dp-content .dp-details .dp-name {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .dp-content .dp-details .dp-job {
    font-size: 1rem;
    font-weight: 500;
  }

  .dp-content .dp-details p {
    font-size: 0.9rem;
    margin-top: 6px;
    text-align: justify;
  }
  .facilities-section .services-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5%;
  }
  .facilities-section .services-container > * {
    width: calc(85% / 2);
  }
  .facilities-section .services-container .service-card {
    padding: 2%;
  }
}

@media screen and (max-width: 450px) {
  .scrolling-text-inner::before{
    font-family: var(--font-awesome);
    content: "\f0a1";
    padding-right:5px 3px;
    text-align: center;
    font-weight: 900;
    color: white;
  }
  .scrolling-text div *
  {
    font-size: 0.7rem !important;
  }
  .hero-section{
    flex-direction: column;
  }
  .hero-section >  .slider-container {
    width: 100% !important;
  }
  
  .hero-section >  .board {
    width: 100% !important;
    height:450px;
  }
  .about > * {
    width: 100% !important;
  }
  .about-college h3 {
    text-align: center;
  }

  .about-section {
    flex-direction: column;
  }

  .about {
    flex-direction: column;

    width: 100%;
    height: 100%;
  }

  .about > * {
    width: 100%;
    height: 100%;
    margin-bottom: 5%;
  }

  .dp-content {
    display: flex;
    flex-direction: column;
    gap: 5%;
  }

  .dp-content {
    box-shadow: none;
  }

  .dp-content > * {
    width: 100%;
  }

  .dp-image-box {
    margin-top: 10px;
    height: 200px;
    width: 200px;
    background: white;
    display: block;
  }

  .dp-image-box img {
    object-fit: cover;
    object-position: top;
    border: 3px solid #fff;
  }

  .dp-content .dp-details {
    width: 100%;
    margin: 0;
  }

  .dp-content .dp-details .dp-name {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .dp-content .dp-details .dp-job {
    font-size: 1rem;
    font-weight: 500;
  }

  .dp-content .dp-details p {
    font-size: 0.9rem;
    margin-top: 6px;
    text-align: justify;
  }

  .three-column-layout {
    gap: 20px;
  }

  .three-column-layout > * {
    width: 90%;
  }

  .details-container {
    gap: 20px;
  }

  .details-container > * {
    width: 90%;
  }

  .details {
    padding: 5% 2%;
  }

  .courses-offered {
    gap: 20px;
  }

  .courses-offered > * {
    width: 100%;
  }

  .course {
    position: static;
    border-bottom: none;
  }

  .course .description {
    margin-bottom: 5%;
  }

  .course .read-more-btn a {
    text-decoration-color: none;
    background-color: var(--bg-color);
    color: white;
    width: 100%;
    height: 40px;
    font-size: 1rem;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    position: static;
  }
  .facilities-section .services-container > * {
    width: 100%;
    padding: 2%;
    margin: 2%;
  }
  .facilities-section .services-container .service-card a {
    width: fit-content;
    padding: 2%;
    font-size: 0.8rem;
  }
  .footer {
    padding: 4% 0;
  }

  .footer > * {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-div {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 2%;
  }

  .footer-div h4 {
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .copyright
  {
    width: 100%;
  }
  .team .member {
    width: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 5px;
  }
}

/* Mobile table styles */

@media only screen and (max-width: 767px) {
  table {
    display: block;
    min-width:100%;
  }

  td:first-child {
    padding-top: 24px;
  }

  td:last-child {
    padding-bottom: 24px;
  }

  .c-table {
    border: 1px solid rgba(113, 110, 182, 0.15);
    font-size: 15px;
    line-break: 1.2;
    width: 100%;
    overflow-x: auto;
  }
  .c-table-cell {
    padding: 12px 24px;
    position: relative;
    width: 100%;
    word-wrap: break-word;
    text-transform: capitalize;
  }

  .c-table-label {
    color: #272b37;
    display: block;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
    text-transform: capitalize;
  }

  .c-table-body tr:hover {
    background-color: transparent;
  }

  .c-table-body tr:nth-child(odd) {
    background-color: rgba(113, 110, 182, 0.04);
  }
}

/*Utilities*/
.text-center {
  text-align: center !important;
  text-transform: capitalize;
}
.mb-5 {
  gap: 5%;
}

.text-color-highlight {
  color: rgb(179, 17, 44) !important;
}
/*Accordion */

details div {
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 1.5em;
}

details div > * + * {
  margin-top: 1.5em;
}

details + details {
  margin-top: 0.5rem;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary {
  border: 2px solid #000;
  padding: 0.75em 1em;
  cursor: pointer;
  position: relative;
  padding-left: calc(1.75rem + 0.75rem + 0.75rem);
  transition: all 0.3s;
}

summary:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.75rem;
  content: "↓";
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--bg-color);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

details[open] summary {
  background-color: #eee;
}

details[open] summary:before {
  content: "↑";
}

summary:hover {
  background-color: #eee;
}

