/* ============================================================
 SECTION 1 — HERO BANNER
============================================================ */
.campus-hero {
  background: linear-gradient(
    135deg,
    var(--burgundy) 0%,
    var(--burgundy-deep) 55%,
    #170d10 100%
  );
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

/* animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob.b1 {
  width: 450px;
  height: 450px;
  background: rgba(160, 50, 50, 0.18);
  top: -120px;
  left: -100px;
  animation-delay: 0s;
}
.hero-blob.b2 {
  width: 300px;
  height: 300px;
  background: rgba(160, 50, 50, 0.1);
  bottom: -80px;
  right: 10%;
  animation-delay: -3s;
}
.hero-blob.b3 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  top: 40%;
  right: 25%;
  animation-delay: -5s;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* breadcrumb */
.campus-breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0 0 32px;
  position: relative;
  z-index: 2;
}
.campus-breadcrumb li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: color 0.2s;
}
.campus-breadcrumb li a:hover {
  color: var(--red);
}
.campus-breadcrumb li i {
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
}
.campus-breadcrumb li.active {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

/* hero layout */
.hero-inner-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* hero content */
.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160, 50, 50, 0.25);
  border: 1px solid rgba(160, 50, 50, 0.5);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 18px;
}
.hero-content h1 .highlight {
  color: var(--red);
}
.hero-content > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.hero-chips span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 25px;
  transition: var(--transition);
}
.hero-chips span:hover {
  background: rgba(160, 50, 50, 0.25);
  border-color: rgba(160, 50, 50, 0.5);
}
.hero-chips span i {
  color: #5dca7e;
  font-size: 11px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stats-float-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stats-float-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}
.stats-float-card.right {
  align-self: flex-end;
}
.sfc-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.sfc-info strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  font-family: "Playfair Display", serif;
}
.sfc-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.img-overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: #fff;
}
.img-overlay-badge i {
  font-size: 22px;
  color: var(--red);
}
.img-overlay-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}
.img-overlay-badge span {
  font-size: 12px;
  opacity: 0.75;
}

/* ============================================================
 MARQUEE TICKER
============================================================ */
.campus-ticker {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.campus-ticker .ticker-track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}
.campus-ticker .tick-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 28px;
}
.campus-ticker .tick-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  margin-left: 28px;
  vertical-align: middle;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
 SECTION 3 — CAMPUS SERVICES
============================================================ */
.campus-services-section {
  padding: 90px 0;
  /* background: var(--cream); */
  position: relative;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-4.png") no-repeat center center;
  background-size: cover;
}

.campus-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cs-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  /* transition: var(--transition); */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.85);
  text-align: center; /* center text */
  position: relative;
  overflow: hidden;
}
.cs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--burgundy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cs-card:hover::before {
  transform: scaleX(1);
}
.cs-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(186, 35, 37, 0.2) 0%,
    rgba(186, 35, 37, 0.18) 50%,
    rgba(186, 35, 37, 0.25) 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
}

.cs-card:hover::after {
  opacity: 1;
}
.cs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(186, 35, 37, 0.25); */
  background: linear-gradient(
    135deg,
    rgba(70, 43, 52, 0.55),
    rgba(160, 50, 50, 0.55)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 8px 15px rgba(9, 9, 9, 0.95);
}

.cs-card:hover::after {
  opacity: 1;
}
@keyframes lightSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 120%;
  }
}

.cs-card:hover::after {
  animation: lightSweep 0.8s ease forwards;
}
.cs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #170d10;
}
.cs-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
  margin: 0 auto 20px; /* centers the icon block */
}
.cs-card:hover .cs-icon {
  transform: rotate(-5deg) scale(1.08);
}
.cs-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--burgundy);
  margin: 0 0 10px;
  line-height: 1.35;
}
.cs-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
  margin: 0;
}
.cs-number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  transition: color 0.3s;
}
.cs-card:hover .cs-number {
  color: rgba(160, 50, 50, 0.1);
}

/* CTA card */
.cs-card.cta-card {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep));
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.cs-card.cta-card h4 {
  color: #fff;
}
.cs-card.cta-card p {
  color: rgba(255, 255, 255, 0.65);
}
.cs-card.cta-card .cs-number {
  color: rgba(255, 255, 255, 0.06);
}
.cta-arrow {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 14px;
}
.cs-card.cta-card::after {
  display: none;
}

/* ============================================================
 SECTION 4 — PLACEMENT PROCESS TIMELINE
============================================================ */
.placement-process-section {
  padding: 90px 0;
  /* background: #fff; */

  position: relative;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-26.png")
    no-repeat center center;
  background-size: cover;
}

.recruitment-technology .sec-title {
  text-align: center;
}
.process-timeline-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* center vertical line */
.process-timeline-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--border));
  transform: translateX(-50%);
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 30px;
  position: relative;
}

/* left-side steps */
.timeline-step {
  padding-right: calc(50% + 40px);
}
/* right-side steps */
.timeline-step.right {
  padding-right: 0;
  padding-left: calc(50% + 40px);
  flex-direction: row-reverse;
  text-align: left;
}

.ts-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(160, 50, 50, 0.25);
  transition: var(--transition);
}
.timeline-step:hover .ts-number {
  transform: translateX(-50%) scale(1.12);
  background: var(--burgundy);
}

.ts-body {
  background: var(--cream);
  border: 1px solid var(--border);
  /* border-radius: var(--radius-md); */
  padding: 22px 24px;
  flex: 1;
  transition: var(--transition);
  border-radius: 40px;
}
.ts-body:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
  background: #fff;
}
.ts-icon {
  width: 36px;
  height: 36px;
  background: rgba(160, 50, 50, 0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 15px;
  margin-bottom: 10px;
}
.ts-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--burgundy);
  margin: 0 0 6px;
}
.ts-body p {
  font-size: 13px;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
 SECTION 5 — SKILL VERIFICATION
============================================================ */
.skill-verify-section {
  padding: 90px 0;
  background: var(--cream);
}

.skill-verify-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.pillar-row {
  margin-top: auto !important;
}
.hiring-philosophy-section .sec-title {
  margin-bottom: 30px;
}

.sv-subtext {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160, 50, 50, 0.98);
  border-left: 3px solid var(--red);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 55px;
  margin-top: 10px;
}

.verify-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.vs-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.vs-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}
.vs-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.vs-text span {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}

/* visual side */
.sv-visual {
  position: relative;
}
.sv-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.sv-stat-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: pillFloat 4s ease-in-out infinite;
}
.sv-stat-pill.top {
  top: 24px;
  left: -24px;
  animation-delay: 0s;
}
.sv-stat-pill.bottom {
  bottom: 32px;
  right: -20px;
  animation-delay: -2s;
}
@keyframes pillFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.sv-stat-pill i {
  font-size: 24px;
  color: var(--red);
}
.sv-stat-pill div strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--burgundy);
}
.sv-stat-pill div span {
  font-size: 12px;
  color: var(--grey);
}

/* ============================================================
 SECTION 6 — INTERNSHIP & FRESHER
============================================================ */
.internship-section {
  /* padding: 90px 0;
  background: cream;
  position: relative;
  overflow: hidden; */
  position: relative;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-14.png") no-repeat center center;
  background-size: cover;
}
/* .internship-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23a03232' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
} */

.internship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

.internship-card {
  /* border-radius: var(--radius-md); */
  overflow: hidden;
  /* transition: var(--transition); */
  position: relative;
  border-radius: 30px;
  border: 1px solid rgb(62, 15, 15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.98);
}
.internship-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ic-image {
  position: relative;
  height: 300px;
}
.ic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .internship-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ic-image {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .internship-grid {
    grid-template-columns: 1fr;
  }

  .ic-image {
    height: 240px;
  }
}
/* .ic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(70, 43, 52, 0.85) 100%
  );
  transition: opacity 0.3s;
} */

.ic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(70, 43, 52, 0.85) 100%
  );
  opacity: 0; /* hide initially */
  transition: opacity 0.4s ease;
}
/* .internship-card:hover .ic-overlay {
  opacity: 0.95;
} */

.internship-card:hover .ic-overlay {
  opacity: 1;
}

.ic-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* push to top */
  z-index: 2;
}
.ic-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}
.ic-content h4 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin: 10px 0 0;
  background: #ba2325;
  padding: 10px;
  border-radius: 20px;
}
.ic-description {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 20px;
  transition: bottom 0.4s ease;
  z-index: 3;
  color: #170d10;
}
.internship-card:hover .ic-description {
  bottom: 0;
}
.ic-description p {
  margin: 0;
  font-size: 13px;
  /* color: var(--burgundy); */
  color: black !important;
}
.ic-image img {
  transition: transform 0.5s ease;
}

.internship-card:hover img {
  transform: scale(1.08);
}
.ic-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.internship-card:hover .ic-content p {
  opacity: 1;
  transform: translateY(0);
}

.internship-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
 SECTION 7 — DASHBOARD FEATURES
============================================================ */
.dashboard-section {
  padding: 90px 0;
  background: #fff;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Mockup */

.dashboard-mockup {
  position: relative;
}

.dashboard-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
  margin-top: 95px;
}
.dashboard-mockup:hover img {
  transform: translateY(-10px);
}
.db-mockup-frame {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.db-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #2a2a2a;
  border-bottom: 1px solid #3a3a3a;
}
.db-dots {
  display: flex;
  gap: 6px;
}
.db-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
}
.db-dots span:nth-child(1) {
  background: #ff5f57;
}
.db-dots span:nth-child(2) {
  background: #febc2e;
}
.db-dots span:nth-child(3) {
  background: #28c840;
}
.db-title {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  margin-left: 8px;
}
.db-body {
  display: flex;
  min-height: 300px;
}
.db-sidebar {
  width: 50px;
  background: #252525;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
}
.db-nav-item {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.db-nav-item:hover {
  background: #333;
  color: #aaa;
}
.db-nav-item.active {
  background: var(--red);
  color: #fff;
}
.db-main {
  flex: 1;
  padding: 20px;
}
.db-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.db-stat {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.db-stat.active {
  background: rgba(160, 50, 50, 0.3);
  border: 1px solid rgba(160, 50, 50, 0.5);
}
.db-stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.db-stat.active .db-stat-num {
  color: var(--red);
}
.db-stat-label {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.db-progress-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 5px;
}
.db-progress-bar {
  height: 6px;
  background: #333;
  border-radius: 3px;
  margin-bottom: 12px;
  overflow: hidden;
}
.db-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  border-radius: 3px;
  animation: progressAnimate 2s ease-out 1s both;
}
@keyframes progressAnimate {
  from {
    width: 0 !important;
  }
}

/* dashboard feature items */
.dashboard-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.df-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(20px);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
}
.df-item.revealed {
  opacity: 1;
  transform: translateX(0);
}
.df-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.df-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}
.df-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  /* margin-bottom: 3px; */
  margin-top: 10px;
}
.df-text span {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dashboard-mockup img {
    margin-top: 0;
  }

  .df-item {
    flex-direction: column; /* stack vertically */
    align-items: center; /* center horizontally */
    text-align: center; /* center text */
  }

  .df-icon {
    margin-bottom: 8px;
  }
}
/* ============================================================
SECTION 8 — ANALYTICS
============================================================ */

.analytics-section {
  padding: 90px 0;
  /* background: var(--cream); */
  position: relative;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-6.png") no-repeat center center;
  background-size: cover;
}

/* Grid */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.analytics-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 22px;
  position: relative;
  overflow: hidden;

  /* CHANGE THIS */
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center; /* center horizontally */
  text-align: center; /* center text */

  gap: 16px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease,
    border-color 0.35s ease;
}

/* Hover Effect */
.analytics-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: var(--burgundy);
  border-color: var(--red);
}

/* Icon */
.ac-icon {
  width: 52px;
  height: 52px;
  background: rgba(160, 50, 50, 0.1);
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: var(--red);

  margin-bottom: 5px;
}
.analytics-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: var(--burgundy);
  border-color: var(--red);
}

.analytics-card:hover h4,
.analytics-card:hover p {
  color: #fff;
}

.analytics-card:hover .ac-icon {
  background: #fff;
  color: var(--red);
}

.analytics-card:hover .ac-icon {
  background: #fff;
  color: var(--red);
}

/* Text */
.ac-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--burgundy);
  margin: 0 0 6px;
  transition: 0.3s ease;
}

.ac-content p {
  font-size: 12px;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
  transition: 0.3s ease;
}

/* Text color change on hover */
.analytics-card:hover h4,
.analytics-card:hover p {
  color: #fff;
}

/* Number */
.ac-number {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  transition: 0.3s ease;
}

.analytics-card:hover .ac-number {
  color: rgba(255, 255, 255, 0.1);
}

/* Tablet */
@media (max-width: 992px) {
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .analytics-card {
    padding: 22px 18px;
  }
}

/* ============================================================
 SECTION 9 — PARTNER COLLEGES
============================================================ */
.partners-section {
  padding: 80px 0;
  background: #fff;
}

.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
}
.partner-logo:hover {
  border-color: var(--red);
  background: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.partner-logo i {
  font-size: 30px;
  color: var(--burgundy);
  transition: color 0.3s;
}
.partner-logo:hover i {
  color: var(--red);
}
.partner-logo span {
  font-size: 12px;
  font-weight: 700;
  color: var(--grey);
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
 SECTION 10 — TESTIMONIALS
============================================================ */
.campus-testimonials-section {
  padding: 90px 0;
  background: var(--cream);
}

.campus-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ct-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.ct-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--burgundy));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.ct-card:hover::before {
  transform: scaleX(1);
}
.ct-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.ct-card.featured {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep));
  border-color: transparent;
}
.ct-card.featured::before {
  height: 0;
}
.ct-card.featured .ct-author h5 {
  color: #fff;
}
.ct-card.featured .ct-author span {
  color: rgba(255, 255, 255, 0.65);
}
.ct-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}
.ct-card.featured .ct-quote {
  color: var(--red);
}
.ct-card.featured .ct-role-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.ct-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.ct-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}
.ct-stars i {
  color: #f5a623;
  font-size: 12px;
}
.ct-author h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--burgundy);
  margin: 0 0 2px;
}
.ct-author span {
  font-size: 12px;
  color: var(--grey);
}
.ct-quote {
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  opacity: 0.35;
}
.ct-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.ct-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(160, 50, 50, 0.08);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ============================================================
 SECTION 11 — COLLEGE FORM
============================================================ */

.college-form-section {
  padding: 90px 0;
  background: #fff;
}

.college-form-wrapper {
  max-width: 920px;
  margin: 0 auto;
}
.college-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 55px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-col.full {
  grid-column: 1 / -1;
}
.form-col label {
  font-size: 13px;
  font-weight: 700;
  color: var(--burgundy);
}
.form-col .req {
  color: var(--red);
}
.form-col input,
.form-col select,
.form-col textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-col input:focus,
.form-col select:focus,
.form-col textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(160, 50, 50, 0.08);
}
.form-col textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-wrap {
  text-align: center;
  margin-top: 32px;
}
.form-trust-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-trust-note i {
  color: var(--red);
}

/* Proposal Download Strip */
.proposal-download-strip {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep));
  border-radius: var(--radius-md);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.proposal-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.proposal-text i {
  font-size: 36px;
  color: var(--red);
  flex-shrink: 0;
}
.proposal-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: black;
  margin-bottom: 4px;
}
.proposal-text span {
  font-size: 13px;
  color: black;
}
.btn-download-proposal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-download-proposal:hover {
  background: #fff;
  color: var(--burgundy);
  transform: translateY(-2px);
  border: 2px solid #ba2325;
}

/* ============================================================
 SECTION 12 — FINAL CTA
============================================================ */
.campus-cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--burgundy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-bg-shape.s1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  top: -200px;
  right: -100px;
}
.cta-bg-shape.s2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.1);
  bottom: -100px;
  left: -50px;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.cta-final-inner .top-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.cta-final-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 18px;
}
.cta-final-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-final-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
 RESPONSIVE — TABLET (max 1024px)
============================================================ */
@media (max-width: 1024px) {
  .hero-inner-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .hero-content h1 {
    font-size: 36px;
  }

  .section-layout-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-image {
    display: none;
  }

  .campus-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* timeline — single column on tablet */
  .process-timeline-wrap::before {
    left: 22px;
  }
  .timeline-step,
  .timeline-step.right {
    padding: 0 0 0 70px;
    flex-direction: row;
    text-align: left;
  }
  .ts-number {
    left: 0;
    transform: none;
  }
  .timeline-step:hover .ts-number {
    transform: scale(1.1);
  }

  .skill-verify-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sv-visual {
    display: none;
  }

  .internship-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dashboard-mockup {
    display: none;
  }

  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .campus-testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .college-form {
    padding: 36px 30px;
  }
}

/* ============================================================
 RESPONSIVE — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {
  .auto-container {
    padding: 0 18px;
  }

  /* hero */
  .campus-hero {
    padding: 50px 0 60px;
  }
  .hero-chips {
    gap: 8px;
  }
  .hero-chips span {
    font-size: 12px;
    padding: 6px 12px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .hero-btns a {
    width: 100%;
    justify-content: center;
  }

  /* sections */
  .why-partner-section,
  .campus-services-section,
  .placement-process-section,
  .skill-verify-section,
  .internship-section,
  .dashboard-section,
  .analytics-section,
  .partners-section,
  .campus-testimonials-section,
  .college-form-section {
    padding: 60px 0;
  }

  .campus-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* timeline mobile */
  .process-timeline-wrap::before {
    left: 18px;
  }
  .timeline-step,
  .timeline-step.right {
    padding: 0 0 0 60px;
  }
  .ts-number {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .internship-grid {
    grid-template-columns: 1fr;
  }

  .analytics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partners-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-testi-grid {
    grid-template-columns: 1fr;
  }

  /* form */
  .college-form {
    padding: 28px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-col.full {
    grid-column: 1;
  }

  /* proposal strip */
  .proposal-download-strip {
    flex-direction: column;
    text-align: center;
  }
  .proposal-text {
    flex-direction: column;
    align-items: center;
  }
  .btn-download-proposal {
    width: 100%;
    justify-content: center;
  }

  /* CTA */
  .campus-cta-final {
    padding: 70px 0;
  }
  .cta-final-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-final-btns a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* section CTA */
  .section-cta {
    text-align: center;
  }
}

/* ============================================================
 RESPONSIVE — SMALL MOBILE (max 480px)
============================================================ */
@media (max-width: 480px) {
  .campus-services-grid {
    grid-template-columns: 1fr;
  }
  .analytics-grid {
    grid-template-columns: 1fr;
  }
  .partners-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-list li {
    flex-direction: column;
    gap: 10px;
  }
  .df-item {
    flex-direction: column;
    gap: 10px;
  }
  .vs-item {
    flex-direction: column;
    gap: 10px;
  }
  .hero-btns a {
    font-size: 13px;
    padding: 12px 20px;
  }
}

/*  */
/* ===== CAMPUS PAGE SMOOTH ANIMATIONS ===== */

/* Scroll Progress Bar */
.campus-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  /* background: linear-gradient(90deg, #ba2325, #462b34); */
  z-index: 99999;
  transition: width 0.1s ease;
  /* box-shadow: 0 2px 10px rgba(186, 35, 37, 0.3); */
}

/* ===== PAGE TITLE ANIMATION ===== */
.campus-title-fade {
  animation: titleFadeIn 0.8s ease forwards;
}

@keyframes titleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.campus-title-child {
  opacity: 0;
  animation: childFadeUp 0.4s ease forwards;
}

@keyframes childFadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.campus-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.campus-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Trust Section Features */
.trust-feature {
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Service Cards */
.cs-card.campus-animate {
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

.cs-card.card-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger for service cards */
.cs-card:nth-child(1) {
  transition-delay: 0.02s;
}
.cs-card:nth-child(2) {
  transition-delay: 0.04s;
}
.cs-card:nth-child(3) {
  transition-delay: 0.06s;
}
.cs-card:nth-child(4) {
  transition-delay: 0.08s;
}
.cs-card:nth-child(5) {
  transition-delay: 0.1s;
}
.cs-card:nth-child(6) {
  transition-delay: 0.12s;
}
.cs-card:nth-child(7) {
  transition-delay: 0.14s;
}
.cs-card:nth-child(8) {
  transition-delay: 0.16s;
}

/* Single Items */
.single-item.campus-animate {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.single-item:nth-child(1) {
  transition-delay: 0.02s;
}
.single-item:nth-child(2) {
  transition-delay: 0.04s;
}
.single-item:nth-child(3) {
  transition-delay: 0.06s;
}
.single-item:nth-child(4) {
  transition-delay: 0.08s;
}
.single-item:nth-child(5) {
  transition-delay: 0.1s;
}
.single-item:nth-child(6) {
  transition-delay: 0.12s;
}
.single-item:nth-child(7) {
  transition-delay: 0.14s;
}
.single-item:nth-child(8) {
  transition-delay: 0.16s;
}
.single-item:nth-child(9) {
  transition-delay: 0.18s;
}
.single-item:nth-child(10) {
  transition-delay: 0.2s;
}

/* Pillar Cards */
.pillar-card.campus-animate {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pillar-card:nth-child(1) {
  transition-delay: 0.05s;
}
.pillar-card:nth-child(2) {
  transition-delay: 0.1s;
}
.pillar-card:nth-child(3) {
  transition-delay: 0.15s;
}
.pillar-card:nth-child(4) {
  transition-delay: 0.2s;
}
.pillar-card:nth-child(5) {
  transition-delay: 0.25s;
}

/* Internship Cards */
.internship-card.campus-animate {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.internship-card:nth-child(1) {
  transition-delay: 0.05s;
}
.internship-card:nth-child(2) {
  transition-delay: 0.1s;
}
.internship-card:nth-child(3) {
  transition-delay: 0.15s;
}
.internship-card:nth-child(4) {
  transition-delay: 0.2s;
}

/* Dashboard Feature Items */
.df-item.campus-animate {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.df-item:nth-child(1) {
  transition-delay: 0.02s;
}
.df-item:nth-child(2) {
  transition-delay: 0.04s;
}
.df-item:nth-child(3) {
  transition-delay: 0.06s;
}
.df-item:nth-child(4) {
  transition-delay: 0.08s;
}
.df-item:nth-child(5) {
  transition-delay: 0.1s;
}
.df-item:nth-child(6) {
  transition-delay: 0.12s;
}
.df-item:nth-child(7) {
  transition-delay: 0.14s;
}
.df-item:nth-child(8) {
  transition-delay: 0.16s;
}

/* Analytics Cards */
.analytics-card.campus-animate {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.analytics-card:nth-child(1) {
  transition-delay: 0.02s;
}
.analytics-card:nth-child(2) {
  transition-delay: 0.04s;
}
.analytics-card:nth-child(3) {
  transition-delay: 0.06s;
}
.analytics-card:nth-child(4) {
  transition-delay: 0.08s;
}
.analytics-card:nth-child(5) {
  transition-delay: 0.1s;
}
.analytics-card:nth-child(6) {
  transition-delay: 0.12s;
}
.analytics-card:nth-child(7) {
  transition-delay: 0.14s;
}
.analytics-card:nth-child(8) {
  transition-delay: 0.16s;
}

/* Partner Logos */
.partner-logo.campus-animate {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.partner-logo:nth-child(1) {
  transition-delay: 0.02s;
}
.partner-logo:nth-child(2) {
  transition-delay: 0.04s;
}
.partner-logo:nth-child(3) {
  transition-delay: 0.06s;
}
.partner-logo:nth-child(4) {
  transition-delay: 0.08s;
}
.partner-logo:nth-child(5) {
  transition-delay: 0.1s;
}
.partner-logo:nth-child(6) {
  transition-delay: 0.12s;
}
.partner-logo:nth-child(7) {
  transition-delay: 0.14s;
}
.partner-logo:nth-child(8) {
  transition-delay: 0.16s;
}
.partner-logo:nth-child(9) {
  transition-delay: 0.18s;
}
.partner-logo:nth-child(10) {
  transition-delay: 0.2s;
}

/* Testimonial Cards */
.testimonial-block-one.campus-animate {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Badge Animations */
.badge-float {
  opacity: 0;
  animation: badgeAppear 0.4s ease forwards;
}

@keyframes badgeAppear {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ticker Animation - Already exists, just ensure it runs */
.campus-ticker .ticker-track {
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Sections */
.trust-section.campus-animate,
.campus-services-section.campus-animate,
.recruitment-technology.campus-animate,
.hiring-philosophy-section.campus-animate,
.internship-section.campus-animate,
.dashboard-section.campus-animate,
.analytics-section.campus-animate,
.trust-bar-section.campus-animate,
.testimonial-section.campus-animate,
.college-form-section.campus-animate,
.cta-section.campus-animate {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .campus-animate {
    transform: translateY(15px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .badge-float {
    animation: none;
    opacity: 1;
  }
}

/* ===== UNIFIED SMOOTH ANIMATIONS FOR CAMPUS PAGE ===== */

/* Scroll Progress Bar */
.campus-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  /* background: linear-gradient(90deg, #ba2325, #462b34); */
  z-index: 99999;
  transition: width 0.1s ease;
  /* box-shadow: 0 2px 10px rgba(186, 35, 37, 0.3); */
}

/* Base animation class */
.campus-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* Visible state - STAYS VISIBLE FOREVER */
.campus-visible {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) !important;
}

/* Trust features */
.trust-features li {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service cards */
.cs-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Single items */
.single-item {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Pillar cards */
.pillar-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Internship cards */
.internship-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Dashboard items */
.df-item {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Analytics cards */
.analytics-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Partner logos */
.partner-logo {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Testimonial blocks */
.testimonial-block-one {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Sections */
.trust-section,
.campus-services-section,
.recruitment-technology,
.hiring-philosophy-section,
.internship-section,
.dashboard-section,
.analytics-section,
.trust-bar-section,
.testimonial-section,
.college-form-section,
.cta-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Proposal download strip */
.proposal-download-strip {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Badge floats */
.badge-float {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Ticker animation */
.campus-ticker .ticker-track {
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Page title base */
.page-title {
  opacity: 1;
}

/* OVERRIDE ANY CONFLICTING STYLES */
.campus-animate {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.campus-visible {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) !important;
}

/* Make sure elements don't get hidden by other classes */
.revealed,
.feature-visible,
.card-visible,
.item-visible {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) !important;
}
