@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

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

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

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000;
  --Outfit: "Geom", sans-serif;
  --radius-1: 16px;
  --radius-2: 24px;
  --radius-full: 100px;
  --primary: #ff5054;
  --dark-blue: #121e87;
  --light-red: #ffeded;
  --secondary: #f26f21;
  --polish-gray: #393637;
}

html {
  font-size: 16px !important;
  overflow-x: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  font-family: var(--Outfit);
  padding-right: 0px !important;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

.toggle-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

/* form loader css */

.form-loader-div {
  display: none;
}

.form-loader {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #b5acac;
  border-right-color: var(--light);
  -webkit-animation: l2 0.35s infinite linear;
  animation: l2 0.35s infinite linear;
}

@-webkit-keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem;
}

ul {
  padding-left: 0rem;
  margin-bottom: 0rem;
}

/* li {
  list-style: none;
  text-decoration: none;
} */

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.no-wrap {
  text-wrap: nowrap;
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mirror {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.letter-spacing {
  letter-spacing: 1.05px;
}

.text-shadow {
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.primary-bg {
  background-color: var(--primary);
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  font-family: var(--Outfit);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.m-n3 {
  margin: 0 0 0 -3rem;
}

.m-n2 {
  margin: -2rem 0 0 0;
}

.section-heading {
  position: relative;
  z-index: 4;
}

.custom-container {
  width: 90%;
  margin: auto;
  max-width: 100%;
}

.header-container {
  position: fixed;
  top: 1vw;
  width: 100%;
  left: 0;
  z-index: 11;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.navbar-container {
  position: fixed;
  top: 0;
  padding: 2rem 8rem;
  left: 0;
  z-index: 2;
  border-radius: 0 0 50px 0;
  background: var(--light);
  box-shadow: -4px 9px 25px -6px #d2d9ee;
}

.logo {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 13vw;
  max-width: 100%;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

footer {
  padding: 1.175rem 0.5rem;
  color: var(--light);
  text-align: center;
  background-color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}

/* thank you css */

section.section-thankyou {
  height: 85vh;
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thankyou-title {
  text-align: center;

  margin: 0.35rem 0 0 0;
  font-weight: 500;
}

.thankyou-subtitle {
  text-align: center;
  font-weight: 400;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

.go_txt {
  font-size: 15px;
  color: #000;
  color: var(--light);
  background-color: var(--secondary) !important;
  border-radius: 3.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

.secondary {
  background-color: var(--primary);
}

.section-heading .section-title {
  font-size: 2.5vw;
  color: var(--polish-gray);
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-family: var(--Outfit);
  transition: all 0.5s ease;
  text-transform: capitalize;
}

.section-heading .blue-title {
  color: var(--dark-blue);
}

.section-heading .section-desc {
  font-size: 1vw;
  color: var(--polish-gray);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: var(--Outfit);
}

/* ***********Banner section starts******* */
section.section-banner {
  position: relative;
  background: url(../assets/images/banner/banner.webp) no-repeat center center /
    cover;
  overflow: hidden;
}

.section-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.scrolling-wrapper {
  width: 100%;
  overflow: hidden;
  background: var(--primary);
  z-index: 2;
  position: relative;
}

.scrolling-content {
  display: flex;
  will-change: transform;
  padding: 0.65rem 0.5rem;
  gap: 5rem;
  animation: scrolling 30s linear infinite;
}

.scrolling {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: var(--light);
  font-size: 1rem;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

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

.banner-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1.5rem 25vw;
  grid-template-columns: auto 25vw;
  gap: 1.5rem;
  margin: 2rem auto auto auto;
  place-items: center;
  position: relative;
  z-index: 3;
}

.banner-container .banner-content-1 {
  position: relative;
  padding: 0 1rem 0rem 1rem;
}

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

.content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.content-txt {
  margin: 2rem 0 0 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.content-txt .banner-title {
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--primary);
  font-size: 3vw;
}

.dark {
  color: var(--dark-blue);
}

.banner-plan {
  padding: 0.55rem 0.85rem;
  color: var(--polish-gray);
  font-weight: 700;
  font-size: 1.15vw;
  transition: all 0.5s ease;
  width: max-content;
  border-radius: 14px;
  border: 1px solid rgba(148, 210, 189, 0.2);
  background-color: var(--light);
}

.banner-info {
  color: var(--polish-gray);
  font-size: 1vw;
  font-weight: 400;
  transition: all 0.5s ease;
  width: 75%;
  text-wrap: balance;
}

.banner-container .banner-content-2 {
  width: 100%;
}

.banner-form-content {
  border: 1px solid rgba(118, 16, 191, 0.25);
  background: var(--light);
  overflow: hidden;
  width: 100%;
  border-radius: 32px;
  background: var(--primary);
}

.banner-form {
  background: var(--light);
  margin: 0.5rem;
  border-radius: 24px;
  border: 1px solid #dde5ff;
  padding: 1rem;
}

.banner-form .form-head .form-title {
  color: var(--dark-blue);
  text-align: center;
  font-size: 1.35vw;
  font-weight: 700;
  transition: all 0.5s ease;
}

.banner-form .form-head .form-subtitle {
  color: var(--dark-blue);
  text-align: center;
  font-size: 0.8vw;
  font-weight: 400;
  transition: all 0.5s ease;
  border-radius: 100px;
  padding: 0.65rem 0.5rem;
  text-transform: capitalize;
  background: rgba(18, 30, 135, 0.07);
}

/* floating label css */

.did-floating-label-content {
  position: relative;
  border-radius: 8px;
  background: rgba(18, 30, 135, 0.07);
}

.did-floating-label {
  color: var(--text-placeholder);
  font-size: 1rem;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 15px;
  z-index: 9;
  top: 50%;
  padding: 0 5px;
  transform: translate(0, -50%);
  transition: 0.35s ease all;
  -moz-transition: 0.35s ease all;
  -webkit-transition: 0.35s ease all;
}

.did-floating-label.mobile {
  left: 15%;
}

.did-floating-input,
.did-floating-select {
  font-size: 1rem;
  display: block;
  width: 100%;
  padding: 0.75rem 0.55rem;
  color: #323840;
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 8px !important;
  overflow: hidden;
}

.did-floating-input.mobile {
  border-radius: 0 8px 8px 0 !important;
}

.did-floating-input:focus,
.did-floating-select:focus {
  outline: none;
  box-shadow: none;
  background-color: var(--light);
}

.did-floating-input:not(:placeholder-shown),
.did-floating-select:not(:placeholder-shown) {
  background-color: var(--light);
}

.did-floating-input:focus ~ .did-floating-label,
.did-floating-select:focus ~ .did-floating-label {
  top: 0;
  font-size: 0.9rem;
  background-color: var(--light);
  z-index: 999;
}

select.did-floating-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.did-floating-select::-ms-expand {
  display: none;
}

.did-floating-input:not(:placeholder-shown) ~ .did-floating-label {
  top: 0;
  font-size: 0.9rem;
  background-color: var(--light);
}

.did-floating-select:not([value=""]):valid ~ .did-floating-label {
  top: 0;
  background-color: var(--light);
  font-size: 0.9rem;
}

.did-floating-select[value=""]:focus ~ .did-floating-label {
  background-color: var(--light);
  top: 0;
  font-size: 0.9rem;
}

.input-group {
  display: flex;
}

.input-group .did-floating-input {
  border-radius: 8px 0 0 8px;
  border-left: 0;
  padding-left: 0;
}

.input-group-append {
  display: flex;
  align-items: center;
}

.input-group-prepend {
  background-color: transparent;
}

.input-group-text {
  display: flex;
  align-items: center;
  font-weight: 400;
  height: 100%;
  color: var(--text-placeholder);
  padding: 0 5px 0 20px;
  font-size: 0.95rem;
  text-align: center;
  white-space: nowrap;
  border-radius: 8px 0 0 8px;
  background-color: transparent;
  border-right: none;
}

.did-floating-label-content:focus-within .input-group-text {
  background-color: var(--light);
}

/* floating label css */

.form-check-label {
  color: #666;
  font-weight: 400;
  font-size: 0.9vw;
  margin: -0.15rem 0 0 0.5rem !important;
}

.custom-container-3 {
  width: 95%;
  margin: auto 0 auto auto;
}

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

.form-check.agree input {
  cursor: pointer !important;
}

.form-body .form-check-input {
  width: 1.35rem;
  height: 1.35rem;
}

.btnPrimary {
  border-radius: 12px;
  border: 1px solid rgba(100, 24, 60, 0);
  background: var(--dark-blue);
  width: max-content;
  color: var(--light);
  padding: 0.55rem 1.25rem;
  font-weight: 500;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  gap: 0.75rem;
}

.btnPrimary:hover {
  box-shadow: 0 0 8px #121e8794, 0 0 16px #121e8794, 0 0 24px #121e8794;
  transform: translateY(-2px);
}

.btnPrimary:active {
  transform: translateY(0);
}

.btnPrimary.btn-banner {
  font-size: 1vw;
}

/* **************Banner section ends****** */
/* ******overview section starts********* */

section.section-overview {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.wrap-container {
  width: 85%;
  margin: auto;
}

.overview-desktop {
  display: flex;
}

.overview-mobile {
  display: none !important;
}

.section-heading .purple-title {
  color: var(--primary);
}

.overview-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  margin-top: 1.2rem;
  padding: 8px 24px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.overview-btn .btn-icon {
  height: auto;
}

.overview-btn:hover {
  box-shadow: 0 0 8px rgba(255, 59, 106, 0.6), 0 0 16px rgba(255, 59, 106, 0.4),
    0 0 24px rgba(255, 59, 106, 0.25);
  transform: translateY(-2px);
}

.overview-btn:active {
  transform: translateY(0);
}

.overview-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1rem;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 12px;
  border: 1px solid rgba(255, 80, 84, 0.3);
  background: var(--light);
}

.overview-box::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 10px;
  border-radius: 0 0 4px 4px;
  background: rgba(255, 80, 84, 0.06);
  top: 0;
  left: 4%;
}

.overview-box::before {
  position: absolute;
  content: "";
  width: 50px;
  border-radius: 4px 4px 0 0;
  height: 10px;
  bottom: 0;
  background: rgba(255, 80, 84, 0.06);
  left: 4%;
}

.icon-effect {
  width: 60px;
}

.icon-effect img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.overview-box p {
  margin: 0;
  font-size: 1.1vw;
  font-weight: 500;
  color: var(--dark-blue);
}

.overview-box:hover {
  box-shadow: 0 10px 25px rgba(255, 80, 84, 0.3);
  transform: translateY(-4px);
}

.overview-swiper .swiper-wrapper {
  padding: 1rem 0;
}

.rotate-right {
  -webkit-transform: rotate(178deg);
  -ms-transform: rotate(178deg);
  transform: rotate(178deg);
}

.overview-swiper .swiper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

.overview-swiper .swiper-nav button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 0.15rem solid var(--primary);
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overview-swiper .swiper-nav img {
  width: 16px;
  filter: brightness(0) saturate(100%) invert(41%) sepia(91%) saturate(4100%)
    hue-rotate(348deg) brightness(100%) contrast(101%);

  -webkit-filter: brightness(0) saturate(100%) invert(41%) sepia(91%)
    saturate(4100%) hue-rotate(348deg) brightness(100%) contrast(101%);
}

.overview-swiper .swiper-prev:hover,
.overview-swiper .swiper-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.overview-swiper .swiper-nav button:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* ******overview section ends********* */

/* ***********section about us starts********* */
section.section-aboutus {
  position: relative;
  padding: 2rem 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.section-aboutus::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: var(--primary);
  z-index: -1;
}

.about-background {
  border-radius: 24px;
  background: var(--light-red);
}

.aboutus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* ***********section about us ends********* */

/* **********section highlights starts****** */
section.section-highlight {
  padding: 3rem 0;
}

.highlight-container {
  display: grid;
  grid-template-columns: 30vw auto;
  place-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.high-heading .high-title {
  color: var(--primary);
  font-size: 1.85vw;
  font-weight: 700;
  transition: all 0.5s ease;
}

.high-content {
  height: 350px;
  border-radius: var(--radius-1);
  border: 1px solid rgba(255, 80, 84, 0.3);
  display: flex;
  padding: 1rem;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 0 0;
  background: linear-gradient(
    175deg,
    rgba(255, 80, 84, 0.12) 17.67%,
    rgba(255, 255, 255, 0) 65.39%
  );
}

.high-content small {
  color: var(--dark-blue);
  font-weight: 700;
  transition: all 0.5s ease;
  font-size: 1.1vw;
}

.high-content strong {
  color: var(--primary);
  font-weight: 700;
  transition: all 0.5s ease;
  font-size: 3.75vw;
}

.high-content-img {
  width: 9vw;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  height: 100%;
}

.high-content-img img {
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

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

.high-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.high-line {
  width: 100%;
  transition: all 0.5s ease;
  height: 3px;
  background-color: var(--primary);
  position: relative;
}

.high-line::before {
  content: "";
  position: absolute;
  width: 15px;
  top: 50%;
  left: 0;
  border-radius: 100px;
  height: 15px;
  transform: translate(0, -50%);
  background-color: var(--primary);
}

.high-line::after {
  content: "";
  position: absolute;
  width: 15px;
  top: 50%;
  right: 0;
  border-radius: 100px;
  height: 15px;
  transform: translate(0, -50%);
  background-color: var(--primary);
}

/* **********section highlights ends****** */

/* ********section partners starts******* */

.section-partners {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.partners-slider {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
}

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

.logo-cell {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 80, 84, 0.5);
  border-bottom: 1px solid rgba(255, 80, 84, 0.5);
}

.logo-column .logo-cell:last-child {
  border-bottom: none;
}

.logo-cell img {
  width: 138px;
  height: 100%;
  object-fit: contain;
}

.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 100%;
  background: var(--light);
  z-index: 3;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
}

.partners-slider::after {
  right: 0;
}

.swiper-pagination-partners {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.swiper-pagination-partners .swiper-pagination-bullet {
  width: 10px;
  border-radius: 100px;
  -webkit-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  transition: all 1.1s ease;
  background: #d0d4e8;
  opacity: 1;
}

.swiper-pagination-partners .swiper-pagination-bullet-active {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 25px;
  background-color: var(--dark-blue) !important;
}

/* ********section partners ends******* */

/* ********section scholarships starts*** */
section.section-scholarships {
  padding: 4rem 0 5rem;
  position: relative;
  background-color: var(--dark-blue);
  overflow: hidden;
}

.scholarship-bg-text {
  position: absolute;
  bottom: -16%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 17vw;
  font-weight: 800;
  color: var(--light);
  opacity: 0.09;
  white-space: nowrap;
  z-index: 0;
}

.scholarship-card {
  background: #1c2a80;
  border-radius: 24px;
  padding: 1rem;
  height: 100%;
  border: 1px solid var(--light);
  position: relative;
}

.scholarship-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.scholarships-title {
  font-size: 1.15vw;
  color: var(--light);
  font-weight: 700;
}

.scholarships-box {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 17px;
  margin-top: 1rem;
}

.scholarships-box .scholarships-desc {
  font-size: 1vw;
  color: var(--light);
  font-weight: 500;
}

/* ********section scholarships ends*** */

/* ***********section fees starts ********* */
section.section-fees {
  position: relative;
  padding: 4rem 0;
}

.fees-box {
  position: relative;
  background: var(--light);
  border: 1px solid #ffc9c9;
  border-radius: 16px;
  padding: 3rem;
}

.fee-badge {
  position: absolute;
  top: -5%;
  left: 6%;
  background: var(--primary);
  color: var(--light);
  font-size: 1.25vw;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-weight: 400;
}

.fee-badge::after {
  content: "";
  height: 18px;
  width: 18px;
  background: #ffc9c9;
  border-radius: 100px;
  transform: translate(0%, -50%);
  top: 50%;
  left: -10px;
  position: absolute;
}

.fee-badge::before {
  content: "";
  height: 18px;
  width: 18px;
  background: #ffc9c9;
  border-radius: 100px;
  transform: translate(0%, -50%);
  top: 50%;
  right: -10px;
  position: absolute;
}

.fees-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 20px;
}

.fees-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1.2rem;
  font-size: 1vw;
  color: var(--primary);
  line-height: 1.6;
  font-weight: 600;
}

.fees-list li::before {
  content: "";
  position: absolute;
  left: 0;
  /* top: 6px; */
  width: 25px;
  height: 25px;
  background-image: url("../assets/images/icons/right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.girl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fees-bottom {
  position: absolute;
  z-index: 1;
  width: auto;
  pointer-events: none;
  bottom: 0rem;
  right: 0rem;
  overflow: hidden;
}

.fees-top {
  position: absolute;
  z-index: 1;
  width: auto;
  pointer-events: none;
  top: 0rem;
  left: 0rem;
  overflow: hidden;
}

/* ***********section fees ends ********* */

/* **********section pathways start********** */
section.section-pathway {
  padding: 3rem 0;
  position: relative;
}

.pathway-card {
  position: relative;
  background: rgba(18, 30, 135, 0.05);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.pathway-card p {
  font-size: 1.15vw;
  line-height: 1.6;
  color: var(--dark-blue);
  font-weight: 600;
  margin: 0;
}

.pathway-card.highlight {
  background: rgba(255, 80, 84, 0.1);
}

.pathway-card.highlight p {
  color: var(--primary);
}

.path-desc {
  color: var(--dark-blue);
  font-size: 1.15vw;
  font-weight: 600;
}

.icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0.5rem;
  border: 2px solid var(--light);
  outline: 2px solid rgba(45, 16, 30, 0.1);
}

.icon-badge.blue {
  background: var(--dark-blue);
}

.icon-badge.red {
  background: var(--primary);
}

.icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* **********section pathways ends********** */

/* *******section girl starts****** */
.section-counselling-bg {
  position: relative;
  background: url("../assets/images/sectionImg/ctaBg.jpg") no-repeat center
    center / cover;
  display: flex;
  overflow: hidden;
  justify-content: end;
}

.section-counselling-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  background: rgba(18, 30, 135, 0.6);
}

.foot-form {
  width: 25%;
  position: relative;
  z-index: 1;
  margin: 2rem 6em auto auto;
}

.btn-dng {
  background: var(--primary) !important;
  transition: all 0.3s ease;
}

.btn-dng:hover {
  box-shadow: 0 0 8px rgba(255, 59, 106, 0.6), 0 0 16px rgba(255, 59, 106, 0.4),
    0 0 24px rgba(255, 59, 106, 0.25);
  transform: translateY(-2px);
}

.btn-dng:active {
  transform: translateY(0);
}

/* *******section girl ends****** */

/* ******floating side button starts */
.btn-fixed {
  position: fixed;
  top: 50%;
  right: 20px;
  outline: none;
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--light);
  background: var(--dark-blue);
  text-align: center;
  padding: 12px 24px;
  z-index: 99;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translate(65px, -50%) rotate(270deg);
}

.btn-fixed:hover {
  box-shadow: 0 0 8px #121e8794, 0 0 16px #121e8794, 0 0 24px #121e8794;
}

.txt {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--light);
}

.call_fixed {
  position: fixed;
  top: 62%;
  right: 4px;
  width: 56px;
  height: 56px;
  background: var(--dark-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  border: 1px solid var(--light);
  transition: all 0.3s ease;
}

.call_fixed:hover {
  box-shadow: 0 0 8px #121e8794, 0 0 16px #121e8794, 0 0 24px #121e8794;
  transform: translateY(-2px);
}

.call_fixed img {
  width: 100%;
  height: 35px;
  object-fit: contain;
}

/* ******floating side button ends */

/* *********modal starts here*** */
.modal-logo {
  width: 23vh;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal-close {
  width: 50px;
  cursor: pointer;
}

.modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* wrapper inside each carousel item */
.partnerCarousel .item > div {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  border-left: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
}

/* each logo cell */
.partnerCarousel .item > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

/* logo image */
.partnerCarousel .picImg {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* *********modal starts ends*** */

/*********** media query *********/

@media only screen and (max-width: 1700px) {
}

@media only screen and (max-width: 1400px) {
  .custom-container {
    width: 95%;
  }

  .banner-container {
    -ms-grid-columns: auto 1rem 28vw;
    grid-template-columns: auto 28vw;
    gap: 1rem;
    margin: 1.25rem auto auto auto;
  }

  .content-txt {
    gap: 1.5rem;
    margin: 0 0 0 0;
  }

  .content-txt .banner-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3vw;
  }

  .foot-form {
    width: 30%;
    margin: auto 2rem auto auto;
  }

  .banner-plan {
    font-size: 1.35vw;
    transition: all 0.5s ease;
  }

  .banner-info {
    font-size: 1.25vw;
    transition: all 0.5s ease;
  }
}

/* *******vikas css starts**** */
@media only screen and (max-width: 1300px) {
}

/* *******vikas css ends**** */

@media only screen and (max-width: 1200px) {
  .did-floating-label,
  .input-group-text {
    font-size: 0.925rem;
  }

  .did-floating-input,
  .did-floating-select {
    font-size: 0.925rem;
    padding: 0.625rem 0.45rem;
  }

  .did-floating-label.mobile {
    left: 22%;
  }

  .btnPrimary {
    padding: 0.45rem 1.15rem;
    font-size: 1.21rem;
  }

  .section-heading .section-desc {
    font-size: 1.25vw;
  }

  .fees-list li {
    font-size: 1.25vw;
  }

  .overview-box p {
    font-size: 1.3vw;
  }

  .fee-badge {
    font-size: 1.3vw;
  }

  .path-desc {
    font-size: 1.35vw;
  }

  .pathway-card p {
    font-size: 1.35vw;
  }

  .scholarships-title {
    font-size: 1.4vw;
  }

  .scholarships-box .scholarships-desc {
    font-size: 1.25vw;
  }

  .scholarship-bg-text {
    bottom: -13%;
  }

  .section-banner::after {
    width: 45%;
  }

  .foot-form {
    margin: 2rem 2rem auto auto;
  }
}

@media only screen and (max-width: 1080px) {
  .banner-container {
    place-items: center;
    gap: 3;
    grid-template-columns: repeat(1, 1fr);
    margin: 5rem auto auto auto;
  }

  .banner-form .form-head .form-title {
    font-size: 3vw;
    transition: all 0.5s ease;
  }

  .banner-form .form-head .form-subtitle {
    font-size: 1.85vw;
    transition: all 0.5s ease;
    width: max-content;
    margin: auto;
  }

  .did-floating-label.mobile {
    left: 7%;
  }

  .did-floating-input,
  .did-floating-select {
    font-size: 1rem;
    padding: 0.725rem 0.45rem;
  }

  .did-floating-label,
  .input-group-text {
    font-size: 1rem;
  }

  .form-check-label {
    font-size: 1.85vw;
  }

  .section-counselling-bg::after {
    width: 56%;
  }

  .foot-form {
    width: 50%;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-container {
    padding: 1.75rem 6rem;
  }

  .highlight-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    place-items: center;
  }

  .highlight-container .highlight-1 {
    order: 1;
  }

  .highlight-container .highlight-3 {
    order: 2;
  }

  .highlight-container .highlight-2 {
    order: 3;
  }

  .high-heading .high-title {
    font-size: 3.5vw;
    transition: all 0.5s ease;
  }

  .high-content small {
    transition: all 0.5s ease;
    font-size: 2.85vw;
  }

  .high-content strong {
    transition: all 0.5s ease;
    font-size: 6vw;
  }

  .high-content-img {
    width: 25vw;
    transition: all 0.5s ease;
  }

  .logo {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 25vw;
  }

  .banner-form .form-head .form-title {
    font-size: 4vw;
    transition: all 0.5s ease;
  }

  .banner-form .form-head .form-subtitle {
    font-size: 2.5vw;
    transition: all 0.5s ease;
    padding: 0.65rem 1rem;
  }

  .content-txt {
    gap: 0.75rem;
  }

  .did-floating-label.mobile {
    left: 65px;
  }

  .form-check-label {
    font-size: 2vw;
  }

  .content-txt .banner-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.5vw;
  }

  .banner-info {
    font-size: 1.55vw;
    width: 100%;
    transition: all 0.5s ease;
  }

  .banner-plan {
    font-size: 2.25vw;
    transition: all 0.5s ease;
  }

  .section-heading .section-title {
    font-size: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-desc {
    font-size: 1.55vw;
  }

  .fees-list li {
    font-size: 1.55vw;
  }

  .overview-box p {
    font-size: 1.65vw;
  }

  .fee-badge {
    font-size: 1.65vw;
  }

  .wrap-container {
    width: 90%;
  }

  .fee-badge {
    top: -4%;
  }

  .path-desc {
    font-size: 1.8vw;
  }

  .pathway-card p {
    font-size: 1.8vw;
  }

  .pageTitle {
    font-size: 4.5vw;
  }

  .scholarships-title {
    font-size: 1.65vw;
  }

  .scholarships-box .scholarships-desc {
    font-size: 1.55vw;
  }

  .logo-cell img {
    width: 150px;
  }

  .section-banner::after {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
  }

  .section-counselling-bg::after {
    width: 100%;
  }

  .foot-form {
    width: 90%;
    margin: 2rem auto;
  }
}

@media only screen and (max-width: 767px) {
  .banner-info {
    font-size: 2.15vw;
  }

  .content-txt .banner-title {
    font-size: 7vw;
  }

  .section-heading .section-title {
    font-size: 7vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-wrap: balance;
  }

  .overview-desktop {
    display: none;
  }

  .overview-mobile {
    display: block !important;
  }

  .section-heading .section-desc {
    font-size: 2.15vw;
  }

  .fees-list li {
    font-size: 2.25vw;
  }

  .fee-badge {
    font-size: 2.5vw;
  }

  .overview-box p {
    font-size: 2.5vw;
  }

  section.section-overview {
    padding: 2rem 0;
  }

  .aboutus-content {
    padding: 1rem;
  }

  section.section-fees {
    padding: 3rem 0;
  }

  .fees-box {
    padding: 1rem;
  }

  .path-desc {
    font-size: 2.55vw;
  }

  .pathway-card p {
    font-size: 2.55vw;
  }

  .scholarships-title {
    font-size: 2.5vw;
  }

  .scholarships-box .scholarships-desc {
    font-size: 2.15vw;
  }

  .scholarship-bg-text {
    bottom: -4%;
  }

  content-txt .banner-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 7vw;
  }

  .banner-form-content {
    display: none;
  }
}

@media only screen and (max-width: 576px) {
  .navbar-container {
    padding: 1.25rem 2rem;
  }

  .high-heading .high-title {
    font-size: 5vw;
    transition: all 0.5s ease;
  }

  .high-content {
    margin: 1.25rem 0 0 0;
  }

  .high-content small {
    transition: all 0.5s ease;
    font-size: 3.85vw;
  }

  .high-content strong {
    transition: all 0.5s ease;
    font-size: 8vw;
  }

  .high-content-img {
    width: 35vw;
    transition: all 0.5s ease;
  }

  .logo {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 38vw;
  }

  .content-txt {
    margin: 0 0 1rem 0;
  }

  .banner-info {
    font-size: 3vw;
    transition: all 0.5s ease;
  }

  .banner-plan {
    font-size: 3vw;
    transition: all 0.5s ease;
  }

  .banner-form .form-head .form-title {
    font-size: 5vw;
    transition: all 0.5s ease;
  }

  .banner-form .form-head .form-subtitle {
    font-size: 3vw;
    transition: all 0.5s ease;
  }

  .form-check-label {
    font-size: 3.25vw;
  }

  .btnPrimary {
    font-size: 1.175rem;
  }

  .section-heading .section-desc {
    font-size: 3vw;
  }

  .fees-list li {
    font-size: 3vw;
  }

  .fee-badge {
    font-size: 3.25vw;
  }

  .overview-box p {
    font-size: 3.25vw;
  }

  .path-desc {
    font-size: 3.35vw;
  }

  .pathway-card p {
    font-size: 3.35vw;
  }

  .scholarships-title {
    font-size: 3.25vw;
  }

  .scholarships-box .scholarships-desc {
    font-size: 3vw;
  }

  .scholarship-bg-text {
    bottom: -3%;
  }

  .logo-cell img {
    width: 150px;
  }
}

@media only screen and (max-width: 450px) {
  .section-heading .section-desc {
    font-size: 3.55vw;
  }

  .fees-list li {
    font-size: 3.55vw;
  }

  .fee-badge {
    font-size: 3.85vw;
  }

  .overview-box p {
    font-size: 3.85vw;
  }

  .path-desc {
    font-size: 4vw;
  }

  .pathway-card p {
    font-size: 4vw;
  }

  .banner-info {
    font-size: 3.85vw;
    transition: all 0.5s ease;
  }

  .scholarships-title {
    font-size: 3.85vw;
  }

  .scholarships-box .scholarships-desc {
    font-size: 3.55vw;
  }

  .logo-cell img {
    width: 120px;
  }


}

@media only screen and (max-width: 350px) {
}

/* new navbar css */

/* navbar */

.navbarsection .container {
  /* background-color: rgb(255, 240, 247); */
  padding: 15px;
  border-radius: 0 0 25px 25px;
}

.scrollNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;

  /* hidden state */
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;

  /* smooth transition */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.scrollNavbar.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.thankYouSection .navbarsection {
  box-shadow: 5px 2px 5px rgba(0, 0, 0, 0.3);
  background-color: #fbf0f7;
}

.navphonetext {
  padding-left: 5px;
  padding-right: 3px;
  font-size: 16px;
}

.logoimg {
  width: 250px;
  height: auto;
}

.scrollNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

  /* hidden state */
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;

  /* smooth transition */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.scrollNavbar.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navwrapper {
  display: flex;
}

.logo1wrap,
.logo2wrap {
  /* padding: 0 20px 0 0; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 240px; */
}

.desktopView {
  display: block;
}

.mobileView {
  display: none;
}

@media only screen and (max-width: 768px) {
  .logoimg {
    width: 140px;
    height: auto;
  }

  #header-new .btnPrimary {
    font-size: 0.9rem !important;
  }

  .desktopView {
    display: none;
  }

  .mobileView {
    display: block;
  }
}

#header-new .btnPrimary {
  background-color: var(--primary);
  font-size: 1rem;
  color: #fff;
}
