@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Source+Serif+4:wght@400;500;600&display=swap');
/* =========================
   GLOBAL RESET & TYPOGRAPHY
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1f1f1f;
  line-height: 1.85;
}

/* Serif only for headings */
h1, h2, h3 {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
}

/* =========================
   HERO
   ========================= */
.hero {
  height: 72vh;
  background: url("/images/home.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(120, 0, 0, 0.65),
    rgba(120, 0, 0, 0.65)
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 3.4rem;
  letter-spacing: 0.5px;
}

.hero-content p {
  margin-top: 16px;
  font-size: 1.15rem;
  opacity: 0.95;
}

/* =========================
   LAYOUT
   ========================= */
.container {
  padding: 90px 10%;
}

.container.muted {
  background: #f8f8f8;
}

/* =========================
   SECTION HEADERS
   ========================= */
.section-header {
  margin-bottom: 42px;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #8b0000;
}

.section-header span {
  width: 64px;
  height: 3px;
  background: #8b0000;
  display: block;
  margin-top: 14px;
}

/* =========================
   TEXT
   ========================= */
.lead {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 20px;
}

.subheading {
  margin-top: 50px;
  margin-bottom: 18px;
  font-size: 1.45rem;
  color: #8b0000;
}

.clean-list {
  margin-top: 12px;
  padding-left: 22px;
}

.clean-list li {
  margin-bottom: 14px;
  padding-left: 6px;
}

/* =========================
   WHY RECRUIT US – STRUCTURED
   ========================= */
.clean-list strong {
  color: #8b0000;
  font-weight: 600;
}

/* =========================
   STUDENT REACH – MARQUEE
   ========================= */
.logo-marquee {
  overflow: hidden;
  margin-top: 40px;
  padding: 10px 0;
}

.logo-track {
  display: flex;
  gap: 34px;
  animation: scroll 28s linear infinite;
}

.logo-box {
  min-width: 220px;
  height: 120px;
  border: 2px solid #8b0000;
  border-radius: 8px;
  color: #8b0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all 0.35s ease;
}

.logo-box:hover {
  background: #8b0000;
  color: #ffffff;
  transform: translateY(-4px);
}

.logo-box img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.35s ease;
}

/* Hover effect: bring color back */
.logo-box:hover img {
  filter: grayscale(0%);
}


@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   PLACEMENT PROCEDURE – TIMELINE FEEL
   ========================= */
/* Placement Procedure – Base */
.procedure {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.procedure li {
  position: relative;
  padding: 22px 26px;
  margin-bottom: 16px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Subtle red indicator on left */
.procedure li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #8b0000;
  opacity: 0.2;
  border-radius: 10px 0 0 10px;
  transition: opacity 0.35s ease;
}

/* Hover effect */
.procedure li:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  border-color: #8b0000;
  background: #fafafa;
}

.procedure li:hover::before {
  opacity: 1;
}


/* =========================
   BUTTONS – RED ↔ WHITE ONLY
   ========================= */
.action-row {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn.primary {
  background: #8b0000;
  color: #ffffff;
}

.btn.primary:hover {
  background: #ffffff;
  color: #8b0000;
  border: 2px solid #8b0000;
}

.btn.outline {
  border: 2px solid #8b0000;
  color: #8b0000;
}

.btn.outline:hover {
  background: #8b0000;
  color: #ffffff;
}

/* =========================
   PILLS – COURSES
   ========================= */
.pill-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.pill-row span {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #8b0000;
  color: #8b0000;
  transition: all 0.35s ease;
}

.pill-row span:hover {
  background: #8b0000;
  color: #ffffff;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .hero {
    height: 48vh;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .container {
    padding: 60px 6%;
  }
}


/* WHY RECRUIT US – LAYOUT */
.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 50px;
}

/* Individual blocks */
.why-block {
  background: #ffffff;
  padding: 36px 34px;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
}

/* Headings inside blocks */
.why-block .subheading {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 1.45rem;
  color: #8b0000;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 18px 18px 18px 22px;
  margin-bottom: 14px;
  background: #fafafa;
  border-radius: 10px;
  border-left: 4px solid #8b0000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.feature-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* Title inside feature */
.feature-title {
  display: block;
  font-weight: 600;
  color: #8b0000;
  margin-bottom: 4px;
}

/* Compact list (right column) */
.feature-list.compact li {
  padding: 16px 18px;
  border-left: none;
  border: 1px solid #e3e3e3;
  text-align: center;
}

.feature-list.compact li:hover {
  background: #8b0000;
  color: #ffffff;
  border-color: #8b0000;
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* =========================
   PROGRAMS & COURSES SECTION
   ========================= */

/* Wrapper spacing refinement */
.container .pill-row {
  margin-top: 30px;
}

/* Degree pills (BS-MS, iPhD, PhD) */
.pill-row:not(.secondary) {
  justify-content: center;
  margin-bottom: 35px;
}

.pill-row:not(.secondary) span {
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid #8b0000;
  color: #8b0000;
  background: #ffffff;
  transition: all 0.35s ease;
}

.pill-row:not(.secondary) span:hover {
  background: #8b0000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(165, 28, 48, 0.25);
}

/* Subjects pills */
.pill-row.secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

/* Subject cards */
.pill-row.secondary span {
  padding: 18px 22px;
  border-radius: 14px;
  background: #ffffff;
  border: 1.5px solid #e6e6e6;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.35s ease;
}

/* Hover effect for subjects */
.pill-row.secondary span:hover {
  border-color: #8b0000;
  color: #8b0000;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
/* Subject links */
.subject-links a {
  display: block;
  padding: 18px 22px;
  border-radius: 14px;
  background: #ffffff;
  border: 1.5px solid #e6e6e6;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: #222;
  transition: all 0.35s ease;
}

/* Hover */
.subject-links a:hover {
  border-color: #8b0000;
  color: #8b0000;
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

/* Responsive tuning */
@media (max-width: 768px) {
  .pill-row.secondary {
    grid-template-columns: 1fr;
  }

  .pill-row:not(.secondary) span {
    width: 100%;
    text-align: center;
  }
}
 