
:root {
  --color-accent:       #fecd46;
  --color-text-dark:    #030303;
  --color-text-white:   #ffffff;
  --color-overlay-dark: rgba(0, 0, 0, 0.79);

  --font-heading: 'Teko', sans-serif;
  --font-body:    'Inter', sans-serif;

  --slide-height:        570px;
  --slide-height-md:     460px;
  --slide-height-sm:     380px;

  --slide-content-left:  123px; /* Figma: content start x */
  --slide-content-left-md: 48px;
  --slide-content-left-sm: 24px;

  --btn-padding-y: 12px;
  --btn-padding-x: 24px;
  --btn-font-size: 18px;
  --btn-min-width: 140px;
  --btn-video-min-width: 173px;
  --btn-height:    53px;

  --transition-base: 0.3s ease;

  --research-slider-h: 689px;    /* photo 522 + caption 167 */
  --research-caption-h: 167px;
  --research-photo-h: 522px;
}

/* ----------------
   RESET / BASE
   ---------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {

  color: var(--color-text-dark);
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.image-wrapper {
  position: relative;
  display: flex !important;
}
.image-wrapper img {
  width: 90%;
  border-radius: 15px;
  margin-left: auto;
}
.info-card {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 30px;
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.thumb-row {
  display: flex;
  flex-wrap: nowrap;
  overflow: visible;
  gap: 6px;
  margin-top: 12px;
  padding-bottom: 8px;
}

/* Each thumb gets equal width automatically */
.thumb-slide {
  flex: 1 1 0;      /* grow equally, start from 0 */
  min-width: 0;     /* allow shrinking below content size */
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  transition: opacity 0.3s, border-color 0.3s, transform 0.3s;
}

.thumb-slide img {
  width: 100%;
  height: 65px;
  object-fit: cover;
  display: block;
}

.thumb-slide:hover {
  opacity: 0.75;
}

.thumb-slide.active {
  opacity: 1;
  border-color: #ffc107;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.35);
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   HERO SLIDER
   ===================================================== */

/* ---- Wrapper ---- */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 0 !important;
  padding: 0 20px;
}

/* ---- Individual Slide ---- */
.hero-slide {
  position: relative;
  width: 100%;
  height: var(--slide-height);
  overflow: hidden;
}

/* ---- Background Image ---- */
.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Subtle right-side clip matching Figma mask shape */
  border-radius: 20px;
  /* Performance: promote to own compositing layer */
  will-change: transform;

}

/* ---- Dark Gradient Overlay (left = dark, right = transparent) ---- */
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  /* Figma: linear-gradient(-89.33deg, rgba(0,0,0,0) 46.095%, rgba(0,0,0,0.79) 76.086%) */
  background: linear-gradient(
    -89.33deg,
    rgba(0, 0, 0, 0)   46.095%,
    rgba(0, 0, 0, 0.79) 76.086%
  );
  border-radius: inherit;
}

/* ---- Inner container for content alignment ---- */
.hero-slide__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: var(--slide-content-left);
}

/* ---- Content block ---- */
.hero-slide__content {
  display: flex;
  flex-direction: column;
  max-width: 520px;
}

/* ---- School Name / Title ---- */
.hero-slide__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 0.92;
  color: var(--color-text-white);
  margin: 0;
  white-space: nowrap;
}

/* ---- Description Text ---- */
.hero-slide__desc {

  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-white);
  margin: 25px 0;
  max-width: 451px;
}

/* ---- Button Group ---- */
.hero-slide__btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 12px;
}

/* ---- Base Button Override ---- */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-weight: 600;
  font-size: var(--btn-font-size);
  line-height: 1.6;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  white-space: nowrap;
}

/* ---- Download Broucher Button (Yellow) ---- */
.hero-btn--primary {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  border: 1px solid var(--color-accent);
  min-width: var(--btn-min-width);
}

.hero-btn--primary:hover,
.hero-btn--primary:focus-visible {
  background-color: #e6b830;
  border-color: #e6b830;
  color: var(--color-text-dark);
}

.hero-btn--primary:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ---- Watch Video Button (Transparent + White Border) ---- */
.hero-btn--video {
  background-color: transparent;
  color: var(--color-text-white);
  border: 1px solid var(--color-text-white);
  min-width: var(--btn-video-min-width);
  gap: 20px;
  margin-left: 17px; /* Figma: gap between buttons ~230px - 140px button - padding */
}

.hero-btn--video:hover,
.hero-btn--video:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text-white);
}

.hero-btn--video:focus-visible {
  outline: 3px solid #fecd46;
  outline-offset: 2px;
}

/* ---- Play Icon inside Watch Video Button ---- */
.hero-btn__play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 11px;
  height: 17px;
}

.hero-btn__play-icon svg {
  display: block;
}




/* Dots */
.hero-slider .slick-dots {
  display: none;
}





/* =====================================================
   MAGNIFIC POPUP OVERRIDES
   ===================================================== */

/* Ensure video fits correctly */
.mfp-iframe-holder .mfp-content {
  max-width: 960px;
}

.mfp-bg {
  background: rgba(0, 0, 0, 0.92);
}

.mfp-close {
  color: #fff !important;
  font-size: 30px;
  line-height: 1;
  opacity: 0.9;
  transition: opacity var(--transition-base);
}

.mfp-close:hover {
  opacity: 1;
  color: var(--color-accent) !important;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* ---- Large (≤ 1200px) ---- */
@media (max-width: 1199.98px) {
  :root {
    --slide-height: 500px;
    --slide-content-left: 60px;
  }

  .hero-slide__title {
    font-size: 52px;
  }
}

/* ---- Medium — Tablet (≤ 991px) ---- */
@media (max-width: 991.98px) {
  :root {
    --slide-height: var(--slide-height-md);
    --slide-content-left: var(--slide-content-left-md);
  }
  .image-wrapper{
    display: unset !important;
  }
  .info-card {
    position: relative;
    top: unset;
    width: 100%;
    max-width: 100%;
    bottom: 0;
    transform: translateY(0);
    padding: 10px 15px;
  }
  .info-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .info-card p { font-size: 16px; }
  .image-wrapper img{
    width: 100%;
  }

  .hero-slide__title {
    font-size: 44px;
  }

  .hero-slide__desc {
    font-size: 15px;
    margin-top: 32px;
    max-width: 360px;
  }

  .hero-slide__btns {
    margin-top: 32px;
  }

  .hero-btn {
    font-size: 16px;
    height: 46px;
  }
}

/* ---- Small — Mobile (≤ 767px) ---- */
@media (max-width: 767.98px) {
  :root {
    --slide-height: var(--slide-height-sm);
    --slide-content-left: var(--slide-content-left-sm);
  }

  .hero-slide__bg {
    border-radius: 0; /* no clip on mobile — full bleed */
  }

  .hero-slide__title {
    font-size: 36px;
    white-space: normal;
    line-height: 1;
  }

  .hero-slide__desc {
    font-size: 14px;
    margin-top: 16px;
    max-width: 280px;
  }

  .hero-slide__btns {
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-btn--video {
    margin-left: 0;
  }

  .hero-btn {
    font-size: 15px;
    height: 44px;
    padding: 10px 20px;
  }
}

/* ---- X-Small — Small Mobile (≤ 480px) ---- */
@media (max-width: 479.98px) {
  :root {
    --slide-height: 320px;
  }

  .hero-slider {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .hero-slide__title {
    font-size: 30px;
  }

  .hero-slide__desc {
    font-size: 13px;
    max-width: 240px;
    margin-top: 12px;
  }

  .hero-slide__btns {
    margin-top: 16px;
  }


  .hero-btn {
    font-size: 14px;
    height: 40px;
    padding: 8px 16px;
    min-width: unset;
  }




}

/* ---- Reduced Motion Preference ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-btn,
  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    transition: none;
  }
}


/* =====================================================
   GLOBAL: Smooth scroll + Section scroll-margin offset
   (accounts for 100px primary nav + ~164px school nav)
   ===================================================== */
html {
  scroll-behavior: smooth;
}

/* All section targets need top margin so sticky navs don't cover headings */
section[id],
div[id^="placements"],
div[id^="ranking"],
div[id^="resources"],
div[id^="tieups"],
div[id^="programmes"],
div[id^="alumni"],
div[id^="events"],
div[id^="faculty"],
div[id^="professor-practice"] {
  scroll-margin-top: 0;
}


/* =====================================================
   SECTION HEADING COMMON CLASSES
   ===================================================== */

/* ---- Common class for all section labels/badges (small text) ---- */
.section-label {

  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 8px;
  text-align: left;
  letter-spacing: 0;
  position: relative;
  z-index: 1;

}

.section-label a {
  color: #000;
}

.section-label a:hover {
  color: #ef7d00;
  cursor: pointer;
}

.section-label svg {
    width: 100px;
    height: 65px;
    margin-top: 10px;
    position: absolute;
    top: 0%;
    left: 17%;
    overflow: visible;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.section-label svg path {
    stroke: #ffcd4d;
    stroke-width: 8px;
    fill: none;
    stroke-dasharray: 1500;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faculty-frame .section-label svg path {
    stroke: #000000;

}
.academics .section-label svg path {
    stroke: #000000;

}

/* ---- Common class for all section titles/headings (main text) ---- */
.section-title {
  color: #030303;
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  font-family: "Plus Jakarta Sans", "Plus Jakarta Sans Fallback";
}


/* =====================================================
   SECTION 2: SCHOOL NAVIGATION
   ===================================================== */

/* ---- Sticky Wrapper ---- */
.school-nav-wrapper {
  position: sticky;
  top: 100px;          /* Reserve 100px for primary nav above */
  z-index: 4;
  background-color: #f1f2f4;
  border-bottom: 1px solid #d9d9d9;
}

/* ---- Nav Element ---- */
.school-nav {
  padding: 15px 0;
}

/* ---- Outer centering container ---- */
.school-nav__outer {
  max-width: 1710px;
  margin: 0 auto;
  padding: 0 42px;   /* Figma: content starts ~42px from frame edge */
}

/* ---- White pill container ---- */
.school-nav__pill {
  background-color: #ffffff;
  border-radius: 15px;

  display: flex;
  align-items: center;
  padding: 15px 20px;   /* Figma: inner content left offset ~69px from pill edge */
  overflow: hidden;
}

/* ---- Unordered list ---- */
.school-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
}

/* ---- Nav item (equal flex columns) ---- */
.school-nav__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Last item (Professor of practice) gets extra width like Figma's 238px column */
.school-nav__item--wide {
  flex: 1.6;
}

/* ---- Nav link ---- */
.school-nav__link {

  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  height: 48px;        /* Figma active pill height; same height for all for consistency */
  border-radius: 4px;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.school-nav__link:hover {
  color: #000;
  background-color: rgba(39, 33, 35, 0.07);
}

.school-nav__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ---- Active link (Figma: bg #272123, white text, bold) ---- */
.school-nav__link.is-active {
  background-color: #272123;
  color: #ffffff;
  font-weight: 700;
}

.school-nav__link.is-active:hover {
  background-color: #3d3538;
  color: #ffffff;
}


/* =====================================================
   SECTION 3: ABOUT SCHOOL
   ===================================================== */

/* ---- Section wrapper ---- */
.about-section {
  background-color: #ffffff;
  border-bottom: 1px solid #d9d9d9;
  padding: 60px 0;
}

/* ---- Left content block ---- */
.about-content {
  display: flex;
  flex-direction: column;
}

/* ---- Heading: mixed font-weights in one element ---- */
.about-title {

  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 28px 0;
  max-width: 527px;
}

.about-title__medium {
  font-weight: 400;
}

.about-title__bold {
  font-weight: 700;
}



/* ---- Description text ---- */
.about-desc {

  font-weight: 500;
  font-size: 16px;
  line-height: 28px;   /* Figma: leading-[28px] */
  color: #000000;
  margin: 0 0 40px 0;
  max-width: 668px;
}

/* ---- Social media block ---- */
.about-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-social__label {

  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #000000;
  margin: 0;
}

/* ---- Social icons list ---- */
.about-social__icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;           /* ~43px in Figma; adjusted for proportional spacing */
}

/* ---- Individual social icon link ---- */
.about-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f2f4;
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  transition: background-color var(--transition-base), color var(--transition-base);
  flex-shrink: 0;
}

.about-social__icon:hover {
  background-color: #272123;
  color: #ffffff;
}

.about-social__icon:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ---- Right image container ---- */
.about-image {
  max-width: 450px;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  border: 10px solid #000000;

}



/* =====================================================
   RESPONSIVE — SCHOOL NAV
   ===================================================== */

/* ---- Tablet (≤ 1199px): tighten pill padding ---- */
@media (max-width: 1199.98px) {
  .school-nav__outer {
    padding: 0 24px;
  }

  .school-nav__pill {
    padding: 0 24px;
  }

  .school-nav__link {
    font-size: 16px;
    padding: 0 10px;
  }
}

/* ---- Tablet (≤ 991px): horizontally scrollable nav ---- */
@media (max-width: 991.98px) {
  .school-nav {
    padding: 20px 0;
  }
  .hero-slider {
    padding-top: 20px;

  }


  .section-title { font-size: 25px; }
  .section-title br { display: none; }


  .school-nav__outer {
    padding: 0 16px;
  }

  .school-nav__pill {
    padding: 0 16px;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 16px;
    /* Hide scrollbar visually */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .school-nav__pill::-webkit-scrollbar {
    display: none;
  }

  .school-nav__list {
    height: 64px;
    width: max-content;
    flex: none;
    gap: 4px;
  }

  .school-nav__item,
  .school-nav__item--wide {
    flex: none;
  }

  .school-nav__link {
    font-size: 15px;
    padding: 0 14px;
    height: 42px;
  }
  .school-nav-wrapper {
  position: sticky;
  top: 50px;          /* Reserve 100px for primary nav above */
  z-index: 1020;
  background-color: #f1f2f4;
  border-bottom: 1px solid #d9d9d9;
}
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767.98px) {
  .school-nav-wrapper {
    top: 47px;   /* Adjust if primary nav is shorter on mobile */
  }

  .school-nav {
    padding: 12px 0;
  }

  .school-nav__pill {
    border-radius: 12px;
    height: auto;
  }

  .school-nav__list {
    height: 52px;
  }

  .school-nav__link {
    font-size: 14px;
    padding: 0 12px;
    height: 36px;
  }
}


/* =====================================================
   RESPONSIVE — ABOUT SECTION
   ===================================================== */

/* ---- Tablet (≤ 991px): stack image below content ---- */
@media (max-width: 991.98px) {
  .about-section {
    padding: 48px 0;
  }

  .about-title {
    font-size: 52px;
    max-width: 100%;
  }

  .about-image {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767.98px) {
  .about-section {
    padding: 40px 0;
  }

  .about-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .about-desc {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 28px;
  }

  .about-image {
    max-width: 320px;
  }
}



@media (max-width: 600px) {

  .hero-slider {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
/* ---- Small Mobile (≤ 479px) ---- */
@media (max-width: 479.98px) {
  .about-title {
    font-size: 30px;
  }

  .about-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .about-social__icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .about-image {
    max-width: 100%;
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .school-nav__link,
  .about-social__icon {
    transition: none;
  }
}


/* =====================================================
   SECTION 4: TOP COMPANIES / PLACEMENTS
   ===================================================== */

/* ---- Section wrapper ---- */
.placements-section {
  background-color: #ffffff;

  padding: 60px 0 60px;
}

/* ---- Section header ---- */
.placements-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Placements badge and title use default section-label and section-title styles */
/* No additional CSS needed */

/* =====================================================
   COUNTER CIRCLES
   Figma: 316×316px, border 1px solid #12121214, radius 50%
   Content: Teko Bold number + ABeeZee/Zilla Slab label
   ===================================================== */

/* ---- Row wrapper ---- */
.counter-row {
  margin-bottom: 56px;
}

/* ---- Circle shell ---- */
.counter-circle {
  border: 1px solid #12121214;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 316px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.counter-circle:hover {
  border-color: #272123;
  box-shadow: 0 0 0 3px rgba(39, 33, 35, 0.06);
}

/* ---- Inner text block (centred) ---- */
.counter-circle__inner {
  text-align: center;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ---- Counter number — Teko Bold 60px ---- */
.counter-num {

  font-weight: 900;
  font-size:35px;
  line-height: 1.2;
  color: #000;
  display: block;
  white-space: nowrap;
}

/* Salary variant: mixed fonts on same line */
.counter-num--salary {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}

/* ₹ prefix — Zilla Slab Bold, slightly smaller than the number */
.counter-num__rupee {

  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  color: #000;
}

/* 10.23 Lac portion — Teko Bold same size as other counters */
.counter-num__val {

  font-weight: 900;
  font-size: 35px;
  line-height: 1.2;
  color: #000;
}

/* ---- Label below the number ---- */
.counter-label {
  font-size: 20px;
  line-height: 1.2;
  color: #000;
  margin: 0;
  text-align: center;
}

.counter-label__top {

  font-weight: 600;
  display: block;
}

.counter-label__sub {

  font-weight: 300;
  display: block;
  font-size: 0.9em;
}

/* =====================================================
   LOGO GRID
   Figma: 5 cols × 2 rows, each cell 270×172px, border #12121214
   ===================================================== */

.logo-grid {
  border-top: 1px solid #12121214;
  border-left: 1px solid #12121214;
  border-radius: 4px;
  overflow: hidden;
}

/* ---- Each row of logos ---- */
.logo-grid__row {
  /* Use Bootstrap row-cols abstractions for responsive column count */
  display: flex;
  flex-wrap: wrap;
}

/* ---- Individual cell ---- */
.logo-cell {
  border-right: 1px solid #12121214;
  border-bottom: 1px solid #12121214;
  height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  min-width: 0;
  transition: background-color var(--transition-base);
}

.logo-cell:hover {
  background-color: #f8f9fa;
}

/* ---- Logo image: centred, contained, greyscale → colour on hover ---- */
.logo-img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 30px;         /* Proportional to Figma cell */
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition-base), transform var(--transition-base);
  margin: 0 auto;
}

.logo-cell:hover .logo-img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* =====================================================
   RESPONSIVE — PLACEMENTS SECTION
   ===================================================== */

/* ---- Large ≤ 1199px ---- */
@media (max-width: 1199.98px) {
  .placements-title {
    font-size: 52px;
  }

  .counter-circle {
    max-width: 270px;
  }

  .logo-cell {
    height: 140px;
    padding: 20px 16px;
  }
}

/* ---- Tablet ≤ 991px ---- */
@media (max-width: 991.98px) {
  .placements-section {
    padding: 48px 0 56px;
  }

  .placements-title {
    font-size: 40px;
  }

  .counter-circle {
    max-width: 220px;
  }

  .counter-label {
    font-size: 16px;
  }

  .logo-grid__row {
    flex-wrap: wrap;
  }

  .logo-cell {
    /* Leave final sizing to row-cols-* rules in HTML */
    height: 120px;
    padding: 16px 12px;
  }
}

/* ---- Mobile ≤ 767px ---- */
@media (max-width: 767.98px) {
  .placements-section {
    padding: 40px 0 48px;
  }


  .placements-badge {
    text-align: center;
  }

  .placements-title {
    font-size: 30px;
  }

  .counter-row {
    margin-bottom: 36px;
  }

  .counter-circle {
    max-width: 160px;
  }

  .counter-num {
    font-size: 20px;
  }

  .counter-num__rupee {
    font-size: 20px;
  }

  .counter-num__val {
    font-size: 20px;
  }

  .counter-label {
    font-size: 13px;
  }

  /* 2 logos per row on mobile */
  .logo-cell {
    flex: 0 0 50%;
    height: 120px;
    padding: 12px 10px;
  }

 .logo-cell img {
    max-width: 130px;
  }
}

/* ---- Small mobile ≤ 479px ---- */
@media (max-width: 479.98px) {
  .placements-title {
    font-size: 26px;
  }

  .counter-circle {
    max-width: 145px;
  }

  .counter-num {
    font-size: 20px;
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .counter-circle,
  .logo-cell,
  .logo-img {
    transition: none;
  }
}


/* =====================================================
   SECTION 5: TESTIMONIALS
   Figma: bg #fff8f2, py-80px, Plus Jakarta Sans cards
   ===================================================== */

/* ---- Section wrapper ---- */
.testimonial-section {
  background-color: #FFF8F2;    /* Figma: bg-[#fff8f2] */
  padding: 60px 0;

  overflow: hidden;             /* keeps slider arrows in-bounds */
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.testimonial-header {
  margin-bottom: 48px;
}

/* Testimonial badge and title use default section-label and section-title styles */
/* .testimonial-title has text-align: center override below */

/* Large heading — Zilla Slab Bold 64px (Figma) */
.testimonial-title {
  text-align: center;
}

/* =====================================================
   SLIDER WRAPPER + SLICK ARROW CUSTOMISATION
   ===================================================== */
.testimonial-slider-wrap {
  position: relative;
}





/* =====================================================
   TESTIMONIAL SLIDE (outer padded wrapper per slide)
   ===================================================== */
.testimonial-slide {
  padding: 0 12px;          /* gap between cards */
}

/* =====================================================
   TESTIMONIAL CARD
   Equal-height via flex column + fixed body height.
   NO yellow background — clean white card.
   ===================================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
    height: 100%;             /* stretch to match tallest card in row */

}


/* ---- Photo area -------------------------------------------------- */
.testimonial-card__photo {
  width: 100%;

  flex-shrink: 0;
  overflow: hidden;

  position: relative;
}

.testimonial-card__photo-img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 15px;
}



/* ---- Body: FIXED HEIGHT for equal-card alignment ---------------- */
/* Figma: h-[138.582px] for the text block */
.testimonial-card__body {

  min-height: 150px;            /* fixed — all cards same height regardless of text */
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__text {

  font-weight: 400;
   font-size: 15px;
    line-height: 28px;         /* Figma: leading-[1.3] */
  color: #000;
  margin: 0;
  padding-top: 15px;
  /* Clamp to 8 lines so text never overflows the fixed box */
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Footer: name + degree always at BOTTOM --------------------- */
.testimonial-card__footer {
  margin-top: auto;         /* pushes footer to card bottom */
  padding: 16px 0px;

}

/* Student name — Plus Jakarta Sans Bold 15px */
.testimonial-card__name {

  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  margin: 0 0 4px;
}

/* Degree — Plus Jakarta Sans Medium 11px */
.testimonial-card__degree {

  font-weight: 500;
  font-size: 11px;
  line-height: 1.3;
  color: #555;
  margin: 0;
}

/* =====================================================
   RESPONSIVE — TESTIMONIAL SECTION
   ===================================================== */

/* ---- Tablet ≤ 1199px ---- */
@media (max-width: 1199.98px) {
  .testimonial-section {
    padding: 64px 0;
  }


}

/* ---- Tablet ≤ 991px ---- */
@media (max-width: 991.98px) {
  .testimonial-section {
    padding: 56px 0;
  }

  .testimonial-header {
    margin-bottom: 36px;
  }




}

/* ---- Mobile ≤ 767px ---- */
@media (max-width: 767.98px) {
  .testimonial-section {
    padding: 48px 0 56px;
  }

  .testimonial-slide {
    padding: 0 8px;
  }



  .testimonial-card__footer {
    padding: 12px 0px;
  }

  .testimonial-slider-wrap .slick-prev {
    left: -4px;
  }

  .testimonial-slider-wrap .slick-next {
    right: -4px;
  }
}

/* ---- Small mobile ≤ 479px ---- */
@media (max-width: 479.98px) {




}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .testimonial-card__photo-img {
    transition: none;
    transform: none;
  }
}


/* =====================================================
   SECTION 6: RANKINGS
   Figma: white section · black outer frame · white inner
   panel · large heading · yellow circle button · gray cards
   ===================================================== */

/* ---- Section wrapper ---- */
.ranking-section {
  background-color: #ffffff;
  border-bottom: 1px solid #d9d9d9;
  padding: 60px 0;
}

/* ── Outer black rounded frame ──────────────────────────
   Figma: bg-black, border-radius 24px
   Inner white box offset: 43px horizontal, 48px vertical
───────────────────────────────────────────────────────── */
.ranking-frame {
  background-color: #000000;
  border-radius: 24px;
  padding: 25px;
}

/* ── Inner white content panel ──────────────────────────
   Figma: bg-white, border-radius 24px, inner padding ~35px 43px
───────────────────────────────────────────────────────── */
.ranking-inner {
  background-color: #ffffff;
  border-radius: 20px;          /* slightly smaller than outer = nested effect */
  padding: 35px 43px 48px;

  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* =====================================================
   HEADER ROW: badge · title · circle button
   ===================================================== */
.ranking-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
}

/* Left badge — "Rankings" label (extends section-label with unique properties) */
.ranking-badge {

  white-space: nowrap;
  padding-top: 8px;       /* align with top of title text */
  min-width: 90px;
  flex-shrink: 0;
}

/* Centre heading — Zilla Slab Bold (extends section-title for ranking layout) */
.ranking-title {
  flex: 1;
  max-width: 680px;
}

/* ── Yellow circular "View Rankings" button ─────────────
   Figma: imgEllipse98 (182×182px yellow circle) + Zilla Slab text
   Implemented in pure CSS — no image asset needed.
───────────────────────────────────────────────────────── */
.ranking-btn-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--color-accent);   /* #fecd46 */
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #000;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
  cursor: pointer;
  align-self: flex-start;
}

.ranking-btn-circle:hover,
.ranking-btn-circle:focus-visible {
  background-color: #e6b830;
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(254, 205, 70, 0.45);
  color: #000;
}

.ranking-btn-circle:focus-visible {
  outline: 3px solid #272123;
  outline-offset: 3px;
}

/* =====================================================
   RANKING CARDS SLIDER
   Figma: bg #d9d9d9, border-radius 25px, 333×273px per card
   ===================================================== */

/* Slide outer padding (gap between cards) */
.ranking-slide {
  padding: 0 10px;
}

/* ---- Card shell ---- */
.ranking-card {
  background-color: #d9d9d9;
  border-radius: 25px;
  padding: 22px 28px 24px;
  height: 273px;
  display: flex;
  flex-direction: column;
  transition: background-color var(--transition-base),
              transform var(--transition-base);
  overflow: hidden;
}

.ranking-card:hover {
  background-color: #c8c8c8;
  transform: translateY(-3px);
}

/* ---- Logo area: Figma 138×47px ---- */
.ranking-card__logo-wrap {
  margin-bottom: 20px;
  flex-shrink: 0;
}

.ranking-card__logo {
  height: 70px;
  width: auto;
  max-width: 138px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* ---- Rank number row: "4 TH" ---- */
.ranking-card__rank-wrap {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: 8px;
}

/* Main rank number — Teko Bold 100px */
.ranking-card__num {

  font-weight: 900;
  font-size: 65px;
  line-height: 0.85;       /* pull it up to match Figma vertical rhythm */
  color: #000;
  display: block;
}

/* Ordinal suffix "TH" — Teko Bold 20px, superscript position */
.ranking-card__sup {
 display: none;
}

/* ---- Description — Plus Jakarta Sans Medium 16px lh 22px ---- */
.ranking-card__desc {

  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin: auto 0 0;        /* push to bottom of flex column */
}

/* ---- Slick overrides inside ranking section ---- */
.ranking-cards-slider .slick-prev,
.ranking-cards-slider .slick-next {
  z-index: 5;
  width: 36px;
  height: 36px;
  background-color: #000;
  border-radius: 50%;
}

.ranking-cards-slider .slick-prev {
  left: -18px;
}

.ranking-cards-slider .slick-next {
  right: -18px;
}

.ranking-cards-slider .slick-prev::before,
.ranking-cards-slider .slick-next::before {
  font-size: 16px;
  color: #fff;
  opacity: 1;
}

.ranking-cards-slider .slick-prev:hover,
.ranking-cards-slider .slick-next:hover {
  background-color: var(--color-accent);
}

.ranking-cards-slider .slick-prev:hover::before,
.ranking-cards-slider .slick-next:hover::before {
  color: #000;
}

/* =====================================================
   RESPONSIVE — RANKING SECTION
   ===================================================== */

/* ---- ≤ 1199px ---- */
@media (max-width: 1199.98px) {
  .ranking-frame {
    padding: 36px 32px;
  }

  .ranking-inner {
    padding: 28px 32px 40px;
    min-height: auto;
  }

  .ranking-btn-circle {
    width: 120px;
    height: 120px;
    font-size: 15px;
  }

  .ranking-card {
    height: 240px;
  }

  .ranking-card__num {
    font-size: 80px;
  }
}

/* ---- Tablet ≤ 991px ---- */
@media (max-width: 991.98px) {
  .ranking-section {
    padding: 48px 0;
  }

  .ranking-frame {
    padding: 24px 20px;
  }

  .ranking-inner {
    padding: 24px 24px 36px;
    gap: 24px;
  }

  .ranking-header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .ranking-badge {
    width: 100%;
    padding-top: 0;
  }

  .ranking-title {

    max-width: 100%;
    order: 2;
  }

  .ranking-btn-circle {
    order: 1;
    margin-left: auto;
  }

  .ranking-card {
    height: 240px;
  }

  .ranking-card__num {
    font-size: 72px;
  }

  .ranking-card__desc {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ---- Mobile ≤ 767px ---- */
@media (max-width: 767.98px) {
  .ranking-section {
    padding: 36px 0;
  }

  .ranking-frame {
    padding: 16px 14px;
  }

  .ranking-inner {
    padding: 20px 18px 28px;
    gap: 20px;
  }

  .ranking-title {
    font-size: 25px !important;
  }

  .ranking-btn-circle {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }

  .ranking-card {
    height: 220px;
    padding: 18px 20px;
  }

  .ranking-card__num {
    font-size: 50px;
  }

  .ranking-card__logo {
    height: 60px;
  }

  .ranking-slide {
    padding: 0 8px;
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .ranking-card,
  .ranking-btn-circle {
    transition: none;
    transform: none;
  }
}


/* =====================================================
   SECTION 8: RESEARCH
   Figma: white bg, border-bottom #f2f2f2 1.5px, py-60px
   LEFT:  heading + yellow circle btn + 2×2 stat cards
   RIGHT: Slick slider (photo 522px + caption 167px = 689px)
   ===================================================== */

.school-heading{
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #000;
    margin: 0;
  }

/* ---- Section wrapper ---- */
.research-section {
  background-color: #fff8f2;
  border-bottom: 1.5px solid #f2f2f2;
  padding: 60px 0;
}

/* ---- Row: stretch so both columns match height ---- */
.research-row {
  align-items: stretch;
}

/* =====================================================
   LEFT COLUMN
   ===================================================== */
.research-left {
  display: flex;
  flex-direction: column;
  padding-right: 48px;

}

/* Top area: heading + search button side-by-side */
.research-left__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;

}

.research-title__medium {
  font-weight: 500;
  display: block;
}

.research-title__bold {
  font-weight: 700;
  display: block;
}

/* ── Yellow circular "Research / Search" button ─────────
   Figma: same imgEllipse98 (182×182px) + Zilla Slab Bold 16px
   Clicking redirects to the search/research page.
───────────────────────────────────────────────────────── */
.research-btn-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--color-accent);    /* #fecd46 */
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #000;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.research-btn-circle:hover,
.research-btn-circle:focus-visible {
  background-color: #e6b830;
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(254, 205, 70, 0.45);
  color: #000;
}

.research-btn-circle:focus-visible {
  outline: 3px solid #272123;
  outline-offset: 3px;
}

/* ── 2×2 Stat cards grid ─────────────────────────────── */


/* ---- Individual stat card ----
   Figma: bg #d9d9d9, border-radius 24px, 352×210px */
.research-stat-card {
  background-color: #d9d9d9;
  border-radius: 24px;
  padding: 24px 28px 20px;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;   /* number at top, label at bottom */
  transition: background-color var(--transition-base);
  align-items: center;
}

.research-stat-card:hover {
  background-color: #cacaca;
}

/* ---- Count row: number + "+" ---- */
.research-stat-card__count {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 8px;

}

/* Main number — Anton Regular 80px (Figma: font-['Anton:Regular']) */
.research-stat-card__num {

  font-weight: 900;             /* Anton has only Regular weight */
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1;
  color: #000;
  display: block;
}

/* "+" suffix — Anton Regular 64.5px, top-aligned */
.research-stat-card__plus {

  font-weight: 400;
  font-size: clamp(38px, 2.5vw, 50px);
  line-height: 1;
  color: #000;
  margin-top: 8px;              /* Figma: mt-[20px] slight drop from number top */
  display: block;
}

/* Label — Plus Jakarta Sans SemiBold 18px */
.research-stat-card__label {

  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  margin: 0;
  text-align: center;
}

/* =====================================================
   RIGHT COLUMN — RESEARCH SLIDER
   Figma: photo 522px (rounded top) + black bar 167px (rounded bottom)
   Total: 689px — matches left column min-height
   ===================================================== */
.research-right {
  display: flex;
  flex-direction: column;
}

/* Wrapper keeps the fixed total height */
.research-slider-wrap {
  flex: 1;

  border-radius: 24px;
  overflow: hidden;
  /* Propagate height through Slick DOM layers */
}

/* Force Slick internals to fill 100% height */
.research-slider,
.research-slider .slick-list,
.research-slider .slick-track {
  height: 100%;
}

.research-slider .slick-slide {
  height: auto;
}

.research-slider .slick-slide > div {
  height: 100%;
}

/* ---- Individual slide ---- */
.research-slide {
  display: flex !important;   /* override Slick's block display */
  flex-direction: column;

}

/* ---- Photo area (top rounded) ----
   Figma: border-2 border-[#d9d9d9], rounded-tl/tr-[24px], height 522px */
.research-slide__photo {
  flex: 1;                      /* fills all space above the caption */
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-bottom: none;
  border-radius: 15px 15px 0 0;
  position: relative;
  background-color: #e9ecef;   /* fallback while image loads */

}

.research-slide__img {
  width: 100%;
  height: auto;

  display: block;
  transition: transform 0.6s ease;
}

.research-slide:hover .research-slide__img {
  transform: scale(1.04);
}

/* ---- Caption bar (bottom, black) ----
   Figma: bg-black, rounded-bl/br-[24px], height 167px */
.research-slide__caption {
  height: var(--research-caption-h);
  flex-shrink: 0;
  background-color: #000;
  border-radius: 0 0 15px 15px;
  padding: 20px;    /* Figma: ml-840 (66px) from card left edge */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

/* Title — Plus Jakarta Sans Bold 20px white */
.research-slide__title {

  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

/* Description — Plus Jakarta Sans Medium 16px white, lh 1.35 */
.research-slide__desc {

  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
  /* Clamp to 3 lines to prevent overflow in 167px bar */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Slick arrows inside research slider ---- */
.research-slider-wrap .slick-prev,
.research-slider-wrap .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  /* Position arrows within the photo area, not over caption */
  top: calc(var(--research-photo-h) / 2);
  transform: translateY(-50%);
  transition: background-color var(--transition-base);
}

.research-slider-wrap .slick-prev {
  left: 16px;
}

.research-slider-wrap .slick-next {
  right: 16px;
}

.research-slider-wrap .slick-prev:hover,
.research-slider-wrap .slick-next:hover {
  background-color: var(--color-accent);
}

.research-slider-wrap .slick-prev::before,
.research-slider-wrap .slick-next::before {
  font-size: 18px;
  color: #fff;
  opacity: 1;
}

.research-slider-wrap .slick-prev:hover::before,
.research-slider-wrap .slick-next:hover::before {
  color: #000;
}

/* Dots — white dots over the photo area */
.research-slider-wrap .slick-dots {
  bottom: calc(var(--research-caption-h) + 16px);
}

.research-slider-wrap .slick-dots li button::before {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.research-slider-wrap .slick-dots li.slick-active button::before {
  color: var(--color-accent);
  opacity: 1;
}

/* =====================================================
   RESPONSIVE — RESEARCH SECTION
   ===================================================== */

/* ---- ≤ 1199px ---- */
@media (max-width: 1199.98px) {
  :root {

    --research-caption-h: 150px;
    --research-photo-h:   430px;
  }

  .research-left {
    padding-right: 32px;

  }

  .research-btn-circle {
    width: 120px;
    height: 120px;
    font-size: 15px;
  }

  .research-stat-card {
    height: 180px;
    padding: 20px 22px 18px;
  }

  .research-slide__caption {
    padding: 18px 24px;
  }
}

/* ---- Tablet ≤ 991px: stack columns ---- */
@media (max-width: 991.98px) {
  :root {
    --research-slider-h:  520px;
    --research-caption-h: 140px;
    --research-photo-h:   380px;
  }

  .research-section {
    padding: 48px 0;
  }

  .research-left {
    padding-right: 0;
    padding-bottom: 40px;
    min-height: unset;
  }



  .research-stat-card {
    height: 160px;
    padding: 18px 20px 16px;
  }

  .research-stat-card__num {
    font-size: 56px;
  }

  .research-stat-card__plus {
    font-size: 44px;
  }

  .research-stat-card__label {
    font-size: 15px;
  }

  .research-slider-wrap {

    border-radius: 20px;
  }



  .research-slide__caption {
    padding: 16px 24px;
  }

  .research-slide__title {
    font-size: 18px;
  }

  .research-slide__desc {
    font-size: 14px;
  }
}

/* ---- Mobile ≤ 767px ---- */
@media (max-width: 767.98px) {
  :root {
    --research-slider-h:  440px;
    --research-caption-h: 130px;
    --research-photo-h:   310px;
  }

  .research-section {
    padding: 40px 0;
  }

  .research-title {
    font-size: 30px;
  }

  .research-btn-circle {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }

  .research-stat-card {
    height: 140px;
    padding: 14px 16px 14px;
    border-radius: 16px;
  }

  .research-stat-card__num {
    font-size: 44px;
  }

  .research-stat-card__plus {
    font-size: 36px;
    margin-top: 6px;
  }

  .research-stat-card__label {
    font-size: 13px;
  }

  .research-slide__caption {
    padding: 14px 20px;
  }

  .research-slide__title {
    font-size: 16px;
  }

  .research-slide__desc {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}

/* ---- Small mobile ≤ 479px ---- */
@media (max-width: 479.98px) {
  .research-stat-card__num {
    font-size: 38px;
  }

  .research-stat-card__plus {
    font-size: 30px;
  }

  .research-stat-card__label {
    font-size: 12px;
  }

}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .research-stat-card,
  .research-btn-circle,
  .research-slide__img {
    transition: none;
    transform: none;
  }
}


/* =====================================================
   SECTION 9 — DEAN'S MESSAGE
   ===================================================== */

/* ---- Section shell ---- */
.dean-section {
  background-color: #f1f2f4;
  padding: 60px 0;
}

/* ---- Photo frame (cream rounded card) ---- */
.dean-photo-frame {


  overflow: hidden;
  display: flex;
  align-items: flex-end;


}

.dean-photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 310px;
  object-fit: cover;
  border-radius: 16px;
}

/* ---- Dean name / title below photo ---- */
.dean-identity {
  padding-left: 4px;
}

.dean-identity__name {

  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 2px;
}

.dean-identity__title {

  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 30px;
}

/* ---- Heading: "Message from the Dean" (extends section-title) ---- */
.dean-heading {
  margin-bottom: 24px;
}

.dean-heading strong {
  font-weight: 700;
}

.dean-heading em {
  font-weight: 500;
}



/* ---- Dean message paragraph ---- */
.dean-message-text {

  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #000;
  margin-bottom: 32px;
}

/* ---- Accordion wrapper ---- */
.dean-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- Individual accordion card ---- */
.dean-accordion__item {
  background-color: #fff;
  border: 1px solid #b6c2e2;
  border-radius: 10px;
  overflow: hidden;
}

/* Remove h3 default margin */
.dean-accordion__heading {
  margin: 0;
}

/* ---- Accordion trigger button ---- */
.dean-accordion__btn {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}

.dean-accordion__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  border-radius: 10px;
}

/* ---- Yellow icon square ---- */
.dean-accordion__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: var(--color-accent);
  border-radius: 6px;
  padding: 6px;
  color: #000;
  font-size: 14px;
  line-height: 1;
}

/* ---- Accordion label text ---- */
.dean-accordion__label {

  font-weight: 500;
  font-size: 16px;
  color: #11151f;
  flex: 1;
}

/* ---- Chevron arrow ---- */
.dean-accordion__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  border-left:   5px solid transparent;
  border-right:  5px solid transparent;
  border-top:    7px solid #445275;
  transition: transform var(--transition-base);
}

/* Rotate chevron when expanded */
.dean-accordion__btn[aria-expanded="true"] .dean-accordion__chevron {
  transform: rotate(180deg);
}

/* ---- Accordion body ---- */
.dean-accordion__body {
  padding: 0 16px 16px 61px; /* indent to align with label text (16 + 32 icon + 13 gap) */

  font-size: 15px;
  line-height: 1.6;
  color: #445275;
}

.dean-accordion__body p:last-child {
  margin-bottom: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .dean-section {
    padding: 48px 0;
  }

  .dean-photo-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .dean-identity {
    text-align: center;
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  .dean-heading {
    font-size: 28px;
  }

  .dean-photo-frame {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dean-accordion__chevron {
    transition: none;
  }
}


/* =====================================================
   SECTION 10 — FACULTY
   ===================================================== */

/* ---- Section shell ---- */
.faculty-section {
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
  padding: 60px 0;
}

/* ---- Yellow rounded frame ---- */
.faculty-frame {
  background-color: var(--color-accent);
  border-radius: 24px;
  padding: 44px 40px 52px;
  position: relative;
}

/* ---- Header row ---- */
.faculty-frame__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.faculty-frame__label {

  white-space: nowrap;
  padding-top: 10px;   /* visually align with heading cap height */
}

.faculty-heading {
  flex: 1;
  text-align: center;
}

/* ---- Slider wrapper ---- */
.faculty-slider-wrap {
  position: relative;
}

/* ---- Equal-height slick track ---- */
.faculty-slider .slick-track {
  display: flex !important;
}

.faculty-slider .slick-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column;
  padding: 0 10px;
  box-sizing: border-box;
}

.faculty-slider .slick-slide > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Gap between cards in faculty.js-generated slider */
.school-faculty-slider .slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

/* ---- Individual slide ---- */
.faculty-slide {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

/* ---- Faculty card ---- */
.faculty-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
  padding: 24px;
}

/* ---- Photo frame ---- */
.faculty-card__photo-wrap {
  background-color: #f0e9d8;    /* same warm cream as dean photo */
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 310 / 328;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.faculty-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---- Card body (grows to fill, ensures equal height) ---- */
.faculty-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 16px;
}

.faculty-card__desc {

  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: #000;
  flex: 1;           /* pushes name/role to bottom */
  margin-bottom: 12px;
}

.faculty-card__name {

  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 2px;
}

.faculty-card__role {

  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 0;
}

/* ---- Slick dots — positioned below cards, inside frame ---- */
.faculty-slider .slick-dots {
  position: static;
  margin-top: 28px;
  display: flex !important;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
}

.faculty-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.faculty-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  padding: 0;
  font-size: 0;
  transition: background-color var(--transition-base), width var(--transition-base);
}

.faculty-slider .slick-dots li button::before {
  display: none;  /* remove default slick dot char */
}

.faculty-slider .slick-dots li.slick-active button {
  background-color: #000;
  width: 24px;
  border-radius: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
  .faculty-frame {
    padding: 40px 32px 48px;
  }
}

@media (max-width: 991.98px) {
  .faculty-frame__header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .faculty-frame__label {
    padding-top: 0;
  }
}

@media (max-width: 575.98px) {
  .faculty-section {
    padding: 40px 0;
  }

  .faculty-frame {
    padding: 32px 20px 40px;
    border-radius: 16px;
  }

  .faculty-slider .slick-slide {
    padding: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faculty-card__photo-wrap,
  .faculty-slider .slick-dots li button {
    transition: none;
  }
}


/* =====================================================
   SECTION 11 — DISCOVER PROGRAMMES
   ===================================================== */

/* ---- Section shell ---- */
.programmes-section {
  background-color: #fff;
  padding: 60px 0;
}

/* ---- Header row ---- */
.programmes-header-row {
  margin-bottom: 48px;
  align-items: flex-start;
}

.programmes-label {

  display: block;
  padding-top: 8px;
}

.programmes-heading {
  font-style: normal;
  margin-bottom: 20px;
}

.programmes-desc {

  font-weight: 500;
  font-size: 16px;
  line-height: 1.36;
  color: #000;
  margin-bottom: 0;
  max-width: 985px;
}

/* =====================================================
   DESKTOP TABS
   ===================================================== */

/* ---- Tab nav list ---- */
.programmes-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: flex-end;
}

.programmes-tab-nav__item {
  display: flex;
}

/* ---- Tab button base ---- */
.programmes-tab-btn {

  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: #717171;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 10px 25px;
  height: 61px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  position: relative;
  bottom: -1px;        /* overlap the panel top border */
}

.programmes-tab-btn:hover {
  color: #000;
  border-color: #999;
}

.programmes-tab-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ---- Active tab ---- */
.programmes-tab-btn.active {
  font-weight: 700;
  color: #000;
  background-color: var(--color-accent);
  border-color: #000;
  z-index: 1;
}

/* ---- Tab content wrapper ---- */
.programmes-tab-content {
  border: 1px solid #000;
  border-radius: 0 4px 4px 4px;
  background-color: #eee;
  min-height: 196px;
  position: relative;
  z-index: 0;
}

/* ---- Individual tab pane ---- */
.programmes-tab-pane {
  padding: 32px 63px;
}

/* =====================================================
   PROGRAMME GROUPS (shared by tabs + accordion)
   ===================================================== */

.prog-group {
  margin-bottom: 32px;
}

.prog-group:last-child {
  margin-bottom: 0;
}

/* ---- Group heading ---- */
.prog-group__heading {

  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: #080708;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---- Divider line ---- */
.prog-group__divider {
  border: none;
  border-top: 1px solid #12121214;
  margin: 0 0 20px;
  opacity: 1;
}

/* ---- 2-column card grid ---- */
.prog-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- Programme card ---- */
.prog-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  padding: 16px;
  border-radius: 4px;
}

/* ---- Yellow bullet icon ---- */
.prog-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.prog-card__icon::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

/* ---- Programme name ---- */
.prog-card__name {

  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #11151f;
}

.prog-empty {

  font-size: 14px;
  color: #717171;
  font-style: italic;
  margin: 0;
}

/* =====================================================
   MOBILE ACCORDION
   ===================================================== */

.programmes-accordion {
  display: flex;
  flex-direction: column;
}

.programmes-accordion__item {
  border: 1px solid #d4d4d4;
  border-top: none;
}

.programmes-accordion__item:first-child {
  border-top: 1px solid #d4d4d4;
  border-radius: 6px 6px 0 0;
}

.programmes-accordion__item:last-child {
  border-radius: 0 0 6px 6px;
}

.programmes-accordion__heading {
  margin: 0;
}

.programmes-accordion__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 16px 20px;

  font-weight: 700;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background-color var(--transition-base);
}

.programmes-accordion__btn[aria-expanded="true"] {
  background-color: var(--color-accent);
}

.programmes-accordion__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

/* Chevron */
.programmes-accordion__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  border-left:  5px solid transparent;
  border-right: 5px solid transparent;
  border-top:   7px solid #000;
  transition: transform var(--transition-base);
}

.programmes-accordion__btn[aria-expanded="true"] .programmes-accordion__chevron {
  transform: rotate(180deg);
}

.programmes-accordion__body {
  background-color: #eee;
  padding: 24px 20px;
  border-top: 1px solid #d4d4d4;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .programmes-section {
    padding: 60px 0;
  }

  .programmes-label {
    padding-top: 0;
    margin-bottom: 12px;
  }

  .programmes-tab-pane {
    padding: 24px 32px;
  }
}

@media (max-width: 767.98px) {
  .programmes-section {
    padding: 48px 0;
  }

  .programmes-header-row {
    margin-bottom: 32px;
  }
}

@media (max-width: 575.98px) {
  .prog-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .programmes-tab-btn,
  .programmes-accordion__btn,
  .programmes-accordion__chevron {
    transition: none;
  }
}



/* =====================================================
   SECTION 12 - ALUMNI TESTIMONIALS
   ===================================================== */

.alumni-section {
  background-color: #f1f2f4;
  padding: 60px 0;
}

.alumni-label {
  display: block;
  margin-bottom: 24px;
}

.alumni-thumbs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alumni-thumb {
  display: block;
  width: 65px !important;
  height: 65px !important;
  min-width: 65px;
  max-width: 65px;
  border-radius: 50%;
  border: 3px solid transparent;
  padding: 2px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition-base), transform var(--transition-base);
  overflow: hidden;
}

.alumni-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
  flex-shrink: 0;
}

.alumni-thumb:hover {
  border-color: rgba(254, 205, 70, 0.6);
  transform: scale(1.05);
}

.alumni-thumb.is-active {
  border-color: var(--color-accent);
}

.alumni-thumb:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.alumni-heading {
  font-style: normal;
  margin-bottom: 20px;
}

.alumni-content {
  transition: opacity 0.25s ease;
}

.alumni-content.is-fading {
  opacity: 0;
}

.alumni-quote {

  font-weight: 400;
  font-size: 16px;
  line-height: 1.36;
  color: #000;
  margin-bottom: 28px;
}

.alumni-identity {
  margin-bottom: 24px;
}

.alumni-name {

  font-weight: 700;
  font-size: 16px;
  line-height: 1.36;
  color: #000;
  margin-bottom: 2px;
}

.alumni-batch,
.alumni-company {

  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 1.36;
  color: #000;
  margin-bottom: 0;
}

.alumni-tag {
  display: inline-block;
  background-color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  padding: 6px 12px;
}

.alumni-photo-wrap {
  transition: opacity 0.25s ease;
}

.alumni-photo-wrap.is-fading {
  opacity: 0;
}

.alumni-photo {
  display: block;
  width: 100%;
  height: auto;

  border-radius: 15px;
  border: 1px solid #f2f2f2;
}

@media (max-width: 1199.98px) {
  .alumni-heading {
    font-size: 52px;
  }
}

@media (max-width: 991.98px) {
  .alumni-heading {
    font-size: 40px;
    margin-bottom: 28px;
  }
  .alumni-label {
    margin-bottom: 16px;
  }

}

@media (max-width: 767.98px) {
  .alumni-thumbs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .alumni-section {
    padding: 48px 0;
  }
  .alumni-heading {
    font-size: 30px;
  }


}

/* ── Hero Background Video ── */
.hero-slide__bg--video {
  background: #000;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Gradient overlay – left-to-right */
.hero-slide__bg--video .hero-slide__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 10%,
    rgba(0, 0, 0, 0.60) 18%,
    rgba(0, 0, 0, 0.25) 25%,
    transparent 50%
  );
}

/* ── Below 1024px: hide video, show fallback image ── */
@media (max-width: 1023px) {
  .hero-video-bg {
    display: none;
  }

  .hero-slide__bg--video {
    background-size: cover;
    background-position: center;
  }
}

@media (min-width: 1024px) {
  .showin-mobile {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alumni-thumb,
  .alumni-content,
  .alumni-photo-wrap {
    transition: none;
  }
}

/* ---- Alumni Thumbs — Desktop vertical / Mobile Slick ---- */

/* Desktop vertical: override flex, inner wrapper handles layout */
.alumni-thumbs.is-vert {
  display: block;
}

.alumni-thumbs-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;
}

/* Custom up/down scroll arrows (desktop only) */
.alumni-vert-arrow {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
margin: 6px 0 6px calc((65px - 28px) / 2);
  padding: 0;
  transition: opacity var(--transition-base);
}

.alumni-vert-arrow i {
  font-size: 11px;
  color: #000;
  line-height: 1;
  pointer-events: none;
}

.alumni-vert-arrow:hover { opacity: 0.75; }

.alumni-vert-arrow.is-disabled { opacity: 0.4; }

/* Mobile Slick: switch from flex to block, room for arrows */
.alumni-thumbs.slick-initialized {
  display: block;
  padding-left: 40px;
  padding-right: 40px;
}

/* Ensure slick list and track never collapse to 0 height */
.alumni-thumbs .slick-list,
.alumni-thumbs .slick-track {
  min-height: 65px;
}

/* Slick inner wrapper — explicit height so overflow:hidden on .slick-list never clips */
.alumni-thumbs .slick-slide > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65px;
}

/* Slide gap */
.alumni-thumbs .slick-slide {
  padding: 0px;
  height: 65px !important;
}

/* Slick left/right arrows */
.alumni-thumbs .slick-prev,
.alumni-thumbs .slick-next {
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  border-radius: 50%;
  z-index: 10;
  transition: opacity var(--transition-base);
}

.alumni-thumbs .slick-prev:hover,
.alumni-thumbs .slick-next:hover { opacity: 0.75; }

.alumni-thumbs .slick-prev:before,
.alumni-thumbs .slick-next:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: #000;
  opacity: 1;
}

.alumni-thumbs .slick-prev         { left: 2px; }
.alumni-thumbs .slick-prev:before  { content: '\f053'; }
.alumni-thumbs .slick-next         { right: 2px; left: auto; }
.alumni-thumbs .slick-next:before  { content: '\f054'; }

/* Keep Slick arrows visible always (infinite loop — never truly disabled) */
.alumni-thumbs .slick-disabled { opacity: 0.4; }


/* =====================================================
   SECTION 13 - FAQ
   ===================================================== */

.faq-section {
  background-color: #fff;
  padding: 60px 0;
}

.faq-layout {
  justify-content: center;
}



.faq-label {
  display: inline-block;

  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background-color: var(--color-accent);
  padding: 4px 10px;
  margin-bottom: 20px;
}


.faq-item {
  border-bottom: 1px solid #d9d9d9;
}

.faq-item:first-child {
  border-top: 1px solid #d9d9d9;
}

.faq-item__heading {
  margin: 0;
}

.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;

  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-base);
}

.faq-item__btn:hover {
  color: #333;
}

.faq-item__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-item__icon::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
  transition: background-color var(--transition-base);
}

.faq-item__icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item__btn[aria-expanded='true'] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__btn[aria-expanded='true'] .faq-item__icon::before,
.faq-item__btn[aria-expanded='true'] .faq-item__icon::after {
  background-color: var(--color-accent);
}

.faq-item__body {
  padding: 0 32px 24px 0;

  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.faq-item__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-header-col {
    position: static;
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .faq-section {
    padding: 48px 0;
  }
  .faq-item__btn {
    font-size: 15px;
    padding: 16px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__icon::after,
  .faq-item__btn {
    transition: none;
  }
}





/* ---- Section shell ---- */
.events-section {
  background-color: #000;
  padding-bottom: 60px;
}

.events-section__header {
  position: sticky;
  top: 150px;
  z-index: 3;
  background-color: #000;
  padding: 60px 0;
}

.events-label {
  display: block;
  color: #fff;
  margin-bottom: 28px;
}

.events-heading {

  color: #fff;

  margin-bottom: 20px;
}

/* ---- Stacking container ---- */
.events-stack {
  position: relative;
  /* Natural height = sum of all 100vh sticky cards; browser calculates automatically */
}

/* ---- Individual event card (full-viewport sticky panel) ---- */
.event-card {
  position: sticky;
  top: 370px;
  display: flex;
  align-items: center;
  background-color: #000000;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6);
  padding-bottom: 80px;
  /* z-index set inline per card (1, 2, 3 …) */
}

/* ---- Image area (fills left column) ---- */
.event-card__media {
  position: relative;
  width: 100%;

  overflow: hidden;
  min-height: 0;
}

/* Ensure Bootstrap row and columns maintain height */
.event-card .container {
  height: 100%;
}



.event-card__img {
  display: block;
  width: 100%;


}

/* ---- Text body ---- */
.event-card__body {
  background-color: transparent;
  padding: 40px 20px 40px 40px;
}

.event-card__title {

  font-weight: 900;
  font-style: normal;
  font-size: 24px;
  line-height: 1.36;
  color: #fff;
  margin-bottom: 12px;

}

.event-card__desc {

  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.85);
  max-width: 786px;
  margin-bottom: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {

  .events-section__header{
    position: relative;
    top: 0;
    padding: 0;
  }
  .event-card__body { padding: 20px 0 0 0; }
  .event-card { padding: 0;   position: sticky; top: 0;   }


  /* Stack columns vertically on tablet */
  .event-card {
    position: sticky;
    min-height: 0;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    top:140px;
  }

  /* Image column takes full width on mobile */
  .event-card__media {
    width: 100%;

    margin-bottom: 20px;
  }

  .event-card__title {
    font-size: 20px;
  }

  .event-card__desc {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .events-heading {
    font-size: 32px;
  }

}

/* ---- Reduced-motion: disable stacking, show vertical list ---- */
@media (prefers-reduced-motion: reduce) {
  .event-card {
    position: static;
    height: auto;
    min-height: 0;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
  }

  .event-card__media {
    height: 50vh;
    max-height: 520px;
    flex: none;
    margin-bottom: 20px;
  }

  .events-stack {
    padding-bottom: 60px;
  }
}



/* new slider css end */
#professor-practice .professor-faculty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
#professor-practice .modal-xl .professor-faculty-grid {
  grid-template-columns: repeat(4, 1fr);
}
.faculty-border {
  border: 1px solid #d9d9d9;
}
.faculty-info {
  padding-top: 15px;
}
.faculty-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
}
.faculty-btn {
  margin-top: auto;
}
.faculty-info p {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: #000;
}
.faculty-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.faculty-title {
  color: #666;
  font-size: 0.9rem;
}

/* =====================================================
   Guest lectures SECTION
   Figma node: 3775-10632
   ===================================================== */

.gl-section {
  background-color: #fff8f2;
  padding: 80px 0;
}

/* --- Header Row --- */
.gl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.gl-header__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gl-label {

  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  display: block;
}

.gl-heading {

  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

/* --- Navigation Arrows --- */
.gl-header__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
  flex-shrink: 0;
}

.gl-arrow {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background-color: #1a1a1a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.gl-arrow:hover {
  background-color: #3a3a3a;
  transform: scale(1.06);
}

.gl-arrow:active {
  transform: scale(0.97);
}

.gl-arrow svg {
  display: block;
  pointer-events: none;
}

/* --- Slider wrapper (Slick resets) --- */
.gl-slider {
  width: 100%;
}

.gl-slider .slick-list {
  overflow: hidden;
}

.gl-slider .slick-track {
  display: flex;
}

.gl-slider .slick-slide {
  height: inherit;
  outline: none;
}

/* --- Speaker Card --- */
.gl-card {
  display: flex !important;
  align-items: stretch;
  border: 1px solid #d9d9d9;
  border-radius: 25px;
  overflow: hidden;
  background: #ffffff;
}

/* Card image column */
.gl-card__image {
  width: 291px;
  min-width: 291px;
  height: 323px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.gl-card__image img {
  width: 100%;
  height: auto;
}

/* Card content column */
.gl-card__content {
  background: #ffffff;
  padding: 56px 63px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 41px;
  flex: 1;
}

.gl-card__lecture {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gl-card__title {

  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  margin: 0;
}

.gl-card__desc {

  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

.gl-card__speaker {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gl-card__name {

  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  margin: 0;
}

.gl-card__role {

  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
  .gl-heading {
    font-size: 36px;
  }

  .gl-card__content {
    padding: 40px 40px;
    gap: 28px;
  }
}

@media (max-width: 991px) {
  .gl-section {
    padding: 60px 0;
  }

  .gl-card {
    flex-direction: column;
    border-radius: 20px;
  }

  .gl-card__image {
    margin: 0 auto;
  }

  .gl-card__image img {

    width: 100%;
    height: auto;
	padding-top:30px;

  }

  .gl-card__content {
    padding: 32px 28px;
    gap: 24px;
  }

  .gl-card__title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .gl-section {
    padding: 48px 0;
  }

  .gl-heading {
    font-size: 28px;
  }

  .gl-arrow {
    width: 44px;
    height: 44px;
  }

  .gl-card__content {
    padding: 24px 20px;
    gap: 20px;
  }

  .gl-card__title {
    font-size: 18px;
  }

  .gl-card__name {
    font-size: 17px;
  }
}