body {
  font-size: 20px;
}

.tejomay-page .tejomay-years {
  margin-top: 50px;
}

.tejomay-page .this-title {
  margin-bottom: 50px;
}

.tejomay-page .faculty-card img {
  border: 1px solid #ddd;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tejomay-page .faculty-card img:hover {
  transform: scale(1.05);
}

.tejomay-page .faculty-card img.active {
  transform: scale(1.3);
  z-index: 10;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.alumni-section .alumni-slider img {
  height: auto;
  width: 100%;
}

.training-placement-slider .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  background: white;
  border-radius: 50%;
}

.training-placement-slider .slick-dots li button {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.training-placement-slider .slick-dots li button:before {
  font-family: slick;
  font-size: 35px;
  color: gray;
  border-radius: 50%;
}

.training-placement-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgb(233, 80, 53) 0,
    rgb(229, 19, 108) 100%
  );
  border-radius: 50%;
}

.infra-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.infra-card a {
  position: relative;
  z-index: 5;
}

.infra-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.infra-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
.infra-overlay {
  pointer-events: none;
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  color: #fff;
  z-index: 4;
}

/* Title */
.infra-overlay h3 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}

/* Number Styling */
.infra-overlay span {
  font-size: 38px;
  font-family: spartan-semibold;
  position: relative;
  color: #723bcd;
}

/* Optional Glass Effect on Hover */
.infra-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: 0.3s;
}

.infra-card:hover::after {
  opacity: 1;
}

.new-placement-collaborations-container.flex-design {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;

  & > .logo-card {
    margin: unset;
  }
}

.collage-img-shadow {
  box-shadow:
    rgba(17, 17, 26, 0.1) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px,
    rgba(17, 17, 26, 0.1) 0px 16px 48px;
}

.tnp-mr-card {
  box-sizing: border-box;
  width: 100%;
  height: 300px;
  background: rgba(217, 217, 217, 0.58);
  border: 4px solid lightcyan;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  user-select: none;
  font-weight: bolder;
  color: black;
  display: flex;
  flex-direction: column;

  .img-div {
    width: 100%;
    height: 65%;
    background: #fff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      height: auto;
      padding: 10px;
      box-shadow:
        rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    }
  }

  p {
    height: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    background: linear-gradient(to right, #5c71de -50%, #723bcd 100%);
    color: #fff;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
  }
}

.tnp-mr-card:hover {
  border: 4px solid #723bcd;
  transform: scale(1.05);
}

.tnp-mr-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}

.image-overlay-dark {
  position: relative;
}

.image-overlay-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Adjust darkness here */
  background: rgba(0, 0, 0, 0.4);

  z-index: 1;
}

.image-overlay-dark .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 2;
  color: yellow; /* White text */
}

#home-courses {
  font-size: 21px;
  font-family: spartan-medium;
}

#home-courses .table td:first-child {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1.3;
}

#new-adm-video-section.home-adm-video-section {
  background: unset;
  padding: 0;
}

/* .home-adm-open-text-div {
  display: block;
  background: #fff;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  padding: 15px 15px 3px 15px;
  margin-bottom: 15px;
  display: grid;
  place-content: center;
  border-radius: 10px;
} */

.home-adm-open-text {
  margin-top: 15px;
  line-height: 1;
  font-family: spartan-semibold;
  font-size: 35px;
  color: var();
  /* color: var(--theme-clr-one);
  text-shadow:
    -3px -3px 3px #fff,
    3px 3px 3px var(--theme-clr-three);
  text-transform: uppercase;
  text-align: center; */
}

.custom-arrow-loop {
  display: inline-block;
}

.custom-arrow-loop.to-right {
  animation: pullBackLoopRight 0.8s ease-in-out infinite;
}

.custom-arrow-loop.to-left {
  animation: pullBackLoopLeft 0.8s ease-in-out infinite;
}

@keyframes pullBackLoopRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes pullBackLoopLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  #new-adm-video-section.home-adm-video-section {
    margin-top: 20px;
  }

  .web-text-paras p {
    text-align: start;
  }

  .home-adm-open-text {
    font-size: 25px;
  }
}
