/* ==========================================================================
   4. RECRUITER LOGOS & PLACEMENT CARDS BLOCK
   ========================================================================== */

/* Recruiter Logos Marquee */
.recruiter-logos-section {
  padding-top: 80px;
  background-color: #ffffff;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
}

.marquee-row {
  width: 100%;
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-ltr {
  margin-bottom: 24px;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}

.marquee-ltr .marquee-content {
  animation: scroll-ltr 25s linear infinite;
}

.marquee-rtl .marquee-content {
  animation: scroll-rtl 25s linear infinite;
}

@keyframes scroll-ltr {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes scroll-rtl {
  0% { transform: translate3d(-100%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.brand-item {
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.brand-item img {
  height: 70px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-item img:hover {
  transform: scale(1.08);
}

/* Placement Cards */
.placement-cards-section {
  background-color: #FFC800 !important;
  padding-top: 40px !important;
  padding-bottom: 80px !important;
}

.card-row-offset {
  margin-top: -150px;
  position: relative;
  z-index: 15;
}

.placement-card {
  border: none;
  background-color: #fff;
}

.placement-card-top {
  height: 200px;
  background-color: #1044e3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 0;
}

.placement-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.watermark-cap {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.15);
}

.placement-card-bottom {
  min-height: 180px;
  border-top: none;
}

.placement-package {
  font-family: var(--font-figtree);
  font-size: 28px;
  font-weight: 800;
  color: #0F0445;
  padding-bottom: 5px;
}

.placement-student {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.company-name {
  font-size: 13.5px;
  font-weight: 700;
}

img.placement-company-logo {
  height: 50px;
}

.btn-placement-this {
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  background: #0F0445;
  border: 1px solid #0000001A;
  font-size: 12px;
}



@media (min-width: 768px) and (max-width: 991.98px) {
  .recruiter-logos-section {
    padding-top: 60px !important;
  }
}


@media (max-width: 767.98px) {
  .recruiter-logos-section {
    padding: 10px 0px 0px !important;
  }
	.brand-item {
		padding:8px 20px !important;
	}
	.brand-item img{
		height:50px !important;
		
	}
	.text-18{
		font-size:16px !important;
	}
}