/* =====================================================
   POSTGRADUATE – MODERN LIGHT LUXURY VERSION
   Uses Global Color Variables Only
===================================================== */

/* ================= SECTION BASE ================= */

.postgraduate-info,
.postgraduate-program-list,
.our-process,
.universities,
.psychometric-section {
  padding: 120px 0;
}

/* =====================================================
   HERO / BANNER
===================================================== */

.clean-banner {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
  padding: 100px 8%;
}

.banner-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(2,6,23,.75), rgba(2,6,23,.35)),
    radial-gradient(circle at 15% 20%, rgba(237,53,0,.35), transparent 45%);
}

.banner-text,
.inquiry-form {
  position: relative;
  z-index: 1;
}

.banner-text h1 {
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.banner-text p {
  font-size: 18px;
  margin-top: 16px;
  color: #e2e8f0;
}

/* =====================================================
   GLASS FORM
===================================================== */

.inquiry-form {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 40px 34px;
  box-shadow: 0 50px 140px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.4);
}

.inquiry-form h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  transition: .3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(237,53,0,.15);
}

/* =====================================================
   POSTGRADUATE INFO SECTION
===================================================== */

.postgraduate-info {
  background: linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  text-align: center;
}

.postgraduate-info h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
}

.postgraduate-info p {
  max-width: 760px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ---------- INFO GRID ---------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 34px;
  margin-top: 60px;
}

.info-card {
  background: rgba(255,255,255,.95);
  border-radius: 30px;
  padding: 42px 34px;
  box-shadow: 0 40px 110px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.04);
  transition: all .4s cubic-bezier(.22,1,.36,1);
}

.info-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 60px 150px rgba(0,0,0,.18);
}

.info-card i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-card h3 {
  font-weight: 800;
  margin-bottom: 14px;
}

/* =====================================================
   MBA COLLEGE GRID
===================================================== */

.postgraduate-program-list {
  background: #f8fafc;
}

.college-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 30px;
  margin-top: 60px;
}

.college-card {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 35px 100px rgba(0,0,0,.12);
  transition: .35s ease;
}

.college-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 55px 150px rgba(0,0,0,.18);
}

.college-card h3 {
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--primary);
}

.college-card ul {
  margin-top: 10px;
}

.college-card li {
  font-size: 14.8px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.college-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* =====================================================
   PROCESS SECTION
===================================================== */

/* ================= OUR PROCESS – MODERN LIGHT LUXURY ================= */

.our-process {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-align: center;
  padding: 120px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 70px;
}

/* ---------- CARD ---------- */

.process-card {
  background: #ffffff;
  border-radius: 34px;
  padding: 48px 36px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow:
    0 30px 80px rgba(0,0,0,.08),
    0 10px 25px rgba(0,0,0,.04);

  transition: all .4s cubic-bezier(.22,1,.36,1);
}

.process-card:hover {
  transform: translateY(-16px);
  box-shadow:
    0 55px 140px rgba(0,0,0,.14),
    0 20px 50px rgba(0,0,0,.06);
}

/* ---------- ICON ---------- */

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 24px;

  margin-bottom: 24px;

  box-shadow:
    0 15px 35px rgba(0,0,0,.12),
    0 12px 30px rgba(237,53,0,.35);

  transition: all .35s ease;
}

.process-card:hover .icon-circle {
  transform: scale(1.08);
  box-shadow:
    0 25px 60px rgba(0,0,0,.18),
    0 18px 45px rgba(237,53,0,.45);
}

/* ---------- TEXT ---------- */

.process-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.process-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 260px;
}

/* =====================================================
   UNIVERSITY LOGO STRIP
===================================================== */

.universities {
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}

.universities h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 60px;
}

.university-slider {
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(240px * 12);
  animation: scrollLogos 28s linear infinite;
}

.slide {
  width: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.slide img {
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .7;
  transition: .4s ease;
}

.slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.12);
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-240px * 6)); }
}

/* =====================================================
   PSYCHOMETRIC SECTION
===================================================== */

/* .psychometric-section {
  background:
    radial-gradient(circle at top left, rgba(237,53,0,.1), transparent 45%),
    linear-gradient(180deg,#ffffff,#eef2f7);
  text-align: center;
}

.psychometric-copy h2 {
  font-size: clamp(36px,3.5vw,52px);
  font-weight: 900;
}

.psychometric-cta {
  margin-top: 50px;
  border-radius: 36px;
  background: linear-gradient(180deg,#ffffff,#f8fafc);
  padding: 70px 50px;
  box-shadow: 0 60px 160px rgba(0,0,0,.25);
  transition: .35s ease;
}

.psychometric-cta:hover {
  transform: translateY(-12px);
} */
