/* ==========================================================================
   Galgotias University x Accenture LearnVantage — Design System
   Shared stylesheet for partnership-category.html, bba.html, btech.html
   ========================================================================== */

:root {
  /* Brand colors */
  --color-red-600: #bc1820;
  --color-red-700: #7c1017;
  --color-red-accent: #db0005;
  --color-pink-accent: #d91c7c;
  --color-black: #101010;
  --color-text: #1a1a1a;
  --color-text-muted: #55575b;
  --color-white: #ffffff;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-surface: #ffffff;
  --color-surface-alt: #fbf6f6;
  --color-pink-tint: #fdf3f3;
  --colo-purple: #a100fe;

  /* Typography */
  --font-heading: "Poppins", "Gotham", "Segoe UI", sans-serif;
  --font-body: "Inter", "Graphik", "Segoe UI", sans-serif;

  /* Layout */
  --container-max: 1584px;
  --gutter-desktop: 72px;
  --gutter-tablet: 40px;
  --gutter-mobile: 20px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-cta: 0px 40px 80px -27px rgba(188, 24, 32, 0.5);
  --shadow-card: 0px 20px 45px -20px rgba(16, 16, 16, 0.18);
  --shadow-soft: 0px 10px 30px rgba(16, 16, 16, 0.06);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 0;
  top: -100%;
  background: var(--color-red-600);
  color: var(--color-white);
  padding: 12px 20px;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--color-red-600);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter-desktop);
}

.section {
  position: relative;
  padding-block: 96px;
}
.section--tight {
  padding-block: 64px;
}
.section--alt {
  background: var(--color-surface-alt);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-red-600);
  margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--color-border);
}
.section-header {
  text-align: center;
  max-width: 1140px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section-header--wide {
  max-width: 1100px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--color-black);
}
.section-subtitle {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  top: 0;
  z-index: 500;
}
.site-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 19px var(--gutter-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  transition: opacity 0.2s var(--ease);
}
.site-header__brand:hover,
.site-header__brand:focus-visible {
  opacity: 0.75;
}
.site-header__logo {
  height: 47px;
  width: auto;
  max-width: 100%;
}
.site-header__logo--acn {
  height: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-block: 4px;
  transition: color 0.2s var(--ease);
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-red-600);
  transition: width 0.2s var(--ease);
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--color-red-600);
}
.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav-toggle__bar {
  width: 100%;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.4px;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    filter 0.2s var(--ease),
    background 0.2s var(--ease);
}
.btn--primary {
  padding: 18px 32px;
  color: var(--color-white);
  background-image: linear-gradient(
    176deg,
    var(--color-red-600) 0%,
    var(--color-red-700) 100%
  );
  border: 1.334px solid var(--color-red-600);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0px 44px 90px -27px rgba(188, 24, 32, 0.6);
}
.btn--primary:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

.btn--secondary {
  padding: 14px 24px;
  color: var(--color-red-600);
  background: var(--color-white);
  border: 1.5px solid var(--color-red-600);
}
.btn--secondary:hover {
  background: var(--color-red-600);
  color: var(--color-white);
}

.btn--sm {
  padding: 12px 20px;
  font-size: 14px;
}
.btn--block {
  width: 100%;
}

.btn__icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s var(--ease);
}
.btn--primary:hover .btn__icon,
.btn--secondary:hover .btn__icon {
  transform: translateX(4px);
}

.link-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition:
    color 0.2s var(--ease),
    padding-left 0.2s var(--ease);
}
.link-arrow:last-child {
  border-bottom: none;
}
.link-arrow__arrow {
  font-size: 20px;
  transition: transform 0.2s var(--ease);
}
.link-arrow:hover {
  color: var(--color-red-600);
  padding-left: 8px;
}
.link-arrow:hover .link-arrow__arrow {
  transform: translateX(6px);
  color: var(--color-red-600);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: url("https://cilearningschool.com/gu_asn_program/assets/images/hero-bg.jpg")
    no-repeat;
  background-size: cover;
  isolation: isolate;
  padding-top: 90px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__bg-vector {
  position: absolute;
  top: -20.2%;
  left: -1.2%;
  width: 102.3%;
  max-width: none;
  opacity: 0.9;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  background: radial-gradient(
    circle,
    var(--color-red-accent) 0%,
    rgba(219, 0, 5, 0) 70%
  );
}
.hero__blob--one {
  width: 168px;
  height: 168px;
  left: 8.68%;
  top: 78.04%;
}
.hero__blob--two {
  width: 270px;
  height: 270px;
  right: 3.6%;
  top: 61.4%;
  opacity: 0.22;
}

.hero__inner {
  position: relative;
  z-index: 1;
  /*max-width: var(--container-max);*/
  margin-inline: auto;
  /*padding: 0 var(--gutter-desktop);*/
  display: grid;
  grid-template-columns: minmax(0, 44%) 1fr;
  align-items: center;
  column-gap: 40px;
  padding-left: 80px;
  min-height: 550px;
}
.hero__content {
  padding-block: 96px;
  min-width: 0;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(26px, 2vw, 44px);
  line-height: 1.24;
  letter-spacing: -0.5px;
  color: var(--color-black);
}
.hero-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.24;
  letter-spacing: -0.5px;
  color: #bc1820;
}
.light-text {
  color: #fff !important;
}
.hero__text {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  max-width: 46ch;
}
.hero__cta {
  margin-top: 32px;
}
.hero__media {
  position: relative;
  align-self: end;
  height: 100%;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  right: 0%;
  bottom: 0;
  width: 100%;
  max-width: none;
  object-fit: contain;
  top: 35px;
}
.hero__image--contain {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  border-radius: var(--radius-md);
}
.inner-bg {
  background: url("https://cilearningschool.com/gu_asn_program/assets/images/btech-bg.jpg")
    no-repeat;
  background-size: cover;
}
/* Partnership framework tag under hero */
.framework-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 60px;
  padding-bottom: 20px;
}
.framework-tag__line {
  flex: 1;
  max-width: 191px;
  height: 1px;
  background: var(--color-border);
}
.framework-tag__text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a7a7a7;
  white-space: nowrap;
}

/* ==========================================================================
   Partner cards (Galgotias University / Accenture)
   ========================================================================== */
.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 24px;
  padding-inline: var(--gutter-desktop);
  max-width: var(--container-max);
  margin-inline: auto;
}
.partner-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.partner-card__photo {
  width: 100%;
  aspect-ratio: 762 / 342;
  object-fit: cover;
}
.partner-card__body {
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.partner-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  color: var(--color-black);
}
.partner-card__desc {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.partner-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}
.partner-card__stats--with-badge {
  grid-template-columns: repeat(4, 1fr);
}
.partner-stat {
  padding-inline: 12px;
  border-left: 1px solid var(--color-border);
  text-align: left;
}
.partner-stat:first-child {
  border-left: none;
  padding-left: 0;
}
.partner-stat__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-pink-accent);
}
.partner-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--color-text-muted);
}
.partner-stat__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.partner-stat--badge {
  display: flex;
  align-items: flex-start;
}
.partner-stat--badge .partner-stat__badge {
  height: 50px;
  width: auto;
}
.partner-stat__badge {
  height: 28px;
  width: auto;
}

.partner-card__testimonial {
  position: relative;
  margin: 32px -40px -40px;
  flex: 1;
  display: flex;
  padding: 40px 30px 0px 40px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--color-surface-alt) 0%,
    #f6e0e3 100%
  );
  overflow: hidden;
  min-height: 330px;
}
.partner-card__testimonial-blob {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.partner-card__testimonial-row {
  position: relative;
  z-index: 1;
  display: inline-block;
  gap: 20px;
  width: 100%;
}
.partner-card__testimonial-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
}
.partner-card__quote {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text);
  font-weight: 700;
}
.partner-card__quote::before {
  content: "\201C";
}
.partner-card__quote::after {
  content: "\201D";
}
.partner-card__person {
  margin-top: 20px;
}
.partner-card__person-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-black);
}
.partner-card__person-role {
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.partner-card__person-photo {
  /*  flex-shrink: 0;
  align-self: flex-end;*/
  width: 154px;
  height: 166px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  object-position: top;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* ==========================================================================
   Feature strip (4-up highlight bar)
   ========================================================================== */
.feature-strip {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}
.feature-strip__bar {
  background: var(--color-black);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 28px 48px;
}
.feature-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}
.feature-strip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red-accent);
  flex-shrink: 0;
}
/*.feature-strip__item:first-child .feature-strip__dot { display: none; }*/

/* ==========================================================================
   Feature grid (6 cards: icon + title + text)
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}
.feature-card {
  padding: 28px 26px;
  border-radius: 18px;
  background: var(--color-pink-tint);
  box-shadow: none;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  background-image: linear-gradient(to right, #fefefe 30%, #f6e3e3 70%);
  border: 1px solid #f1f1f1;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.feature-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-card__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 3px;
}
.feature-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-black);
  line-height: 1.35;
}
.feature-card__text {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Process steps (LEARN / APPLY / EXPERIENCE / PREPARE)
   ========================================================================== */
.section--dark {
  background: radial-gradient(
    120% 140% at 50% 100%,
    #7a1319 0%,
    #2a0509 45%,
    #0b0304 100%
  );
  color: var(--color-white);
}
.section--dark .section-title,
.section--dark .section-header .section-title {
  color: var(--color-white);
}
.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.process {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}
.process__steps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  list-style: none;
}
.process__steps::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  border-top: 2px dotted rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process__step-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.35);
}
.process__step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
.process__step-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-red-accent);
  flex-shrink: 0;
}

.process__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(165deg, #8a131a 0%, #4a0a10 55%, #2a0509 100%);
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
.process-card__body {
  padding: 20px 20px 0;
  flex: 1;
}
.process-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.92);
}
.process-card__check {
  flex-shrink: 0;
  color: var(--color-red-accent);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}
.process-card__photo {
  width: calc(100% - 24px);
  margin: 16px 12px 12px;
  border-radius: 10px;
  aspect-ratio: 352 / 200;
  object-fit: cover;
}

/* ==========================================================================
   Edge cards (Academic Edge / Career Edge / Industry Edge)
   ========================================================================== */
.section--gradient {
  background: url("https://cilearningschool.com/gu_asn_program/assets/images/graduate.jpg");
  width: 100%;
  min-height: 850px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
  align-items: stretch;
}
.edge-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #241012 0%, #150a0b 100%);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.edge-card--featured {
  background: linear-gradient(165deg, #c4141d 0%, #7c1017 100%);
  transform: translateY(-16px);
  box-shadow: 0px 30px 60px -20px rgba(124, 16, 23, 0.5);
}
.edge-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
}
.edge-card__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.edge-card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(255 255 255);
  border-bottom: 1px solid #f1f1f124;
  padding-bottom: 13px;
  font-weight: 500;
}
.edge-card__check {
  flex-shrink: 0;
  color: var(--color-red-accent);
  font-weight: 700;
  font-size: 15px;
}
.edge-card--featured .edge-card__check {
  color: var(--color-white);
}

/* ==========================================================================
   Program pathway cards (Engineering track / Management track)
   ========================================================================== */
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}
.pathway-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1b0c0e;
  box-shadow: var(--shadow-card);
  position: relative;
}
.pathway-card__photo-wrap {
  position: relative;
}
.pathway-card__photo {
  width: 100%;
  aspect-ratio: 667 / 400;
  object-fit: cover;
  display: block;
}
.pathway-card__photo-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(10, 4, 5, 0.85) 100%
  );
}
.pathway-card__overlay {
  position: absolute;
  left: 32px;
  bottom: 20px;
  right: 32px;
}
.pathway-card__eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-pink-accent);
}
.pathway-card__title {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  color: var(--color-white);
}
.pathway-card__body {
  padding: 28px 32px 32px;
}
.pathway-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 46ch;
}
.pathway-card__label {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.pathway-card__list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
.pathway-card__cta {
  margin-top: 24px;
}

.pathway-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.2s var(--ease),
    padding-left 0.2s var(--ease);
}
.pathway-link:last-child {
  border-bottom: none;
}
.pathway-link__arrow {
  color: var(--color-red-accent);
  font-weight: 700;
}
.pathway-link:hover {
  color: var(--color-white);
  padding-left: 6px;
}

/* ==========================================================================
   Curriculum block (Inside the Degree) with year tabs
   ========================================================================== */
.curriculum {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.curriculum__tabs {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
}
.curriculum__tab {
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-muted);
  text-align: left;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.curriculum__tab:hover {
  border-color: var(--color-red-600);
  color: var(--color-red-600);
}
.curriculum__tab[aria-selected="true"] {
  background: var(--color-red-600);
  border-color: var(--color-red-600);
  color: var(--color-white);
}
.curriculum__panel {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: 40px;
  /*min-height: 300px;*/
}
.curriculum__panel[hidden] {
  display: none;
}
.curriculum__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.curriculum__pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--color-text);
}
.curriculum__pill-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-red-600);
  flex-shrink: 0;
}

/* ==========================================================================
   Career readiness services (icon grid)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}
.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card__icon-wrap {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__icon {
  width: 34px;
  height: 34px;
  color: var(--color-red-600);
}
.service-card__title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.4;
}

/* ==========================================================================
   Learning outcomes (checklist + photo)
   ========================================================================== */
.outcomes {
  display: grid;
  grid-template-columns: minmax(0, 50%) 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}
.outcomes__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 608/509;
}
.outcomes__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-red-600);
}
.outcomes__title {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--color-black);
}
.outcomes__list {
  margin-top: 32px;
}
.outcomes__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  color: var(--color-text);
}
.outcomes__item:last-child {
  border-bottom: none;
}
.outcomes__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-red-600);
}

/* ==========================================================================
   Eligibility criteria
   ========================================================================== */
.eligibility {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}
.eligibility__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--color-black) 0%, #33090c 100%);
  padding: 56px;
  color: var(--color-white);
}
.eligibility__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(24px, 2.2vw, 32px);
}
.eligibility__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

/* ==========================================================================
   Fee details
   ========================================================================== */
.fee-details {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}
.fee-details__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 32px;
}
.fee-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 24px;
}
.fee-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--color-surface-alt);
}
.fee-card__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.fee-card__value {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-black);
}
.fee-card__pill {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.fee-card__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.fee-panel {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--color-black);
  color: var(--color-white);
}
.fee-panel__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
}
.fee-panel__text {
  margin-top: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.fee-panel__value {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
}
.fee-panel__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fee-panel__payment {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.fee-panel__payment-modes {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.fee-panel__payment-mode {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.fee-panel__payment-icon {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Application process (3-step)
   ========================================================================== */
.app-process {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}
.app-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.app-process__step {
  text-align: center;
  padding-inline: 24px;
}
.app-process__icon-wrap {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.app-process__icon {
  width: 37px;
  height: 37px;
  color: var(--color-red-600);
}
.app-process__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  color: var(--color-black);
}
.app-process__text {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Enquiry form
   ========================================================================== */
.enquiry-form {
  max-width: 560px;
  margin-left: auto;
  margin-top: -420px;
  position: relative;
  z-index: 2;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px;
}
.form-field {
  margin-bottom: 24px;
}
.form-field__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 8px;
}
.form-field__label .required {
  color: var(--color-red-600);
}
.form-field__input,
.form-field__select {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
  font-size: 15px;
  color: var(--color-text);
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}
.form-field__input:focus,
.form-field__select:focus {
  border-color: var(--color-red-600);
  background: var(--color-white);
  outline: none;
}
.form-field__input:invalid:not(:placeholder-shown) {
  border-color: var(--color-red-accent);
}
.form-field__error {
  display: none;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--color-red-accent);
}
.form-field.has-error .form-field__error {
  display: block;
}
.form-field.has-error .form-field__input,
.form-field.has-error .form-field__select {
  border-color: var(--color-red-accent);
}
.form-success {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: #e8f6ec;
  color: #1e7a38;
  font-size: 14.5px;
  margin-bottom: 20px;
}
.form-success.is-visible {
  display: block;
}

/* ==========================================================================
   Final CTA banner
   ========================================================================== */
.bottom-cta {
  background: url("https://cilearningschool.com/gu_asn_program/assets/images/footer-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 20px;
}
.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: var(--container-max);
  margin: 0 auto;
  isolation: isolate;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.final-cta__vector {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: auto;
  z-index: -1;
  opacity: 0.35;
}
.final-cta__inner {
  width: 60%;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}
.final-cta__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.2;
  color: var(--color-white);
}
.final-cta__text {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.final-cta__actions {
  margin-top: 32px;
}

/* ==========================================================================
   Thank you page
   ========================================================================== */
.ty-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 90px);
  padding: 90px var(--gutter-desktop) 72px;
}
.ty-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 48px 40px;
}
.ty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-red-600);
  color: var(--color-white);
  margin-bottom: 20px;
}
.ty-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}
.ty-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red-600);
}
.ty-title {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
}
.ty-text {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.ty-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.ty-next {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.ty-next__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.ty-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.ty-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text);
}
.ty-links a:hover {
  color: var(--color-red-600);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding-block: 32px;
  border-top: 1px solid var(--color-border);
}
.site-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__copyright {
  font-size: 14px;
  color: var(--color-text-muted);
}
.site-footer__links {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.site-footer__links a:hover {
  color: var(--color-red-600);
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .btn__icon,
  .site-header__brand,
  .feature-card,
  .service-card,
  .site-nav__link {
    transition: none;
  }
}

:root {
  --primary: #c8101a;
  --gray: #b9aaaa;
  --line: #d9d9d9;
  --bg: #f8f8f8;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #c21e1e;
  --ink: #141414;
  --border: #f1d9d9;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pp-timeline {
  animation: fadeUp 400ms ease both;
}
.pp-card {
  position: relative;
  height: 450px;
  border-radius: 12px;
  background: linear-gradient(145deg, #d81d28 0%, #b10814 45%, #8a000a 100%);
  padding: 56px 26px 24px;
  overflow: visible;
}
.pp-card p {
  font-size: 15px;
}
.pp-tab {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 175px;
  height: 50px;
  background: #ffffff;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}
.step-img {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.pp-card {
  animation: fadeUp 400ms ease both;
  transition: all 0.35s ease;
}
.pp-card:nth-child(1) {
  animation-delay: 60ms;
}
.pp-card:nth-child(2) {
  animation-delay: 120ms;
}
.pp-card:nth-child(3) {
  animation-delay: 180ms;
}
.pp-card:nth-child(4) {
  animation-delay: 240ms;
}
.pp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 55px rgba(220, 30, 40, 0.38);
  background: linear-gradient(145deg, #e4222e 0%, #c10a17 45%, #96000c 100%);
}
.pp-card:hover .pp-tab {
  transform: translateX(-50%) translateY(-4px);
}
.pp-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.pp-num {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 52px;
  color: var(--gray);
  line-height: 1;
  flex-shrink: 0;
}
.pp-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 2;
}
.pp-list li span:first-child {
  font-size: 11px;
  margin-top: 9px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .pp-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .pp-grid {
    grid-template-columns: 1fr !important;
  }
  .pp-timeline {
    display: none !important;
  }
}
.pad-top-0 {
  padding-top: 0px;
}
.pad-bot-0 {
  padding-bottom: 0px;
}

.py-40 {
  padding: 40px 0px;
}
.partner-stat_left__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--colo-purple);
}

.partner-card__testimonial-left {
  position: relative;
  margin: 70px -40px -40px;
  flex: 1;
  display: flex;
  padding: 40px 30px 0px 40px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(
    200deg,
    var(--color-surface-alt) 0%,
    #673ab72e 100%
  );
  overflow: hidden;
  min-height: 330px;
}
@keyframes fadeUp2 {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ps-section {
  background: #f3f2f2;
  padding: 60px 24px;
}
.ps-container {
  max-width: 1100px;
  margin: 0 auto;
}
.ps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.ps-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}
.ps-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ps-image {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.ps-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  z-index: 0;
}
.ps-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.88) 40%,
    rgba(255, 255, 255, 0.45) 60%,
    rgba(255, 255, 255, 0) 78%
  );
  z-index: 1;
  pointer-events: none;
}

.ps-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  padding: 50px 20px 32px 45px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.ps-track {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #ec3013;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ps-title {
  font-size: 42px;
  font-weight: 700;
  color: #201e1d;
  margin: 0 0 20px;
  line-height: 1.15;
}
.ps-desc {
  font-size: 16px;
  color: #201e1d;
  line-height: 1.7;
  margin: 0;
}

.ps-bottom {
  padding: 28px;
  background: linear-gradient(180deg, #1a0505 0%, #0d0505 60%, #060303 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ps-spec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.ps-spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}
.ps-spec-item:last-child {
  border-bottom: none;
}
.ps-spec-item:hover {
  transform: translateX(6px);
}
.ps-spec-text {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.ps-spec-arrow {
  color: #ec3013;
  font-size: 16px;
}

.ps-btn {
  padding: 13px 32px;
  color: var(--color-white);
  background-image: linear-gradient(
    176deg,
    var(--color-red-600) 0%,
    var(--color-red-700) 100%
  );
  border: 1.334px solid var(--color-red-600);
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.25s ease;
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.ps-btn:hover {
  background: #b81818;
}

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

.bot-down {
  position: absolute;
  bottom: 30px;
}
.cs-section-btech {
  background: url("https://cilearningschool.com/gu_asn_program/assets/images/btech-cs.jpg")
    no-repeat !important;
  background-size: cover !important;
  background-position: top center !important;
}
.cs-section {
  min-height: 800px;
  padding: 80px 24px;
  background: url("https://cilearningschool.com/gu_asn_program/assets/images/bba-cs.jpg")
    no-repeat;
  background-size: cover;
  background-position: top center;
}
.cs-container {
  max-width: 1200px;
  margin: 0 auto;
}
.cs-heading-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.cs-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.cs-kicker span.line {
  width: 140px;
  height: 1px;
  background: #333;
}
.cs-kicker span.text {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.cs-title {
  font-size: 38px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: center;
  gap: 24px;
}
.cs-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.cs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(194, 30, 30, 0.15);
  border-color: var(--accent);
}
.cs-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  padding: 10px;
}
.cs-card:hover .cs-icon {
  transform: scale(1.1);
}
.cs-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.cs-illustration-wrap {
  display: flex;
  justify-content: center;
}
.cs-illustration {
  width: 100%;
  max-width: 320px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* entrance animations — run automatically on load */
/*@keyframes fadeUp3{ from{ opacity:0; transform:translateY(24px); } to{ opacity:1; transform:translateY(0); } }*/
@keyframes slideInL {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInR {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.cs-left .cs-card {
  opacity: 0;
  animation: slideInL 600ms ease forwards;
}
.cs-right .cs-card {
  opacity: 0;
  animation: slideInR 600ms ease forwards;
}
/*.cs-illustration{ opacity:0; animation: fadeUp3 700ms ease forwards, floatY 5s ease-in-out 700ms infinite; }*/

.cs-left .cs-card:nth-child(1),
.cs-right .cs-card:nth-child(1) {
  animation-delay: 150ms;
}
.cs-left .cs-card:nth-child(2),
.cs-right .cs-card:nth-child(2) {
  animation-delay: 280ms;
}
.cs-left .cs-card:nth-child(3),
.cs-right .cs-card:nth-child(3) {
  animation-delay: 410ms;
}

@media (max-width: 900px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }
  .cs-illustration-wrap {
    order: 1;
  }
  .cs-heading-wrap {
    order: 0;
  }
  .cs-left {
    order: 2;
  }
  .cs-right {
    order: 3;
  }
}
.lo-section {
  background: #ffffff;
  padding: 80px 40px 20px 40px;
}
.lo-container {
  max-width: 1100px;
  margin: 0 auto;
}

.lo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.lo-placeholder {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  background: #f4f4f4;
  border: 1px dashed #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  text-align: center;
}
.lo-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.lo-kicker span.label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c21e1e;
  text-transform: uppercase;
}
.lo-kicker span.line {
  width: 36px;
  height: 1px;
  background: #c21e1e;
}
.lo-title {
  font-size: 30px;
  font-weight: 500;
  color: #141414;
  margin: 0 0 22px;
  line-height: 1.3;
}

.lo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lo-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #ededed;
  font-size: 16px;
  color: #333;
}
.lo-list li .check {
  color: #c21e1e;
  font-weight: 700;
}

.lo-divider {
  height: 1px;
  background: #ededed;
  margin-bottom: 50px;
}

.lo-row-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: url(https://cilearningschool.com/gu_asn_program/assets/images/eligi-bg.jpg);
  width: 100%;
  background-size: cover;
  padding-left: 60px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.lo-elig-title {
  font-size: 26px;
  font-weight: 700;
  color: #141414;
  margin: 0 0 18px;
}
.lo-elig-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lo-elig-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
.lo-elig-list li .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333;
  margin-top: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .lo-row,
  .lo-row-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: 0px;
  }
  .MB-LEFT {
    padding-left: 30px;
    padding-top: 20px;
  }
}

.fee-section {
  background: #242322;
  padding: 60px 40px;
}
.fee-container {
  max-width: 1100px;
  margin: 0 auto;
}
.fee-heading {
  color: #ffffff;
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 30px;
}

.fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fee-card-white {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
}
.fee-label {
  font-size: 14px;
  color: #333;
}
.fee-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  flex-wrap: wrap;
  gap: 12px;
}
.fee-amount {
  font-size: 28px;
  font-weight: 700;
  color: #141414;
}
.fee-btn-dark {
  background: #141414;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.fee-app {
  margin-top: 30px;
}
.fee-app-amount {
  font-size: 22px;
  font-weight: 700;
  color: #141414;
  margin-top: 4px;
}

.fee-notes {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fee-notes span {
  font-size: 12px;
  color: #888;
}

.fee-card-red {
  background: #c21e1e;
  border-radius: 14px;
  padding: 32px;
  color: #fff;
}
.fee-red-title {
  font-size: 16px;
  font-weight: 500;
}
.fee-emi {
  margin-top: 22px;
}
.fee-emi-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.fee-emi-amount {
  font-size: 26px;
  font-weight: 700;
  margin-top: 4px;
}
.fee-btn-white {
  background: #ffffff;
  color: #141414;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

.fee-payment {
  margin-top: 34px;
}
.fee-payment-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.fee-payment-icons {
  display: flex;
  gap: 40px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.fee-payment-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.fee-payment-icon span {
  font-size: 13px;
}

@media (max-width: 768px) {
  .fee-grid {
    grid-template-columns: 1fr;
  }
}
.ap-section {
  background: linear-gradient(135deg, #fff6f6 0%, #ffeaea 100%);
  padding: 70px 24px;
}
.ap-container {
  max-width: 1140px;
  margin: 0 auto;
}

.ap-kicker-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.ap-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}
.ap-kicker span.line {
  width: 36px;
  height: 1px;
  background: #c21e1e;
}
.ap-kicker span.label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #c21e1e;
  text-transform: uppercase;
}
.ap-title {
  font-size: 38px;
  color: #141414;
  margin: 0;
  line-height: 1.25;
}
.ap-title em {
  color: #c21e1e;
  font-style: italic;
}

.ap-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.ap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}
.ap-line {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 100%;
  height: 0;
  border-top: 2px dotted #c21e1e;
  z-index: 0;
}
.ap-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c21e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 10px;
}
.ap-icon i {
  color: #fff;
  font-size: 20px;
}
.ap-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #141414;
  margin: 16px 0 8px;
}
.ap-step .ap-lines {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
.mb-3 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .ap-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .ap-line {
    display: none;
  }
}

.hero-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(236, 48, 19, 0.35) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #1a0505 0%, #0d0505 50%, #060303 100%);
  min-height: 640px;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 640px;
  align-items: stretch;
}

.hero-left {
  padding: 64px 0 0 48px;
  position: relative;
}
.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 480px;
  position: relative;
  z-index: 2;
}
.hero-photo-wrap {
  position: absolute;
  left: 48px;
  right: 0;
  bottom: 0;
  top: 220px;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
  display: block;
}

.hero-right {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
/* Drop your form widget markup into .hero-right */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 40px 24px 0;
  }
  .hero-right {
    padding: 40px 24px;
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
  }
  .hero-photo-wrap {
    position: relative;
    left: 0;
    top: 0;
    min-height: 280px;
    margin-top: 32px;
  }
  .hero-title {
    font-size: 34px;
  }
}
.dis-text {
  font-size: 12px;
  color: #888;
  padding-top: 20px;
}

.ca-section {
  position: relative;
  padding: 90px 24px 110px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 90%,
      rgba(180, 60, 180, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 100%,
      rgba(80, 60, 200, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 20% 0%,
      rgba(255, 255, 255, 0.9) 0%,
      transparent 45%
    ),
    linear-gradient(160deg, #fdf3f4 0%, #f6d9e2 35%, #e7a9c2 60%, #b98fd6 100%);
}
.ca-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.ca-container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
}
.ca-heading {
  text-align: center;
  margin-bottom: 56px;
}
.ca-title {
  font-size: 44px;
  font-weight: 700;
  color: #201e1d;
  margin: 0 0 20px;
}
.ca-sub {
  font-size: 18px;
  color: #201e1d;
  opacity: 0.75;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.ca-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.ca-card {
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}
.ca-card.dark {
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
}
.ca-card.accent {
  padding: 40px 28px;
  transform: scale(1.05);
  background: linear-gradient(165deg, #c4141d 0%, #7c1017 100%);
  box-shadow: 0 20px 45px rgba(236, 48, 19, 0.35);
}

.ca-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(236, 48, 19, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.ca-card.accent .ca-icon {
  background: rgba(255, 255, 255, 0.18);
}
.ca-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ec3013;
}
.ca-card.accent .ca-icon svg {
  stroke: #fff;
}

.ca-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}
.ca-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ca-list-item:last-child {
  border-bottom: none;
}
.ca-check {
  color: #ec3013;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.ca-card.accent .ca-check {
  color: #fff;
}
.ca-item-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .ca-cards {
    grid-template-columns: 1fr;
  }
  .ca-card.accent {
    transform: none;
  }
  .ca-title {
    font-size: 32px;
  }
}

.at-section {
  background: #fff;
  padding: 70px 24px 40px;
  overflow-x: auto;
}
.at-track {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  position: relative;
  min-width: 900px;
}
.at-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #d9d9d9;
  z-index: 0;
  transform: translateY(-1px);
}
.at-cell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.at-cell.row1 {
  grid-row: 1;
  justify-content: flex-end;
}
.at-cell.row2 {
  grid-row: 2;
  justify-content: flex-start;
}

.at-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f2ece6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.at-icon-head {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c0392b;
}
.at-icon-body {
  position: absolute;
  top: 26px;
  left: 19px;
  width: 18px;
  height: 12px;
  border-radius: 9px 9px 0 0;
  border: 2px solid #c0392b;
  border-bottom: none;
}
.at-icon-doc {
  position: absolute;
  top: 24px;
  right: 14px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #c0392b;
}

.at-title {
  font-size: 17px;
  font-weight: 700;
  color: #201e1d;
  margin: 0 0 8px;
}
.at-desc {
  font-size: 13.5px;
  color: #6b6b6b;
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}
.at-stem {
  width: 1px;
  height: 56px;
  background: #d9d9d9;
}
.at-icon-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.at-cell.row1 .at-icon-stack {
  margin-bottom: -6px;
}
.at-cell.row2 .at-icon-stack {
  margin-top: -6px;
}
.at-cell.row1 > .at-text,
.at-cell.row1 > .at-icon-stack {
  margin-bottom: 24px;
}
.at-cell.row2 > .at-text,
.at-cell.row2 > .at-icon-stack {
  margin-top: 24px;
}

.at-dot-abs {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ec3013;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media (max-width: 900px) {
  .at-section {
    padding: 48px 20px;
  }
  .at-track {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 10px;
  }
  .at-line {
    display: none;
  }
  .at-cell.row1,
  .at-cell.row2 {
    grid-column: unset !important;
    grid-row: unset;
    padding: 0;
    display: flex;
  }
  .at-cell {
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: center;
    margin: 0 !important;
  }
  .at-icon-stack {
    margin: 0 0 14px !important;
  }
  .at-stem {
    display: none;
  }
  .at-dot-abs {
    display: none;
  }
  .at-desc {
    max-width: 320px;
  }
}
.Financial {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.fin-img img {
  border-radius: 10px;
  width: 111px;
}
.fin-img p {
  text-align: center;
  padding: 15px 0px;
  font-weight: 600;
}

.npf_wgts,
.npf_wgts iframe {
  width: 100%;
}
.npf_wgts iframe {
  min-height: 560px;
  border: 0;
  overflow: hidden;
}
