@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background: #e3e3e3;
  border-radius: 10px;
}

/* Remove default focus style */
:focus {
  outline: 0;
}

:root {
  /* Old */
  /* Text-size styles */
  --h1: 48px;
  --h2: 40px;
  --h3: 32px;
  --h4: 24px;
  --h5: 20px;
  --h6: 16px;
  --body: 16px;
  --body----medium: 16px;
  --body----semi--bold: 16px;
  --body----bold: 16px;
  --small: 14px;
  --small----regular: 14px;
  --small----medium: 14px;
  --button--label: 16px;
  --small--button--label: 14px;
  --input--label: 16px;
  --display: 72px;

  /* Effect styles */
  --inner--shadow: inset 0px 4px 15px rgba(173, 166, 210, 0.2);
  --shadow--sm: 0px 1px 1px rgba(0, 0, 0, 0.1);
  --shadow--md: 0px 2px 2px rgba(0, 0, 0, 0.1);
  --shadow--lg: 0px 4px 4px rgba(0, 0, 0, 0.1);
  --shadow--xl: 0px 8px 8px rgba(0, 0, 0, 0.1);
  /* Old */

  /* Color styles */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-primary-50: #f5f4fa;
  --color-primary-100: #e6e4f2;
  --color-primary-200: #ccc9e5;
  --color-primary-300: #ada6d2;
  --color-primary-400: #8a80bd;
  --color-primary-500: #5b4da0;
  --color-primary-600: #4d4189;
  --color-primary-700: #3e346d;
  --color-primary-800: #2d2650;
  --color-primary-900: #1c1733;
  --color-secondary-500: #6c757d;
  --color-success-500: #198754;
  --color-danger-500: #dc3545;
  --color-warning--500: #ffc107;
  --color-info-500: #0dcaf0;
  --color-neutral-50: #f8f9fa;
  --color-neutral-100: #f1f3f5;
  --color-neutral-200: #e9ecef;
  --color-neutral-300: #dee2e6;
  --color-neutral-400: #ced4da;
  --color-neutral-500: #adb5bd;
  --color-neutral-600: #6c757d;
  --color-neutral-700: #495057;
  --color-neutral-800: #343a40;
  --color-neutral-900: #212529;
  --piit-primary: #5b4da0;
  /* purple CTA/title */
  --piit-dark: #2a2347;
  /* deep text tone */
  --piit-border: #dfe3ea;
  /* input underline */
  --piit-error: #e35151;

  /* Text-size styles */
  /* base size: body (16px) */

  /* Text-size styles */
  --font-sizes-h1: 48px;
  --font-sizes-h2: 40px;
  --font-sizes-h3: 32px;
  --font-sizes-h4: 24px;
  --font-sizes-h5: 20px;
  --font-sizes-h6: 16px;
  --font-sizes-body: 16px;
  --font-sizes-small: 14px;
  --body----medium: 16px;
  --body----semi--bold: 16px;
  --body----bold: 16px;
  --small: 14px;
  --small----regular: 14px;
  --small----medium: 14px;
  --button--label: 16px;
  --small--button--label: 14px;
  --input--label: 16px;
  --display: 72px;

  /* Font Weight */
  --font-weights-bold: 700;
  --font-weights-medium: 500;

  /* Effect styles */
  --shadow--sm: 0px 1px 1px rgba(0, 0, 0, 0.1);
  --shadow--md: 0px 2px 2px rgba(0, 0, 0, 0.1);
  --shadow--lg: 0px 4px 4px rgba(0, 0, 0, 0.1);
  --shadow--xl: 0px 8px 8px rgba(0, 0, 0, 0.1);

  /* Font family */
  --font-families-heading: Montserrat;

  --ink-900: #1c1733;
  /* deep heading */
  --ink-700: #433b68;
  --ink-600: #4b4a57;
  --primary: #5b4da0;
  /* purple */
  --bg: #0b0720;
  /* page black header feel */
  --card-grad-1: #ffffff;
  --card-grad-2: #f4f1ff;
  --card-grad-3: #ece7ff;
  --radius-xl: 16px;
  --shadow: 0 10px 24px rgba(18, 12, 51, 0.1);
}

body {
  font-family: var(--font-families-heading);
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
ol,
ul {
  font-family: var(--font-families-heading);
  font-style: normal;
  margin: 0;
}

.bg-neutral-50 {
  background-color: var(--color-neutral-50, #f8f9fa);
}

/* Button Primary */
.btn-primary {
  all: unset;
  display: inline-flex;
  padding: var(--spacing-3, 16px) var(--spacing-4, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2, 8px);
  border-radius: var(--border-radius-md, 4px);
  background: var(--color-primary-500, #5b4da0);
  box-shadow: 0 1px 0 1px var(--color-primary-700, #3e346d);
  color: var(--color-primary-50, #f5f4fa);
  /* Button Label */
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-body, 16px);
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-body, 0);
  cursor: pointer;
  height: fit-content;
  transition: background-color 0.3s ease-in, color 0.3s ease-out;
}

.btn-primary:hover {
  background: var(--color-primary-600, #4d4189);
}

.btn-primary:hover:active {
  box-shadow: 0 1px 2px 1px var(--color-primary-700, #3e346d) inset;
}

.btn-primary.disable {
  color: var(--color-neutral-500, #adb5bd);
  background: var(--color-neutral-200, #e9ecef);
  box-shadow: 0 1px 0 1px var(--color-neutral-400, #ced4da);
}

/* Button Primary End */

/* Button Secondary */
.btn-secondary {
  all: unset;
  display: inline-flex;
  padding: var(--spacing-3, 16px) var(--spacing-4, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2, 8px);
  border-radius: var(--border-radius-md, 4px);
  border: var(--border-width-2, 2px) solid var(--color-primary-500, #5b4da0);
  background: var(--color-white, #fff);
  cursor: pointer;
  color: var(--color-primary-500, #5b4da0);
  /* Button Label */
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-body, 16px);
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-body, 0);
  height: fit-content;
  transition: background-color 0.3s ease-in-out, color 0.3s ease;
}

.btn-secondary:hover {
  background: var(--color-primary-500, #5b4da0);
  color: var(--color-primary-50, #f5f4fa);
}

.btn-secondary:hover:active {
  box-shadow: 0 1px 2px 1px var(--color-primary-700, #3e346d) inset;
}

.btn-secondary.disable {
  color: var(--color-neutral-500, #adb5bd);
  border: var(--border-width-2, 2px) solid var(--color-neutral-400, #ced4da);
  background: var(--color-white, #fff);
}

/* Button Secondary End */

/* Button Link */
.btn-link {
  all: unset;
  display: inline-flex;
  padding: var(--spacing-3, 16px) var(--spacing-4, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2, 8px);
  /*border: 0 solid var(--color-primary-500, #5B4DA0);*/
  background: rgba(255, 255, 255, 0);
  color: var(--color-primary-500, #5b4da0);

  /* Button Label */
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-body, 16px);
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-body, 0);
  height: fit-content;
}

.btn-link:hover {
  color: var(--color-primary-600, #4d4189);
}

.btn-link.disable {
  color: var(--color-neutral-500, #adb5bd);
}

/* for all buttons */
.btn-regular {
  padding: var(--spacing-2, 8px) var(--spacing-3, 16px);
}

.btn-small {
  padding: var(--spacing-1, 4px) var(--spacing-2, 8px);
  gap: var(--spacing-1, 4px);
  font-size: var(--font-sizes-small, 14px);
}

.btn-pills {
  border-radius: var(--border-radius-pill, 9999px);
}

/* End Buttons Style */
/* Text Styles */
.text-h1 {
  color: var(--color-neutral-900, #212529);
  /* H1 */
  font-size: var(--font-sizes-h1, 48px);
  font-weight: var(--font-weights-bold, 700);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}

.text-h2 {
  color: var(--color-neutral-900, #212529);
  /* H2 */
  font-size: var(--font-sizes-h2, 40px);
  font-weight: var(--font-weights-bold, 700);
  line-height: 130%;
  /* 52px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}

.text-h3 {
  color: var(--color-neutral-900, #212529);
  /* H3 */
  font-size: var(--font-sizes-h3, 32px);
  font-weight: var(--font-weights-bold, 700);
  line-height: 130%;
  /* 41.6px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}

.text-h4 {
  color: var(--color-neutral-900, #212529);
  /* H4 */
  font-size: var(--font-sizes-h4, 24px);
  font-weight: var(--font-weights-bold, 700);
  line-height: 130%;
  /* 31.2px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}

.text-h5 {
  color: var(--color-neutral-900, #212529);
  /* H5 */
  font-size: var(--font-sizes-h5, 20px);
  font-weight: var(--font-weights-semibold, 600);
  line-height: 130%;
  /* 26px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}

.text-h6 {
  color: var(--color-neutral-900, #212529);
  /* H6 */
  font-family: var(--font-families-heading, Montserrat);
  font-size: var(--font-sizes-h6, 16px);
  font-weight: var(--font-weights-semibold, 600);
  line-height: 130%;
  /* 20.8px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}

.text-para {
  color: var(--color-neutral-900, #212529);
  /* Body */
  font-size: var(--font-sizes-body, 16px);
  font-weight: var(--font-weights-medium, 500);
  line-height: 200%;
  /* 32px */
  letter-spacing: var(--font-letterSpacing-body, 0);
}

.text-small {
  color: var(--color-neutral-900, #212529);
  /* Small */
  font-size: var(--font-sizes-small, 14px);
  font-weight: var(--font-weights-medium, 500);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-small, 0.16px);
}

.color-primary {
  color: var(--color-primary-500, #5b4da0);
}

.color-light {
  color: var(--color-primary-50, #f5f4fa);
}

.lh-150 {
  line-height: 150%;
}

.img-100 {
  height: 100%;
  width: 100%;
}

/* Style */
.header .nav-bar {
  padding: 10px;
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.nav-bar ul {
  list-style: none;
}

.nav-bar .dropdown-item {
  color: var(--color-primary-900, #1c1733);
  font-size: var(--font-sizes-body, 16px);
  font-style: normal;
  font-weight: var(--font-weights-medium, 500);
  line-height: 200%;
  /* 32px */
  letter-spacing: var(--font-letterSpacing-body, 0);
}

.dropdown-menu {
  display: unset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(32px);
  transition: all 0.3s ease;
}

.dropdown-menu.show {
  display: unset;
  opacity: 1;
  visibility: visible;
  transform: translateY(22px);
  transition: all 0.3s ease;
}

.dropdown-toggle::after {
  transition: rotate 0.7s ease;
}

.dropdown:hover .dropdown-toggle::after {
  rotate: 180deg;
}

/* Main Container*/
.content-wrapper {
  padding-top: 130px;
}

.icon-text {
  display: flex;
  padding: var(--spacing-2, 8px) var(--spacing-3, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2, 8px);
  border-radius: var(--border-radius-lg, 8px);
  border: 1px solid var(--color-primary-200, #ccc9e5);
  background: var(--color-white, #fff);
  color: var(--color-primary-500, #5b4da0);
  text-align: center;
  font-size: var(--font-sizes-body, 16px);
  font-weight: var(--font-weights-semibold, 600);
  line-height: 200%;
  /* 32px */
  letter-spacing: var(--font-letterSpacing-body, 0);
  width: fit-content;
}

.sticky-background {
  border-radius: 584px;
  background: var(--color-primary-300, #ada6d2);
  filter: blur(150px);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  height: 500px;
  width: 500px;
}

.count-container {
  display: flex;
  /*padding: var(--spacing-4, 24px) var(--spacing-7, 48px);*/
  justify-content: center;
  border-radius: var(--border-radius-xl, 16px);
  border: 2px solid var(--color-primary-400, #8a80bd);
  background: var(--color-white, #fff);
  text-align: center;
}

.count-container .divider {
  position: relative;
}

.count-container .divider::before {
  background: var(--color-neutral-400, #ced4da);
  height: 75px;
  width: 1px;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.count-container .text-para {
  line-height: 150%;
  /* 24px */
  padding-top: 8px;
}

/* Logo Slider */

.text-slide-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  height: 60px;
  background: var(--color-primary-500, #5b4da0);
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  bottom: 260px;
}

.text-slide .text-para {
  color: var(--color-white, #fff) !important;
  padding: 0 30px;
  flex-shrink: 0;
  position: relative;
}

.text-slide .text-para::before {
  content: "";
  background: url("../images/star.svg") no-repeat;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}

@keyframes Tscroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Navbar on Mobile */
.nav-bar .nav-toggle-icon {
  display: none;
}

/* Logo Section */
.trusted-logo-section .logo {
  border-radius: var(--border-radius-lg, 8px);
  background: var(--background-default, #fff);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.training-highlights {
  /*padding: var(--spacing-8, 64px) 72px;*/
  background: var(--Colors-light-bg, #f9f8ff);
}

.training-highlights .d-card {
  border-radius: var(--border-radius-xl, 16px);
  border-bottom: var(--spacing-1, 4px) solid var(--color-primary-500, #5b4da0);
  background: var(--color-white, #fff);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
  padding: var(--spacing-4, 24px);
}

/*.training-highlights .d-card .number*/
.number {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  background: var(--color-primary-500, #5b4da0);
  align-items: center;
  border-radius: 50%;
  color: var(--color-white, #fff);
  font-size: var(--font-sizes-h5, 20px);
  font-weight: var(--font-weights-semibold, 600);
  line-height: 130%;
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
  aspect-ratio: 1; /*Updated*/
}

/* Hiring Partner */
.hiring-partners {
  overflow: hidden;
  width: 100%;
}

.hiring-slide-wrapper {
  display: inline-flex;
  animation: Tscroll 30s linear infinite;
  align-items: center;
  height: 100%;
}

.hiring-partners .hiring-slide {
  border-radius: var(--border-radius-xl, 16px);
  border: 1px solid var(--color-primary-300, #ada6d2);
  background: var(--color-white, #fff);
  box-shadow: 0 4px 15px 0 rgba(173, 166, 210, 0.2) inset;
  width: 230px;
  height: 95px;
  margin-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiring-slide-wrapper.second {
  animation: scroll-right 30s linear infinite;
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/*Programs section*/
.programs-section {
  background: rgba(249, 248, 255, 0.59);
}

.programs-section .program-card {
  border-radius: var(--spacing-4, 24px);
  border: 1px solid var(--color-primary-500, #5b4da0);
  background: var(--color-white, #fff);
  /* shadow/xl */
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.programs-section .img-container {
  width: 100%;
  border-radius: var(--spacing-3, 16px);
}

.blur {
  filter: blur(8px);
}

.programs-section .image-container img {
  width: 100%;
  object-fit: cover;
}

.programs-section .filter-tabs .filter-button.active {
  background: var(--color-primary-500, #5b4da0);
  color: var(--color-primary-50, #f5f4fa);
}

/* New meet-experts added in 5 places*/
.meet-experts,
.programe-standout {
  background: var(--color-primary-900, #1c1733);
  position: relative;
  overflow: hidden;
}

.before-after-section::after,
.before-after-section::before,
.journey-section::after,
.journey-section::before,
.meet-experts::after,
.meet-experts::before,
.programe-standout::after,
.programe-standout::before {
  content: "";
  border-radius: 584px;
  background: var(--color-primary-600, #4d4189);
  filter: blur(150px);
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translateX(-50%);
  height: 580px;
  width: 580px;
}

.before-after-section::after,
.journey-section::after,
.meet-experts::after,
.programe-standout::after {
  top: unset;
  bottom: -125px;
}

.before-after-section {
  position: relative;
  overflow: hidden;
  background: var(--color-primary-900, #1c1733);
}

.before-after-section > div {
  position: relative;
  z-index: 2;
}

.programe-standout .p-card {
  border-radius: var(--spacing-4, 24px);
  border: 2px solid var(--color-primary-50, #f5f4fa);
  background: var(--color-white, #fff);
  overflow: hidden;
}

.programe-standout .p-card::before {
  content: "";
  border-radius: 262px;
  background: var(--color-primary-200, #ccc9e5);
  filter: blur(75px);
  width: 262px;
  height: 262px;
  position: absolute;
  right: -115px;
  top: -115px;
  opacity: 0;
  transform: scale(0.1);
  transition: all 0.8s ease;
}

.programe-standout .p-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.journey-section .container,
section.meet-experts *,
section.programe-standout * {
  position: relative;
  z-index: 2;
}

/* New 22-09-25 */
.programe-process .pp-card {
  border-radius: var(--spacing-4, 24px);
  background: var(--color-white, #fff);
  border: 1px solid var(--color-primary-500, #5b4da0);
  /* shadow/xl */
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

ul.icon-text-list {
  list-style: none;
  padding: 0;
}

ul.icon-text-list > li {
  position: relative;
  padding-left: 26px;
}

ul.icon-text-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'><path d='M9 1.5L11.3175 6.195L16.5 6.9525L12.75 10.605L13.635 15.765L9 13.3275L4.365 15.765L5.25 10.605L1.5 6.9525L6.6825 6.195L9 1.5Z' stroke='currentColor' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center / contain;
}

.img-container {
  border-radius: var(--spacing-3, 16px);
  overflow: hidden;
}

/* Cards Effect
        .certificate-swiper.swiper {
            width: 250px;
            height: 450px;
            padding: 50px 0;
        }

        .certificate-swiper .swiper-slide {
            position: relative;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            user-select: none;
            rotate: unset !important;
        }

        .certificate-swiper .swiper-slide img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }*/

.slider-container {
  background: url("../images/slider-bg.svg") center/contain no-repeat;
  background-position: left;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 550px;
}

.slider-container .certificate-swiper {
  height: 360px !important;
  width: 60%;
  overflow: hidden;
}

.slider-container .swiper-slide {
  overflow: hidden;
}

/* Expert Section */
.experts-swiper .swiper-slide {
  overflow: hidden;
  border-radius: var(--spacing-3, 16px);
  filter: grayscale(0.8);
  animation: all 1s ease-in;
}

.experts-swiper .swiper-slide .img-container {
  height: 200px;
}

.experts-swiper .swiper-slide p {
  display: none;
}

.experts-swiper .swiper-slide.swiper-slide-prev .img-container {
  height: 230px;
}

.experts-swiper .swiper-slide.swiper-slide-prev {
  border-radius: var(--spacing-5, 32px);
  border: var(--border-radius-md, 4px) solid var(--color-primary-50, #f5f4fa);
  padding: 16px;
  filter: unset;
}

.experts-swiper .swiper-slide.swiper-slide-prev p {
  display: block;
}

.swiper-pagination-bullet {
  background: var(--color-primary-50, #f5f4fa) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary-400, #8a80bd) !important;
}

/* New */
.trusted-logo-section {
  overflow: hidden;
  max-height: 500px;
  position: relative;
}

.trusted-logo-section::after,
.trusted-logo-section::before {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 70%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 100%;
  z-index: 2;
  top: -2px;
  left: 0;
}

.trusted-logo-section::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 70%
  );
  top: unset;
  bottom: -2px;
}

.trusted-logo-section .slide-up {
  animation: scrollYUp 30s infinite;
}

@keyframes scrollYUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.trusted-logo-section .slide-down {
  animation: scrollYDown 30s infinite;
}

@keyframes scrollYDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

/* New 20-09-25 */
.training-highlights-swiper {
  height: 680px;
  overflow: hidden;
}

.training-highlights-swiper .swiper-slide-prev,
.training-highlights-swiper .swiper-slide-next {
  opacity: 0.2;
}

.training-highlights-swiper .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgb(91 77 160 / 35%),
    rgba(0, 0, 0, 0)
  ) !important;
}

.training-highlights-swiper .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to top,
    rgb(91 77 160 / 35%),
    rgba(0, 0, 0, 0)
  ) !important;
}

.badge {
  padding: 4px 8px;
  position: absolute;
  left: 30px;
  top: 30px;
  border-radius: 12px;
  background: var(--Primary-Light, #ebe5fc);
  color: var(--Primary-Color-Dark, #5227cc);
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: normal;
  z-index: 2;
}

/* New */
.certificate-swiper .swiper-slide {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  transition: all 0.9s ease;
}

.certificate-swiper .swiper-slide.swiper-slide-next,
.certificate-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.certificate-swiper .swiper-slide.swiper-slide-next .img-container {
  width: 100%;
  height: 250px;
}

.certificate-swiper .swiper-slide.swiper-slide-active .img-container {
  height: 100%;
  width: 250px;
}

.journey-section {
  background: var(--color-primary-900, #1c1733);
  position: relative;
  overflow: hidden;
}

.journey-swiper .swiper-slide .c-wrapper {
  border-radius: var(--spacing-3, 16px);
  background: var(--color-white, #fff);
  padding: var(--spacing-4, 24px) var(--spacing-6, 40px);
}

.journey-swiper .swiper-slide .img-container {
  height: 60px;
  width: 60px;
}

.journey-section .swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: unset;
  left: 0px;
  top: 50%;
  transform: -50%;
  z-index: 5;
}

.find-course {
  border-radius: var(--spacing-8, 64px);
  background: var(--color-primary-900, #1c1733);
  padding: 35px var(--spacing-6, 40px) 35px 278px;
}

/* Ujwal */
/* Form and address section starts here */
p.ho-addres {
  max-width: 340px;
}

.formaddresssection {
  margin-top: 80px;
}

.form-container {
  padding: 1px 30px 20px 30px;
  border-radius: var(--spacing-2, 8px);
  background: var(--color-white, #fff);
}

.mesgtext {
  color: var(--color-neutral-800, #343a40);
}

.styleinput {
  border-radius: var(--border-radius-md, 4px);
  border: 1px solid var(--color-neutral-600, #6c757d);
  background: var(--color-neutral-100, #f1f3f5);
}

.level-up-form .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.level-up-form .form-control::placeholder {
  color: var(--color-neutral-600, #6c757d);
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-body, 16px);
  font-style: normal;
  font-weight: var(--font-weights-regular, 400);
  line-height: 200%;
  letter-spacing: var(--font-letterSpacing-body, 0);
}

/* CTA banner section starts here */

.ctabannersection {
  margin-top: 100px;
}

.cta-banner {
  width: 100%;
  background-color: var(--color-primary-900, #1c1733);
  border-radius: var(--spacing-8, 64px);
}

img.img-fluid.cta-bannerone {
  position: absolute;
  bottom: 0px;
  left: 40px;
}

.rounded.map-contactus {
  width: 100%;
  height: 300px;
}

/* CTA banner section starts here */
/*End*/

/* Rajesh */
.why-choose-piit {
  border-radius: var(--spacing-4, 24px);
  background: var(--color-primary-500, #5b4da0);
}

.our-promise {
  background: var(--Colors-light-bg, #f9f8ff);
}

.quote {
  max-width: 800px;
  position: relative;
  border-radius: var(--spacing-3, 16px);
  background: var(--color-primary-500, #5b4da0);
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.25);
}

.left-quote {
  position: absolute;
  left: -67px;
}

.right-quote {
  position: absolute;
  bottom: 0;
  right: -70px;
}

.feature-number-img {
  position: absolute;
  top: -53px;
  left: -28px;
  z-index: -1;
}

/* @media (min-width: 768px) and (max-width: 991px) {
  .col-lg-4 {
    margin-top: 50px !important;
  }
} */

.text-color-1 {
  color: #64607d;
}

.text-color-2 {
  color: #495057;
}

.btn-2 {
  padding: 16px 75px 16px 75px;
}
/*End*/
@media (max-width: 1212px) {
  .nav-bar .nav-btn,
  .nav-bar .nav-bar-links {
    display: none;
  }

  .nav-bar .nav-toggle-icon {
    display: block;
  }
}

@media (min-width: 1024px) {
  .w-xl-75 {
    width: 75%;
    margin: auto;
  }
  .journey-swiper {
    margin: auto;
    height: 315px;
  }
}

@media (max-width:1024px){
  .journey-swiper {
    margin: auto;
    height: 420px;
  }
}

@media (min-width: 992px) {
  .programe-process .pp-card {
    height: 505px;
    position: sticky;
    top: 85px;
  }

  .programe-process .pp-card:last-child {
    position: relative;
    z-index: 9;
  }
}

@media (max-width: 992px) {
  .text-h1 {
    font-size: var(--font-sizes-h1, 40px);
  }

  .count-container .divider:nth-child(3)::before {
    all: unset;
  }

  .text-slide-wrapper {
    bottom: 375px;
  }
  .ctabannersection {
    margin-top: 40px;
  }
  .form-container {
    padding: 1px 0px 20px 0px !important;
  }
}

@media (min-width: 768px) {
  .experts-swiper .swiper-buttons {
    position: absolute !important;
    right: 26%;
    bottom: 75px;
  }

  .cta-banner {
    height: 135px;
  }

  .journey-section .swiper-buttons {
    right: -10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }
}

@media (max-width: 768px) {
  /* Buttons */
  .btn-secondary,
  .btn-primary {
    padding: var(--spacing-2, 8px) var(--spacing-3, 16px);
  }

  /*22-09-2025*/
  /* .experts-swiper .swiper-slide.swiper-slide-active .img-container {
    height: 220px;
  } */

  .experts-swiper .swiper-slide.swiper-slide-active {
    border-radius: var(--spacing-5, 32px);
    border: var(--border-radius-md, 4px) solid var(--color-primary-50, #f5f4fa);
    padding: 16px;
    filter: unset;
  }

  .experts-swiper .swiper-slide.swiper-slide-active p {
    display: block;
  }

  .experts-swiper .swiper-slide.swiper-slide-prev .img-container {
    height: 200px;
  }

  .experts-swiper .swiper-slide.swiper-slide-prev {
    border-radius: unset;
    border: unset;
    padding: unset;
    filter: grayscale(1);
  }

  .experts-swiper .swiper-slide.swiper-slide-prev p {
    display: none;
  }

  /*  */
  .find-course {
    padding: 30px;
    border-radius: 40px;
  }
  .find-course .text-h4 {
    font-size: 18px;
  }

  .find-course .image-c {
    display: none;
  }

  .journey-swiper {
    height: auto;
    padding-bottom: 60px;
  }

  .journey-swiper .swiper-wrapper{
    height: 100% !important;
  }
  .journey-swiper .swiper-slide{
    height: auto !important;
  }
  .journey-swiper .c-wrapper{
    height: 100% !important;
  }

  .formaddresssection {
    margin-top: 60px;
  }

  .journey-section .swiper-buttons {
    bottom: -10px;
    position: absolute;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
  }
  .journey-section .journey-prev,
  .journey-section .journey-next {
    transform: rotate(-90deg);
  }
}

@media (max-width: 468px) {
  /* Buttons */
  /* .btn-secondary,
  .btn-primary {
    padding: var(--spacing-1, 4px) var(--spacing-2, 8px);
    gap: var(--spacing-1, 4px);
    font-size: var(--font-sizes-small, 14px);
  } */

  .text-h1 {
    font-size: var(--font-sizes-h1, 32px);
  }
}

/* A CSS */

/* A Code */

.breadcrumb-item {
  display: flex;
  align-items: start;
}

.breadcrumb-item a {
  color: var(--color-primary-900, #1c1733);

  /* Small */
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-small, 14px);
  font-style: normal;
  font-weight: var(--font-weights-light, 300);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-small, 0.16px);
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="14" viewBox="0 0 12 14" fill="none"><path d="M4.5 10.5L7.5 7L4.5 3.5" stroke="%23ADB5BD" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.breadcrumb-item.active {
  color: var(--color-primary-500, #5b4da0);

  /* Small - Regular */
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-small, 14px);
  font-style: normal;
  font-weight: var(--font-weights-regular, 400);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-small, 0.16px);
}

.text-slide-wrapper-about {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  height: 60px;
  background: var(--color-primary-500, #5b4da0);
}

/* ===== Footer ===== */
.site-footer {
  background: #1f1c3d;
  /* deep indigo */
  color: #e9e7ff;
}

.site-footer .footer-title {
  color: #fff;
  margin: 0 0 0.5rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
  display: inline-block;
  padding-bottom: 0.25rem;
}

.footer-link {
  color: #cfd3ff;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-menu li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.footer-menu li::before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M3.75 9H14.25" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 3.75L14.25 9L9 14.25" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  color: #9aa2ff;
  font-size: 0.9rem;
  line-height: 1;
}

.footer-contact {
  gap: 0.75rem;
}

.footer-contact li {
  margin: 0.5rem 0;
  color: #d9d7ff;
}

.footer-map img {
  display: block;
  width: 100%;
  border-radius: 14px;
}

/* CTA pill */
.footer-cta {
  position: relative;
  border-radius: 48px;
  background: #2a254a;
  height: 120px;
}

.footer-cta .cta-girl {
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 160px;
  width: auto;
}

.footer-cta .btn {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #5b4da0;
}

.footer-social {
  color: #cfd3ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social:hover {
  color: #ffffff;
}

/* responsive tweaks */
@media (max-width: 575.98px) {
  .footer-cta .cta-girl {
    display: none;
  }
  :root {
    --font-sizes-h1: 40px;
    --font-sizes-h2: 36px;
    --font-sizes-h3: 28px;
    --font-sizes-h4: 24px;
    --font-sizes-h5: 18px;
    --font-sizes-h6: 16px;
    --font-sizes-body: 15px;
    --font-sizes-small: 13px;
  }

  .sticky-on-mobile {
    /* Updated */
    position: fixed;
    bottom: 20px;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
    width: -webkit-fill-available !important;
  }

  .stat-head-mobile {
    padding: var(--spacing-4, 24px);
    align-items: flex-start;
    gap: 10px;
    border-radius: var(--spacing-4, 24px);
    background: var(--color-primary-50, #f5f4fa);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
  }
}

.btn-apply {
  border-radius: var(--border-radius-md, 4px);
  background: var(--color-primary-500, #5b4da0);
  box-shadow: 0 1px 0 1px var(--color-primary-700, #3e346d);
  display: flex;
  padding: var(--spacing-3, 16px) var(--spacing-4, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2, 8px);
  color: #fff;
}

.btn-apply:hover {
  border: var(--border-width-2, 2px) solid var(--color-primary-500, #5b4da0);
  background: var(--color-white, #fff);
}

.btn-down {
  display: flex;
  padding: var(--spacing-3, 16px) var(--spacing-4, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2, 8px);
  border-radius: var(--border-radius-md, 4px);
  border: var(--border-width-2, 2px) solid var(--color-primary-500, #5b4da0);
  background: var(--color-white, #fff);
}

.btn-down:hover {
  background: var(--color-primary-500, #5b4da0);
  color: var(--color-primary-50, #f5f4fa);
}

.admission-card {
  width: 100%;
  padding: 26px;
  border-radius: var(--spacing-2, 8px);
  background: var(--Colors-light-bg, #f9f8ff);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) !important;
}

.admission-title {
  color: var(--piit-primary);
  font-weight: 800;
  line-height: 1.2;
}

.admission-title span {
  font-weight: 800;
}

.admission-title sup {
  font-size: 0.65em;
  top: -0.5em;
}

/* ---------- Underline Inputs ---------- */
.form-control,
.admission-card select {
  color: var(--color-neutral-600, #6c757d);
  /* Body - Semi Bold */
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-body, 16px);
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: 200%;
  /* 32px */
  letter-spacing: var(--font-letterSpacing-body, 0);
}

.input-group-text {
  color: var(--color-neutral-900, #212529);
  /* Body - Semi Bold */
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-body, 16px);
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: 200%;
  /* 32px */
  letter-spacing: var(--font-letterSpacing-body, 0);
}

.form-check-label {
  color: var(--color-neutral-600, #6c757d);
  /* Small Button Label */
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-small, 14px);
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-body, 0);
}

.form-underline {
  border: 0;
  border-bottom: 1px solid var(--color-neutral-500, #adb5bd);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  box-shadow: none !important;
}

.form-underline:focus {
  border-bottom-color: var(--piit-primary);
  outline: none;
  background: unset;
}

.form-control:focus {
  box-shadow: unset;
}

.form-underline.is-invalid {
  border-bottom-color: var(--piit-error);
}

/* input-group version (country + code + phone) */
.form-underline-group {
  border-bottom: 1px solid var(--color-neutral-500, #adb5bd);
}

.form-underline-group:focus-within {
  border-bottom-color: var(--piit-primary);
}

.form-underline-group input::placeholder {
  color: #a1a7b3;
}

.country-select {
  width: 70px;
  padding-left: 0;
}

.underline-line {
  height: 0;
  /* helper for spacing parity; keep if needed */
}

/* ---------- Select & error ---------- */
.form-select.form-underline {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-neutral-500, #adb5bd);
  border-radius: 0;
  padding-left: 0;
}

.form-select.form-underline:focus {
  border-bottom-color: var(--piit-primary);
  box-shadow: none;
}

.form-select.form-underline.is-invalid {
  border-bottom-color: var(--piit-error);
}

.invalid-feedback {
  font-size: 0.9rem;
  color: var(--piit-error);
  margin-top: 0.25rem;
}

/* ---------- Checkbox ---------- */
.form-check-input {
  border-radius: 0.25rem;
  border: 1px solid #cfd4dc;
}

.form-check-input:checked {
  background-color: var(--piit-primary);
  border-color: var(--piit-primary);
}

.link-privacy {
  color: var(--piit-primary);
  text-decoration: underline;
}

/* ---------- Button ---------- */
/* .btn-primary {
  background-color: var(--piit-primary);
  border-color: var(--piit-primary);
}

.btn-primary:hover {
  filter: brightness(1.05);
} */

.programe-process {
  background: var(--Colors-light-bg, #f9f8ff);
}

.text-h6.bold-text-num {
  color: var(--color-primary-900, #1c1733);
  text-align: center;
}

.num1 {
  display: flex;
  padding: 10px var(--spacing-6, 10px);
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: var(--spacing-2, 8px);
  background: var(--color-white, #fff);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.color-dark {
  color: var(--color-neutral-700, #495057);
}

.pd-card {
  border-radius: var(--border-radius-xl, 16px);
  background: var(--color-white, #fff);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: var(--spacing-4, 24px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--spacing-4, 24px);
  overflow: hidden;
  transition: all 0.9s ease;
}

/* .pd-card:hover {
  box-shadow: -4px 4px 14px 5px rgba(173, 166, 210, 0.3) inset;
} */

/* .programe-development .pd-card:hover::before {
  content: "";
  position: absolute;
  right: -202px;
  top: -203.5px;
  width: 329px;
  height: 329px;
  border-radius: 329px;
  background: var(--color-primary-200, #CCC9E5);
  filter: blur(75px);
  z-index: 1;
} */
.pd-card::before {
  content: "";
  position: absolute;
  right: -202px;
  top: -203.5px;
  width: 329px;
  height: 329px;
  border-radius: 329px;
  background: var(--color-primary-200, #ccc9e5);
  filter: blur(75px);
  z-index: 1;
  opacity: 0;
  transform: scale(0.1);
  transition: all 0.9s ease;
}

.programe-development .pd-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.consult-btn {
  padding: var(--spacing-2, 8px) var(--spacing-3, 16px);
  gap: var(--spacing-2, 8px);
  border-radius: var(--border-radius-pill, 9999px);
  background: var(--color-primary-500, #5b4da0);
  box-shadow: 0 1px 0 1px var(--color-primary-700, #3e346d);
}

.programe-development {
  background: var(--color-primary-900, #1c1733);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head .heading {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: 0.2px;
  margin: 0 0 0.75rem;
  text-align: center;
}

.section-head .sub {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-600);
  font-size: 18px;
}

/* Swiper sizing */
.myProjects {
  margin-top: 1.25rem;
}

.swiper-slide {
  height: auto;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-image {
  border-radius: var(--spacing-3, 16px);
  background: lightgray 50% / cover no-repeat;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.project-title {
  margin: 0.9rem 0 0.35rem;
  color: #4c3dae;
  /* link-like purple per screenshot */
  font-size: 22px;
  font-weight: 700;
}

.project-desc {
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

/* Controls */
.proj-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.proj-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(18, 12, 51, 0.06);
}

.proj-btn:hover {
  background: var(--primary);
  color: #fff;
}

.proj-btn:hover .icon-circle svg path {
  stroke: #fff;
}

/* Swiper spacing & breakpoints */
:root {
  --slide-gap: 24px;
}

.myProjects .swiper-wrapper {
  margin-bottom: 6px;
}

/* small bottom offset like screenshot */
.myProjects .swiper-slide {
  padding-right: 0;
}

/* keep clean */
.myProjects {
  --swiper-theme-color: var(--primary);
}

/* .swiper {
  padding-bottom: 0;
} */

/* we use external buttons */

@media (min-width: 1200px) {
  .section-head .heading {
    font-size: 46px;
  }
}

@media (max-width: 767.98px) {
  .section-head .heading {
    font-size: 32px;
  }

  .section-head .sub {
    font-size: 16px;
  }
}

.icon-image {
  width: 90px;
}

/* PROGRAM ACCORDION — uses your :root tokens */
.syl-accordion .accordion-item {
  border: 1.5px solid var(--color-neutral-500, #adb5bd);
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--Colors-light-bg, #f9f8ff);
  /* shadow/xl */
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in;
}

.syl-accordion .accordion-button {
  background: var(--color-white, #fff);
  padding: 16px 22px;
  gap: 12px;
  color: var(--ink-900);
  font-weight: var(--font-weights-bold, 700);
  box-shadow: none;
}

.syl-accordion .accordion-button:not(.collapsed) {
  color: var(--ink-900);
  background: var(--color-white, #fff);
  box-shadow: none;
}

/* Chevron (purple) */
.syl-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235B4DA0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}

.syl-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Number badge */
.syl-accordion .acc-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weights-bold, 700);
  font-size: 14px;
  color: var(--color-white, #fff);
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(91, 77, 160, 0.08);
  flex: 0 0 28px;
}

.syl-accordion .acc-title {
  margin-left: 2px;
}

/* Body + lists */
.syl-accordion .accordion-body {
  padding: 0 22px 18px;
}

.syl-col-title {
  font-weight: var(--font-weights-bold, 700);
  color: var(--ink-900);
  margin-bottom: 10px;
  font-size: var(--h6);
}

.syl-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.syl-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.7;
}

.syl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.syl-list.proj .proj-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--font-weights-bold, 700);
}

.syl-list.proj .proj-link:hover {
  text-decoration: underline;
}

/* OPEN state tint */
.syl-accordion .accordion-button:not(.collapsed),
.syl-accordion .accordion-button:not(.collapsed):focus {
  background: var(--Colors-light-bg, #f9f8ff);
  box-shadow: none;
}

/* Tint the content area while opening/open */
.syl-accordion .accordion-collapse.show,
.syl-accordion .accordion-collapse.collapsing {
  background: var(--Colors-light-bg, #f9f8ff);
}

/* Let body inherit the tinted bg from the collapse wrapper */
.syl-accordion .accordion-body {
  background: transparent;
}

/* Optional: keep closed items white */
.syl-accordion .accordion-button.collapsed {
  background: var(--color-white, #fff);
}

.color-semi-primary {
  color: var(--color-primary-400, #8a80bd);
}

.icon-stat {
  display: flex;
  width: var(--spacing-9, 72px);
  height: 72px;
  padding: var(--spacing-1, 4px);
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius-pill, 9999px);
  background: var(--color-primary-200, #ccc9e5);
}

.stat-head {
  padding: var(--spacing-4, 24px);
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--spacing-4, 24px);
  background: var(--color-primary-50, #f5f4fa);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.stat-head:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 12, 51, 0.12);
  transition: all 0.8s ease;
}

/* Heading */
.trusted-cities .heading {
  margin: 0 0 0.5rem;
  font: 800 var(--h2) / 1.15 var(--font-families-heading, ui-sans-serif);
  color: var(--ink-900);
  letter-spacing: 0.2px;
}

.trusted-cities .sub {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  color: var(--ink-600);
  font-size: var(--body);
  line-height: 1.7;
}

/* Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px 36px;
  /* row / column gap to mimic screenshot */
}

/* Chip */
.city-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--color-primary-50);
  /* soft lilac like screenshot */
  color: var(--ink-900);
  text-decoration: none;
  font-weight: 700;
  /* box-shadow: var(--shadow); */
  border: 1px solid var(--color-neutral-200);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.city-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 12, 51, 0.12);
  background: var(--color-neutral-100);
}

.city-chip:hover .arrow-box {
  transform: translateX(2px);
}

.faq-sub {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  color: var(--ink-600);
  font-size: var(--body);
  line-height: 1.7;
}

/* Accordion look */
.faq-accordion .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-neutral-200);
  border-radius: 0;
  margin-bottom: 20px;
}

.faq-accordion .accordion-item:last-child {
  border-bottom: 1px solid var(--color-neutral-200);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  padding: 18px;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

/* Open state tint (as requested) */
.faq-accordion .accordion-button:not(.collapsed),
.faq-accordion .accordion-button:not(.collapsed):focus {
  background: var(--Colors-light-bg, #f9f8ff);
}

/* Body */
.faq-accordion .accordion-body {
  padding: 12px 18px 18px;
  color: var(--ink-600);
  font-size: var(--body);
  line-height: 1.75;
  background: var(--Colors-light-bg, #f9f8ff);
}

/* Chevron (purple) */
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235B4DA0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* ---------- Modal Shell ---------- */
.lead-modal .modal-dialog {
  max-width: 798px;
}

.lead-modal .modal-content.lead-card {
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--spacing-2, 8px);
  background: var(--color-primary-900, #1c1733);
  position: relative;
}

.lead-modal .modal-backdrop.show {
  opacity: 0.7;
}

/* Close (white X) */
.lead-close {
  position: absolute;
  top: 14px;
  right: 14px;
  filter: invert(1) brightness(1.6);
  opacity: 0.9;
}

.lead-close:hover {
  opacity: 1;
}

/* ---------- Grid ---------- */
.lead-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 0 28px 0 32px;
  min-height: 360px;
}

.modal-title-h3 {
  /* removed padding-bottom */
  padding: 28px 28px 0 32px;
}

@media (max-width: 991.98px) {
  .lead-body {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .lead-visual {
    order: 2;
    justify-content: center;
  }
}

/* ---------- Copy ---------- */
.lead-title {
  font: 800 clamp(28px, 3.2vw, 38px) / 1.15
    var(--font-families-heading, Montserrat, system-ui, sans-serif);
  margin: 6px 0 16px;
  color: #d9d3ff;
  /* softer lavender like screenshot */
}

.lead-title .highlight {
  color: #fff;
}

.lead-title .wrap {
  display: block;
}

.lead-sub {
  margin: 0 0 18px;
  font-size: clamp(16px, 1.3vw, 18px);
  color: #efeafd;
}

/* ---------- Form ---------- */
.text-light-70 {
  color: rgba(255, 255, 255, 0.75);
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-select {
  color: #fff;
  background: transparent;
  padding-left: 0;
}

.country-select option {
  color: #000;
}

.cc {
  padding: 0 10px 0 4px;
  color: #fff;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  height: 44px;
  display: flex;
  align-items: center;
}

.phone-input {
  flex: 1;
}

/* Button */
.btn-piit {
  background: var(--primary, #5b4da0);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 22px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(91, 77, 160, 0.35);
}

.btn-piit:hover {
  filter: brightness(1.03);
}

/* ---------- Visual ---------- */
.lead-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 260px;
}

.lead-visual .halo {
  position: absolute;
  right: 16%;
  bottom: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(124, 99, 221, 0.65) 0%,
    rgba(124, 99, 221, 0) 70%
  );
  filter: blur(4px);
}

.lead-img {
  position: relative;
  z-index: 1;
  max-height: 320px;
  width: auto;
  object-fit: contain;
}

/* Small screens: scale image down */
@media (max-width: 575.98px) {
  .lead-img {
    max-height: 240px;
  }
}

/* underline style (only this modal) */
#piitLeadModal .form-control,
#piitLeadModal .form-select {
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  padding-left: 15px;
  padding-right: 0;
  height: 44px;
  border-radius: var(--border-radius-md, 4px);
  border: 1px solid var(--color-neutral-600, #6c757d);
  background: var(--color-neutral-100, #f1f3f5);
}

#piitLeadModal .form-control:focus,
#piitLeadModal .form-select:focus {
  border-bottom-color: var(--color-primary-300, #ada6d2);
}

#piitLeadModal .form-control::placeholder {
  color: #6c757d;
}

#piitLeadModal .form-select {
  color: #fff;
  background-image: none;
  appearance: none;
}

#piitLeadModal .form-select option {
  color: #000;
}

/* keep Chrome/Edge/Safari autofill transparent (scoped) */
#piitLeadModal input:-webkit-autofill,
#piitLeadModal input:-webkit-autofill:hover,
#piitLeadModal input:-webkit-autofill:focus,
#piitLeadModal select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
}

/* the +91 divider in this modal only */
#piitLeadModal .cc {
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* New  */
.industry-tools {
  background: var(--Colors-light-bg, #f9f8ff);
}

/* Small screens: tighten card */
@media (max-width: 576px) {
  .cities-grid {
    /* Updated */
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .city-chip {
    /* Updated */
    padding: 12px;
    width: fit-content;
  }
  .journey-swiper .swiper-slide .c-wrapper {
    padding: 16px;
  }
  /* .journey-section .swiper-buttons {
    right: -36px;
  } */

  #countdown {
    gap: 1rem !important;
  }

  #countdown .txt1 {
    min-width: 70px !important;
    width: 60px !important;
  }

  #countdown .text-h2 {
    font-size: 1.7rem;
  }

  #countdown .text-h6 {
    font-size: 1rem;
  }
  .rounded.map-contactus {
    height: 280px;
  }
}

@media (max-width: 991.98px) {
  .faq .row {
    flex-direction: column !important;
  }

  /* .faq .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
  } */
}

@media (max-width: 575.98px) {
  .faq .accordion-button {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .faq .accordion-body {
    font-size: 0.95rem;
  }

  .faq .row.g-5 {
    --bs-gutter-x: 1rem;
  }

  /* .faq .col-lg-6 {
    margin-bottom: 1.5rem;
  } */
}

.btn-from-submit {
  width: -webkit-fill-available;
}

/* 23-09-25 */
@media (max-width: 991.98px) {
  #piitLeadModal .modal-dialog {
    max-width: 100vw !important;
    margin: 0;
  }
  #piitLeadModal .modal-content {
    border-radius: 0;
  }
  #piitLeadModal .lead-body {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    height: 100%;
    width: 100%;
  }
  #piitLeadModal .lead-copy {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 32px 16px !important;
  }
  #piitLeadModal .lead-visual {
    display: none !important;
  }
  #piitLeadModal .btn-close {
    top: 12px !important;
    right: 12px !important;
  }
}
@media (max-width: 575.98px) {
  #piitLeadModal .modal-content {
    padding: 0 !important;
  }
  #piitLeadModal .lead-copy {
    padding: 24px 8px !important;
  }
}
.pro-icon {
  height: 65px;
  width: 65px;
}
#piitnotifyModal .form-control,
#piitnotifyModal .form-select {
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  padding-left: 15px;
  padding-right: 0;
  height: 44px;
  border-radius: var(--border-radius-md, 4px);
  border: 1px solid var(--color-neutral-600, #6c757d);
  background: var(--color-neutral-100, #f1f3f5);
}
#piitnotifyModal .form-control:focus,
#piitnotifyModal .form-select:focus {
  border-bottom-color: var(--color-primary-300, #ada6d2);
}
#piitnotifyModal .form-control::placeholder {
  color: #6c757d;
}
#piitnotifyModal .form-select {
  color: #fff;
  background-image: none;
  appearance: none;
}
#piitnotifyModal .form-select option {
  color: #000;
}
/* keep Chrome/Edge/Safari autofill transparent (scoped) */
#piitnotifyModal input:-webkit-autofill,
#piitnotifyModal input:-webkit-autofill:hover,
#piitnotifyModal input:-webkit-autofill:focus,
#piitnotifyModal select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
}
/* the +91 divider in this modal only */
#piitnotifyModal .cc {
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
@media (max-width: 575.98px) {
  .lead-img {
    display: none;
  }
  .lead-visual {
    display: none;
  }
  .lead-body {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  /* Updated */
  .hiring-partners .hiring-slide {
    width: 160px;
    height: 70px;
    padding: 0 10px;
  }
}

.dropdown.mega-menu {
  position: static;
}
.nav-bar .dropdown-menu.mega-menu {
  background: unset;
  border-top: unset;
  top: 55.5px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 20px;
  width: max-content;
  /* top: 33.5px;
  left: 0;
  right: 0;
  padding-top: 20px; */
}
.nav-bar .dropdown-menu.mega-menu .container {
  padding: var(--spacing-7, 15px) var(--spacing-9, 15px);
  border-radius: 0 0 var(--spacing-7, 25px) var(--spacing-7, 25px);
  background: var(--color-white, #fff);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
  border-top: 1px solid #dfe3ea;
}
.nav-bar .stat-head {
  box-shadow: unset;
  position: relative;
  overflow: clip;
}
.nav-bar .stat-head > div {
  z-index: 2;
}
/* .nav-bar .stat-head:hover {
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
} */
.nav-bar .stat-head::before {
  content: "";
  position: absolute;
  right: -202px;
  top: -203.5px;
  width: 329px;
  height: 329px;
  border-radius: 329px;
  background: var(--color-primary-200, #ccc9e5);
  filter: blur(75px);
  z-index: 1;
  opacity: 0;
  transform: scale(0.1);
  transition: all 0.8s ease;
}
.nav-bar .stat-head:hover::before {
  opacity: 1;
  transform: scale(1);
}
/*Mega menu new*/
.mega-menu .fe-course {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  height: 200px;
  border-radius: var(--spacing-4, 24px);
  border: 1px solid var(--color-primary-800, #2d2650);
  background: linear-gradient(
      180deg,
      rgba(28, 23, 51, 0) 15%,
      var(--color-primary-900, #1c1733) 79.81%
    ),
    url("../images/ai-with-img.png") lightgray 50% / cover no-repeat;
}
.mega-menu .fe-course.digital-marketing {
  background: linear-gradient(
      180deg,
      rgba(28, 23, 51, 0) 15%,
      var(--color-primary-900, #1c1733) 79.81%
    ),
    url("../images/digital-marketing-with.png") lightgray 50% / cover no-repeat;
}

.mega-menu .fe-course::after {
  content: "Filling fast";
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 8px;
  border-radius: 12px;
  background: var(--color-white, #fff);
  color: var(--primary, #5b4da0);
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.programs-section .filter-tabs .filter-button.active {
  background: var(--color-primary-500, #5b4da0);
  color: var(--color-primary-50, #f5f4fa);
}
.icon-stat {
  height: unset;
}

/* About Us code 24-09-25*/
.std.text-center {
  flex: 0 0 32%;
}

.programs-section .filter-tabs .filter-button.active {
  background: var(--color-primary-500, #5b4da0);
  color: var(--color-primary-50, #f5f4fa);
}

.about-swiper {
  padding: 8px 8px 34px;
}

.about-swiper .swiper-wrapper {
  align-items: stretch;
}

.about-swiper .swiper-slide {
  height: auto;
}

.team-card {
  background: #ffffff;
  border-radius: 18px;
  /* room for name bar */
  position: relative;
  box-shadow: 0 6px 24px rgba(10, 12, 16, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-photo {
  height: 300px;
  border-radius: 14px;
  background: #ece9ff;
  /* non-active panel */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.9;
  /* non-active grayscale */
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.team-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(15, 17, 21, 0.92);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  border-radius: var(--spacing-2, 8px);
  background: var(--color-neutral-900, #212529);

  /* shadow/lg */
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.team-meta .name {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.team-meta .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.team-meta .socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Active (center) slide */
.about-swiper .swiper-slide-active .team-card,
.about-swiper .swiper-slide-duplicate-active .team-card {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 42px rgba(108, 88, 255, 0.28);
}

.about-swiper .swiper-slide-active .team-photo,
.about-swiper .swiper-slide-duplicate-active .team-photo {
  background: #5d49f2;
  /* active panel */
}

.about-swiper .swiper-slide-active .team-photo img,
.about-swiper .swiper-slide-duplicate-active .team-photo img {
  filter: none;
  opacity: 1;
  /* active in color */
}

/* Pagination dots */
.about-image-pagination .swiper-pagination-bullet,
.about-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd1d7;
  opacity: 1;
  margin: 0 5px !important;
}
.about-image-pagination .swiper-pagination-bullet-active,
.about-pagination .swiper-pagination-bullet-active {
  background: #6c58ff;
  transform: scale(1.15);
}

.about-swiper .swiper-slide-active .team-meta {
  border-radius: var(--spacing-2, 8px);
  background: var(--Colors-light-bg, #f9f8ff);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  color: var(--color-primary-900, #1c1733);
}

.about-swiper .swiper-slide-active .team-meta .socials a {
  color: var(--color-primary-900, #1c1733);
}

/* --- marquee shell --- */
.culture-marquee {
  padding: 24px 0;
}

.marquee {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: scroll 30s linear infinite;
  /* your requirement */
  will-change: transform;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }

  /* move left by exactly one group */
}

/* pause on hover (optional) */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* --- responsive mosaic grid --- */
.mosaic-group {
  flex: 0 0 100%;
  /* each group = 100% of viewport/container width */
  padding: 12px;
  /* outer breathing space */
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  /* mobile */
  grid-auto-rows: 210px;
  box-sizing: border-box;
}

.tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f1f3f7;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.tile--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* purple CTA cards */
.tile--cta {
  background: #5c4bc9;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.tile--cta h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 800;
  text-align: center;
}

.tile--cta .cta-icon {
  display: inline-flex;
  margin-left: 14px;
}

/* ≥768px: two columns */
@media (min-width: 768px) {
  .mosaic-group {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

/* ≥992px: 4-column mosaic like the screenshot */
@media (min-width: 992px) {
  .mosaic-group {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
  }

  .tile-a {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
  }

  .tile-b {
    grid-column: 2 / span 2;
    grid-row: 1 / span 1;
  }

  /* wide purple */
  .tile-c {
    grid-column: 4 / span 1;
    grid-row: 1 / span 2;
  }

  /* tall image */
  .tile-d {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
  }

  /* purple bottom-left */
  .tile-e {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
  }

  .tile-f {
    grid-column: 3 / span 1;
    grid-row: 2 / span 1;
  }
}

/* nice hover on desktops */
@media (hover: hover) {
  .tile {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
}
/*End*/

/* Student Page*/
/* --- container --- */
.studentSwiper.swiper {
  width: 100%;
  padding: 24px 0;
  /* breathing room for shadow */
  position: relative;
}

/* side fade vignettes like your first image */
.studentSwiper.swiper::before,
.studentSwiper.swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(14vw, 120px);
  pointer-events: none;
  z-index: 2;
}

/* --- slides --- */
.studentSwiper .swiper-slide {
  width: clamp(240px, 28vw, 360px);
  /* center card width */
  height: clamp(320px, 36vw, 480px);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

/* images fill card cleanly */
.studentSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* make side cards smaller + softer */
.studentSwiper .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.86);
  filter: blur(1.2px) brightness(0.7);
  opacity: 0.45;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    lightgray 50%;
  background-size: cover;
  background-position: center;
}

/* strong focus on the active (middle) slide */
.studentSwiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
  filter: none;
  opacity: 1;
}

.benefits h2 {
  font-weight: 800;
  color: #5e48d0;
  /* primary */
  letter-spacing: 0.2px;
}

.benefits .lede {
  color: #6c6a7a;
  max-width: 820px;
  margin: 0 auto 1rem;
}

/* Tabs (underline style) */
.benefit-tabs .nav-link {
  color: #34324a;
  border: 0;
  border-bottom: 3px solid transparent;
  font-weight: 700;
  padding: 0.6rem 1rem;
  background: transparent;
}

.benefit-tabs .nav-link.active {
  color: #5e48d0;
  border-bottom-color: #5e48d0;
}

.benefit-title {
  font-weight: 800;
  color: #1e1b2a;
  margin-bottom: 0.75rem;
}

/* Chevron list */
.chev-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.25rem;
}

.chev-list li {
  position: relative;
  padding-left: 28px;
  margin: 0.5rem 0;
  color: #504e5d;
  line-height: 1.5;
}

.chev-list li::before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'><path d='M13 17.7471L18 12.7471L13 7.74707' stroke='black' stroke-linecap='round' stroke-linejoin='round'/><path d='M6 17.7471L11 12.7471L6 7.74707' stroke='black' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  position: absolute;
  left: 0;
  top: 0;
  color: #7a74db;
  font-weight: 900;
}

/* Right image */
.feature-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}
/* End*/

/* Student Life internship */
.photo-swiper {
  width: 300px;
  height: 420px;
}

.photo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  border-radius: var(--spacing-4, 24px);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}

.intern-container {
  border-radius: 0 var(--border-radius-pill, 9999px)
    var(--border-radius-pill, 9999px) 0;
  background: var(--color-primary-600, #4d4189);
  padding: var(--spacing-5, 32px) var(--spacing-9, 72px) var(--spacing-5, 32px)
    10px;
}

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intern-bullet {
  color: var(--color-primary-50, #f5f4fa);
  font-family: var(--font-families-heading, Montserrat);
  font-size: var(--font-sizes-display, 72px);
  font-style: normal;
  font-weight: var(--font-weights-bold, 700);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}

.intern-heading {
  font-weight: var(--font-weights-semibold, 600);
}

.intern-text {
  color: var(--color-primary-50, #f5f4fa);
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-body, 16px);
  font-style: normal;
  font-weight: var(--font-weights-medium, 500);
  line-height: 200%;
  /* 32px */
}

.feature-number {
  position: absolute;
  top: -100px;
  left: -10px;
  z-index: -1;
  color: var(--color-primary-100, #e6e4f2);
  font-family: Montserrat;
  font-size: 204px;
  font-style: normal;
  font-weight: 900;
  line-height: 204px;
  /* 100% */
  letter-spacing: -4.08px;
}

.ex-right {
  border-radius: var(--border-radius-md, 4px);
  background: var(--color-white, #fff);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.intern-container {
  opacity: 0;
  transform: translateX(-150px);
}

.intern-container.animate {
  animation: slideExpandContract 2.5s ease-in-out forwards;
}

@keyframes slideExpandContract {
  0% {
    opacity: 0;
    transform: translateX(-150px);
  }

  30% {
    opacity: 1;
    transform: translateX(0);
    width: 100% !important;
    /* temporarily expand */
  }

  70% {
    transform: translateX(0);
    width: inherit;
    /* restore original bootstrap width */
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    width: inherit;
    /* final back to original */
  }
}

@media (max-width: 1025px) {
  .intern-container {
    width: 100% !important;
  }

  .intern-container .d-flex {
    width: 100% !important;
  }
}

@media (max-width: 425px) {
  .intern-bullet {
    font-size: 50px;
  }

  .intern-container {
    padding: 25px 50px 25px 15px;
  }

  .intern-heading {
    font-size: 20px !important;
  }

  .intern-text {
    font-size: 14px !important;
  }

  .txt1.flex-fill {
    width: 60px !important;
  }
}
/* End */

/* Mobile Menu Code */
.mobile-menu .nav-link {
  color: var(--color-neutral-900, #212529);
  /* H6 */
  font-family: var(--font-families-heading, Montserrat);
  font-size: var(--font-sizes-h6, 16px);
  font-weight: 500;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
  padding: 15px 20px;
}
.mobile-menu .float-end {
  transition: all 0.4s ease;
}
.mobile-menu .nav-item[aria-expanded="true"] .float-end {
  transform: rotate(180deg);
}
.nav-item-wrapper.active {
  background-color: var(--background, #f6f6f9);
  position: relative;
}
.mobile-menu ul {
  list-style: none;
}
.nav-item-wrapper.active .nav-link.outer {
  font-variation-settings: "wght" 700;
}
.mobile-menu .nav-link:hover {
  font-weight: 600;
}
/* End */

.videos-wrapper {
  width: 100%;
  height: 350px;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-marker-group: after;
  scroll-behavior: smooth;
}
.videos-wrapper .video-container {
  transition: all 0.8s ease;
  flex: 0 0 25%; /* 4 cards, 3 gaps: 4-1=3, 3x15=45px */
  box-sizing: border-box;
  scroll-snap-align: start;
  padding-right: 20px;
}
.video-container img {
  z-index: 3;
  position: absolute;
  height: 100%;
  width: calc(100% - 20px);
  inset: 0px;
  color: transparent;
  border-radius: 16px;
}
.video-container video {
  border-radius: 16px;
}
.video-container:hover img,
.video-container:hover .video-play-btn {
  display: none;
}
@media (min-width: 768px) {
  /* When hovered, increase the size of the hovered card */
  .videos-wrapper .video-container:hover {
    flex: 0 0 34%;
  }

  /* Shrink siblings when one is hovered */
  .videos-wrapper:hover .video-container:not(:hover) {
    flex: 0 0 22%;
  }
}

/* Native CSS scroll markers implementation */
.videos-wrapper::scroll-marker-group {
  display: flex;
  justify-content: center;
  gap: 0.75em;
  padding: 1.5em 0 0.2em 0;
}
.videos-wrapper .video-container::scroll-marker {
  content: "";
  height: 10px;
  width: 10px;
  background-color: grey;
  border-radius: 50%;
  margin-top: 15px;
}
.videos-wrapper .video-container::scroll-marker:target-current {
  opacity: 1;
  background-color: var(--color-primary-500, #5b4da0);
}

/* Buttons */
.videos-wrapper::scroll-button(right),
.videos-wrapper::scroll-button(left) {
  content: "→";
  border: none;
  background-color: #5b4da0;
  font-size: 38px;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  padding-bottom: 0.1em;
  cursor: pointer;
  font-family: Consolas;
  position: absolute;
  bottom: -36px;
  right: calc(50% - 115px);
}
.videos-wrapper::scroll-button(left) {
  content: "←";
  right: unset;
  left: calc(50% - 100px);
}
.videos-wrapper::scroll-button(right):disabled,
.videos-wrapper::scroll-button(left):disabled {
  opacity: 0.5;
  cursor: auto;
}

@media (max-width: 768px) {
  .video-play-btn {
    position: absolute !important;
    z-index: 5 !important;
    top: 50%;
    left: calc(50% - 10px);
    transform: translate(-50%, -50%);
  }
  .video-container img {
    filter: brightness(0.5);
  }

  .videos-wrapper .video-container {
    flex: 0 0 250px;
  }
  .videos-wrapper::scroll-button(right) {
    right: calc(50% - 100px);
  }

  /* Read more */
  .readmore {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of visible lines */
    -webkit-box-orient: vertical;
    transition: all 0.5s ease;
    margin-bottom: 0 !important;
  }

  .readmore.expanded {
    -webkit-line-clamp: unset;
  }

  .readmore-button {
    display: inline-block;
    color: #696969;
    cursor: pointer;
    font-size: 14px;
    background: none;
    border: none;
    padding: 0;
  }

  .readmore-wrapper {
    display: inline-block;
    margin-bottom: 15px;
  }
  
  .nav-bar .dropdown-item:active{
  background-color: unset !important;
}

}


