/* ===============================
       ROOT VARIABLES
    ================================== */
:root {
  --primary: #2a3071;
  --secondary: #1f2354;
  --accent: #b23b6b;
  --light-bg: #f6f7fb;
  --dark-text: #1f2937;
  --muted-text: #6b7280;
  --border-color: #e5e7eb;
  --card-glass: rgba(255, 255, 255, 0.92);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 26px 70px rgba(15, 23, 42, 0.18);
}

/* ===============================
       GLOBAL STYLES
    ================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--dark-text);
  background: radial-gradient(circle at top left, #eef2ff 0, #ffffff 45%, #f9fafb 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}





/* BOOK */
.bookWrapper {
  width: 700px;
  height: 450px;
  /* multiply by 1.3 */
  margin: 50px auto;
}

.bookBg {
  position: relative;
  background: #000;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* CENTER */
.centerClass {
  position: absolute;
  left: 50%;
  top: 50%;
}

/* PAGE BG */
.pageBg {
  background: #fff;
  width: 2%;
  height: 422px;
  display: flex;
}

/* PAGE WRAPPER */
.pageWrapper {
  position: relative;
  width: 325px;
  height: 422px;
  perspective: 1000px;
}

/* PAGE */
.page {
  position: absolute;
  width: 325px;
  height: 422px;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* PAGE FACE */
.pageFace {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  text-align: center;
}

/* FRONT */
.front {
  background: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
}

/* BACK */
.back {
  background: linear-gradient(to right, #ffffff 0%, #d9d9d9 100%);
  transform: rotateY(180deg);
}

/* PAGE FOLDS */
.pageFoldRight,
.pageFoldLeft {
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
}

.pageFoldRight {
  right: 0;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-shadow: -5px 5px 10px #ddd;
}

.pageFoldLeft {
  left: 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-shadow: 5px 5px 10px #ddd;
}

/* h1 {
  margin-top:160px;
} */

.bookWrapper {
  perspective: 2000px;
  cursor: pointer;
  margin: 40px auto;
  display: flex;
  justify-content: center;
}

.book {
  width: 260px;
  height: 360px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}

/* CLOSED STATE */
.book:not(.open) .pages {
  transform: rotateY(-180deg);
}

/* OPEN STATE */
.book.open {
  width: 520px;
}

/* COVER */
.front-cover {
  position: absolute;
  width: 260px;
  height: 360px;
  background: #fff;
  transform-origin: left;
  transform-style: preserve-3d;
  transition: transform 1s ease;
  z-index: 3;
}

.book.open .front-cover {
  transform: rotateY(-180deg);
}

.front-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* PAGES */
.pages {
  position: absolute;
  display: flex;
  width: 520px;
  height: 360px;
  left: 0;
  top: 0;
  transform-origin: left;
  transition: transform 1s ease;
}

.page {
  width: 260px;
  height: 360px;
  background: #fff;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.15);
}

.page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page.left {
  border-right: 1px solid #ddd;
}

.page.right {
  border-left: 1px solid #ddd;
}



/* BOOK HOLDER */
.book-container {
  width: 400px;
  height: 550px;
  margin: 60px auto;
  perspective: 2500px;
}

/* BOOK */
.book {
  width: 100%;
  height: 100%;
  position: relative;
}

/* PAGE */
.page {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform-style: preserve-3d;
  background: white;
  cursor: pointer;
  transition: transform 1s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* PAGE IMAGE */
.page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* STACK ORDER */
.page:nth-child(1) {
  z-index: 4;
}

.page:nth-child(2) {
  z-index: 3;
}

.page:nth-child(3) {
  z-index: 2;
}

.page:nth-child(4) {
  z-index: 1;
}

/* FLIPPED PAGE */
.page.flipped {
  transform: rotateY(-180deg);
  pointer-events: none;
}

/* ROW */
.book-row {
  margin: 60px 0;
}

/* BOOK HOLDER */
.book-container {
  width: 300px;
  height: 420px;
  perspective: 2500px;
  position: relative;
  transform: translateX(12px);
  /* slight right shift */
}

/* BOOK */
.book {
  width: 100%;
  height: 100%;
  position: relative;
}

/* PAGE */
.page {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  transform-origin: left center;
  transform-style: preserve-3d;
  cursor: pointer;

  /* smoother animation */
  transition:
    transform 1.1s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.8s ease;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  border-radius: 6px;
}

/* IMAGE */
.page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* STACK ORDER */
.page:nth-child(1) {
  z-index: 3;
}

.page:nth-child(2) {
  z-index: 2;
}

.page:nth-child(3) {
  z-index: 1;
}

/* FLIPPED PAGE */
.page.flipped {
  transform: rotateY(-180deg) translateX(-8px);
  box-shadow: -10px 10px 26px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}











/* Floating accent blobs (background) */
.bg-blob {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: blobFloat 22s ease-in-out infinite alternate;
}

.bg-blob.blob-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  background: radial-gradient(circle at 30% 30%, #6366f1, transparent 60%);
}

.bg-blob.blob-2 {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -60px;
  background: radial-gradient(circle at 70% 30%, #f97316, transparent 65%);
  animation-delay: 4s;
}

.bg-blob.blob-3 {
  width: 260px;
  height: 260px;
  top: 40%;
  left: 60%;
  background: radial-gradient(circle at 50% 50%, #a855f7, transparent 65%);
  animation-delay: 8s;
}

@keyframes blobFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(40px, -20px, 0) scale(1.06);
  }

  100% {
    transform: translate3d(-20px, 30px, 0) scale(1.04);
  }
}

/* ===============================
       CONTAINER
    ================================== */
.container-fixed {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3%;
  position: relative;
}

/* ===============================
       SECTION SPACING
    ================================== */
.section-block {
  padding: 70px 0;
}

.light-bg {
  background: var(--light-bg);
}

/* ===============================
       TITLES & TEXT
    ================================== */
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}

h5 {
  font-size: 18px;
  font-weight: 600;
}

h6 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

p {
  font-size: 15px;
  color: var(--dark-text);
}

.text-muted {
  color: var(--muted-text) !important;
}

/* ===============================
       BADGE
    ================================== */
.badge.bg-primary {
  background: var(--primary) !important;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===============================
       CARD (ENQUIRY BOX BASE)
    ================================== */
.card {
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: #ffffff;
}

.card h6 {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 15px;
}

/* ===============================
       FORM ELEMENTS
    ================================== */
.form-control {
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.16rem rgba(42, 48, 113, 0.18);
  outline: none;
  transform: translateY(-1px);
}

/* ===============================
       BUTTONS
    ================================== */
.btn {
  height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.btn span.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.7) 35%, transparent 75%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s ease-out, opacity 0.3s ease-out;
}

.btn:hover span.btn-shine {
  transform: translateX(120%);
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #2a3071, #4338ca);
  border: none;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1f2354, #312e81);
  transform: translateY(-1.5px) translateZ(0);
  box-shadow: 0 22px 40px rgba(30, 64, 175, 0.5);
}

.btn-outline {
  border: 1px solid #2e307a;
  color: #2e307a;
  background: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background: #2e307a;
  color: #ffffff;
  transform: translateY(-1.5px) translateZ(0);
  box-shadow: 0 16px 32px rgba(46, 48, 122, 0.45);
}

/* ===============================
       ADMISSION HEADER
    ================================== */
.figma-section-header {
  background: rgba(246, 247, 251, 0.7);
  padding: 20px 0 26px;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  animation: headerDrop 0.7s ease-out forwards;
  transform: translateY(-14px);
  opacity: 0;
}

@keyframes headerDrop {
  0% {
    transform: translateY(-14px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.figma-section-inner {
  width: 94%;
  max-width: 1600px;
  margin: auto;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.95));
  border-radius: 999px;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.figma-section-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.12), transparent 55%),
    radial-gradient(circle at 90% 90%, rgba(248, 113, 113, 0.16), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.figma-section-inner>* {
  position: relative;
  z-index: 1;
}

/* LOGO */
.fs-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fs-logo img {
  height: 46px;
  transform-origin: center;
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-4px) rotate(-1deg);
  }
}

.fs-logo-text {
  line-height: 1.1;
}

.fs-logo-text .title {
  font-size: 15px;
  font-weight: 800;
  color: #2a3071;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fs-logo-text .subtitle {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
}

/* CENTER ACCREDITATION */
.fs-accreditations {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.fs-accreditations span {
  position: relative;
}

.fs-accreditations span:not(.divider)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  transition: width 0.3s ease;
}

.fs-accreditations span:not(.divider):hover::after {
  width: 100%;
}

.fs-accreditations .divider {
  width: 1px;
  height: 18px;
  background: #d1d5db;
}

/* ADMISSION */
.fs-admission {
  text-align: right;
  padding-left: 24px;
  border-left: 1px solid #e5e7eb;
}

.fs-admission .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6b7280;
  text-transform: uppercase;
}

.fs-admission .label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulseDot 1.8s ease-out infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.fs-admission .year {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #2a3071;
}

/* ===============================
       HERO SECTION
    ================================== */
/* .hero-section {
      padding: 110px 0 90px;
      background:
        radial-gradient(circle at top left, rgba(79,70,229,0.08), transparent 55%),
        linear-gradient(135deg, #f6f7fb 52%, #ffffff 48%);
      position: relative;
      overflow: hidden;
    } */



/* ========= Hero-BG-Video ========= */

.hero-section {
  padding: 110px 0 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #f6f7fb;
  /* fallback if video fails */
}

/* Background video fills the section */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark / tinted overlay to keep text readable */

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(42, 48, 113, 0.8), transparent 55%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7));
  z-index: 1;
} */


/* white overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(42, 48, 113, 0.6), transparent 55%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.6)),
    rgba(0, 0, 0, 0.5);
  /* strong dark wash */
  z-index: 1;
}





/* Ensure content sits above video + overlay */
.hero-content {
  position: relative;
  z-index: 2;
}


/* =========================================================== */




.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.08), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-section .container-fixed {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-left {
  padding-right: 40px;
  transform-origin: left center;
  animation: heroFadeUp 0.9s ease-out 0.1s forwards;
  opacity: 0;
  transform: translateY(18px);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 241, 255, 0.96);
  color: #2a3071;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 10px 26px rgba(59, 130, 246, 0.18);
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.9) 35%, transparent 75%);
  transform: translateX(-120%);
  opacity: 0.7;
  animation: shineSweep 3.2s ease-in-out infinite;
}

@keyframes shineSweep {
  0% {
    transform: translateX(-120%);
  }

  40% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.hero-badge i {
  font-size: 16px;
}

/* --- College Name --- */
.hero-college-name {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff!important;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* --- Tagline --- */
.hero-tagline {
  font-size: 20px;
  font-weight: 400;
  color: #e2e8f0;
  margin-bottom: 4px;
  font-style: italic;
}

/* --- Hero title (Bangalore's Top MBA) --- */
.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: #fdd835;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fdd835, #f9a825);
}

/* --- Accreditation badges row --- */
.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0 20px;
}
.hero-accr-badge {
  height: 109px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
  border-radius: 8px;
}

/* --- Checkmark icon color --- */
.hero-check {
  color: #fdd835;
  font-size: 18px;
  margin-right: 4px;
}

/* --- CTA buttons row --- */
.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-hero-brochure {
  padding: 14px 32px;
  background: #2e307a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(46,48,122,0.45);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.btn-hero-brochure:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(46,48,122,0.55);
  background: #252764;
}

.btn-hero-apply {
  padding: 14px 32px;
  background: #fdd835;
  color: #1a237e;
  font-size: 16px;
  font-weight: 700;
  border: 2.5px solid #fdd835;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}
.btn-hero-apply:hover {
  background: #fdd835;
  color: #1a237e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,216,53,0.4);
}

.hero-desc {
  font-size: 16px;
  color: #e2e8f0;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-points {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.hero-points div {
  font-size: 16px;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 8px;
  transform-origin: left center;
  opacity: 0;
  transform: translateX(-10px);
  animation: pointIn 0.7s ease-out forwards;
}

.hero-points div:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-points div:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-points div:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes pointIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RIGHT FORM – GLASS CARD */
.enquiry-card {
  background: var(--card-glass);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.35);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  animation: formPop 0.9s cubic-bezier(0.16, 0.9, 0.32, 1.2) 0.35s forwards;
}

.enquiry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(42, 48, 113, 0.08),
      transparent 60%);
  pointer-events: none;
}

.enquiry-card::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 60%;
  left: -30%;
  top: -40%;
  background: radial-gradient(circle at 10% 10%, rgba(129, 140, 248, 0.35), transparent 65%);
  opacity: 0;
  transform: translateY(18px);
  animation: cardGlow 1.2s ease-out 0.6s forwards;
  pointer-events: none;
}

@keyframes formPop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardGlow {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.enquiry-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1d254b;
  margin-bottom: 4px;
}

.enquiry-card p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
}

.enquiry-card form {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.enquiry-card button {
  height: 46px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a3071, #6366f1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 18px 36px rgba(79, 70, 229, 0.45);
  position: relative;
  overflow: hidden;
}

.enquiry-card button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.85) 40%, transparent 80%);
  transform: translateX(-120%);
  opacity: 0.9;
  transition: transform 0.65s ease-out;
}

.enquiry-card button:hover::after {
  transform: translateX(120%);
}

.enquiry-card button:hover {
  background: linear-gradient(135deg, #1f2354, #4f46e5);
  transform: translateY(-1.5px) translateZ(0);
  box-shadow: var(--shadow-strong);
}

/* ===============================
       INDUSTRY PARTNER SECTION
    ================================== */
.industry-section {
  padding: 60px 0;
  background: #ffffff;

}

.industry-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 32px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.09);
  position: relative;
  overflow: hidden;
  transform: translateY(16px);
  opacity: 0;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.1), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.industry-card.reveal {
  animation: fadeUpSoft 0.8s ease-out forwards;
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
}

.industry-left img {
  height: 48px;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.35));
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease;


}

.industry-card:hover .industry-left img {
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

.industry-left h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2a3071;
}

.industry-left span {
  font-size: 13px;
  color: #6b7280;
}

.industry-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #cbd5f5, #e5e7eb);
}

.industry-right p {
  margin: 0 0 4px;
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}

.industry-right p::before {
  content: "›";
  font-size: 18px;
  color: #4f46e5;
}

/* ===============================
       USP SECTION
    ================================== */
.usp-section {
  padding: 80px 0;
  background: #ffffff;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.usp-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.usp-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.08), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.usp-card.reveal {
  animation: fadeUpSoft 0.7s ease-out forwards;
}

.usp-icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(42, 48, 113, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  transform: translate3d(0, 0, 0);
}

.usp-icon-box i {
  font-size: 26px;
  color: #2a3071;
  transition: transform 0.35s ease, color 0.35s ease;
}

.usp-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.usp-card p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.usp-card:hover {
  transform: translateY(-8px);
  border-color: #2a3071;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  background: linear-gradient(145deg, #ffffff, #eef2ff);
}

.usp-card:hover::before {
  opacity: 1;
}

.usp-card:hover .usp-icon-box {
  background: #2a3071;
  transform: translateY(-2px);
}

.usp-card:hover .usp-icon-box i {
  color: #ffffff;
  transform: scale(1.1) rotate(-4deg);
}






/* ========================================================== */



/* Idle gentle float for icons */




.usp-icon-box {
  animation: uspIconFloat 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes uspIconFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  35% {
    transform: translate3d(0, -8px, 0) scale(1.03);
  }

  65% {
    transform: translate3d(0, -4px, 0) scale(1.02);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}













/* ===============================
       PROGRAMS SECTION
    ================================== */
.program-marketing {
  padding: 100px 0 90px;
  background: linear-gradient(135deg, #ffffff 60%, #f6f7fb 40%);
  position: relative;
  overflow: hidden;
}

.program-marketing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 50%, rgba(129, 140, 248, 0.14), transparent 60%),
    radial-gradient(circle at 100% 50%, rgba(251, 113, 133, 0.13), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.program-marketing .container-fixed,
.program-tabs {
  position: relative;
  z-index: 1;
}

.spread-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  /* max-width: 900px; */
  max-width: 1200px;
  margin: 0 auto 50px;
  position: sticky;
  top: 88px;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.spread-tabs button {
  padding: 14px 0;
  border-radius: 999px;
  background: rgba(242, 243, 251, 0.95);
  border: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: background 0.26s ease, color 0.26s ease, box-shadow 0.26s ease, transform 0.22s ease, border-color 0.26s ease;
}

.spread-tabs button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.85) 40%, transparent 80%);
  transform: translateX(-130%);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.26s ease-out;
  pointer-events: none;
}

.spread-tabs button.active {
  background: linear-gradient(135deg, #2e307a, #4f46e5);
  color: #fff;
  box-shadow: 0 10px 30px rgba(46, 48, 122, 0.45);
  border-color: transparent;
  transform: translateY(-1px);
}

.spread-tabs button.active::after {
  opacity: 1;
  transform: translateX(130%);
}

.spread-tabs button:not(.active):hover {
  transform: translateY(-1px);
  border-color: rgba(148, 163, 184, 0.8);
  box-shadow: 0 8px 22px rgba(148, 163, 184, 0.45);
}

.program-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.program-panel,
.container-fixed {
  position: relative;
}

.program-pane {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.program-pane.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.program-pane.active .program-copy,
.program-pane.active .program-visual {
  animation: fadeUpSoft 0.6s ease forwards;
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.program-tag {
  display: inline-block;
  background: #eef0ff;
  color: #2e307a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.program-copy h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.program-lead {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 26px;
}

.program-values {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.value-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #111827;
}

.value-card span {
  font-size: 13px;
  color: #6b7280;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  border-color: rgba(129, 140, 248, 0.9);
}

.value-card:hover::before {
  opacity: 1;
}

.program-eligibility {
  font-size: 14px;
  margin-bottom: 20px;
}

.program-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.program-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  transform-origin: center;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.program-visual:hover img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
}

/* ===============================
       PLACEMENT SECTION
    ================================== */
.placement-section {
  /* padding: 90px 0; */
  background: linear-gradient(180deg, #ffffff, #f6f7fb);
  position: relative;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f46e5, #ec4899);
}

.recruiters-block {
  margin-bottom: 80px;
}

.recruiter-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.recruiter-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  font-weight: 700;
  color: #2e307a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  transform: translateY(18px);
  opacity: 0;
}

.recruiter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.15), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recruiter-card.reveal {
  animation: fadeUpSoft 0.8s ease-out forwards;
}

.recruiter-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 45px rgba(46, 48, 122, 0.25);
}

.recruiter-card:hover::before {
  opacity: 1;
}

/* PACKAGES */
.packages-block {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
}

.packages-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(79, 70, 229, 0.12), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(244, 114, 182, 0.16), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.packages-block.reveal {
  animation: fadeUpSoft 0.85s ease-out forwards;
}

.package-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.package-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.package-card h2 {
  font-size: 46px;
  font-weight: 800;
  color: #2e307a;
  margin: 12px 0;
}

.package-card h2 .counter {
  display: inline-block;
  min-width: 2ch;
  transform-origin: bottom;
}

.package-card p {
  font-size: 14px;
  color: #4b5563;
}

.package-divider {
  width: 1px;
  height: 100px;
  background: #e5e7eb;
  position: relative;
  z-index: 1;
}

.highlight h2 {
  color: #8165ce;
  text-shadow: 0 10px 30px rgba(88, 28, 135, 0.35);
}

/* ===============================
       FOOTER
    ================================== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 70px 0 30px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #ec4899, #22c55e);
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2e307a;
  margin-bottom: 16px;
}

.footer-address p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-col ul li a::before {
  content: "›";
  font-size: 12px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #4f46e5;
}

.footer-col ul li a:hover {
  color: #2e307a;
  transform: translateX(2px);
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e307a;
  transition: all 0.25s ease;
  background: #ffffff;
}

.footer-social a:hover {
  background: #2e307a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
}

/* ===============================
       RESPONSIVE
    ================================== */
@media (max-width: 992px) {
  .figma-section-inner {
    flex-direction: column;
    gap: 14px;
    border-radius: 0px;
    text-align: center;
    padding: 6px 20px;
  }

  .fs-admission {
    border-left: none;
    padding-left: 0;
    display: flex;
    gap: 10px;
  }

  .fs-accreditations {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section {
    padding: 80px 0;
    background: #f6f7fb;
  }

  .hero-left {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: left;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-points {
    text-align: left;
    /* max-width: 320px; */
    margin: 20px auto 0;
  }

  .spread-tabs {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .program-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .program-visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .recruiter-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-block {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .package-divider {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 30px;
  }

  .program-copy h2 {
    font-size: 30px;
  }

  .spread-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section::before,
  .program-marketing::before {
    opacity: 0.6;
  }
}

@media (max-width: 600px) {
  .spread-tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .hero-section {
    padding: 70px 0 70px;
  }

  .enquiry-card {
    padding: 26px 20px;
  }
}


/* Big label above tabs */
.program-label-wrap {
  max-width: 1200px;
  margin: 0 auto 18px;
  text-align: left;
}

.program-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5563;
  position: relative;
  overflow: hidden;
}

.program-label-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
}

.program-label-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.8) 40%, transparent 80%);
  transform: translateX(-130%);
  opacity: 0.8;
  pointer-events: none;
  animation: labelShine 3.5s ease-in-out infinite;
}

@keyframes labelShine {
  0% {
    transform: translateX(-130%);
  }

  40% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(130%);
  }
}

/* remove old small tag style if you want */
.program-tag {
  display: none;
}

/* =====================================================
   SPACING OPTIMIZATION – REMOVE EXTRA GAP BETWEEN SECTIONS
   (SAFE OVERRIDES ONLY)
===================================================== */

/* General section tightening */
.section-block {
  padding: 50px 0;
}

/* Hero section – was too tall */
.hero-section {
  padding: 80px 0 70px;
}

/* Industry (IBM) section */
.industry-section {
  padding: 45px 0;
}

/* USP section */
.usp-section {
  padding: 60px 0;
}

/* Programs section */
.program-marketing {
  padding: 70px 0 65px;
}

/* Placement section */
.placement-section {
  /* padding: 70px 0; */
}

/* Footer */
.site-footer {
  padding: 55px 0 25px;
}

/* Reduce large inner margins */
.recruiters-block {
  margin-bottom: 50px;
}

.packages-block {
  margin-top: 40px;
}

/* Tabs spacing reduction */
.spread-tabs {
  margin-bottom: 35px;
}

/* Section headings spacing */
.section-heading {
  margin-bottom: 28px;
}

/* Hero internal spacing */
.hero-title {
  margin-bottom: 16px;
}

.hero-desc {
  margin-bottom: 18px;
}

/* Program content spacing */
.program-lead {
  margin-bottom: 20px;
}

.program-values {
  margin-bottom: 20px;
}

/* Mobile tightening */
@media (max-width: 768px) {

  .section-block,
  .hero-section,
  .program-marketing,
  .placement-section {
    padding: 55px 0;
  }

  .spread-tabs {
    margin-bottom: 28px;
  }
}

/* ===== FOOTER CLEAN LAYOUT ===== */
.footer-clean {
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  align-items: center;
}

/* BRAND COLUMN */
.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.08));
}

/* HEADINGS */
.site-footer h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2e307a;
  margin-bottom: 14px;
}

/* LINKS */
.site-footer ul li a {
  font-size: 14px;
  color: #374151;
  transition: all 0.25s ease;
}

.site-footer ul li a:hover {
  color: #2e307a;
  transform: translateX(4px);
}

/* SOCIAL */
.footer-social-col {
  text-align: left;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e307a;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #2e307a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(46, 48, 122, 0.3);
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-clean {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .footer-logo {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .footer-clean {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2e307a;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #374151;
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-col ul li a:hover {
  color: #2e307a;
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e307a;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #2e307a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 48, 122, 0.35);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}





/* ============ Custom-CSS ================ */

.msc-subtabs {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.msc-subtabs button {
  /* padding: 6px 12px; */
  padding: 14px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  cursor: default;
  /* no functionality yet */
}


/* Inner M.Sc tab bar uses same styling as .spread-tabs, but 3 columns */
.msc-subtabs.spread-tabs {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
  position: static;
  /* avoid sticky for inner tabs */
  top: auto;
}

/* Inner panes: only active one shows */
.msc-subpane {
  display: none;
}

.msc-subpane.active {
  display: block;
}

/* Reuse your existing .spread-tabs button styles; this line just ensures active style applies */
.msc-subtabs.spread-tabs button.active {
  /* same as .spread-tabs button.active, already defined */
}






html {
  scroll-behavior: smooth;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #2e307a, #4f46e5);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  /* hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(46, 48, 122, 0.45);
  z-index: 999;
}

.back-to-top.show {
  display: flex;
}




/* WhatsApp just above */
.whatsapp-float {
  bottom: 70px;
  background-color: #25d366 !important;
  color: #fff;
  text-decoration: none;
  font-size: 22px;

  position: fixed;
  right: 20px;
  /* bottom: 20px; */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  /* hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(46, 48, 122, 0.45);
  z-index: 999;
}

/* visible class for both */
.back-to-top.show,
.whatsapp-float.show {
  display: flex;
}

/* small tweak on mobile so they sit above any bottom bar */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
  }

  .whatsapp-float {
    bottom: 78px;
  }

  .side-tab {
    display: none !important;
  }

  .program-tabs.spread-tabs {
    padding: 10px;
  }

  .value-card {
    line-height: 1.2;
  }

  .recruiter-strip {
    padding: 10px;
  }

}





.side-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right top;
  background: #1f197a;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  white-space: nowrap;
  display: none;
  /* hidden by default */
}

.side-tab.show {
  display: block;
}


.hero-section {
  scroll-margin-top: 120px;
  /* adjust to your header height */
}



/* MBA-Swiper */

/* ===== Swiper container & slides ===== */
.myProgramSwiper {
  width: 100%;
  max-width: 1200px;
  /* optional: center inside layout */
  margin: 0 auto;
  height: 320px;
  /* adjust as needed or use 60vh */
}

.myProgramSwiper .swiper-wrapper {
  height: 100%;
}

.myProgramSwiper .swiper-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ===== Card wrapper ===== */
.program-visual {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
}

/* ===== Background image ===== */
.program-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures full cover without distortion */
  border-radius: 12px;
}

/* ===== Dark gradient overlay with content ===== */
.program-overlay {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px;
  z-index: 2;
}

/* ===== Text & eligibility ===== */
.program-eligibility {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.program-eligibility strong {
  font-weight: 600;
}

/* ===== Buttons ===== */
.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-actions .btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
}

/* primary button */
.program-actions .btn-primary {
  background: #0d6efd;
  color: #fff;
  border: 1px solid #0d6efd;
}

.program-actions .btn-primary:hover {
  background: #0b5ed7;
  border-color: #0b5ed7;
  transform: translateY(-1px);
}

/* outline button */
.program-actions .btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.program-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-1px);
}

/* optional shine element if you use it */
.btn-shine {
  display: none;
}

/* ===== Swiper navigation & pagination ===== */
.myProgramSwiper .swiper-button-next,
.myProgramSwiper .swiper-button-prev {
  color: #fff;
}

.myProgramSwiper .swiper-button-next::after,
.myProgramSwiper .swiper-button-prev::after {
  font-size: 18px;
}

.myProgramSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
}

.myProgramSwiper .swiper-pagination-bullet-active {
  background: #fff;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
  .myProgramSwiper {
    height: 260px;
  }

  .program-overlay {
    padding: 16px 18px;
  }

  .program-actions .btn {
    width: auto;
    padding-inline: 16px;
  }
}

@media (max-width: 576px) {
  .myProgramSwiper {
    height: 240px;
  }

  .program-actions {
    flex-direction: row;
    gap: 8px;
  }

  .program-actions .btn {
    font-size: 13px;
    padding: 7px 14px;
  }
}





/* ==== Book-Flip-Page ====== */



.yb-page-root {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020617;
  font-family: system-ui, sans-serif;
  padding: 20px;
}

.yb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.yb-col {
  flex: 1 1 300px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.yb-book-wrapper {
  position: relative;
  width: 100%;
  padding-top: 65%;
}

.yb-book {
  position: absolute;
  inset: 0;
  background: #020617;
  perspective: 1500px;
  overflow: hidden;
  border-radius: 12px;
}

.yb-page {
  position: absolute;
  inset: 0;
  transform-origin: left;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.yb-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yb-page.yb-turned {
  transform: rotateY(-180deg);
}

/* side-click zones inside the book */
.yb-book::before,
.yb-book::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  z-index: 5;
}

.yb-book::before {
  left: 0;
}

.yb-book::after {
  right: 0;
}

/* OUTSIDE nav buttons */
.yb-nav-btn {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.yb-nav-btn.yb-hidden {
  visibility: hidden;
  /* keep layout but hide icon */
}

.yb-nav-btn:hover {
  background: rgba(15, 23, 42, 1);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .yb-row {
    flex-direction: column;
  }
}















/* =========== Mobile Response ============= */

@media (max-width: 768px) {

  .industry-card {
    display: block;
  }

  .usp-section {
    padding: 20px 0px;
  }

  .placement-section {
    padding: 20px 0;
  }

  .yb-page-root {
    min-height: 100%;
  }

  .footer-social-col {
    text-align: center;
  }

}

.mba-premium-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* HEADER */
.mba-header {
  max-width: 820px;
  margin: 0 auto 50px;
}

.program-tag {
  display: inline-block;
  background: #b61f34;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.mba-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f4c75;
}

.program-lead {
  font-size: 18px;
  color: #555;
  margin-top: 12px;
}

/* SWIPER */
.mba-swiper-wrapper {
  margin: 50px 0 70px;
}

.mbaHeroSwiper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

/* CONTENT GRID */
.mba-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mba-info-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.mba-info-card h4 {
  color: #b61f34;
  font-weight: 700;
  margin-bottom: 14px;
}

.mba-info-card ul {
  padding-left: 18px;
}

.mba-info-card ul li {
  margin-bottom: 8px;
  color: #444;
}

/* CTA */
.mba-cta {
  margin-top: 50px;
}

.mba-cta .btn {
  margin: 8px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .mba-content-grid {
    grid-template-columns: 1fr;
  }

  .mbaHeroSwiper img {
    height: 300px;
  }
}

/* --- SECTION RESET & VARS --- */
.mba-premium-section {
  padding: 80px 0;
  background: #fdfdfd;
  color: #2d3436;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

/* --- SPLIT HERO (COL-6) --- */
.mba-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-text-side .mba-title {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.1;
  color: #0984e3;
  margin: 15px 0;
}

.hero-text-side .mba-title span {
  color: #2d3436;
}

.hero-quick-features {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.q-item {
  background: #e1f5fe;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #01579b;
}

/* --- SWIPER AREA --- */
.hero-swiper-side {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.mbaHeroSwiper {
  width: 100%;
  height: 450px;
}

.mbaHeroSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- CONTENT GRID --- */
.mba-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.mba-info-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 35px;
  border-radius: 20px;
  transition: 0.3s;
}

.mba-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.mba-info-card.featured {
  background: #0984e3;
  color: #fff;
  border: none;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.icon-circle {
  font-size: 24px;
  background: #f1f2f6;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.featured .icon-circle {
  background: rgba(255, 255, 255, 0.2);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.4;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0984e3;
}

.featured .feature-list li::before {
  color: #fff;
}

.highlight-li {
  background: #f0f7ff;
  padding: 8px 12px !important;
  border-radius: 8px;
  margin: 15px 0;
}

.eligibility-box {
  margin-top: 30px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
}

/* --- CTA FOOTER --- */
.mba-cta-footer {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-xl {
  background: #0984e3;
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(9, 132, 227, 0.3);
}

.btn-outline-xl {
  border: 2px solid #0984e3;
  color: #0984e3;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mba-split-hero {
    grid-template-columns: 1fr;
  }

  .hero-text-side {
    text-align: center;
  }

  .hero-quick-features {
    justify-content: center;
  }

  .mbaHeroSwiper {
    height: 350px;
  }
}


/* NEW */
:root {
  --primary-color: #2e307a;
  --accent-color: #4a4eb8;
  --text-dark: #1a1b3a;
  --bg-light: #f4f7ff;
}

.mba-premium-section {
  padding: 100px 0;
  background: white;
  font-family: 'Inter', sans-serif;
}

/* Hero Section */
.mba-split-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 48, 122, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

.hero-text-side .mba-title {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.1;
  margin: 20px 0;
}

.hero-text-side .mba-title span {
  color: #555;
  font-weight: 400;
}

.hero-quick-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.q-item {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.q-item i {
  color: #2ecc71;
  margin-right: 5px;
}

/* Swiper Styling */
.hero-swiper-side {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(46, 48, 122, 0.2);
}

.mbaHeroSwiper {
  height: 500px;
}

.slide-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--primary-color);
}

/* Feature Grid */
.mba-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.mba-info-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mba-info-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mba-info-card.featured {
  background: var(--primary-color);
  color: #fff;
  background-image: linear-gradient(135deg, #2e307a 0%, #1a1b3a 100%);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 24px;
}

.featured .icon-box {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.feature-list li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  opacity: 0.9;
}

.feature-list li::before {
  content: '\f0da';
  /* FontAwesome angle right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.featured .feature-list li::before {
  color: #fff;
}

.highlight-li {
  background: rgba(46, 48, 122, 0.05);
  padding: 12px !important;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.eligibility-box {
  margin-top: 30px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
}

.el-label {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

/* Buttons */
.mba-cta-footer {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-main {
  background: var(--primary-color);
  color: #fff;
  padding: 20px 40px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-main:hover {
  background: var(--accent-color);
  box-shadow: 0 10px 20px rgba(46, 48, 122, 0.3);
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 20px 40px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
}



/* NEW */
:root {
  --mba-blue: #2e307a;
  --mba-gray: #64748b;
  --mba-border: #e2e8f0;
}

.mba-clean-grid {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.mba-content-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.mba-feature-card {
  background: #ffffff;
  border: 1px solid var(--mba-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Subtle Hover Effect */
.mba-feature-card:hover {
  border-color: var(--mba-blue);
  box-shadow: 0 12px 24px rgba(46, 48, 122, 0.08);
  transform: translateY(-4px);
}

/* Header Styling */
.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.feature-header i {
  color: var(--mba-blue);
  font-size: 20px;
}

.feature-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

/* Body Styling */
.feature-intro {
  font-size: 0.9rem;
  color: var(--mba-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Specialization Pills */
.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.spec-pills span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: #f1f5f9;
  color: var(--mba-blue);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Clean List Styling */
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  font-size: 0.95rem;
  color: #334155;
  padding: 8px 0;
  border-bottom: 1px solid #f8fafc;
  display: flex;
  align-items: flex-start;
}

.clean-list li::before {
  content: "•";
  color: var(--mba-blue);
  font-weight: bold;
  margin-right: 10px;
}

/* The Focus Card (Placement) */
.focus-card {
  background: #fcfdff;
  border: 2px solid var(--mba-blue);
  position: relative;
}

/* .focus-card::after {
  content: "Flagship Support";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--mba-blue);
  color: white;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
} */

.career-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.stat {
  background: #f1f5f9;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.stat span {
  display: block;
  font-weight: 700;
  color: var(--mba-blue);
  font-size: 1.1rem;
}

.stat small {
  font-size: 10px;
  color: var(--mba-gray);
  text-transform: uppercase;
}

/* Eligibility Box */
.eligibility-tag {
  margin-top: auto;
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.eligibility-tag i {
  color: #10b981;
}


:root {
  --primary-color: #2e307a;
  --accent-color: #4a4eb8;
  --text-dark: #1a1b3a;
  --gray-text: #64748b;
  --border-light: #e2e8f0;
}

.mba-premium-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* --- SPLIT HERO --- */
.mba-split-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 48, 122, 0.08);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-text-side .mba-title {
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.1;
  margin: 20px 0;
}

.hero-text-side .mba-title span {
  color: #555;
  font-weight: 400;
}

.program-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 30px;
}

.hero-quick-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.q-item {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.q-item i {
  color: #f1f2f6;
  margin-right: 6px;
}

/* --- SWIPER AREA --- */
.hero-swiper-side {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(46, 48, 122, 0.15);
}

.mbaHeroSwiper {
  height: 480px;
}

.mbaHeroSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- CLEAN GRID --- */
.mba-content-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.mba-feature-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mba-feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(46, 48, 122, 0.08);
  transform: translateY(-5px);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.feature-header i {
  color: var(--primary-color);
  font-size: 22px;
}

.feature-header h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.feature-intro {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.spec-pills span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: #f1f5f9;
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 6px;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  font-size: 0.95rem;
  color: #334155;
  padding: 10px 0;
  border-bottom: 1px solid #f8fafc;
  display: flex;
  align-items: flex-start;
}

.clean-list li::before {
  content: "→";
  color: var(--primary-color);
  margin-right: 12px;
  font-weight: bold;
}

.highlight-li {
  background: rgba(46, 48, 122, 0.04);
  padding: 12px 15px !important;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin: 10px 0;
}

.highlight-li i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* --- FOCUS CARD --- */
.focus-card {
  border: 2px solid var(--primary-color);
  background: #fcfdff;
}

.career-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
  padding-top: 25px;
}

.stat {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.stat span {
  display: block;
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.stat small {
  font-size: 10px;
  color: var(--gray-text);
  text-transform: uppercase;
  font-weight: 600;
}

.eligibility-tag {
  margin-top: auto;
  background: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.eligibility-tag i {
  color: #10b981;
}

/* --- CTA FOOTER --- */
.mba-cta-footer {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-main {
  background: var(--primary-color);
  color: #fff;
  padding: 18px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-main:hover {
  background: var(--accent-color);
  transform: scale(1.02);
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 18px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .mba-split-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text-side {
    text-align: center;
  }

  .hero-quick-features {
    justify-content: center;
  }

  .hero-swiper-side {
    height: 350px;
  }
}

/* Mobile View Enhancements */
@media (max-width: 991px) {

  /* Hero Section: Stacks Image above text for better flow */
  .mba-split-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-text-side {
    order: 2;
    /* Text goes below the image on mobile */
  }

  .hero-swiper-side {
    order: 1;
    /* Image/Slider goes top */
    height: 300px;
    /* Reduced height for mobile */
  }

  .mbaHeroSwiper {
    height: 100%;
  }

  /* Content Wrapper: Stacks the cards vertically */
  .mba-content-wrapper {
    grid-template-columns: 1fr !important;
    /* Forces 1 card per row */
    gap: 20px;
  }

  .mba-title {
    font-size: 2.2rem;
    /* Scaled down for mobile */
  }

  .hero-quick-features {
    justify-content: center;
  }

  /* Padding adjustments for the section */
  .mba-premium-section {
    padding: 40px 15px;
  }

  .mba-cta-footer {
    flex-direction: column;
    /* Buttons stack on mobile */
    gap: 15px;
  }

  .btn-main,
  .btn-secondary {
    width: 100%;
    /* Full width buttons for easier tapping */
    justify-content: center;
  }
}

/* DESKTOP DEFAULTS */
.mba-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.mba-content-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* MOBILE RESPONSIVENESS (Breakpoint: 991px and below) */
@media (max-width: 991px) {

  /* 1. Stack the Hero Section */
  .mba-split-hero {
    grid-template-columns: 1fr;
    /* Change from 2 columns to 1 */
    gap: 30px;
    text-align: center;
  }

  .hero-text-side {
    order: 2;
    /* Text comes after image on mobile for better flow */
  }

  .hero-swiper-side {
    order: 1;
    /* Image/Swiper at the top */
    max-width: 100%;
  }

  /* 2. Stack the Info Cards */
  .mba-content-wrapper {
    grid-template-columns: 1fr;
    /* Single column stacking */
    gap: 20px;
  }

  /* 3. Adjust Titles and Spacing */
  .mba-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-quick-features {
    justify-content: center;
  }

  .mba-premium-section {
    padding: 40px 15px;
    /* Add internal padding for mobile screen edges */
  }

  /* 4. Footer Buttons */
  .mba-cta-footer {
    flex-direction: column;
    /* Buttons stack vertically */
    gap: 15px;
    align-items: stretch;
  }

  .btn-main,
  .btn-secondary {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* MOBILE VIEW CSS */
@media (max-width: 991px) {

  /* Stack the top Hero Section vertically */
  .mba-split-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  /* Put the Image on top of the text for mobile */
  .hero-text-side {
    order: 2;
  }

  .hero-swiper-side {
    order: 1;
    height: 300px;
    /* Reduced height for phone screens */
  }

  /* Stack the 3 Information Cards vertically */
  .mba-content-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* Center the quick feature pills */
  .hero-quick-features {
    justify-content: center;
  }

  /* Stack the CTA buttons */
  .mba-cta-footer {
    flex-direction: column;
    gap: 15px;
  }

  .btn-main,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* --- RESPONSIVE FIX FOR MOBILE OVERFLOW --- */

@media (max-width: 991px) {

  /* Reduce padding to give text more room */
  .mba-premium-section {
    padding: 40px 10px !important;
  }

  .container-fixed {
    padding: 0 10px !important;
  }

  /* Shrink the Hero Title so it doesn't break the frame */
  .hero-text-side .mba-title {
    font-size: 24px !important;
    /* Forces title to fit on one or two lines */
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Adjust the Lead Text */
  .program-lead {
    font-size: 14px !important;
    margin-bottom: 20px;
  }

  /* Ensure Swiper stays inside the box */
  .hero-swiper-side {
    width: 100% !important;
    max-width: 100vw;
    margin: 0 auto 20px auto;
  }

  /* Stack cards with no horizontal overflow */
  .mba-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .mba-feature-card {
    padding: 20px 15px !important;
    width: 100% !important;
    box-sizing: border-box;
    /* Crucial: includes padding in width calculation */
  }
}

/* Specific fix for very small phones (like iPhone SE) */
@media (max-width: 375px) {
  .hero-text-side .mba-title {
    font-size: 21px !important;
  }
}


/* @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap'); */

:root {
  --p-blue: #2a307a;
  --p-blue-light: #3e4491;
  --accent-gold: #b38e5d;
  --slate-text: #1e293b;
  --bg-white: #ffffff;
  --glass-border: #e2e8f0;
}

.master-vertical-container {
  width: 100%;
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 40px 5%;
  /* Reduced top/bottom padding */
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--slate-text);
  box-sizing: border-box;
}

/* Tighter Theme Headers */
.vertical-theme-block {
  text-align: center;
  margin-bottom: 50px;
  /* Reduced from 100px */
  width: 100%;
}

.theme-heading {
  font-size: 1.75rem;
  font-weight: 800;
  /* color: var(--p-blue); */
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;



  /* gradient text */
  background: linear-gradient(135deg, #6366f1, #e79c66);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.theme-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 10px;
}

/* Tight Stack Logic */
.ux-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Reduced from 25px */
  align-items: center;
  width: 100%;
}

/* Compact Feature Cards */
.premium-feature-card {
  width: 100%;
  background: #ffffff;
  padding: 25px 35px;
  /* Reduced from 40px */
  border-radius: 18px;
  /* Slightly tighter corners */
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.premium-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(42, 48, 122, 0.08);
}

/* Industry-aligned curriculum showcase */
.curriculum-showcase {
  display: grid;
  grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.4fr);
  overflow: hidden;
  width: 100%;
  background: #fff;
  border: 1px solid #e7e9f4;
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(31, 35, 92, 0.12);
  text-align: left;
}

.curriculum-intro {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  padding: 44px;
  color: #fff;
  background: linear-gradient(145deg, #252764 0%, #2e307a 55%, #4548a0 100%);
}

.curriculum-intro::before,
.curriculum-intro::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 216, 53, 0.12);
}

.curriculum-intro::before {
  width: 210px;
  height: 210px;
  right: -85px;
  top: -75px;
}

.curriculum-intro::after {
  width: 120px;
  height: 120px;
  left: -45px;
  bottom: -45px;
}

.curriculum-eyebrow {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.curriculum-eyebrow i,
.curriculum-proof i {
  color: #fdd835;
}

.curriculum-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #fdd835;
  color: #2e307a;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  font-size: 23px;
}

.curriculum-intro h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.curriculum-intro p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.curriculum-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.curriculum-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
}

.curriculum-proof strong {
  color: #fdd835;
  font-size: 19px;
}

.curriculum-pathways {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(253, 216, 53, 0.12), transparent 32%),
    #fbfbfe;
}

.pathways-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.pathways-heading span {
  color: #7276a4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pathways-heading h4 {
  margin: 5px 0 0;
  color: #202252;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
}

.pathways-heading > i {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fdd835;
  color: #2e307a;
  font-size: 19px;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pathway-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid #e6e8f2;
  border-radius: 16px;
  background: #fff;
  color: #2e307a;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pathway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 48, 122, 0.28);
  box-shadow: 0 13px 24px rgba(46, 48, 122, 0.1);
}

.pathway-card > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f0f1fb;
  font-size: 16px;
}

.pathway-card span {
  font-size: 13px;
  font-weight: 750;
}

.pathway-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 42px auto 1fr;
  border-color: rgba(253, 216, 53, 0.65);
  background: linear-gradient(90deg, #fffdf0, #fff);
}

.pathway-card-wide > i {
  background: #fdd835;
}

.pathway-card small {
  justify-self: end;
  color: #767a98;
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .curriculum-showcase {
    grid-template-columns: 1fr;
  }

  .curriculum-intro {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .curriculum-showcase {
    border-radius: 20px;
  }

  .curriculum-intro,
  .curriculum-pathways {
    padding: 28px 22px;
  }

  .pathways-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card-wide {
    grid-column: auto;
    grid-template-columns: 42px 1fr;
  }

  .pathway-card small {
    display: none;
  }
}

/* Hands-on and research showcase */
.research-showcase {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid #e7e9f4;
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(253, 216, 53, 0.14), transparent 25%),
    linear-gradient(160deg, #fff 0%, #f7f8ff 100%);
  box-shadow: 0 18px 48px rgba(31, 35, 92, 0.09);
  text-align: left;
}

.research-showcase::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 5px;
  border-radius: 0 26px 0 10px;
  background: #fdd835;
}

.research-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 36px;
  margin-bottom: 30px;
}

.research-title-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.research-title-icon {
  display: grid;
  flex: 0 0 62px;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #2e307a;
  color: #fdd835;
  box-shadow: 0 12px 24px rgba(46, 48, 122, 0.22);
  font-size: 24px;
}

.research-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #777ba8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.research-heading h3 {
  margin: 0;
  color: #202252;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.research-heading > p {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid #fdd835;
  color: #606580;
  font-size: 13px;
  line-height: 1.7;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.research-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px 20px 20px;
  border: 1px solid #e6e8f2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.research-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: #2e307a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.research-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 48, 122, 0.22);
  box-shadow: 0 16px 30px rgba(46, 48, 122, 0.12);
}

.research-card:hover::before {
  transform: scaleX(1);
}

.research-number {
  position: absolute;
  top: 16px;
  right: 17px;
  color: rgba(46, 48, 122, 0.13);
  font-size: 24px;
  font-weight: 900;
}

.research-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 13px;
  background: #f0f1fb;
  color: #2e307a;
  font-size: 17px;
}

.research-card h4 {
  margin: 0 0 9px;
  color: #252764;
  font-size: 14px;
  font-weight: 800;
}

.research-card p {
  margin: 0 0 18px;
  color: #697087;
  font-size: 12px;
  line-height: 1.6;
}

.research-tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  background: #fff9d9;
  color: #565319;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .research-showcase {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .research-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .research-heading > p {
    padding: 0 0 0 16px;
  }
}

@media (max-width: 520px) {
  .research-title-wrap {
    align-items: flex-start;
  }

  .research-title-icon {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 19px;
  }

  .research-grid {
    grid-template-columns: 1fr;
  }

  .research-card {
    min-height: auto;
  }
}

/* Co-curricular engagement */
.engagement-section {
  position: relative;
  margin-top: 24px;
  padding: 56px 5%;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(253, 216, 53, 0.14), transparent 28%),
    linear-gradient(145deg, #f7f8ff, #fff);
  border: 1px solid #e7e9f4;
}

.engagement-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.engagement-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #7276a4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.engagement-heading > span i {
  color: #d4b200;
}

.engagement-heading h2 {
  margin: 0;
  color: #222454;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.engagement-heading h2 em {
  color: #2e307a;
  font-style: normal;
}

.engagement-heading p {
  max-width: 620px;
  margin: 13px auto 0;
  color: #666b82;
  font-size: 13px;
  line-height: 1.7;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.engagement-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 350px;
  padding: 30px;
  border-radius: 22px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.engagement-card:hover {
  transform: translateY(-7px);
}

.engagement-card-leadership {
  color: #fff;
  background: linear-gradient(145deg, #252764, #3f4299);
  box-shadow: 0 20px 38px rgba(46, 48, 122, 0.22);
}

.engagement-card-leadership:hover {
  box-shadow: 0 27px 46px rgba(46, 48, 122, 0.3);
}

.engagement-card-exposure {
  color: #24264f;
  border: 1px solid rgba(224, 190, 0, 0.35);
  background: linear-gradient(145deg, #fdd835, #ffe979);
  box-shadow: 0 20px 38px rgba(213, 178, 0, 0.18);
}

.engagement-card-exposure:hover {
  box-shadow: 0 27px 46px rgba(213, 178, 0, 0.25);
}

.engagement-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.engagement-index {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.55;
}

.engagement-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 21px;
}

.engagement-card-leadership .engagement-icon {
  background: #fdd835;
  color: #2e307a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.engagement-card-exposure .engagement-icon {
  background: #2e307a;
  color: #fdd835;
  box-shadow: 0 10px 24px rgba(46, 48, 122, 0.22);
}

.engagement-label {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.68;
}

.engagement-card h3 {
  margin: 0 0 11px;
  color: inherit;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.engagement-card > p {
  max-width: 490px;
  margin: 0 0 24px;
  color: inherit;
  font-size: 12.5px;
  line-height: 1.7;
  opacity: 0.76;
}

.engagement-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 480px;
}

.engagement-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
}

.engagement-card-leadership .engagement-features span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
}

.engagement-card-leadership .engagement-features i {
  color: #fdd835;
}

.engagement-card-exposure .engagement-features span {
  border: 1px solid rgba(46, 48, 122, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.engagement-card-exposure .engagement-features i {
  color: #2e307a;
}

.engagement-watermark {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -28px;
  font-size: 150px;
  line-height: 1;
  opacity: 0.055;
  transform: rotate(-10deg);
}

@media (max-width: 768px) {
  .engagement-section {
    padding: 42px 20px;
    border-radius: 22px;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .engagement-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .engagement-section {
    padding: 34px 15px;
  }

  .engagement-card {
    padding: 24px 20px;
  }
}

/* Placements and career support */
.career-section {
  position: relative;
  margin-top: 34px;
  padding: 58px 5%;
  overflow: hidden;
  border: 1px solid #e6e8f2;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(253, 216, 53, 0.16), transparent 24%),
    #ffffff;
}

.career-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.career-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #7276a4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.career-heading > span i {
  color: #d4b200;
}

.career-heading h2 {
  margin: 0;
  color: #222454;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.career-heading h2 em {
  color: #2e307a;
  font-style: normal;
}

.career-heading p {
  max-width: 650px;
  margin: 13px auto 0;
  color: #666b82;
  font-size: 13px;
  line-height: 1.7;
}

.career-roadmap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 34px;
  padding: 20px 28px;
  border: 1px solid #e7e9f4;
  border-radius: 20px;
  background: #f8f9fd;
}

.career-step {
  position: relative;
  display: grid;
  flex: 0 0 74px;
  place-items: center;
  gap: 5px;
  color: #2e307a;
}

.career-step > span {
  position: absolute;
  top: -6px;
  right: 2px;
  color: #a9acc6;
  font-size: 8px;
  font-weight: 800;
}

.career-step > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #e9eaf5;
  font-size: 15px;
}

.career-step strong {
  font-size: 10px;
  font-weight: 800;
}

.career-step-active > i {
  background: #fdd835;
  box-shadow: 0 8px 18px rgba(213, 178, 0, 0.26);
}

.career-roadmap-line {
  flex: 1;
  height: 2px;
  min-width: 28px;
  margin: 0 5px 18px;
  overflow: hidden;
  border-radius: 10px;
  background: #dedfeb;
}

.career-roadmap-line i {
  display: block;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #2e307a, #fdd835);
}

.career-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.career-support-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 32px;
  border-radius: 22px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-support-card:hover {
  transform: translateY(-7px);
}

.career-training-card {
  border: 1px solid #e3e5f0;
  background: linear-gradient(145deg, #f8f9ff, #fff);
  box-shadow: 0 18px 38px rgba(46, 48, 122, 0.1);
}

.career-training-card:hover {
  box-shadow: 0 26px 45px rgba(46, 48, 122, 0.16);
}

.career-launch-card {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(253, 216, 53, 0.19), transparent 35%),
    linear-gradient(145deg, #252764, #393c8f);
  box-shadow: 0 20px 42px rgba(46, 48, 122, 0.25);
}

.career-launch-card::after {
  content: '';
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border: 32px solid rgba(253, 216, 53, 0.06);
  border-radius: 50%;
}

.career-launch-card:hover {
  box-shadow: 0 28px 52px rgba(46, 48, 122, 0.34);
}

.career-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.career-card-icon {
  display: grid;
  flex: 0 0 56px;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 17px;
  font-size: 21px;
}

.career-training-card .career-card-icon {
  background: #2e307a;
  color: #fdd835;
  box-shadow: 0 10px 22px rgba(46, 48, 122, 0.22);
}

.career-launch-card .career-card-icon {
  background: #fdd835;
  color: #2e307a;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.career-card-header span {
  display: block;
  margin-bottom: 4px;
  color: #777ba8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.career-launch-card .career-card-header span {
  color: #fdd835;
}

.career-card-header h3 {
  margin: 0;
  color: #252764;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
}

.career-launch-card .career-card-header h3 {
  color: #fff;
}

.career-support-card > p {
  margin: 0 0 23px;
  color: #666b82;
  font-size: 12.5px;
  line-height: 1.7;
}

.career-launch-card > p {
  color: rgba(255, 255, 255, 0.72);
}

.career-feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.45;
}

.career-training-card .career-feature-list li {
  border: 1px solid #e7e8f1;
  background: #fff;
  color: #4e536d;
}

.career-launch-card .career-feature-list li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.career-feature-list li > i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 14px;
}

.career-training-card .career-feature-list li > i {
  background: #f0f1fb;
  color: #2e307a;
}

.career-launch-card .career-feature-list li > i {
  background: #fdd835;
  color: #2e307a;
}

@media (max-width: 800px) {
  .career-section {
    padding: 44px 20px;
    border-radius: 22px;
  }

  .career-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .career-section {
    padding: 36px 15px;
  }

  .career-roadmap {
    padding: 17px 10px;
  }

  .career-step {
    flex-basis: 54px;
  }

  .career-step > span {
    display: none;
  }

  .career-roadmap-line {
    min-width: 8px;
    margin-inline: 1px;
  }

  .career-support-card {
    min-height: auto;
    padding: 25px 20px;
  }

  .career-card-header {
    align-items: flex-start;
  }
}

.card-icon-title {
  color: var(--p-blue);
  font-size: 1.1rem;
  /* Reduced from 1.25rem */
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
}

.card-icon-title i {
  background: rgba(42, 48, 122, 0.05);
  padding: 8px;
  /* Reduced padding */
  border-radius: 10px;
  font-size: 1rem;
}

.item-description {
  color: #475569;
  font-size: 14.5px;
  /* Reduced from 16px */
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Compact Partners Grid */
.partners-lineup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 5px;
}

.partner-tag {
  background: #f8fafc;
  padding: 10px 15px;
  /* Reduced padding */
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

.partner-tag b {
  color: var(--p-blue);
  font-size: 13px;
}

.partner-tag span {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
}

/* Compact Specialisation Pills */
.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-pill {
  background: var(--p-blue);
  color: white;
  padding: 5px 15px;
  /* Smaller pills */
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* Tighter Vertical Bullets */
.boss-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.boss-list li {
  margin-bottom: 8px;
  /* Reduced spacing */
  padding-left: 25px;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  /* Consistent small font */
  color: #475569;
}

.boss-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 13px;
}

/* Compact CTA Stage */
.cta-stage {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  /* Reduced from 60px */
}

.btn-lux-primary,
.btn-lux-outline {
  padding: 14px 40px;
  /* Reduced padding */
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  /* Reduced font */
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-lux-primary {
  background: var(--p-blue);
  color: #fff;
  text-align: center;
}

.btn-lux-outline {
  border: 2px solid var(--p-blue);
  color: var(--p-blue);
}

@media (max-width: 768px) {
  .master-vertical-container {
    padding: 30px 15px;
  }

  .theme-heading {
    font-size: 1.4rem;
  }

  .cta-stage {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .premium-feature-card {
    padding: 20px;
  }
}

/* Modal Background Overlay */
.modal-overlay {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 24, 40, 0.85);
  /* Darker blurred backdrop */
  backdrop-filter: blur(5px);
}

/* Modal Box */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #667085;
  cursor: pointer;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h3 {
  color: var(--p-blue);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.modal-header p {
  font-size: 14px;
  color: #667085;
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--p-blue);
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: var(--p-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(42, 48, 122, 0.1);
}

.btn-submit-form {
  width: 100%;
  background: var(--p-blue);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit-form:hover {
  background: var(--accent-gold);
}

.modal-overlay {
  display: none;
  /* Controlled by JS */
  position: fixed;
  /* Fixes it to the screen */
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);

  /* These three lines handle the centering */
  display: none;
  align-items: center;
  justify-content: center;
}

/* Ensure the modal content doesn't touch screen edges on mobile */
.modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 500px;
  padding: 50px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
  /* Keeps it from sticking to the top on smaller screens */
  margin: auto;
  animation: premiumEntry 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


:root {
  --p-blue: #2a307a;
  --accent-gold: #b38e5d;
  --input-bg: #f8fafc;
}

.modal-overlay {
  display: none;
  /* Controlled by JS */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  /* Centering Logic */
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 500px;
  padding: 50px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: premiumEntry 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes premiumEntry {
  from {
    transform: scale(0.9) translateY(30px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 35px;
  height: 35px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  font-size: 20px;
}

.modal-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--p-blue);
  margin: 0 0 10px 0;
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--p-blue);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: var(--input-bg);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  box-sizing: border-box;
}

.btn-submit-form {
  width: 100%;
  background: var(--p-blue);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

/* Success Message State */
#successMessage {
  display: none;
  padding: 20px 0;
}

.success-icon {
  font-size: 50px;
  color: #059669;
  margin-bottom: 20px;
}

:root {
  --p-blue: #2a307a;
  /* Ensure your primary blue is defined */
}

.accreditation-strip {
  background: #ffffff;
  padding: 50px 0;
  /* Increased padding for more space */
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin: 40px 0;
}

.accreditation-container {
  max-width: 1200px;
  /* Wider container */
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  /* Better spacing for large screens */
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.accreditation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 180px;
  /* Increased minimum width */
}

/* Bigger Logo Box */
.logo-box {
  width: 110px;
  /* Increased from 80px */
  height: 110px;
  /* Increased from 80px */
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaecf0;
  /* Constant subtle shadow for premium look */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Permanent Full Color Styles */
.logo-box img {
  max-width: 80%;
  /* Larger image inside the box */
  max-height: 80%;
  filter: none !important;
  /* Removes grayscale entirely */
  opacity: 1 !important;
  /* Always fully visible */
  object-fit: contain;
}

/* Subtle hover effect for the box itself */
.accreditation-item:hover .logo-box {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(42, 48, 122, 0.12);
  border-color: var(--p-blue);
}

.logo-label {
  font-size: 13px;
  /* Slightly larger text */
  font-weight: 800;
  color: var(--p-blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .accreditation-strip {
    padding: 30px 0;
  }

  .accreditation-container {
    display: grid;
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
  }


  .accreditation-item {
    min-width: 0px;
  }

  .logo-label {
    display: none;
  }

  .logo-box {
    width: 90px;
    height: 90px;
  }
}

.mba-gallery-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--p-blue);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

/* 
    .gallery-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    } */

.swiper-gallery {
  padding-bottom: 60px !important;
}

.swiper-slide {
  overflow: hidden;
  border-radius: 20px;
  height: 400px;
  /* Consistent height for a premium feel */
  position: relative;
  cursor: grab;
}

.swiper-slide img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Effect: Zoom + Overlay */
.swiper-slide:hover img {
  transform: scale(1.1);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent, rgba(42, 48, 122, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.swiper-slide:hover .slide-overlay {
  opacity: 1;
}

.overlay-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Custom Swiper Navigation & Pagination */
.swiper-button-next,
.swiper-button-prev {
  color: var(--p-blue) !important;
  background: rgba(255, 255, 255, 0.9);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: 900;
}

.swiper-pagination-bullet-active {
  background: var(--p-blue) !important;
  width: 25px !important;
  border-radius: 5px !important;
}






/* =========== Industry-Swiper ============= */


.industry-swiper {
  width: 100%;
}

.industry-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.industry-card {
  width: 100%;
}

@media (max-width: 768px) {

  .industry-left {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .ind-name {
    text-align: center;
  }

  .industry-divider {
    background: white !important;
  }


}








/* =========== Industry-Swiper ============= */


.industry-swiper {
  width: 100%;
}

.industry-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.industry-card {
  width: 100%;
}

@media (max-width: 768px) {

  .industry-left {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .ind-name {
    text-align: center;
  }

  .industry-divider {
    background: white !important;
  }


}






/*====== Gallary-Swiper ===== */





/* .gallery-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}


.swiper-gallery {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}



.swiper-gallery .swiper-slide img {
  width: 100%;
  max-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
} */



/* container */
.gallery-container {
  width: 100%;
  overflow: hidden;
  padding: 0 16px;
}

/* swiper */
.gallery-container .swiper-gallery {
  width: 100%;
}

/* slide */
.gallery-container .swiper-slide {
  width: 100%;
}

/* image */
.gallery-container .swiper-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* desktop only */
@media (min-width: 769px) {
  .gallery-container .swiper-gallery {
    /* max-width: 900px; */
    margin: auto;
  }

  .gallery-container .swiper-slide img {
    height: 400px;
  }
}








/* ---27-01-26--- */

.certification-heading {
  position: relative;
  max-width: 760px;
  margin: 10px auto 4px;
  padding: 12px 20px 18px;
  text-align: center;
}

.certification-heading-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: #2e307a;
  color: #fdd835;
  box-shadow: 0 12px 28px rgba(46, 48, 122, 0.24);
  font-size: 23px;
  transform: rotate(-4deg);
}

.certification-heading > span {
  display: block;
  margin-bottom: 7px;
  color: #777ba8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.certification-heading h2 {
  margin: 0;
  color: #222454;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.certification-heading h2 em {
  color: #2e307a;
  font-style: normal;
  position: relative;
}

.certification-heading p {
  max-width: 630px;
  margin: 14px auto 0;
  color: #666b82;
  font-size: 13px;
  line-height: 1.7;
}

.certification-heading-line {
  position: relative;
  width: 94px;
  height: 4px;
  margin: 19px auto 0;
  border-radius: 20px;
  background: #e8e9f3;
}

.certification-heading-line i {
  position: absolute;
  left: 0;
  top: 0;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: #fdd835;
}

@media (max-width: 576px) {
  .certification-heading {
    padding-inline: 4px;
  }

  .certification-heading-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 20px;
  }
}

.certificate_section {
  padding: 60px 0;
  background: #f5f5f5;
  font-family: "Segoe UI", sans-serif;
}

.certificate_container {
  width: 94%;
  max-width: 1400px;
  margin: auto;
}

.certificate_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

/* Card Base */
.certificate_card {
  position: relative;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.certificate_card:hover {
  transform: translateY(-5px);
}

/* Dark Overlay */
.certificate_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Text */
.certificate_card h3,
.certificate_card p {
  position: relative;
  z-index: 2;
  margin: 0;
}

.certificate_card h3 {
  font-size: 18px;
  font-weight: 600;
}

.certificate_card p {
  font-size: 13px;
  opacity: 0.8;
}

/* Background Images (Change URLs) */
.certificate_1 {
  background-image: url('../img/CXO-1.png');
}

.certificate_2 {
  background-image: url('../img/Alumni Series-1.png');
}

.certificate_3 {
  background-image: url('../img/E Series-1.png');
}

.certificate_4 {
  background-image: url('../img/Sparkz image.png');
}

/* .certificate_5 { background-image: url('../img/5.png'); }
.certificate_6 { background-image: url('../img/3.png'); }
.certificate_7 { background-image: url('../img/2.png'); }
.certificate_8 { background-image: url('../img/1.png'); } */




.mbaHeroSwiper {
  width: 100%;
  height: 100%;
}

/* base slide, no movement */
.mbaHeroSwiper .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transform: none !important;
}

/* real + looped active slides visible during any transition */
.mbaHeroSwiper .swiper-slide.swiper-slide-active,
.mbaHeroSwiper .swiper-slide.swiper-slide-duplicate-active {
  opacity: 1;
}

/* image fills the slide */
.mbaHeroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Responsive */
@media(max-width: 992px) {
  .certificate_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificate_card {
    height: 280px;
  }
}

@media(max-width: 576px) {
  .certificate_grid {
    grid-template-columns: 1fr;
  }

  .certificate_card {
    height: 260px;
  }
}







/* =================== 29-01-2026 ======================= */


.mba-premium-section {
  margin: 0;
  padding: 40px 0;
}

/* PARENT WRAPPER – all layers live inside this */
.mba-hero-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
}

/* Swiper fills the wrapper completely */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg .swiper-wrapper,
.hero-bg .swiper-slide {
  height: 100%;
}

.hero-bg .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark gradient over the image */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to right,
      rgba(8, 15, 40, 0.9),
      rgba(8, 15, 40, 0.55),
      rgba(8, 15, 40, 0.9));
}

/* TEXT LAYER – THIS MUST BE ON TOP */
/* .hero-content {
  position: relative;      
  z-index: 3;              
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 7%;
  color: #fff;
  isolation: isolate; 

} */


.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 40px 7%;
  color: #fff;

  pointer-events: auto;
  /* keep text interactive */
}






/* Simple typography */
.mba-title {
  font-size: 5rem;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
}

.mba-title span {
  color: #dfe5ff;
}

span.mba-ff {
  font-size: 24px;
  font-weight: 600;
}

.program-lead {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e8ecff;
  max-width: 620px;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.hero-quick-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 18px;
}

.hero-quick-features .q-item {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: #fff;
}

/* Swiper controls above overlay */
.hero-bg .swiper-button-next,
.hero-bg .swiper-button-prev,
.hero-bg .swiper-pagination {
  z-index: 4;
  color: #fff;
}





.hero-bg,
.hero-bg * {
  pointer-events: none;
}




/* Responsive */
@media (max-width: 991.98px) {
  .mba-hero-wrap {
    border-radius: 0;
  }

  .hero-content {
    padding: 32px 16px;
  }

  .mba-title {
    font-size: 2rem;
  }
}






@media (max-width: 768px) {

  .figma-section-header {
    padding: 0px;
  }

  .fs-admission .year {
    text-align: center;
    font-size: 14px;
  }

  .gallery-container {
    padding: 0px !important;
  }









}








/* ========== RECRUITERS BANNER (reference-image style) =========== */

/* --- Banner container --- */
.recruiters-banner {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 440px;
  background: linear-gradient(135deg, #e8920e 0%, #f5b731 35%, #fdd835 70%, #f7c948 100%);
  border-radius: 22px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 12px 40px rgba(245,160,30,0.35);
}

/* --- Person image (right) --- */
.recruiters-person {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.recruiters-person img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
  mix-blend-mode: multiply;
  transform: scale(1.04);
  transform-origin: right bottom;
  filter: contrast(1.02) saturate(1.03);
}

/* --- Right content area --- */
.recruiters-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 10px 44px 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* --- Title --- */
.recruiters-title {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(255,255,255,0.4);
  letter-spacing: -0.02em;
}

/* --- Marquee wrappers --- */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

/* Row 1 scrolls LEFT */
.marquee-left {
  animation: marqueeScrollLeft 28s linear infinite;
}

/* Row 2 scrolls RIGHT */
.marquee-right {
  animation: marqueeScrollRight 32s linear infinite;
}

@keyframes marqueeScrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeScrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

/* --- Logo cards (inside marquee) --- */
.recruiters-banner .recruiter-card {
  flex-shrink: 0;
  width: 175px;
  height: 90px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recruiters-banner .recruiter-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.recruiters-banner .recruiter-card img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
}

/* --- Mobile responsive --- */
@media (max-width: 768px) {
  .recruiters-banner {
    flex-direction: column;
    min-height: auto;
    border-radius: 16px;
  }
  .recruiters-person {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
  .recruiters-content {
    padding: 20px 12px;
  }
  .recruiters-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .recruiters-banner .recruiter-card {
    width: 120px;
    height: 60px;
  }
  .recruiters-banner .recruiter-card img {
    max-height: 30px;
  }
}


.apply-b {
  display: flex;
  justify-content: center;
  gap: 20px;
}


@media (max-width: 768px) {

  .apply-b {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


}

