/* =========================
   GLOBAL BASE
   ========================= */

:root {
  --amity-blue-main: #00448d;
  --amity-blue-deep: #003061;
  --amity-blue-header: #00519e;
  --amity-yellow: #ffc727;
  --amity-yellow-dark: #f1b700;
  --amity-green: #20b35a;
  --amity-text-main: #0b1220;
  --amity-text-muted: #6b7280;
  --amity-border: #e5e7eb;
  --amity-radius-lg: 28px;
  --amity-radius-xl: 32px;
  --amity-radius-pill: 999px;
  --amity-shadow-card: 0 26px 55px rgba(15, 23, 42, 0.35);
  --amity-font: 'Raleway', sans-serif;
  --fee-radius-lg: 24px;
  --fee-radius-md: 18px;

  --fee-yellow-bg: #ffeeb3;
  --fee-yellow-accent: #ffc400;

  --fee-blue-bg: #d9ecff;
  --fee-blue-accent: #3b8cff;

  --fee-emi-bg: #dcffe6;
  --fee-emi-border: #30b559;
  --fee-emi-cta-bg: #18a943;

  --fee-text-main: #111827;
  --fee-text-muted: #4b5563;
  --font-raleway: 'Raleway', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-raleway);
 
}

/* =========================
   HEADER
   ========================= */

.amity-header {
  font-family: var(--font-raleway);
}

/* top strip */

.amity-header__top {
  background: linear-gradient(90deg, var(--amity-blue-deep), var(--amity-blue-main));
  color: #ffffff;
  font-size: 0.88rem;
}

.amity-header__top-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amity-header__indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}


/* Text Styling */
.admission-banner span {
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
    animation: scrollText 12s linear infinite;
}


/* Desktop */
@media (min-width: 768px) {
    .admission-banner span {
        font-size: 16px;
        animation: none; /* Desktop pe static rakho */
    }
}

/* Mobile tweak */
@media (max-width: 480px) {
    .admission-banner {
        padding: 8px 10px;
    }

    .admission-banner span {
        font-size: 13px;
    }
}

.amity-header__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

/* main header row */

.amity-header__main {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 3px 6px rgba(15, 23, 42, 0.08);
}

.amity-header__main-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.amity-header__logo img {
  height: 56px; /* tune to match design */
  display: block;
}

.amity-header__cta {
  border: none;
  border-radius: var(--amity-radius-pill);
  background-color: var(--amity-yellow);
  color: var(--amity-text-main);
   padding: 10px 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.amity-header__cta:hover {
  background-color: var(--amity-yellow-dark);
  transform: translateY(-1px);
 
}

/* =========================
   HERO
   ========================= */

:root {
  --amity-blue-main: #03366f;
  --amity-blue-deep: #02264d;
  --amity-yellow: #ffc929;
  --amity-yellow-dark: #f3b800;
  --amity-green: #22c55e;
  --amity-text-main: #111827;
  --amity-text-muted: #6b7280;
  --amity-border: #e5e7eb;
  --amity-radius-xl: 32px;
  --amity-radius-pill: 999px;
  --amity-shadow-card: 0 26px 60px rgba(15, 23, 42, 0.45);
  font-family: var(--font-raleway);
}

/* SECTION WRAP */

.amity-hero {
  padding: 2rem 1.5rem 3.8rem;
}

/* OUTER: BANNER + FORM */
.amity-hero__outer {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

/* BLUE BANNER */
.amity-hero__banner {
  border-radius: var(--amity-radius-xl);
  padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.4rem, 3vw, 2.8rem)
           clamp(2rem, 3vw, 2.4rem);
  color: #ffffff;
 min-height: 420px; 
  background-color: var(--amity-blue-main);
  background-image:
    linear-gradient(125deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 60, 0.4)),
    url("https://indiaprograms.com/amity-mba-online/images/Online-MBA-Banner.webp");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .amity-hero__banner {
    height: 569px; 
  }

}
.amity-hero__left { 
  max-width: 560px;
}


/* Eyebrow */
.amity-hero__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Title */
.amity-hero__title {
  margin: 0 0 1.5rem;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.18;
}

.amity-hero__highlight {
  display: inline-block;
  background-color: var(--amity-yellow);
  color: var(--amity-text-main);
  padding: 0 4px 4px;
}

.amity-leaders{
   display: inline-block;
}

/* ========== TIMER ========== */

.amity-hero__meta {
  margin-bottom: 1.8rem;
}

.amity-hero__meta-label {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  opacity: 0.95;
}

/* frosted container behind boxes */
.amity-hero__timer {
  display: inline-flex;
  align-items: stretch;
  gap: 1.2rem;
  padding: 0.8rem 1.4rem;
  border-radius: 18px;
  background-color: rgba(196,196,196,0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

/* each white box */
.amity-hero__timer-box {
  height: 55px;
  position: relative;
  min-width: 55px;
   padding: 7px 5px 1px;
  border-radius: 14px;
  background-color: #ffffff;
  
  text-align: center;
  color: #111827;
}

/* colon between boxes */
.amity-hero__timer-box:not(:last-child)::after {
  content: ":";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-60%);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
}

/* digits */
.amity-hero__timer-value {
  display: block;
    font-weight: 400;
  font-size: 18px;
  line-height: 18px;
}

/* label under digits */
.amity-hero__timer-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: #4b5563;
}

/* CTA row */
.amity-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.amity-btn {
  border: none;
  border-radius: var(--amity-radius-pill);
  padding: 0.9rem 2.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.amity-btn--yellow {
  background-color: var(--amity-yellow);
  color: var(--amity-text-main);
}

.amity-btn--yellow:hover {
  background-color: var(--amity-yellow-dark);
  transform: translateY(-1px);
}

.amity-btn__icon {
  margin-left: 0.6rem;
  font-size: 1.1rem;
}

/* share button if you ever use it */
.amity-hero__share {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background-color: #ffffff;
  color: var(--amity-blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.32);
  cursor: pointer;
}

/* ===== WHITE FORM CARD OVERLAP ===== */

.amity-hero__form-card {
  position: absolute;
  top: 2.6rem;
  right: 2.8rem;
  width: 507px;
  max-width: 45%;
  background-color: #ffffff;
  border-radius: 32px;
  border: 3px solid #004691;
  overflow: hidden;
  color: var(--amity-text-main);
}

/* YELLOW HEADER STRIP */
.amity-hero__form-head {
  padding: 1.1rem 1.7rem 0.9rem;
  background-color: var(--amity-yellow);
  text-align: center;
  border-radius: 32px 32px 0 0;
}

.amity-hero__form-head h2 {
  margin: 0 0 0.2rem;
  font-size: 1.45rem;
}

.amity-hero__form-head p {
  margin: 0;
  font-size: 0.86rem;
}

/* highlights */
.amity-hero__form-highlights {
  display: flex;
  gap: 1.6rem;
  padding: 0.8rem 1.7rem 0.9rem;
  border-bottom: 1px solid var(--amity-border);
  font-size: 0.83rem;
}

.amity-hero__form-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amity-hero__form-highlights li {
position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.18rem;
}

.amity-hero__form-highlights li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #003566;  /* your bullet color */
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.55rem;
  
}

/* form body */
.amity-hero__form {
  padding: 1.1rem 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.86rem;
}

.amity-field {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.amity-field input,
.amity-field select {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.65rem 0.95rem;
  font: inherit;
  outline: none;
  background-color: #ffffff;
}

.amity-field input::placeholder,
.amity-field select {
  font-size: 0.85rem;
}

.amity-field input:focus-visible,
.amity-field select:focus-visible {
  border-color: var(--amity-blue-main);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* phone composite */
.amity-phone {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.amity-phone input {
  border: none;
  border-radius: 0;
}

/* checkbox */
.amity-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--amity-text-muted);
  margin-top: 0.3rem;
}

.amity-checkbox input {
  margin-top: 0.18rem;
}

/* ===== GREEN STRIP ===== */

.amity-hero__strip-wrapper {
  max-width: 1180px;
  margin: 1.8rem auto 0;
  display: flex;
  justify-content: flex-start;
}

.amity-hero__strip {
display: inline-flex;
  align-items: center;
   padding: 6px 5px;
  border-radius: var(--amity-radius-pill);
  background-color: var(--amity-green);
  color: #ffffff;
  font-size: 13px;
  

  /* spacing between icon and text */
  gap: 0.75rem;

  /* animate whole item (icon + text) */
  animation: stripFloat 6s ease-in-out infinite;
}

.amity-hero__strip-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* only the text gently moves */
.amity-hero__strip-text {
 
  animation: amity-strip-slide 6s ease-in-out infinite;
}

@keyframes stripFloat {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-14px); }
  100% { transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1023.98px) {
  .amity-hero {
    padding: 2.4rem 1rem 3.4rem;
  }

  .amity-hero__banner {
    padding: 2rem 1.7rem 2.1rem;
    min-height: 380px;
  }

  .amity-hero__form-card {
    position: static;
    margin: 1.8rem auto 0;
    max-width: 100%;
    width: 100%;
    border: 3px solid #004691;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
  }

  .amity-hero__strip-wrapper {
    justify-content: center;
  }

  .amity-hero__strip {
    margin-left: 0  !important;
  }
}

@media (max-width: 767.98px) {
  .amity-hero {
    padding: 1.8rem 1rem 2.6rem;
  }

  .amity-hero__banner {
    padding: 1.6rem 1.2rem 1.8rem;
    min-height: auto;
  }

  .amity-hero__title {
    font-size: clamp(1.7rem, 6vw, 2.1rem);
    line-height: 1.2;
  }

  .amity-hero__meta {
    margin-bottom: 1.2rem;
  }

  .amity-hero__timer {
    gap: 0.8rem;
    padding: 0.7rem 1.1rem;
  }

  /* .amity-hero__timer-box {
    min-width: 62px;
    padding: 0.45rem 0.7rem 0.5rem;
  } */

  .amity-hero__strip-wrapper {
    padding-inline: 0.75rem;
  }

  .amity-hero__strip {
    width: 100%;
  }
}



/* =========================
   ABOUT SECTION
   ========================= */
/* ============ SECTION WRAPPER ============ */

/* TOKENS USED HERE (if not already defined) */
:root {
  --tf-blue-ring: #002c5a;
  --tf-yellow: #ffc727;
  --tf-cyan: #00a4e6;
  --tf-text-main: #021526;
  --tf-text-muted: #6b7280;
  --tf-border-soft: #efe2cd;
  --tf-radius-card: 26px;
  --tf-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================
   TRANSFORM SECTION
   ========================= */

/* base – you can swap font if needed */
/* ===== HERO BASE ===== */

/* ===== HERO WRAPPER ===== */

/* =========================
   PROGRAM OVERVIEW HERO
   ========================= */

/* =========================
   HERO WRAPPER
   ========================= */
.mca-hero {
  position: relative;
  background-color: #ffffff;
  font-family: var(--font-raleway, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  padding: 10px 16px 10px;
}

.mca-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* LAYOUT */
.mca-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}

/* LEFT TEXT */
.mca-hero__left {
  max-width: 640px;
  flex: 1.2;
}

.mca-hero__title {

  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
 
  color: #000000;
}

.mca-hero__text {
  margin: 0;
  line-height: 1.8;
  color: #4b5563;
  font-size: 0.95rem;
}

/* RIGHT SIDE */
.mca-hero__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mca-hero__visual {
  width: 260px;
  max-width: 100%;
}

.mca-hero__image {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
}

/* CARD BASE (desktop defaults) */
.mca-card {
  width: 100%;
  max-width: 420px;
  margin-top: -70px;
  background-color: #fff6ee;
  border-radius: 24px;
  padding: 1.1rem 1.4rem 1.4rem;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
  border: 1px solid #f3e0ce;
  box-sizing: border-box;
  z-index: 5;
}

/* TOP ROW */
.mca-card__top {
  display: flex;
  align-items: center;
  padding-bottom: 0.8rem;
  margin-bottom: 0.9rem;
  
}

.mca-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

.mca-card__divider {
  display: inline-block;
  height: 22px;
  border-left: 1px solid #e1d0bf;
  margin: 0 1.1rem;
}

.mca-card__fill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.mca-card__fill-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f0fff6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mca-card__fill-svg {
  width: 18px;
  height: 18px;
  display: block;
}

.mca-card__fill-text strong {
  color: #15803d;
  font-weight: 600;
  margin-right: 0.2rem;
}

/* BOTTOM GRID – desktop defaults */
.mca-card__bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.6rem;
}

.mca-card__row {
  /* mobile will override; desktop: treat as normal column child */
}

.mca-card__label-row,
.mca-card__label-block {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.mca-card__label-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mca-card__label-svg {
  width: 16px;
  height: 16px;
  display: block;
}

.mca-card__label {
  font-size: 0.83rem;
  color: #6b7280;
}

.mca-card__value-block {
  text-align: right;
}

.mca-card__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
}

.mca-card__subvalue {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* TABLET & DESKTOP */
@media (min-width: 768px) {
  .mca-hero__content {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }

  .mca-hero__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .mca-hero__text {
    font-size: 1rem;
  }

  .mca-hero__right {
    align-items: flex-end;
  }

  .mca-hero__visual {
    width: 340px;
  }

  .mca-hero__image {
    max-height: 520px;
  }

  .mca-card {
    max-width: 580px;
    margin-top: -120px;
    padding: 1.1rem 1.8rem 1.5rem;
  }

  /* keep original 3-column layout on desktop */
  .mca-card__bottom {
 display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0; /* to keep borders continuous */
  }

  .mca-card__row {
    border-right: 1px solid #eed9c7;   /* right border for EVERY column */
    padding: 12px 24px 0 0;   
  }
   .mca-card__row:last-child {
    padding-right: 24px;               /* keep spacing, border still visible */
  }
}

/* ===== MOBILE EXACT LOOK (<= 767px) ===== */
@media (max-width: 767.98px) {
  .mca-hero {
    padding: 20px 16px 28px;
  }

  .mca-hero__content {
    gap: 1.8rem;
  }

  .mca-hero__right {
    align-items: center;
  }

  .mca-hero__visual {
       height: 231px;
    width: 260px;
    margin-bottom: 0;
  }

  /* pull card up so it visually touches the image */
  .mca-card {
    max-width: 100%;
    margin-top: -93px;          /* closer to the girl image */
   /* padding: 15px 37px 20px; */
    border-radius: 26px;
  }

  .mca-card__top {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .mca-card__title {
    font-size: 18px;
  }

  .mca-card__divider {
    height: 30px;
    margin: 0 16px;
  }

  .mca-card__fill-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 14px;
  }

  .mca-card__fill-text span {
    font-size: 13px;
  }

  /* bottom: stack rows like screenshot 2 */
  .mca-card__bottom {
    display: block;
  }

  .mca-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #eed9c7;
  }

  .mca-card__row:first-child {
    border-top: 1px solid #eed9c7; /* first line right under header */
  }

  .mca-card__label-block {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
  }

  .mca-card__label {
    font-size: 15px;
  }

  .mca-card__value-block {
    text-align: right;
    max-width: 50%;
  }

  .mca-card__value {
    font-size: 18px;
  }

  .mca-card__subvalue {
    margin-top: 4px;
    font-size: 13px;
    white-space: normal;
  }
}









/* PANEL WRAPPER */
.amity-specs {
  padding: 64px 10px 35px;
  background-color: #ffffff;
  font-family: var(--font-raleway);
}

.amity-specs__panel {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 26px;
  border: 1px solid #002E5E;
  background: #ECF5FF;
  padding: 2.2rem 2.3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 2.2rem;
}

/* LEFT INTRO BLOCK */

.amity-specs__intro {
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amity-specs__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.amity-specs__intro h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.35;
  font-weight: 700;
  color: #021525;
}

/* SLIDER CORE */

.amity-specs__slider {
  position: relative;
  display: flex;
  align-items: center;
}

.amity-specs__track-mask {
  overflow: hidden;
  width: 100%;
}

.amity-specs__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s ease;
}

/* CARDS */

.amity-specs__card {
  flex: 0 0 calc((100% - 2 * 1.5rem) / 3); /* 3 cards on desktop */
  background-color: #ffffff;
  border-radius: 20px;
  
  border: 1px solid #e4e7f2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.amity-specs__card-media img {
  width: 100%;
  display: block;
  /* height: 190px; */
  object-fit: cover;
}

.amity-specs__card-badge {
  margin: 0.5rem 0 0;              /* no side margin */
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: #ffc727;
  color: #222222;
  font-size: 0.8rem;
  font-weight: 600;

  border-radius: 0 999px 999px 0;  /* flat on left, pill on right like design */
  align-self: flex-start;          /* force it to hug the left */
}

.amity-specs__card-body {
  padding: 0.8rem 1.2rem 1rem;
}

.amity-specs__card-title {
  margin: 0.4rem 0 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #021525;
}

.amity-specs__card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.amity-specs__meta-sep {
  width: 1px;
  height: 14px;
  background-color: #d5d8e3;
}

/* ARROWS */

.amity-specs__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background-color: #dde5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #28324f;
}

.amity-specs__nav--prev {
  left: -17px;
}

.amity-specs__nav--next {
  right: -17px;
}

/* HOVER STATES */

.amity-specs__nav:hover {
  background-color: #c7d3f4;
}

.amity-specs__card:hover {
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}
#amity-specs-heading {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.3;
    color: #012152;
    margin: 0;
    display: block;
    white-space: normal !important;
}

#amity-specs-heading br {
    display: block !important;   /* forces break on all screens */
}
/* ========= RESPONSIVE ========= */

/* Medium / iPad – 2 cards visible */
@media (max-width: 1024px) {
  .amity-specs__panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .amity-specs__card {
    flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 cards */
  }

  .amity-specs__intro {
    max-width: 420px;
  }

  .amity-specs__intro h2 {
    font-size: 1.7rem;
  }
}

/* Mobile – 1 card visible, stack layout */
@media (max-width: 767.98px) {
  .amity-specs {
    padding: 31px 10px 10px;
  }

  .amity-specs__panel {
    padding: 1.8rem 1.4rem 2.1rem;
  }

  .amity-specs__card {
    flex: 0 0 100%; /* 1 card */
  }

  .amity-specs__nav--prev {
    left: -10px;
  }
  .amity-specs__nav--next {
    right: -10px;
  }

  .amity-specs__intro h2 {
    font-size: 1.5rem;
  }

  .amity-specs__card-media img {
    height: 170px;
  }
}


/* BASE */

.amity-acc {
  padding: 3.5rem 1.5rem 4rem;
  background-color: #ffffff;
  font-family: var(--font-raleway);
}

.amity-acc__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.amity-acc__title {
  margin: 0 0 2rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #031321;
}

/* SLIDER WRAP */

.amity-acc__slider {
  position: relative;
}

.amity-acc__track-mask {
  overflow: hidden;
  width: 100%;
}

.amity-acc__track {
  display: flex;
  column-gap: 1.75rem;
  transition: transform 0.6s ease;
}

/* CARD – desktop 5 visible */

.amity-acc__card {
  flex: 0 0 calc((100% - 4 * 1.75rem) / 5); /* 5 cards with 4 gaps */
  background-color: #fff5ea;
  border-radius: 6px;
  border: 1px solid #f3e2cc;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
  padding: 1.25rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* inner logo area */

.amity-acc__card-logo {
  width: 150px;
  max-width: 100%;
  height: 150px;
  border-radius: 6px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.amity-acc__card-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}

/* text */

.amity-acc__card-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #111827;
}

.amity-acc__card-text p {
  margin: 0;
}

/* hover */



/* DOTS */

.amity-acc__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.3rem;
}

.amity-acc__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background-color: #d4d4d4;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.amity-acc__dot--active {
  background-color: #0f172a;
  transform: scale(1.25);
}

/* ===== RESPONSIVE ===== */

/* 3 cards on mid widths (iPad-ish) */
@media (max-width: 1024px) {
  .amity-acc__card {
    flex: 0 0 calc((100% - 2 * 1.5rem) / 3);
  }
  .amity-acc__track {
    column-gap: 1.5rem;
  }
  .amity-acc__card-logo {
    width: 160px;
    height: 160px;
  }
}

/* MOBILE: 1 card at a time */
@media (max-width: 600px) {
  .amity-acc {
    padding: 2.8rem 1rem 3.2rem;
  }

  .amity-acc__title {
    font-size: 1.6rem;
  }

  .amity-acc__track {
    column-gap: 1rem;
  }


  .amity-acc__card-logo {
    width: 150px;
    height: 150px;
  }
}


/* =============== BASE SECTION =============== */

.amity-curriculum {
  padding: 4rem 1.5rem 4.5rem;
  color: #ffffff;
  font-family: var(--font-raleway);
  background: linear-gradient(180deg, #044a86 0%, #013665 45%, #012349 100%);
  position: relative;
  overflow: hidden;
}

/* dotted pattern in background */
.amity-curriculum::after {
  content: "";
  position: absolute;
  inset: 55% -10% -10% -10%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.35;
  pointer-events: none;
}

.amity-curriculum__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  /* 🔽 let both columns grow naturally and align from the top */
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* ===== LEFT COLUMN ===== */

.amity-curriculum__header h2 {
  margin: 0 0 0.4rem;
  font-size: 2.1rem;
  line-height: 1.25;
  font-weight: 700;
}

.amity-curriculum__header p {
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* tabs */

.amity-curriculum__tabs {
  display: inline-flex;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.amity-curriculum__tab {
  min-width: 120px;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.amity-curriculum__tab--active {
  background: #ffffff;
  color: #003163;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* year switching */

.amity-curriculum__year {
  display: none;
}

.amity-curriculum__year--active {
  display: block;
}

/* cards */

.amity-curriculum__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.amity-curriculum__card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 1.3rem 2rem 1.6rem;
  color: #111827;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  max-width: 580px;
}

.amity-curriculum__card--spaced {
  margin-top: 0.6rem;
}

.amity-curriculum__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.4rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.amity-curriculum__card-tag--blue {
  background-color: #2f80ff;
}

.amity-curriculum__card-tag--pink {
  background-color: #ff3972;
}

.amity-curriculum__list {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  font-size: 0.92rem;
  line-height: 1.8;
}

.amity-curriculum__list li + li {
  margin-top: 0.25rem;
}

/* ===== RIGHT COLUMN – CERTIFICATE IMAGE ===== */

.amity-curriculum__right {
  /* flex container so image can sit at the bottom */
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.amity-curriculum__image {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

/* ===== RESPONSIVE ===== */

/* tablet / small desktop */
@media (min-width: 768px) {
  .amity-curriculum__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }

  /* 🔽 make the right column's bottom sit at the grid row bottom
     → visually aligns with bottom of Semester II card */
  .amity-curriculum__right {
    align-self: end;
  }

  .amity-curriculum__header h2 {
    font-size: 2.3rem;
  }
}

/* large desktop */
@media (min-width: 1200px) {
  .amity-curriculum {
    padding: 4.5rem 2.25rem 5rem;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .amity-curriculum {
    padding: 3.2rem 1.2rem 3.8rem;
  }

  .amity-curriculum__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .amity-curriculum__right {
    justify-content: center;
    align-items: center;
    margin-top: 2.4rem;
  }

  .amity-curriculum__image {
    max-width: 360px;
  }

  .amity-curriculum__card {
    max-width: 100%;
    padding: 1.2rem 1.3rem 1.5rem;
  }
}





/* ========= SECTION WRAPPER ========= */

/* ---------- TOKENS / BASE ---------- */

/* -------- GRID LAYOUT -------- */
/* ===== WRAPPER ===== */

.fee-section {
  padding: 10px;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fee-layout {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

/* columns */

.fee-col--left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fee-col--right {
  display: flex;
}

/* ===== BASE CARD ===== */

.fee-card {
  position: relative;
  border-radius: 13px;
  overflow: hidden;                         /* ensures accents never bleed out */
  padding: 30px 40px;
  border-top: 11px solid transparent;       /* colored per variant */
 
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 165px;
}

/* left cards content */

.fee-card__content {
  position: relative;
  z-index: 1;
}

.fee-card__label {
  margin: 0 0 0.75rem;
  font-size: 19px;
  font-weight: 500;
  color: #4b5563;
}

.fee-card__value {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #111827;
}

/* quarter-circle accent */

.fee-card__accent {
  position: absolute;
  top: -8px;                     /* pulls circle a bit up to match comp */
  right: -40px;                  /* so curve starts roughly where screenshot shows */
     width: 163px;
    height: 117px;
  border-radius: 0 0 0 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fee-card__icon {
  position: relative;
  font-size: 34px;
  color: #ffffff;
}

/* color variants */

.fee-card--yellow {
  background: #fff2be;
  border-top-color: #ffd233;
}

.fee-card__accent--yellow {
  background: #ffd233;
}

.fee-card--blue {
  background: #dcebff;
  border-top-color: #4ea1ff;
}

.fee-card__accent--blue {
  background: #4ea1ff;
}

/* ===== GREEN EMI CARD ===== */

.fee-card--green {
  background: #e2ffe9;
  border-top-color: #22b464;
  padding: 42px 52px;
  min-height: 245px;
  justify-content: flex-start;
}

.emi-card {
  width: 100%;
}

.emi-card__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.emi-card__copy {
  font-size: 24px;
  font-weight: 500;
  color: #111827;
  line-height: 1.35;
}

.emi-card__subtitle {
  margin: 0;
}

.emi-card__amount {

  margin: 0;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #111827;
}

/* button */

.emi-card__cta {
  align-self: flex-end;
  padding: 5px 34px;
  border-radius: 999px;
  border: none;
  background: #19a651;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.emi-card__cta:hover {
  filter: brightness(1.05);
}

/* ===== RESPONSIVE ===== */

/* tablet / small desktop tweaks */
@media (max-width: 1100px) {
  .fee-card__value {
    font-size: 36px;
  }
  .emi-card__amount {
    font-size: 60px;
  }
}

/* mobile stack */
@media (max-width: 768px) {
  .fee-layout {
    grid-template-columns: 1fr;
  }

  .fee-col--right {
    order: 3;
  }

  .fee-card {
    padding: 24px 26px;
  }

  .fee-card__accent {
            width: 121px;
        height: 78px;
    right: -30px;
    top: -6px;
  }

  .fee-card__value {
    font-size: 32px;
  }

  .fee-card--green {
    padding: 32px 26px;
    min-height: 220px;
  }

  .emi-card__amount {
    font-size: 48px;
  }

  .emi-card__cta {
    align-self: flex-start;
  }
}





:root {
  --admission-yellow: #ffc72c;
  --admission-border: #ffffff;
  --admission-bg-overlay: rgba(0, 0, 0, 0.65);
  --admission-text-main: #ffffff;
  --admission-text-muted: #e5e7eb;
  --admission-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===== SECTION WRAPPER + BACKGROUND ===== */

:root {
  --admission-yellow: #ffc928;
  --admission-text-main: #ffffff;
  --admission-text-muted: rgba(255, 255, 255, 0.86);
  --admission-bg-overlay: rgba(0, 0, 0, 0.55);
  --font-raleway: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* ===== SECTION BASE ===== */

.admission-process {
  margin-top: 30px;
  position: relative;
  padding: 4.5rem 1.5rem 3.8rem;
  color: var(--admission-text-main);
  font-family: var(--font-raleway);
  background-image: url("https://www.onlinevidhya.com/new-lp-amity/images/amityuniversitymumbai_cover.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.admission-process__overlay {
  position: absolute;
  inset: 0;
  background: var(--admission-bg-overlay);
  z-index: 0;
}

.admission-process__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== HEADER ===== */

.admission-process__header h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
}

.admission-process__header p {
  margin: 0 0 2.4rem;
  font-size: 1rem;
  color: var(--admission-text-muted);
}

/* ===== TIMELINE (DESKTOP) ===== */

.admission-process__timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 2.7rem;
  padding-top: 1.4rem;
}

.admission-process__line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 2.15rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.75);
  z-index: 0;
}

.admission-process__steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1; /* steps + arrows sit above the line */
}

/* step circle */

.admission-step {
  position: relative;
  display: flex;
  justify-content: center;
}

.admission-step__circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.18s ease, color 0.18s ease;
}

/* arrow under each step – hidden by default */
.admission-step::after {
  content: "";
  position: absolute;
  top: 3.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 10px 0 10px;
  border-color: transparent transparent transparent transparent;
  transition: border-color 0.18s ease;
}

/* HOVER STATE: step circle + arrow turn yellow */
.admission-step:hover .admission-step__circle {
  background: var(--admission-yellow);
}

.admission-step:hover::after {
  border-color: var(--admission-yellow) transparent transparent transparent;
}

/* ===== CARDS (DESKTOP GRID) ===== */

.admission-process__cards {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.admission-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

/* notch roof */
.admission-card::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.45);
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  border-left: 2px solid rgba(255, 255, 255, 0.7);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

/* text content */

.admission-card__title {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.admission-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--admission-text-muted);
}

/* HOVER: card border + notch go yellow */

.admission-card:hover {
  border-color: var(--admission-yellow);
  background: rgba(0, 0, 0, 0.6);
}

.admission-card:hover::before {
  border-color: var(--admission-yellow);
}

/* ===== CTA BUTTON ===== */

.admission-process__cta-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.admission-process__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background-color: var(--admission-yellow);
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.admission-process__cta:hover {
  background-color: #ffefb0;
  border-color: var(--admission-yellow);
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.55);
}

.admission-process__cta:focus-visible {
  outline: 3px solid var(--admission-yellow);
  outline-offset: 3px;
}

/* ===== RESPONSIVE ===== */

/* tablet */
@media (max-width: 1024px) {
  .admission-process {
    padding: 3.5rem 1.5rem 3rem;
  }

  .admission-process__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* mobile: stacked step-by-step cards */

@media (max-width: 768px) {
  .admission-process {
    padding: 3rem 1.2rem 2.8rem;
  }

  .admission-process__header h2 {
    font-size: 2.2rem;
  }

  /* hide desktop timeline */
  .admission-process__timeline {
    display: none;
  }

  /* cards stacked */
  .admission-process__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .admission-card {
    padding: 3.4rem 1.3rem 1.6rem; /* room for circle */
  }

  .admission-card::before {
    top: 1.8rem;
  }

  /* per-card step circle at top */
  .admission-card::after {
    content: attr(data-step);
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background-color 0.18s ease, color 0.18s ease;
  }

  /* hover/tap highlight for mobile cards */
  .admission-card:hover::after {
    background: var(--admission-yellow);
  }

  .admission-process__cta-wrap {
    margin-top: 2rem;
  }

  .admission-process__cta {
    width: 100%;
    max-width: 320px;
  }
}



:root {
  --why-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --why-heading: #ffffff;
  --why-text: #f3f3f3;
  --why-accent: #ffc928;
  --why-bg-1: #181818;
  --why-bg-2: #050505;
  --why-card-radius: 22px;
}

/* SECTION BG + GRID OVERLAY */
.why-amity {
  position: relative;
  padding: 4.5rem 1.5rem 4rem;
  color: var(--why-heading);
  font-family: var(--font-raleway);

  background:
    radial-gradient(circle at 50% 0%, #333 0%, #050505 45%, #000 100%),
    linear-gradient(var(--why-bg-1), var(--why-bg-2));
  overflow: hidden;
}

.why-amity::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.7;
  pointer-events: none;
}

.why-amity__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.why-amity__header {
  text-align: center;
  margin-bottom: 2.7rem;
}

.why-amity__header h2 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
}

.why-amity__header h2 span {
  font-weight: 700;
}

/* TOP ROW */
.why-amity__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
  margin-bottom: 2.8rem;
}

.why-amity__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.why-amity__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-amity__text-block {
  position: relative;
  padding-right: 0.5rem;
}

.why-amity__quote-icon {
 font-size: 3.6rem;   /* a little larger, like the design */
  font-weight: 700;
  line-height: 1;
  color: var(--why-accent);
  margin-bottom: 0.4rem;
  
}

.why-amity__text {
 
   font-family: 'Raleway';
  font-weight: 400;
  margin: 0;
  font-size: 18px;  /* ~15px */
  line-height: 30px;
  color: #ffffff;
}

/* BOTTOM: SLIDER */
.why-amity__cards-viewport {
  margin-top: 0.5rem;
  overflow: hidden;
}

.why-amity__cards-grid {
  display: flex;                 /* slider track */
  gap: 1.75rem;                  /* visual spacing between cards */
  transition: transform 0.45s ease;
}

/* CARD BASE */
.why-card {
  position: relative;
  flex: 0 0 auto;                /* width set via JS */
  background-color: #fff6db;
  border-radius: var(--why-card-radius);
  padding: 1.75rem 1.75rem 1.4rem;
  color: #1f2933;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.why-card:nth-child(2) {
  background-color: #e6f1ff;
}


.why-card:nth-child(3) {
  background-color: #e6ffe9;
}
.why-card:nth-child(5) {
  background-color: #f1ebfe;
}
.why-card:nth-child(4) {
  background-color: #feebeb;
}
.why-card__title {
 margin: 0 0 0.85rem;
  font-size: 1.05rem;  /* about 16–17px */
  font-weight: 600;
}

.why-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.why-card__image-wrap {
  margin-top: auto;
  border-radius: calc(var(--why-card-radius) - 6px);
  overflow: hidden;
}



.why-card__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* DOTS */
.why-amity__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.why-amity__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  cursor: pointer;
}

.why-amity__dot.is-active {
  width: 14px;
  background: var(--why-accent);
}

/* TABLET */
@media (max-width: 992px) {
  .why-amity {
    padding: 3.5rem 1.25rem 3.2rem;
  }

  .why-amity__top {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.6rem;
  }

  .why-card {
    min-height: 240px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .why-amity {
    padding: 3.2rem 1.1rem 3rem;
  }

  .why-amity__header {
    text-align: left;
    margin-bottom: 1.8rem;
  }

  .why-amity__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .why-amity__text-block {
    padding-right: 0;
  }

  .why-card {
     padding: 1.7rem 1.45rem 1.35rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.6);
  }
    .why-amity__text {
    font-size: 0.93rem;
  }
}
.why-amity__quote-icon img {
  width: 32px;      /* adjust size */
  height: auto;
  display: block;
}

.why-amity__quote-icon {
  margin-bottom: 12px;  /* same spacing as before */
}



:root {
  --strip-max-width: 1200px;
  --strip-gap-desktop: 5rem;
  --strip-gap-tablet: 3rem;
  --strip-gap-mobile: 2.2rem;
}

/* SECTION WRAPPER */
.brand-strip {
  background-color: #ffffff;
  padding: 2.8rem 1.5rem;
}

.brand-strip__inner {
  max-width: var(--strip-max-width);
  margin: 0 auto;
}

/* TITLE */
.brand-strip__title {
font-family: var(--font-raleway);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.4rem;
  color: #111827;
}

/* SLIDER VIEWPORT */
.brand-strip__slider {
  overflow: hidden;
  width: 100%;
}

/* TRACK (ROW OF LOGOS) */
.brand-strip__track {
  display: flex;
  align-items: center;
  will-change: transform;
  transition: transform 0.45s ease-in-out;
}

/* EACH LOGO CELL */
.brand-strip__item {
  flex: 0 0 auto;
  width: 130px;             /* base logo box width (desktop) */
  height: 60px;             /* keeps consistent row height */
  margin-right: var(--strip-gap-desktop);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-strip__item:last-child {
  margin-right: 0;
}

/* IMAGES THEMSELVES */
.brand-strip__item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* TABLET */
@media (max-width: 1024px) {
  .brand-strip {
    padding: 2.4rem 1.25rem;
  }

  .brand-strip__item {
    width: 110px;
    height: 52px;
    margin-right: var(--strip-gap-tablet);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .brand-strip {
    padding: 2.2rem 1rem;
  }

  .brand-strip__title {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
  }

  .brand-strip__item {
    width: 90px;
    height: 46px;
    margin-right: var(--strip-gap-mobile);
  }
}


:root {
  --faq-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --faq-heading-color: #071525;
  --faq-text-color: #4b5563;
  --faq-border-color: #e5e7eb;
  --faq-accent: #ffc928;
  --faq-blue-1: #00458f;
  --faq-blue-2: #002f6b;
}

/* SECTION WRAPPER */
.faq-section {
  padding: 4rem 1.5rem 4.5rem;
  background-color: #ffffff;
  font-family: var(--font-raleway);
}

.faq-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  column-gap: 3rem;
  align-items: flex-start;
}

/* LEFT SIDE */
.faq-section__title {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--faq-heading-color);
  margin: 0 0 2rem;
  line-height: 1.15;
}

.faq-card {
  background: linear-gradient(135deg, var(--faq-blue-1), var(--faq-blue-2));
  border-radius: 18px;
  padding: 1.9rem 2rem 2.1rem;
  color: #ffffff;
  max-width: 360px;
 
}

.faq-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-card__title {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.faq-card__text {
  margin: 0 0 1.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background-color: var(--faq-accent);
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.faq-card__btn-icon {
  font-size: 1.1rem;
}

/* RIGHT SIDE – ACCORDION */
.faq-accordion {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--faq-border-color);
  padding: 1.1rem 0;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--faq-border-color);
}

.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__question {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 18px;
 
  color: #000000;
}

/* ICON CIRCLE */
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
}

/* plus / minus using pseudo-elements */
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background-color: #374151;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* horizontal bar */
.faq-item__icon::before {
  width: 12px;
  height: 2px;
}

/* vertical bar (for plus) */
.faq-item__icon::after {
  width: 2px;
  height: 12px;
}

/* WHEN OPEN – show minus only */
.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: scaleY(0);
}

/* ANSWER PANEL */
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  color: var(--faq-text-color);
}

.faq-item__panel p {
font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
 
  color: #000000;
}

/* OPEN STATE – allow text to expand */
.faq-item.is-open .faq-item__panel {
  max-height: 400px; /* big enough for content */
}

/* "More" LINK */
.faq-accordion__more {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: #1d4ed8;
  text-decoration: underline;
}

/* TABLET */
@media (max-width: 992px) {
  .faq-section__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2.5rem;
  }

  .faq-card {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .faq-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .faq-section__title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }

  .faq-card {
    padding: 1.6rem 1.5rem 1.8rem;
  }

  .faq-item__question {
    font-size: 0.98rem;
  }
}


/* Wrapper for this section */
.mca-eligibility {
  padding: 60px 0 70px;
  font-family: var(--font-raleway);
  color: #111827;
}

.mca-eligibility__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.mca-eligibility__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* LEFT COLUMN */
.mca-eligibility__left {
  flex: 1 1 0;
}

.mca-eligibility__title {
  margin: 0 0 40px;
 font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  
  color: #000000;
}

.mca-eligibility__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 42px; /* matches screenshot vertical spacing */
}

.mca-eligibility__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.mca-eligibility__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #ffc929;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mca-eligibility__icon-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #111827; /* placeholder – swap for actual SVG if needed */
}

.mca-eligibility__text {
  margin: 0;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  
  color: #000000;
}

/* RIGHT COLUMN – single image */
.mca-eligibility__right {
  flex: 0 0 44%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mca-eligibility__image-wrapper {
  width: 100%;
  max-width: 480px;
  border-radius: 22px;
  overflow: hidden;
  
}

/* keeps size/ratio consistent with your design */
.mca-eligibility__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .mca-eligibility__inner {
    gap: 56px;
  }

  .mca-eligibility__title {
    font-size: 30px;
    margin-bottom: 36px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .mca-eligibility__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .mca-eligibility__right {
    align-items: flex-start;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .mca-eligibility {
    padding: 48px 0 56px;
  }

  .mca-eligibility__container {
    padding: 0 20px;
  }

  .mca-eligibility__inner {
    flex-direction: column;
  }

  .mca-eligibility__title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .mca-eligibility__list {
    gap: 32px;
  }

  .mca-eligibility__icon {
    width: 48px;
    height: 48px;
  }

  .mca-eligibility__text {
    font-size: 14px;
  }

  .mca-eligibility__image-wrapper {
    max-width: 420px;
    margin: 8px auto 0;
  }
}

@media (min-width: 1024px) {
  .mca-eligibility__inner {
    flex-direction: row;
    align-items: flex-start;   /* left column stays top-aligned */
    gap: 80px;
  }

  /* 👇 this is the key line */
  .mca-eligibility__right {
    align-self: center;        /* image column vertically centered */
  }
}



/* Section wrapper */
.ao-reviews {
  padding: 40px 24px 60px;
  font-family: var(--font-raleway);
  color: #111827;
}

.ao-reviews__container {
  max-width: 1180px;
  margin: 0 auto;
}

/* Heading */
.ao-reviews__title {
 margin-bottom: 28px;
 font-family: 'Raleway';
 font-style: normal;
 font-weight: 600;
 font-size: 28px;
 /* line-height: 87px; */
 color: #000000;
}

/* Slider viewport */
.ao-reviews__viewport {
  overflow: hidden;
}

/* Track */
.ao-reviews__track {
  display: flex;
  transition: transform 0.5s ease;
}

/* ===== CARD LAYOUT ===== */

/* outer card = first rounded box */
.ao-card {
  flex: 0 0 100%;              /* mobile: 1 per row */
  padding: 0 18px 26px;
  box-sizing: border-box;

  border-radius: 22px;
  background: #f5f5f7;         /* area between the two borders */
  border: 1px solid #e4e4e7;   /* outer border */
}

/* inner white card = second border */
.ao-card__inner {
  margin-top: 10px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;   /* inner border */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ===== MEDIA AREA ===== */

.ao-card__media {
  position: relative;
  background-color: #f3f4f6;
}

/* 9:16-ish ratio */
.ao-card__media::before {
  content: "";
  display: block;
  padding-top: 175%;
}

.ao-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play overlay */
.ao-card__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
}

.ao-card__play-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ao-card__play-icon::before {
  content: "";
  border-left: 16px solid #2563eb;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

/* Text area */
.ao-card__body {
  padding: 10px 14px 14px;
}

.ao-card__name {
  margin: 6px 0 4px;
  font-size: 14px;
  font-weight: 500;
}

.ao-card__stars {
  margin: 0;
  font-size: 12px;
  color: #f59e0b;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 2 cards per view */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .ao-reviews__title {
    font-size: 26px;
  }

  .ao-card {
    flex: 0 0 50%;
  }
}

/* Desktop: 4 cards per view with visible gaps */
@media (min-width: 1024px) {


  .ao-card {
    flex: 0 0 calc(25% - 24px); /* slightly narrower so gaps fit */
    margin: 0 12px 26px;        /* horizontal gap between cards */
  }
}

/* ===== VIDEO OVERLAP FIX (unchanged) ===== */

.ao-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ao-card__poster,
.ao-card__video {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ao-card__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}






/* CONTAINER WIDTH */
.adv-career__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* TOP WHITE AREA (TITLE) */
.adv-career__top {
  background-color: #ffffff;
  
  padding-bottom: 24px;
  font-family: var(--font-raleway);
  color: #111827;
}

.adv-career__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.adv-career__subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

/* NAVY BAND */
.adv-career__blue {
  position: relative;
  background-color: #0a2a5a;
  padding-top: 40px;
  padding-bottom: 40px; /* extra bottom so overlapping card has room */
  font-family: var(--font-raleway);
}

/* FORM + IMAGE ROW */
.adv-career__blue-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  color: #ffffff;
}

/* ===== FORM LEFT ===== */

.adv-form {
  margin-top: -24px;
  max-width: 520px;
}

.adv-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 24px;
}

.adv-form__group {
  display: flex;
  flex-direction: column;
}

.adv-form__group--full {
  grid-column: 1 / -1;
}

.adv-form__label {
  font-size: 13px;
  margin-bottom: 4px;
}

.adv-form__input,
.adv-form__row select {
  background-color: #f3f4f6;
  border-radius: 6px;
  border: none;
  height: 35px;
  padding: 0 10px;
  font-size: 13px;
  color: #111827;
  outline: none;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

.adv-form__row {
  display: flex;
  gap: 8px;
}

.adv-form__input--code {
  width: 78px;
}

.adv-form__input--flex {
  flex: 1 1 auto;
}

.adv-form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
}

.adv-form__checkbox input {
  width: 16px;
  height: 16px;
}

.adv-form__submit {
  margin-top: 18px;
  padding: 9px 32px;
  border-radius: 999px;
  border: none;
  background-color: #ffc929;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}

/* ===== IMAGE RIGHT (NECK IN WHITE, BODY BEHIND CARD) ===== */

.adv-career__figure {
  margin-right: 105px;
    margin-top: -74px;
  flex: 0 0 360px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  /* pull her up so neck is in white area */
  transform: translateY(-110px);
}

.adv-career__img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== WHITE FOOTER CARD (OVERLAPS IMAGE) ===== */

.adv-career__card {
  position: relative;
  z-index: 2;              /* above the image */
  margin-top: -314px;      /* pull card up over her legs/torso */
  background-color: #ffffff;
  border-radius: 24px;
  padding: 26px 32px 24px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.8;
}

.adv-career__card-text {
  margin: 0 0 18px;
}

.adv-career__card-text--small {
  font-size: 12px;
}

.adv-career__card-text--center {
  text-align: center;
  margin-top: 10px;
}

.adv-career__divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 10px 0 18px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1023.98px) {
  .adv-career__blue-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .adv-career__figure {
    align-self: center;
    transform: translateY(-40px); /* softer overlap on tablet */
  }

  .adv-career__card {
    margin-top: 20px;      /* no heavy overlap on tablet */
  }

  .adv-form {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .adv-career__container {
    padding: 0 20px;
  }

  .adv-career__title {
    font-size: 26px;
  }

  .adv-form__grid {
    grid-template-columns: 1fr;
  }

  .adv-career__figure {
    display: none;
  }

  .adv-career__card {
    margin-top: 20px;
    padding: 20px 18px 22px;
    border-radius: 18px;
  }
     
}


 .errormsg{ display:none;color:red;margin:3px 0px;}


 
.faculty-section {
  padding: 99px 0px 17px;
  max-width: 1200px;
  margin: 0 auto;
}

.faculty-header {
  margin-bottom: 39px;
font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  white-space: nowrap;
  color: #000000;
}

/* grid */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

/* ========== CARD ========== */
.faculty-card {
  position: relative;
  padding: 18px 18px 22px;   /* extra bottom padding for text */
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 45px rgba(17, 24, 39, 0.08);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease,
              box-shadow 0.25s ease,
              background 0.25s ease;
}

/* remove old double-border pseudo elements */
.faculty-card::before,
.faculty-card::after {
  content: none;
}

/* IMAGE BLOCK WITH SINGLE BORDER */
.faculty-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 14px; */
  border-radius: 18px;
  /* border: 2px solid #e1e8ff;     */
  background: #fbfcff;
}

.faculty-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  object-fit: cover;
}

/* TEXT OUTSIDE IMAGE BORDER */
.faculty-header-textes {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 16px;
}

.faculty-names {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.faculty-titles {
  font-size: 14px;
  color: #6b7280;
}

/* ========== HOVER OVERLAY ========== */

.faculty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(10, 27, 59, 0.28);
  background: linear-gradient(135deg, #1f7cf6, #0047a8);
}

/* fade static image + text when overlay shows */
.faculty-card:hover .faculty-image,
.faculty-card:hover .faculty-header-textes {
  opacity: 0;
}

/* overlay with details */
.faculty-hover {
  position: absolute;
  inset: 18px 18px 22px;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  color: #ffffff;
  border-radius: 18px;
  transition: opacity 0.25s ease;
}

.faculty-card:hover .faculty-hover {
  opacity: 1;
  pointer-events: auto;
}

.faculty-hover-inner {
  display: flex;
  flex-direction: column;
}

.faculty-top {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 16px;
}

.faculty-hover-photo img {
  width: 88px;
  height: 111px;
  object-fit: cover;
  border-radius: 18px;
  background: #ffffff;
}

.faculty-header-text {
  flex: 1;
}

.faculty-name {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.faculty-title {
  font-size: 15px;
  opacity: 0.9;
}

.faculty-divider {
  height: 1px;
  width: 70%;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.faculty-exp {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.faculty-bio {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.faculty-readmore {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  color: #ffffff;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .faculty-section {
    padding-inline: 16px;
  }

  .faculty-header {
    font-size: 22px;
  }

  .faculty-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px;
  }

  .faculty-card {
    min-width: 90%;
    scroll-snap-align: center;
  }

  .faculty-hover-photo img {
    width: 72px;
    height: 96px;
  }

  .faculty-name {
    font-size: 18px;
  }

  .faculty-title,
  .faculty-exp,
  .faculty-bio {
    font-size: 13px;
  }
}

/* ========== MODAL ========== */

.faculty-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.faculty-modal.active {
  display: flex;
}

.faculty-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.faculty-modal-dialog {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 32px;
  max-width: 900px;
  width: 94%;
  z-index: 1;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.6);
}

.faculty-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
}

.faculty-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 2.4fr);
  gap: 32px;
  align-items: center;
}

.faculty-modal-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.faculty-modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faculty-modal-content h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.modal-title {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 10px;
}

.modal-exp {
  font-size: 14px;
  color: #374151;
  margin-bottom: 16px;
}

.modal-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #111827;
}

/* modal mobile */
@media (max-width: 768px) {
  .faculty-modal-dialog {
    padding: 20px 18px 22px;
  }

  .faculty-modal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faculty-modal-content h3 {
    font-size: 20px;
  }

  .modal-title,
  .modal-exp,
  .modal-bio {
    font-size: 13px;
  }
}

/* center and tidy the text under image */
.faculty-header-textes {
  text-align: center;
  line-height: 1.4;
}

.faculty-names {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.faculty-titles {
  font-size: 14px;
  color: #4b5563;
}


.amity-hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.15);

  transition: all 0.3s ease;
  cursor: pointer;
}
.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.feature-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #000;

  flex-shrink: 0;
}
.feature-text h4 {
  font-size: 12px;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.feature-text p {
  font-size: 10px;
  margin: 0;
  opacity: 0.7;
  color: #fff;
}
@media (max-width: 768px) {
  .amity-hero__features {
    grid-template-columns: repeat(3, 1fr); /* FORCE 3 in one row */
    gap: 10px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 12px 8px;
  }



  .feature-text h4 {
    font-size: 10px;
  }

  .feature-text p {
    font-size: 10px;
  }
}