/*hiring partners*/

.hiring-partners-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
     
}

.hiring-partners-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hiring-partners-title span {
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    color: #585858;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.logo-slider:active {
    cursor: grabbing;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    will-change: transform;
}

.logo-item {
    width: 200px;
    height: 60px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item.logo-tall {
    width: 102px;
    height: 80px;
}

.logo-item img {
    /*width: 100%;*/
    /*height: 100%;*/
    object-fit: contain;
    display: block;
}



.learning-section {
    width: 100%;
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
    gap: 60px;
}


/* ========================================
   ACCORDION
======================================== */

.accordion-wrapper {
    width: 50%;
    
}

.accordion-item {
    position: relative;
    width: 100%;
    margin-bottom: 12px;

    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 5px;

    background: #fff;

    overflow: hidden;
}

.accordion-header {
    width: 100%;
    min-height: 50px;
    font-size:20px;

    padding: 10px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: 0;
    outline: none;
    background: transparent;

    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-align: left;
}


/* TITLE */

.accordion-header > span:first-child {
    flex: 1;
}

.accordion-item.active .accordion-header {
    color: #F9A431;
    font-size:20px;
}
.accordion-item.active {
     background-color: #002372;
    border-color: #002372;
}

/* ========================================
   ACCORDION ICON
======================================== */


.accordion-icon {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: auto;
}


.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}


/* ========================================
   ACCORDION CONTENT
======================================== */
.accordion-content {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    padding: 0 10px;
    font-family: "Plus Jakarta Sans", sans-serif;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        padding 0.4s ease;
}

.accordion-content p {
    min-height: 0;
    overflow: hidden;

    margin: 0;

    color: #fff;
    font-size: 18px;
    line-height: 1.6;

    opacity: 0;
    transform: translateY(-8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;

    opacity: 1;

    padding-top: 0;
    padding-bottom: 20px;
}


.accordion-item.active .accordion-content p {
    /*padding: 0 35px 22px 0;*/

    opacity: 1;
    transform: translateY(0);
}
/* =========================
   ICON ROTATION
========================= */

.accordion-icon svg {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon svg {
    transform: rotate(90deg);
}


/* =========================
   PROGRESS BAR
========================= */

.accordion-progress {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #fff;

    overflow: hidden;
}

.accordion-progress::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background: #F9A431;
}


.accordion-progress.running::before {
    animation: accordionProgress 8s linear forwards;
}

/* Only active accordion gets animation */
.accordion-item.active .accordion-progress::before {
  animation: accordionProgress 8s linear forwards;
}

@keyframes accordionProgress {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}
/* ========================================
   IMAGE AREA
======================================== */

.image-area {
    width: 50%;
    min-height: 480px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ========================================
   IMAGE SWITCHER
======================================== */

.image-switcher {
    position: relative;
    width: 100%;
    height: 100%;
}


.image-switcher.is-dragging {
    cursor: grabbing;
}


/* ========================================
   IMAGE CARD
======================================== */

.image-card {
    position: absolute;
    inset: 0;

    overflow: hidden;
    border-radius: 12px;
      background: transparent !important;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}
/* Back cards */
.image-card:nth-child(1) {
    transform: rotate(-6deg) translate(-18px, 8px);
    z-index: 1;
}

.image-card:nth-child(2) {
    transform: rotate(5deg) translate(18px, 8px);
    z-index: 2;
}

.image-card.active {
    opacity: 1;
    transform: rotate(0deg) translate(0, 0);
    z-index: 5;
}


/* ========================================
   IMAGE
======================================== */

.image-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 8px;

    position: relative;
    z-index: 2;

    transition: transform 0.3s ease;
}


/* ========================================
   DECORATIVE PURPLE LAYER
======================================== */

.image-card::before,
.image-card::after {
    display: none !important;
    content: none !important;
}


/* ========================================
   ACTIVE IMAGE
======================================== */

.image-card.active img {
    transform: scale(1);
}


.image-card:not(.active) {
    opacity: 1;
}
/* ========================================
   DRAG HINT
======================================== */

.drag-hint {
    position: absolute;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 10px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.92);

    color: #27324a;

    font-size: 11px;
    font-weight: 600;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);

    z-index: 20;

    pointer-events: none;

    animation: dragHintMove 2s ease-in-out infinite;
}

.drag-arrow {
    font-size: 17px;
    line-height: 1;
}


/* ========================================
   DRAG HINT ANIMATION
======================================== */

@keyframes dragHintMove {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-6px);
    }

}


/* ========================================
   DESKTOP
======================================== */

@media (min-width: 769px) {

    .image-card {
        width: 78%;
        height: 400px;
    }

}







/* =========================================
   INDUSTRY SPEAKS - DESKTOP ONLY
========================================= */

.industry-speaks-section {
    width: 100%;
    padding: 70px 0 80px;
    overflow: hidden;
    background: #ffffff;
}

.industry-speaks-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.industry-speaks-title {
    margin: 0 0 45px;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #f9a431;
}

.industry-slider {
    width: 100%;
    overflow: visible;
}

.industry-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    align-items: stretch;
}

.industry-card {
    width: 100%;
    min-width: 0;
    min-height: 350px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 24px;
    box-sizing: border-box;

    background: #ffffff;

    border-radius: 12px;
    border-bottom: 2px solid #f9a431;

    filter: drop-shadow(
        0 8px 16px rgba(201, 207, 218, 0.6)
    );
}

.industry-quote {
    width: 100%;
    margin: 0;

    text-align: center;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    line-height: 26.1px;
    font-weight: 500;
    font-style: italic;

    color: #797f8b;
}

.quote-mark {
    font-size: 36px;
    line-height: 0;
    color: #90949c;
}

.industry-person {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 16px;

    padding-top: 16px;
}

.industry-avatar {
    width: 80px;
    height: 80px;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: #fbe6cb;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.industry-person > div:first-child img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.industry-person-info {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-person-info h3 {
    margin: 0;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 17.6px;
    font-weight: 700;

    color: #4a4949;
}

.industry-person-info span {
    margin-top: 2px;

    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 19.6px;
    font-weight: 500;

    color: #90949c;
}

.industry-logo {
    width: 100%;
    /*height: 32px;*/

    margin-top: auto;
    padding-top: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.industry-logo img {
    display: block;

    max-width: 200px;
    width: auto;
    height: 32px;

    object-fit: contain;
    pointer-events: none;
}
/*scholarship-section*/
.scholarship-section {
  width: 100%;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.scholarship-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 338px;
  gap: 0;
  box-sizing: border-box;
}

/* LEFT 50% */

.scholarship-highlight {
  width: 600px; 
  min-height: 320px;
  box-sizing: border-box;
  padding: 20px 35px;
  border-radius: 8px;
  background: linear-gradient(
    170.2deg,
    #001d43 40.6%,
    #08408b 98.6%
  );

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 42px;

  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.04));
}

.scholarship-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fee-structure {
    display: flex;
    column-gap: 25px;
    align-items: center;
}

.foundation-name {
  color: #fff;
  font-family: "IBM Plex Serif", serif;
  font-size: 16px;
  line-height: 19.8px;
  font-weight: 500;
}

.super-scholar {
  color: #fff;
  font-family: "IBM Plex Serif", serif;
  font-size: 28px;
  line-height: 29.1px;
  font-weight: 600;
}

.orange-line {
  width: 48px;
  height: 1px;
  flex-shrink: 0;
  background: rgba(249, 164, 49, 0.8);
}

.scholarship-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #f9a431;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
}

.amount-number {
  font-size: 71px;
  line-height: 71px;
}

.amount-text {
  font-size: 32px;
  line-height: 35px;
}

.scholarship-description {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  line-height: 29.7px;
  font-weight: 600;
}

.scholarship-note {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  line-height: 17.4px;
  font-weight: 500;
  letter-spacing: 0.1px;
}


/* RIGHT 50% */

.scholarship-content {
  /*width: 50%;*/
    width: calc(100% - 600px);
  /*height: 100%;*/
  box-sizing: border-box;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.scholarship-title {
  width: 100%;
  color: #4c5b6f;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  line-height: 31.2px;
  font-weight: 500;
}

.scholarship-title strong {
  display: block;
  color: #f9a431;
  font-size: 28px;
  line-height: 36.4px;
  font-weight: 700;
}


/* CARDS */

.scholarship-cards {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.scholarship-card-row {
  display: flex;
  width: 100%;
  gap: 16px;
}

.scholarship-card {
  flex: 1;
  min-width: 0;
  height: 66px;
  box-sizing: border-box;

  padding: 12px 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  border: 1px solid rgba(249, 164, 49, 0.32);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.8);

  filter: drop-shadow(
    0 4px 33px rgba(0, 0, 0, 0.04)
  );
}

.scholarship-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #fff4e4;
}

.scholarship-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.scholarship-icon svg path {
  fill: none;
  stroke: #f9a431;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scholarship-card span {
  min-width: 0;
  color: #4c5b6f;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}


/* BUTTON */

.scholarship-button {
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  padding: 0 28px;

  box-sizing: border-box;

  border: 2px solid #f9a431;
  border-radius: 100px;

  background: #f9a431;

  color: #fff;
  text-decoration: none;

  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}


/* DESKTOP */


/*legacy-launchpad*/
.legacy-launchpad-carousel {
  position: relative;
  width: 100%;
}

.legacy-launchpad-viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.legacy-launchpad-viewport.is-dragging {
  cursor: grabbing;
}

.legacy-launchpad-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
}

.legacy-launchpad-card {
  width: 210px;
  height: 290px;
  flex: 0 0 210px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.legacy-launchpad-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.legacy-launchpad-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.legacy-launchpad-overlay {
  position: absolute;
  inset: 0;
  padding: 0 15px 18px;

  background: linear-gradient(
    to bottom,
    rgba(0, 55, 120, 0) 35%,
    rgba(0, 55, 120, 0.25) 50%,
    rgba(0, 55, 120, 0.75) 75%,
    #003778 100%
  );

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.legacy-launchpad-info {
  width: 100%;
  position: static;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  /*gap: 2px;*/
  text-align: center;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
}

.legacy-launchpad-name {
  width: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.legacy-launchpad-line {
  width: 55px;
  height: 1px;
  flex-shrink: 0;
  background: #f9a431;
  margin: 2px 0;
}

.legacy-launchpad-role {
  width: 100%;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  min-height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.legacy-launchpad-logo {
 

  display: flex;
  align-items: center;
  justify-content: center;

  /*margin-top: 3px;*/
}

.legacy-launchpad-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.legacy-launchpad-logo-wide {
  width: 75px;
  height: 28px;
}

.legacy-launchpad-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;

  width: 42px;
  height: 42px;

  border: 0;
  border-radius: 50%;
  background: #001d43;
  color: #fff;

  cursor: pointer;
  transform: translateY(-50%);
}

.legacy-launchpad-prev {
  left: 10px;
}

.legacy-launchpad-next {
  right: 10px;
}

/*student Life*/
.student-life-carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.student-life-viewport {
  width: calc(100% - 100px);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.student-life-viewport.is-dragging {
  cursor: grabbing;
}

.student-life-track {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: max-content;
  align-items: flex-start;
  will-change: transform;
}

.student-life-card {
  position: relative;
  width: 515px;
  height: 320px;
  flex: 0 0 515px;
  overflow: hidden;
  border-radius: 8px;
  filter: drop-shadow(
    0px 8px 24px rgba(0, 29, 67, 0.24)
  );
  backface-visibility: hidden;
  transform: translateZ(0);
}

.student-life-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* Arrows */

.student-life-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: #001d43;
  color: #fff;

  font-size: 22px;
  line-height: 1;

  cursor: pointer;

  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.student-life-arrow:hover {
  background: #f9a431;
}

.student-life-prev {
  left: 10px;
}

.student-life-next {
  right: 10px;
}

/*FAQ section*/
.faq-section {
  width: 100%;
  padding: 64px 80px;
  box-sizing: border-box;
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.faq-header h2 {
  margin: 0;
  color: #fff;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 24px;
  line-height: 40px;
  font-weight: 700;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.faq-category {
  border: 1px solid rgba(249, 164, 49, 0.2);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 12px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-category.active {
  background: #1f385a;
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
}

.faq-item {
  display: none;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-sizing: border-box;
}

.faq-item.visible {
  display: block;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 16px 24px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.faq-icon {
  flex-shrink: 0;
  color: #f9a431;
  font-size: 24px;
  line-height: 24px;
  transition: transform 0.25s ease;
}

.faq-answer {
  display: none;
  padding: 0 24px 16px;
}

.faq-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/*Geography selection*/
/* =========================
   Geography / Campus Section
   Desktop Only
========================= */

@media (min-width: 1025px) {

  .geography-section {
    width: 1440px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
  }

  .geography-heading-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }

  .geography-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .geography-heading .text {
    display: inline;
    width: 100%;
    text-align: center;
    font-size: 32px;
    line-height: normal;
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-weight: 700;
    font-stretch: 100%;
    color: #f9a431;
    white-space: unset;
  }

  .heading-dark {
    color: #001d43;
  }

    .campus-cards {
      display: flex;
      flex-direction: row;
      gap: 40px;
      align-items: flex-start;
      justify-content: center;
      width: 100%;
      position: relative;
    }
  .campus-card {
    width: 680px;
    height: 320px;
    border-radius: 13.9px;
    position: relative;
    flex-shrink: 0;
    filter: drop-shadow(0 6.9px 20.8px rgba(235, 135, 0, 0.24));
    overflow: hidden;
  }

  .campus-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1.7px solid rgba(249, 164, 49, 0.2);
    border-radius: 13.9px;
  }

  .campus-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
  }

  .bengaluru-card .campus-image {
    left: -4px;
    top: 1px;
    width: calc(100% + 4px);
    height: 319px;
  }

  .bengaluru-card .campus-image img {
    object-fit: cover;
    transform: translate(0.3px, -17.3px) scale(1, 1.11);
  }

  .campus-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 126.4px;
    padding: 24.3px 27.8px 0;
    box-sizing: border-box;

    border-radius: 0 0 13.9px 13.9px;

    background-image:
      linear-gradient(
        225.7deg,
        rgba(0, 29, 67, 0.11) 58.3%,
        rgba(0, 29, 67, 0.32) 82.4%
      );

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6.9px;
  }

  .mumbai-overlay {
    background-image:
      linear-gradient(
        264.4deg,
        rgba(0, 29, 67, 0.2) 49.3%,
        rgba(0, 29, 67, 0.32) 56.1%
      );
  }

  .campus-title {
    width: max-content;
    color: #fff;
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 29.5px;
    line-height: 38.2px;
    font-weight: 600;
  }

  .campus-tags {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6.9px;
    width: max-content;
  }

  .campus-tag {
    border: 1px solid #f9a431;
    border-radius: 10000px;
    background-color: rgba(20, 20, 20, 0.3);

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 33px;
    box-sizing: border-box;
    padding: 0 20.8px;

    color: #f9a431;
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 16px;
    line-height: 31.2px;
    font-weight: 600;
    white-space: nowrap;
  }

}

/*pixels*/
@media (min-width: 1025px) {
  .pixel-pattern {
    overflow: hidden;
    transform-origin: 0 0;
    transform: scale(-1, 1);
    right: 0;
    top: 689px;
    width: 166.8px;
    height: 139px;
    position: absolute;
  }

  .pixel-pattern > div {
    width: 27.8px;
    height: 27.8px;
    position: absolute;
  }
}

/*students life*/
.mobile-image-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.mobile-image-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  transition: transform 0.6s ease-in-out;
}

.mobile-image-card {
  width: 361px;
  height: 224px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  filter: drop-shadow(0px 8px 24px rgba(0, 29, 67, 0.24));
}

.mobile-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/*hero carousel*/
.hero-carousel {
  width: 720px;
  position: relative;
  overflow: hidden;
  border-radius: 15.4px;
  filter: drop-shadow(0px 7.7px 46.1px rgba(249, 164, 49, 0.24));
  cursor: grab;
  touch-action: pan-y;
}
.hero-carousel:active {
  cursor: grabbing;
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
   user-select: none;
  -webkit-user-select: none;
}

.hero-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 500px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 15.4px;
}
/* =========================================
   NEW STUDENT TESTIMONIALS
========================================= */

.new-student-testimonials {
    /*width: 100%;*/
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

.new-student-testimonials__container {
    width: 100%;
    /*max-width: 1400px;*/
    margin: 0 auto;
    padding: 0 20px;
}

.new-student-testimonials__header {
    margin-bottom: 30px;
}

.new-student-testimonials__title {
    margin: 0;
   font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
    text-align:center;
}


/* =========================================
   CAROUSEL
========================================= */

.new-student-testimonials__carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.new-student-testimonials__track {
    display: flex;
    gap: 24px;
    width: 1440px;
    transition: transform 0.5s ease;
    user-select: none;
    touch-action: pan-y;
}


.new-student-testimonials__track.is-dragging {
    cursor: grabbing;
    transition: none;
}


/* =========================================
   CARD
========================================= */

.new-student-testimonial-card {
    box-sizing: border-box;
    width: 312px;
    min-width: 312px;
    min-height: 274px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 20px;

    border: 0.5px solid #ebdac2;
    border-radius: 12px;

    background: #ffd9a6;
     flex: 0 0 calc(
        (100% - 72px) / 5
    );
     font-family: "IBM Plex Sans", system-ui, sans-serif;
  
}


/* =========================================
   PROFILE
========================================= */

.new-student-testimonial-card__profile {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.new-student-testimonial-card__avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;

    overflow: hidden;
    border-radius: 50%;
    background: #fff;
}

.new-student-testimonial-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-student-testimonial-card__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
     font-family: "IBM Plex Sans", system-ui, sans-serif;
    gap: 4px;
}

.new-student-testimonial-card__name {
    margin: 0;

     font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;

    color: #222;
}

.new-student-testimonial-card__college {
    margin: 0;

    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 13px;
    line-height: 16px;
    font-weight: 450;

    color: #222;
}


/* =========================================
   META
========================================= */

.new-student-testimonial-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.new-student-testimonial-card__meta-item {
    /*display: flex;*/
    align-items: center;
    gap: 4px;

    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 13px;
    line-height: 16px;
    font-weight: 450;

    color: #222;
}

.new-student-testimonial-card__icon img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width:15px;
    /*font-size: 14px;*/
    /*line-height: 16px;*/
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.new-student-testimonial-card__text {
    margin: 0;

    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 15px;
    line-height: 16px;
    font-weight: 450;

    color: rgba(0, 0, 0, 0.6);
}


/* =========================================
   COMPANY LOGO
========================================= */

.new-student-testimonial-card__company {
    margin-top: auto;
    height: 70px;

    display: flex;
    align-items: flex-end;
}

.new-student-testimonial-card__company img {
    display: block;
    max-width: 90px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* =========================================
   ARROWS
========================================= */

.new-student-testimonials__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #222;
    color: #fff;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;
    transform: translateY(-50%);
}

.new-student-testimonials__arrow:hover {
    opacity: 0.85;
}

.new-student-testimonials__arrow--prev {
    left: 10px;
}

.new-student-testimonials__arrow--next {
    right: 10px;
}


/* =========================================
   DOTS
========================================= */

.new-student-testimonials__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 24px;
}

.new-student-testimonials__dot {
    width: 8px;
    height: 8px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: #ccc;
    cursor: pointer;
}

.new-student-testimonials__dot.is-active {
    width: 24px;
    border-radius: 10px;
    background: #222;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .new-student-testimonials {
        padding: 40px 0;
    }

    .new-student-testimonials__title {
        font-size: 28px;
    }

    .new-student-testimonial-card {
        width: 300px;
        min-width: 300px;
    }
}
/*for modal*/
.apply-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

.apply-modal.active {
    display: flex;
}

.apply-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.apply-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    min-height: 370px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px 20px;
    box-sizing: border-box;
}

.apply-modal-close {
    position: absolute;
    top: 5px;
    right: 10px;
    border: 0;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}


