
    /* ===============================
       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 {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 15px;
      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 {
      max-width: 1200px;
      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-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;
    }

    .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;
    }

    .hero-title {
      font-size: 44px;
      font-weight: 800;
      line-height: 1.15;
      color: #0f172a;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
    }

    .hero-title span {
      /* color: var(--accent);
       */
       color:#4338ca;
      position: relative;
      display: inline-block;
    }

    .hero-title span::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(117, 101, 209, 0.15), rgba(42, 111, 223, 0.3));
    }

    .hero-desc {
      font-size: 16px;
      color: #4b5563;
      max-width: 520px;
      margin-bottom: 24px;
    }

    .hero-points {
      display: grid;
      gap: 6px;
      margin-top: 10px;
    }

    .hero-points div {
      font-size: 14px;
      color: #374151;
      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::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(135deg, #4338ca, #ec4899);
    }

    .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);
    }

    /* ===============================
       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: 24px;
        text-align: center;
        padding: 18px 20px;
      }

      .fs-admission {
        border-left: none;
        padding-left: 0;
      }

      .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: center;
      }

      .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;
    }

  }