/* Modern redesign for the remaining homepage sections, scoped to .index-page (index.html only):
   Recruiters marquee, Campus/Events video frames, Infrastructure cards, Activities cards */

/* ---------- Our Recruiters ---------- */
.index-page .logos {
  padding: 10px 0 20px;
}
.index-page .logo_track {
  display: flex;
  width: max-content;
  animation: indexLogoScroll 32s linear infinite;
}
.index-page .logos:hover .logo_track {
  animation-play-state: paused;
}
.index-page .logo_items {
  display: flex;
  align-items: center;
  animation: none;
}
.index-page .logo_items img {
  height: 64px !important;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  margin: 0 14px;
  padding: 14px 20px;
  background-color: #fff;
  border: 1px solid rgba(20, 30, 60, 0.08) !important;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(20, 30, 60, 0.06);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.index-page .logo_items img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(20, 30, 60, 0.12);
}
@keyframes indexLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Our Campus / Our Events video frames ---------- */
.index-page .admisssion-area video,
.index-page .events-area video {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(20, 30, 60, 0.16);
  margin-top: 10px;
}

/* ---------- Our Infrastructure ---------- */
.index-page .single-health-care-card.style1,
.index-page .single-health-care-card.style2 {
  position: relative;
  padding-top: 0;
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 30, 60, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.index-page .single-health-care-card.style1:hover,
.index-page .single-health-care-card.style2:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(20, 30, 60, 0.16);
}
.index-page .health-care-area .row.justify-content-center {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.index-page .single-health-care-card.style1 .img,
.index-page .single-health-care-card.style2 .img {
  position: relative;
  overflow: hidden;
}
.index-page .single-health-care-card.style1 .img img,
.index-page .single-health-care-card.style2 .img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.index-page .single-health-care-card.style1:hover .img img,
.index-page .single-health-care-card.style2:hover .img img {
  transform: scale(1.06);
}
.index-page .single-health-care-card.style1 .health-care-content,
.index-page .single-health-care-card.style2 .health-care-content {
  position: static;
  max-width: none;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0;
  padding: 26px 28px 30px;
  box-shadow: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.index-page .single-health-care-card.style1 .health-care-content h3,
.index-page .single-health-care-card.style2 .health-care-content h3 {
  color: #1a2c42;
}
.index-page .single-health-care-card.style1 .health-care-content .read-more-btn,
.index-page .single-health-care-card.style2 .health-care-content .read-more-btn {
  margin-top: auto;
  padding-top: 15px;
}
.index-page .more-health-care.style2 {
  margin-top: 10px;
}

/* ---------- Our Activities ---------- */
.index-page .single-podcasts-card.style2 {
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(20, 30, 60, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.index-page .single-podcasts-card.style2:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(20, 30, 60, 0.15);
}
.index-page .single-podcasts-card.style2 .podcasts-image {
  overflow: hidden;
}
.index-page .single-podcasts-card.style2 .podcasts-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.index-page .single-podcasts-card.style2:hover .podcasts-image img {
  transform: scale(1.08);
}
.index-page .single-podcasts-card.style2 .podcasts-image .play-btn {
  background-color: rgba(44, 82, 130, 0.85);
  border-color: #fff;
  color: #fff;
}
.index-page .single-podcasts-card.style2 .podcast-content {
  height: auto;
  min-height: 90px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
}
.index-page .single-podcasts-card.style2 .podcast-content h3 {
  font-size: 16px;
  color: #1a2c42;
  margin-bottom: 0;
  line-height: 1.4;
}
