@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ---------------------------------------------------------- */

/* default CSS  */

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

:root {
  --light: #ffffff;
  --dark: #000;
  --Outfit: "Poppins", sans-serif;
  --mulish-display: "Mulish", sans-serif;
  --primary: rgba(11, 27, 58, 0.95);
  --secondary: #b99750;
  --tertiary: #ffc107;
  --gray: #666;
  --gradientBg: radial-gradient(
    69.94% 74.85% at -13.28% -35.34%,
    #031f42 0%,
    #6b68eb 100%
  );
}

html {
  overflow-x: hidden !important;
}

body {
  font-family: var(--Outfit) !important;
  color: #000;
  overflow: hidden;
  font-size: 0.83vw;
  line-height: 1.5vw;
}
main {
  background: #fffaed;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
  padding: 0 !important;
  margin: 0 !important;
}

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

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

a {
  text-decoration: none !important;
}

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

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

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

.owl-next:hover,
.owl-prev:hover {
  background: transparent !important;
}

.mobileView {
  display: none;
}

.desktopView {
  display: block;
}

/* lenis css */

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;
}

/* lp custom css */

.border {
  border: 2px solid var(--primary) !important;
}

.bottomBorder {
  border-bottom: 1px solid #d7d6ff !important;
}

.circleBorder {
  border-radius: 50px;
}

.secondaryTextColor {
  color: var(--secondary) !important;
  position: relative;
  z-index: 10;
}

.primaryTextColor {
  color: var(--primary) !important;
}

.grayColorText {
  color: var(--gray) !important;
}

/* .text-justify {
  text-align: justify;
} */

.sectionpad {
  padding: 70px 0;
}

.sectionpadtop {
  padding-top: 70px;
}

.sectionpadbottom {
  padding-bottom: 70px;
}

.pageTitle {
  font-family: var(--mulish-display);
  color: var(--secondary);
  font-size: 2.92vw;
  font-weight: 700;
}
/**CARD ST**/
/* Wrapper */
.journey-wrap .timeline-wrapper {
  position: relative;
  padding-left: 28%;
  min-height: 256px;
  margin-bottom: 1rem;
}

/* Year circle */
.journey-wrap .year-circle {
  position: absolute;
  left: 20px;
  top: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #f6e19c, #8f6b24);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #111;
  z-index: 2;
}

.journey-wrap .year-circle .num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.journey-wrap .year-circle .txt {
  font-size: 12px;
  font-weight: 500;
}

/* Card */
.journey-wrap .timeline-card {
  position: relative;

  color: #fff;
}
.journey-wrap .timeline-card p {
  width: 92%;
}

/* .journey-wrap .timeline-card::before{
content: '';
    position: absolute;
    left: -3vw;
    top: 0;
    background: url(../images/u-line.svg) no-repeat;
    width: 17.5vw;
    height: 13vw;
    min-height: 13vw;
    background-size: contain;
} */
/* Card title */
.journey-wrap .timeline-card .heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #0b1a3a, #060e26);
  border-radius: 50px;
  padding: 1vw 2vw 1vw 4vw;
  margin-left: -4vw;
}
.journeyCarousel {
  margin-top: 2rem;
}
/* Card text */
.journey-wrap .timeline-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfd6ff;
  /* max-width: 430px; */
  /* margin-bottom: 5vw !important; */
  /* min-height: 96px; */
  padding-bottom: 1rem !important;
  padding-top: 1rem !important;
  margin-left: -7% !important;
  width: 100%;
}

/* LEFT vertical line */
.journey-wrap .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 70px;
  width: 2px;
  height: 130px;
  background: #f2d38a;
  display: none;
}

/* BOTTOM curved line */
.journey-wrap .timeline-wrapper::after {
  content: "";
  position: absolute;
  left: 14%;
  bottom: 0;
  width: 86%;
  height: 100%;
  /* background: url(../images/u-line.svg) no-repeat left bottom; */
  background-size: 93%;
  border-left: 3px solid #b99750;
  border-bottom: 3px solid #b99750;
  border-radius: 0 0 0 20px;
}
/* RIGHT vertical line (50% height) */
.journey-wrap .timeline-card::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -52%;
  width: 2px;
  height: 70px;
  background: #f2d38a;
  display: none;
}

/* RIGHT dot */
.journey-wrap .right-dot {
  position: absolute;
  right: 0px;
  bottom: -2%;
  width: 12px;
  height: 12px;
  background: #bf9c4f;
  border-radius: 50%;
  z-index: 1;
  /* display: none; */
}

/***CARD ED*/
.sectionTitle {
  color: var(--primary);
  text-align: left;
  font-weight: 700;
  font-size: 2.5vw;
  text-wrap: balance;
  position: relative;
  margin-bottom: 1rem !important;
}

.sectioncontent {
  font-size: 19px;
  line-height: 30px;
  padding: 0 5% !important;
  margin-top: 20px !important;
}

.imgfluid {
  width: 100%;
  height: auto;
}

.fixedctaCallBtn {
  position: fixed;
  bottom: 11rem;
  right: 2px;
  z-index: 999;
}

.fixedEnquire {
  position: fixed;
  bottom: 20rem;
  right: -43px;
  transform: rotate(-90deg);
  background: var(--primary);
  color: var(--light);
  padding: 10px 20px;
  text-align: center;
  z-index: 100;

  border-radius: 12px 12px 0 0;
  border: 2px solid #0b1b3a;
  background: var(rgba(11, 27, 58, 0.95));
}

.fixedctabtn {
  position: fixed;
  bottom: 35px;
  right: 35px;
  /* background-color: #ffff; */
  padding: 7px 10px !important;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-size: 15px !important;
  line-height: 22px;
}

.fixedctabtn span {
  font-weight: 600;
  color: #262626;
}

.fixedctaimg img {
  width: 45px;
  height: auto;
  border: 2px solid #fff;
}
.pagePara {
  color: var(rgba(11, 27, 58, 0.95));
}
.fillBtn {
  padding: 0.5vw 1vw;
  font-size: 0.83vw;
  font-weight: 500;
  border-radius: 100px;
  background: linear-gradient(
    94deg,
    #0b1b3a 1.26%,
    #31363f 35.58%,
    #9d8144 81.38%
  );
  color: var(--light);
  border-radius: 30rem;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 200px; */
}

.fillBtn:hover {
  background: var(--light);
  color: var(--primary);
}

.fillBtn .arw2 {
  display: none;
}

.fillBtn:hover .arw2 {
  display: flex;
}

.fillBtn:hover .arw1 {
  display: none;
}

.outlineBtn {
  padding: 9px 20px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  color: var(--primary);
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
  border-radius: 30rem;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 250px; */
}

.outlineBtn:hover {
  background: var(--primary);
  color: var(--light);
}

.outlineBtn .arw1 {
  display: none;
}

.outlineBtn:hover .arw1 {
  display: flex;
}

.outlineBtn:hover .arw2 {
  display: none;
}

/* ---------------------------------------------------------- */

/* navbar */

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

.navbarsection .container {
}

.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: 0.83vw;
}

.logoimg {
  width: 7.71vw;
  height: auto;
}
.navbarsection,
.herosection,
.career-pathways-section,
.testimonial-slide-section,
.faq-section {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 1rem;
}

.navwrapper {
  display: flex;
}
.faq-section,
.statistics-section {
  margin: 5rem 0;
}
.logo1wrap,
.logo2wrap {
  /* padding: 0 20px 0 0; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 240px; */
}

.cotactwrapper {
  display: flex;
}

.contact1wrap,
.contact2wrap {
  /* margin: 0 10px; */
  display: flex;
  align-items: center;
}

.contact1wrap .navphonetext {
  color: var(--light) !important;
  text-decoration: none !important;
}

.contact2wrap .navphonetext {
  /* color: #fff !important; */
}

.contactbtn1 img {
  width: 20px;
}
.contactbtn2 img {
  width: 25px;
}

.contactbtn1,
.contactbtn2 {
  color: #000;
  font-weight: 600;
  font-size: 16px;
}

.contact2wrap {
  border-radius: 1.5rem;
  /* background: linear-gradient(90deg, #307bc4 0%, #bc3d3d 100%); */
  padding: 7px 18px;
}

.bgSetup {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/* ---------------------------------------------------------- */

/* Banner Section */
.marqueeWrap {
  border-radius: 16px;
  border: 1px solid var(--Soft-Gold-SECONDARY, #b99750);
  display: flex;
  align-items: center;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 80%;
}
.marquee-content .item img {
  height: auto;
  width: auto;
}
.marqueeWrap .head-rec {
  background: var(--Soft-Gold-SECONDARY, #b99750);
  padding: 1rem;
  border-radius: 14px 0 0 14px;
  color: #fff;
  color: #fff;
  font-size: 1.25vw;
  line-height: 133.333%;
  width: 20%;
  text-align: center;
}
.marquee-content {
  display: inline-flex;
  animation: scroll 12s linear infinite;
  align-items: center;
}

.marquee .item {
  padding: 0 2rem;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40%);
  }
}

.bannesection {
  background: url("../images/banner/banner-bg.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pageSubtitleWrap {
}
.herosection .pageSubtitleWrap .banner-year {
  border-radius: 20px;
  background: rgba(185, 151, 80, 0.1);
  display: inline-flex;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  font-family: var(--mulish-display);
  width: 80%;
}
.herosection .pageSubtitleWrap .banner-year span {
  color: #b99750;
  font-size: 1.88vw;
}
.r-btn-s .fillBtn-c {
  width: fit-content !important;
}
.herosection .quote-row {
  border-radius: 16px;
  border: 1px solid var(--Dark-Blue-PRIMARY, rgba(11, 27, 58, 0.95));
  opacity: 0.77;
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  color: #535353;
  margin: 5rem 0 2rem;
  position: relative;
  width: 90%;
}
.herosection .quote-row::before {
  content: "";
  background: url(../images/icon/quote.svg);
  width: 36px;
  height: 24px;
  display: block;
  position: absolute;
  top: -1rem;
  left: 1rem;
  z-index: 5;
}
.herosection .quote-row .name {
  color: #b99750;
  font-size: 0.94vw;
  font-weight: 600;
  line-height: 133.333%;
  padding-top: 1rem;
}
.bannerContent p {
  font-size: 14px;
}
.tab-01 {
  border-radius: 20.477px;
  border: 1px solid #e8dcc8;
  background: #fff;
  box-shadow: 0 0 40px -5.851px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
.tab-01 .nav-link {
  color: #0a0a0a;
}
.tab-01 .nav-pills .nav-link.active,
.tab-01 .nav-pills .show > .nav-link {
  border-radius: 100px;
  background: #faf6ed;
  color: #b99750;
  font-weight: 600;
}
.tab-01 .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 1000px;
  border: 1px solid rgba(185, 151, 80, 0.4);
  background: #fff;
}
.tab-01-inner .date {
  border-radius: 14.627px;
  border: 1px solid rgba(224, 224, 224, 0.2);
  background: #fafafa;
  padding: 1rem;
}
.tab-01 .intake-box .icon {
  margin-right: 1rem;
}
.tab-01 .intake-box .second-t {
  color: #101828;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 133.333%;
  padding: 0.5rem 0;
}
.tab-01 .intake-box .second-t .default-f {
  font-size: 0.83vw;
  font-weight: 400;
}
.tab-01 .intake-box .third-t {
  color: #b99750;
  font-size: 0.73vw;
  font-weight: 500;
  line-height: 142.857%;
}
.tab-01 .apply-btn {
  color: #f00;
  text-align: center;
  font-size: 0.63vw;
  font-weight: 500;
  line-height: 166.667%;
  border-radius: 4px;
  background: #ffeded;
  padding: 0.5rem;
}
.tab-01 .nav .nav-item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-01 .nav .nav-item .nav-link {
  width: 100%;
}
.tab-01 .intake-box {
  display: flex;
}
.tab-01-inner .date.fees {
  margin-top: 1rem;
  border: 1px solid #b99750;
  background: #fff;
}
.duration-section .duration {
  border-radius: 20px;
  border: 1px solid #b99750;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25vw;
  font-family: var(--mulish-display);
}
.duration-section .duration .title {
  width: 33.333%;
  border-radius: 20px 0 0 20px;
  background: var(--Dark-Blue-PRIMARY, rgba(11, 27, 58, 0.95));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
}
.duration-section .duration .years {
  width: 66.67%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.duration-section .duration .years .item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.duration-section .duration .years .item:first-child {
  border-right: 1px dashed rgba(11, 27, 58, 0.95);
}
.duration-section .duration .years .item .yrs {
  font-size: 2.92vw;
  font-weight: 400;
  text-transform: capitalize;
  padding-left: 1rem;
  position: relative;
}
.duration-section .duration .years .item .yrs::before {
  content: "";
  border-radius: 10px;
  background: rgba(185, 151, 80, 0.2);
  width: 6vw;
  height: 1.5vw;
  position: absolute;
  bottom: -15px;
  left: 0.5vw;
}
.exemptions-section .exemptions {
  border-radius: 16px;
  border: 1px solid var(--Soft-Gold-SECONDARY, #b99750);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
}
.exemptions-section .exemptions .point-list {
  margin-right: 1rem;
}
.exemptions-section .exemptions .details .title {
  color: #101828;
  font-family: var(--mulish-display);
  font-size: 1.25vw;
  font-weight: 800;
  line-height: 170.644%;
}
.exemptions-section .exemptions .details .logo {
  margin-top: 1rem;
}
.exemptions-section .exemptions .details .logo span {
  margin-right: 1rem;
}
.exemptions-section .exemptions .details .description {
  color: #4a5565;
}
.journey-slide-section {
  margin: 2rem 0;
}
.journey-wrap {
  border-radius: 24px;
  background: rgba(11, 27, 58, 0.95);
  padding: 2rem;
  color: #fff;
}
.sec-dark-f .sectionTitle {
  color: rgba(255, 255, 255, 0.95);
}

.bannerIcon {
  width: 55px;
  height: 55px;
}

.bannerContentIconWrap {
  margin: 10px 0;
}
.pathway-item {
  margin: 1rem 0;
}
.pathway-item a {
  border-radius: 405.914px;
  border: 1px solid rgba(11, 27, 58, 0.95);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5vw 0.5vw;
  display: inline-block;
  color: #000;
  cursor: default;
  font-size: 0.73vw;
}
.fillBtn-c {
  padding: 0.8vw 1vw;
  font-size: 0.83vw;
  font-weight: 500;
  border-radius: 100px;
  border-radius: 89px;
  background: var(--Dark-Blue-PRIMARY, rgba(11, 27, 58, 0.95));
  color: var(--light);
  border-radius: 30rem;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 200px; */
}
.fillBtn-c.whitebg {
  background: #fff;
  color: rgba(11, 27, 58, 0.9);
}
.videoBtn-c {
  color: #000;
  display: flex;
  align-items: center;
}
.reqCardWrap .u-logo .bannericonwrap img {
  width: 25px;
  margin-right: 10px;
}
.career-pathways-section {
  margin: 3rem 0;
}
.career-pathways-section .cp-item {
  border-radius: 16px;
  border: 1px solid var(--Soft-Gold-SECONDARY, #b99750);
  background: #fcf6e9;
  padding: 2rem;
  position: relative;
  height: 100%;
}

.career-pathways-section .cp-item::after {
  content: "";
  background: url(../images/circle-bg.svg) no-repeat right bottom;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 95px;
  height: 97px;
}
.career-pathways-section .cp-item.no-bg::after {
  content: none;
}
.career-pathways-section .cp-item .name {
  font-family: var(--mulish-display);
  font-size: 1.04vw;
  color: #0a0a0a;
  margin: 0.5rem 0;
}
.career-pathways-section .cp-item .price {
  color: var(--Soft-Gold-SECONDARY, #b99750);
  font-size: 1.04vw;
  font-weight: 700;
  line-height: 160%;
}
.career-pathways-section .cp-item .demand {
  margin-top: 1rem;
}
.career-pathways-section .cp-item .demand span {
  border-radius: 33554400px;
  background: #fff;

  padding: 0.8rem 1.5rem;
  color: #4a5565;
  font-size: 0.73vw;
  font-weight: 500;
  line-height: 114.286%;
}
.career-pathways-section .cp-item.no-bg .title {
  color: #0a0a0a;
  font-family: var(--mulish-display);
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 133.333%;
  margin: 0.5rem 0;
}
.career-pathways-section .cp-item.no-bg .demand span {
  border: 1px solid rgba(185, 151, 80, 0.5);
  background: #fffaed;
}
.career-pathways {
  border-radius: 20px;
  background: rgba(11, 27, 58, 0.95) url(../images/industry-bg.png) no-repeat
    center;
  object-fit: cover;
  color: #fff;
  padding: 3rem 5rem;
}
.statistics-wrap {
  display: grid;
  grid-gap: 7rem;
  grid-template-columns: repeat(auto-fill, minmax(calc(28% - 15px), 1fr));
  margin-top: 7rem;
}
.statistics-wrap .item {
  border-radius: 10px;
  border: 1px solid var(--Soft-Gold-SECONDARY, #b99750);
  background: #f5ecd9;
  padding: 2rem;
  position: relative;
  max-height: 10vw;
}
.statistics-wrap .item:nth-child(1),
.statistics-wrap .item:nth-child(3) {
  margin-top: 5rem;
}
.testimonial {
  background: url(../images/story.png) no-repeat center;
  min-height: 271px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.testimonial .disc {
  margin-top: 4rem;
}
.testimonial-slide-section .t-item {
  border-radius: 24px;
  border: 2px solid rgba(185, 151, 80, 0.2);
  background: rgba(185, 151, 80, 0.2);
  box-shadow:
    0 3px 4px 0 rgba(185, 151, 80, 0.2),
    6px 7px 8.8px 0 rgba(185, 151, 80, 0.2) inset;
  padding: 2rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 6rem;
  min-height: 32vw;
}
.swiper-01 .swiper-button-prev,
.swiper-01 .swiper-container-rtl .swiper-button-next {
  background-image: url("../images/icon/left.svg");
  left: 10px;
  right: auto;
}
.swiper-01 .swiper-button-next,
.swiper-01 .swiper-container-rtl .swiper-button-prev {
  background-image: url("../images/icon/right.svg");
  right: 10px;
  left: auto;
}
.swiper-01 .swiper-button-wrap {
  position: relative;
  bottom: 0.5vw;
  margin: 0 auto;
  width: 15vw;
  padding: 1rem;
  z-index: 30;
}

.testimonial-slide-section .swiper-container {
  padding-top: 1vw;
}
/* Down */
.testimonial-slide-section .swiper-slide.swiper-slide-active {
  top: -4vw;
}
/* Up */
.testimonial-slide-section .swiper-slide.swiper-slide-prev,
.testimonial-slide-section .swiper-slide.swiper-slide-next {
  top: -2vw;
}
.testimonial-slide-section
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-radius: 100px;
  background: #b99750;
  width: 67px;
}
.testimonial-slide-section .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); /* smooth-ease */
}

/* .testimonial-slide-section .swiper-slide.cloned.active{
  top: 0;
} */
.testimonial-slide-section .t-item::before {
  content: "";
  background: url(../images/icon/t-quote.png);
  width: 110px;
  height: 80px;
  display: block;
  position: absolute;
  top: -2rem;
  left: 1rem;
  z-index: 5;
}
.testimonial-slide-section .t-item .designation {
  color: rgba(11, 27, 58, 0.95);
  font-family: var(--mulish-display);
  font-size: 1.04vw;
  font-weight: 700;
  margin-top: 1.5rem;
}

.testimonial-slide-section .t-item .disc {
  margin: 0.5rem 0;
}
.testimonial-slide-section .t-item .universe {
  color: #666;
  font-style: italic;
}
.testimonial-slide-section .t-item .info {
  margin-top: auto;
  display: flex;
  align-items: center;
}
.testimonial-slide-section .t-item .info .profile {
  margin-right: 1rem;
}
.testimonial-slide-section .t-item .info .details .name {
  color: #333;
  font-family: var(--mulish-display);
  font-size: 1.04vw;
  font-weight: 700;
}
.testimonial-slide-section .t-item .info .details .years {
  color: #b99750;
  font-weight: 500;
}
.faq-wrapper {
  border-radius: 20px;
  background: rgba(11, 27, 58, 0.95) url(../images/faq-bg.png) no-repeat center;
  object-fit: cover;
  color: #fff;
  padding: 3rem 5rem;
}
.dd-open {
  cursor: pointer;
}
.dd-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
  border-top: 1px solid #e8dcc8;
  padding-top: 1rem;
  margin-top: 1rem;
  display: none !important;
}
.tab-01-inner .date.fees .apply-btns > img {
  /* transform: rotate(-92deg); */
  transform: rotate(0deg);
}
.tab-01-inner .date.fees.active .apply-btns > img {
  transform: rotate(0deg);
}
.date.active .dd-content {
  max-height: 300px; /* adjust if content is bigger */
  opacity: 1;
  display: block;
  display: none;
}
.dd-content .head {
  font-size: 14px;
}
.dd-content .amt {
  font-weight: bold;
}
.dd-content .subject {
  font-style: italic;
  margin: 0.5rem 0 1rem;
}
.dd-content .dd-items {
  border-top: 1px solid #e8dcc8;
  padding-top: 1rem !important;
}
.dd-content .dd-items li svg {
  /* margin-right: 0.5rem; */
  width: 20px;
}
.dd-content .dd-items li {
  font-size: 12px;
}
.statistics-wrap .item .icon {
  margin: -6vw auto 0;
  width: 7vw;
}
.statistics-wrap .item .icon img {
  width: 100%;
  height: auto;
}
.statistics-wrap .item .title {
  color: #031f42;
  font-family: var(--mulish-display);
  font-size: 1.67vw;
  font-weight: 900;
  line-height: 112.5%;
  margin: 0.5rem 0;
}
.program-overview {
  border-radius: 60px 60px 0 0;
  background: #fffaed;
  padding: 5rem 0 3rem;
  margin-top: -3rem;
  position: relative;
}
.chipBtn {
  border-radius: 30px;
  background: #ededff;
  color: var(--primary);
  display: inline-block;
  padding: 5px 20px;
}

.bannerStudentImgWrap {
  position: relative;
  height: 100%;
}

.bannerStudent {
  position: absolute;
  height: auto;
  width: 145%;
  left: -6vw;
  bottom: -3vw;
}

.lineHighlightText {
  position: relative;
  color: #b99750;
}

/* .lineHighlightText::after {
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-size: 100% 100%;
} */

.lineHighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 46%;
  height: 65%;
  bottom: -12px;
  left: 0;
  z-index: -1;
  background-size: 100% 100%;
}

.herosection {
  padding-bottom: 5vw;
}

/* ---------------------------------------------------------- */

/* why section */

.whySection .container {
  border-radius: 24px;
  border: 2px solid #a46080;
  background: #fff5fa;
  padding: 30px;
  position: relative;
}

.line2HighlightText {
  position: relative;
  z-index: 5;
}

.line2HighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 105%;
  height: 65%;
  bottom: -7px;
  left: -4px;
  z-index: -1;
  background-size: 100% 100%;
}

.whyStudentWrap {
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 40%;
  height: auto;
}

.whyContentWrap {
  color: var(--gray);
}

.starTickIcon {
  width: 20px;
  height: 25px;
}

/* ---------------------------------------------------------- */

/* about section */

.line3HighlightText,
.line4HighlightText,
.line5HighlightText,
.line6HighlightText,
.line7HighlightText {
  position: relative;
  z-index: 5;
}

.aboutContentWrap {
  width: 70%;
  margin-left: 60px;
}

.aboutContentWrap2 {
  width: 100%;
  margin-left: 60px;
}

.line3HighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 186%;
  height: 72%;
  bottom: -10px;
  left: -89px;
  z-index: -1;
  background-size: 100% 100%;
}

.line4HighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 180%;
  height: 52%;
  bottom: -7px;
  left: -88px;
  z-index: -1;
  background-size: 100% 100%;
}

.line5HighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 200%;
  height: 34%;
  bottom: 0;
  left: -73px;
  z-index: -1;
  background-size: 100% 100%;
}

.line6HighlightText::after {
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 106%;
  height: 54%;
  bottom: -17px;
  left: -75px;
  z-index: -1;
  background-size: 100% 100%;
}

.line7HighlightText::after {
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 106%;
  height: 51%;
  bottom: -12px;
  left: -9px;
  z-index: -1;
  background-size: 100% 100%;
}

/* ----------------------------------------------------------------------- */

/* objective section */

.circleBg {
  position: relative;
  z-index: 1;
}

.circleBg::before {
  content: "";
  border-radius: 100%;
  opacity: 1;
  background: #fcf4fa;
  width: 45rem;
  height: 40rem;
  position: absolute;
  top: -55px;
  left: -30%;
  transform: translate(50%, 0);
  z-index: -1;
}

.objectiveContentWrap2 {
  margin-left: 60px;
}

.objectiveIcon {
  width: 60px;
  height: auto;
}

.objectiveCardWrap {
  background: var(--light);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  text-wrap: balance;

  transition: all 0.2s ease-in-out;
}

.objectiveCardWrap:hover {
  background: var(--primary);
  color: var(--light);
}

.objectiveCardWrap:hover .objectiveIcon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%)
    hue-rotate(119deg) brightness(102%) contrast(101%);
}

.slightUpper {
  margin-top: -40px;
}

/* ----------------------------------------------------------------------- */

/* benefit section */

.benefitSection {
  position: relative;
  z-index: 55;
}

.benefitIcon {
  width: 50px;
  height: auto;
}

.benefitText {
  font-size: 18px;
}

.benefitStudentImgWrap {
  width: 80%;
}

.triangleWrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  z-index: -1;
}

/* ---------------------------------------------------------- */

/* cta section */

.ctaStudentImgWrap {
  width: 70%;
}

/* ---------------------------------------------------------- */

/* program section */

.programSection {
  background: #fef7fb;
}

.programImgWrap {
  width: 60%;
}

.programCard {
  padding: 20px;
  background: url("../images/banner/programBg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  font-size: 18px;
  font-weight: 600;
  width: 70%;
  border-radius: 15px;
  color: var(--primary);
  border: 1px solid var(--primary);
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}

.programCard:hover {
  background: var(--primary);
  color: var(--light);
}

.programImgWrap img {
  /* margin-bottom: -50px; */
}

/* ---------------------------------------------------------- */
.university-slide-section {
  margin: 2rem 0;
}
/* program requirement section */

.reqWrapper {
  background: var(--primary) url("../images/banner/reqBg.png") center / cover
    no-repeat;
  padding: 40px 30px;
  border-radius: 25px;
  height: 470px;
}

.reqCardWrap {
  display: flex;
  padding: 2rem;
  transition: all 0.2s ease-in-out;
  border-radius: 14.627px;
  border: 1px solid var(--Soft-Gold-SECONDARY, #b99750);
  background: #fcf6e9;
  flex-direction: column;
  width: 100%;
  min-height: 24vw;
  margin-left: 1px;
}
.modal-body {
  padding: 0; /* IMPORTANT: removes Bootstrap padding */
}

.youtubeContentWrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f6eedd;
  background: #fff;
}

.video-responsive {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* modern & cleaner */
}

.video-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reqCardWrap:hover {
  /* border: 1px solid var(--light);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.requirementImgWrap {
  width: 78%;
}
.reqCardWrap .u-logo img {
  height: 48px;
  width: auto;
}
.reqList li {
  list-style: none;
  position: relative;
  padding-left: 30px; /* space for image */
  padding: 0rem 1rem 0.5rem 2rem;
  color: #4a5565;
}

.reqList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px; /* adjust vertical alignment */
  width: 24px;
  height: 24px;
  background-image: url("../images/icon/list-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.reqCounter {
  font-size: 35px;
  font-family: var(--Outfit);
  color: var(--light);
}

.reqHeadText {
  color: #101828;
  font-size: 1.25vw;
  font-weight: 800;
}
.reqCardWrap .u-logo {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slide-center .owl-carousel {
  position: relative;
}
.slide-center .owl-nav {
  position: absolute;
  left: 0;
  top: calc(50% - 2.2rem);
  transition: all 0.4s ease;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
.slide-center .owl-carousel .owl-nav button.owl-prev {
  margin-left: -2rem;
}
.slide-center .owl-carousel .owl-nav button.owl-next {
  margin-right: -2rem;
}
.slide-right .owl-nav {
  position: absolute;
  top: -115px;
  right: 0;
}
.university-slide-section .owl-carousel .owl-item {
  height: 100%;
  /* margin-left: 0.1rem; */
}

.scroll-box {
  height: 385px;
  overflow-y: scroll;
}

/* ---------------------------------------------------------- */

/* scholarship section */

.scholarshipSection {
  background: #fef7fb;
  margin-top: 60px;
  position: relative;
  height: 650px;
}

.feesBtn {
  color: var(--light);
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 18px !important;
  border-radius: 30rem;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.feesBtn:hover {
  background: var(--light);
  color: var(--dark);
}

.scholarshipCard {
  position: relative;
}

.scholarshipContentCard {
  position: relative;
  height: 300px;
}

.stext {
  position: absolute;
}

.stext1 {
  top: 155px;
}

.stext2 {
  bottom: -50px;
}

.stext3 {
  top: 50px;
}

.stext4 {
  top: 155px;
}

.stext5 {
  bottom: -50px;
}

.scholarshipInfoText {
  display: flex;
  align-items: center;
  background: transparent;
  font-size: 16px;
  border: 1px solid var(--primary);
  border-radius: 30rem;
  padding: 10px 30px !important;
  line-height: 20px !important;
  transition: all 0.2s ease-in-out;
}

.scholarshipInfoText:hover {
  background: var(--light);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.scholarshipIcon {
  width: 35px;
  height: auto;
}

.scholarshipStudentImgWrap {
  display: flex;
  justify-content: center;
  width: 35%;
  margin: 0 auto;

  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* ---------------------------------------------------------- */

/* cta section */

.ctaSection {
  /* background: url("../images/student/s4.png"); */
  /* height: 600px; */
  position: relative;
  overflow: hidden;
}

.ctaSection .marqueeWrap {
  position: absolute;
  top: 33px;
}

.ctaSection .marquee {
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  /* background-color: #eef; */
  color: var(--light);
  /* padding: 80px 0; */
  margin: unset;
  border-radius: unset;
  box-shadow: unset;
  position: relative;
  z-index: -1;
}

.universityNameText {
  font-size: 90px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
}

.ctaSection .item {
  display: flex;
  align-items: center;
  padding-right: 135px;
}

.ctaFormWrap {
  width: 400px;
}

.ctaImgWrap {
  position: absolute;
  bottom: 155px;
  right: 0;
  width: 635px;
  height: auto;
}

/* ---------------------------------------------------------- */

/* lms section */

/* ---------------------------------------------------------- */

/* about section */

/* ---------------------------------------------------------- */

/* syallbus section */

/* ---------------------------------------------------------- */

/* Modal */

.modal-content {
  background: transparent !important;
  border: none !important;
}

.modal-header {
  border: none !important;
}

.modal-body {
  position: relative;
}

.popupModalCloseBtn {
  position: absolute;
  top: -29px;
  right: -12px;
}

.btn-close {
  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%)
    hue-rotate(82deg) brightness(106%) contrast(109%) !important;
  opacity: 1 !important;
}

/* ---------------------------------------------------------- */

/* footer */
.footercontentwrap {
  background: var(
    --gradient-1,
    linear-gradient(
      94deg,
      rgba(11, 27, 58, 0.95) 1.26%,
      rgba(49, 54, 63, 0.95) 16.49%,
      rgba(157, 129, 68, 0.95) 50.45%,
      rgba(175, 141, 69, 0.95) 66.64%,
      rgba(147, 122, 68, 0.95) 78.04%,
      rgba(49, 54, 63, 0.95) 95.04%,
      rgba(11, 27, 58, 0.95) 104.81%
    )
  );
}

.footimg {
  width: 20px !important;
  height: auto;
  margin: 0 5px 0 10px;
}

.foottext {
  font-size: 14px !important;
  line-height: 20px;
  margin-bottom: 0 !important;
  text-wrap: balance;
}

/* faq section */

.faqSection {
  background-color: #f8f8ff;
}

/* .accordion-button::after {
  background: url("../images/icon/plus.svg") !important;
}

.accordion-button:not(.collapsed)::after {
  background: url("../images/icon/minus.svg") !important;
  transform: var(--bs-accordion-btn-icon-transform);
} */

.faqhead {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
}
.accordion-button {
  border-radius: 12px;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: unset !important;
}

.accordion-button:not(.collapsed) {
  background: transparent !important;
  box-shadow: unset !important;
}

.accordion-item {
  margin: 20px 0;
  border-radius: 12px;
}

.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 12px;
}
.accordion-header {
}
.accordion-item {
  border: 0;
}
.accordion-button:not(.collapsed) {
  background-color: var(--light) !important;
  border-radius: 10px 10px 0 0;
  color: #333;
}
.accordion-collapse.collapse.show {
  border-top: 1px solid #b99750;
}
.accordion-button::after {
  width: 28px !important;
  height: 28px !important;
}

.accordion-button:not(.collapsed)::after {
  transform: unset !important;
  transition: all 0.2s ease;
}

.faqCard {
  border-radius: 1.8rem;
  padding: 15px;
  background: url("../images/banner/faqBg.jpg");
  border: 1px solid rgba(107, 104, 235, 0.3);
}

.faqCard img {
  border-radius: 10px;
}

.faqHeadText {
  font-family: var(--funnel-display);
  text-align: center;
  font-size: 25px;
  font-weight: 600 !important;
  margin-top: 15px !important;
}

/*  */

/* footer */

.footersection {
  background-color: #1b2728;
}

/* .accordion-button::after {
  background: url("../images/icon/plus.svg") !important;
}

.accordion-button:not(.collapsed)::after {
  background: url("../images/icon/minus.svg") !important;
} */

.ctabtnwrap a {
  position: fixed;
  bottom: 4%;
  right: 6%;
  border-radius: 0.5rem;
  background: #85cfd5;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  padding: 10px 15px;
  box-shadow: 0px 4px 50px 0px rgba(164, 230, 235, 0.8);
  z-index: 9999;
}

/* togglewrap */

/* mobilefeature */
.featureboxwrap {
  display: none;
  border-radius: 0.75rem;
  /* border: 1px solid #000; */
  background: linear-gradient(90deg, #f58f8f 0%, #cb6059 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
}

.mobnavtext {
  font-size: 18px;
  color: #000;
  font-weight: 800;
}

/* thank you section */

body.thankYouSection {
  background: #f8f8ff;
}

.fascilityCarousel .item {
  display: flex;
  justify-content: center;
}

/* form Data */

.bannerUpperFormWrap {
  padding: 8px;
  border: 1px solid var(--primary);
  background: #fff;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* height: 87%; */
  width: 88%;
}

.bannerFormContentWrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 999;
  border-radius: 12px;
  border: 1px solid #f6eedd;
  background: #fff;
}

/* .modal-body {
  display: flex;
  justify-content: center;
  background-color: transparent !important;
}

.modal-body .bannerFormContentWrap {
  width: 90%;
} */

.bannerFormHead {
  /* background: var(
    --Radial,
    radial-gradient(69.94% 74.85% at -13.28% -35.34%, #031f42 0%, #6b68eb 100%)
  ); */
  background: var(--primary);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 15px 2rem;

  border-radius: 12px;
  border: 1px solid rgba(3, 31, 66, 0);
  background: var(
    --gradient-1,
    linear-gradient(
      94deg,
      rgba(11, 27, 58, 0.95) 1.26%,
      rgba(49, 54, 63, 0.95) 16.49%,
      rgba(157, 129, 68, 0.95) 50.45%,
      rgba(175, 141, 69, 0.95) 66.64%,
      rgba(147, 122, 68, 0.95) 78.04%,
      rgba(49, 54, 63, 0.95) 95.04%,
      rgba(11, 27, 58, 0.95) 104.81%
    )
  );
}

.bannerFormWrap {
  padding: 20px 15px;
}
.bannerFormWrap .submit-btn {
  border-radius: 12px;
  border: 1px solid rgba(3, 31, 66, 0);
  background: var(--Dark-Blue-PRIMARY, rgba(11, 27, 58, 0.95));
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 1.04vw;
  font-weight: 500;
}
.bannerFormWrap input,
.bannerFormWrap select {
  border-radius: 12px;
  border: 1px solid #f6eedd;
  background: rgba(246, 238, 221, 0.5);
}
.mobileBannerForm {
  display: flex;
  justify-content: end;
  height: 100%;
}

.bannerFormHead .formtitle {
  color: #fff;
  font-family: var(--mulish-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

.herosection {
  position: relative;
  /* margin-bottom: 80px; */
  /* padding-bottom: 80px !important; */
}

.form-group {
  padding: 15px 0;
  width: 100%;
}

.newFormWrap {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

form label {
  font-size: 13px;
}

.inputfield {
  color: #000;
  background: #fff;
  /* border: 1px solid #dddcff !important; */
}

select.inputfield::placeholder,
.inputfield::placeholder {
  color: #a7a7a7;
}

.selectPlaceholder {
  color: #7c7675 !important;
}

option {
  color: #000;
}

.inputfield {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 10px;
  /* background: #fff; */
}

.labelinput {
  color: #274760;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.625rem;
}

.form-control {
  font-size: 14px;
}

.banner-form input {
  border-radius: 1.875rem !important;
  border: 1px solid rgba(48, 123, 196, 0.5);
  width: 100% !important;
}

.formSubmitBtn {
  width: 100%;
}

p.errortext {
  color: red;
  padding-left: 8px !important;
  font-size: 12px;
  margin-top: 8px !important;
  letter-spacing: 0.5px;
  display: none;
}

.mobileFixedCta {
  display: none;
  background: var(--primary);
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
}

.whatsIcon {
  width: 30px;
  height: auto;
}

.formTerms {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray);
}

/* ---------------------------------------------------------- */

/* circle highlighter */

.circleHighlight1 {
  /* background: url(../images/circle-highlight/c8.svg) center center / cover
    no-repeat;
  background-position: center center; */

  background: url(../images/circle-highlight/c8.svg);
  padding: 2px;
}

.circleHighlight2 {
  background: url(../images/circle-highlight/c1.svg);
  padding: 2px;
}

.circleHighlight3 {
  content: url("../images/circle-highlight/c2.svg");
  position: absolute;
  top: -8px;
  left: -16px;
  width: 41%;
  z-index: -1;
}

.circleHighlight4 {
  background: url(../images/circle-highlight/c3.svg);
  padding: 5px;
}

.circleHighlight5 {
  content: url(../images/circle-highlight/c4.svg);
  position: absolute;
  top: -4px;
  left: -22px;
  width: 164px;
  z-index: -1;
}

.circleHighlight6 {
  background: url(../images/circle-highlight/c5.svg);
  padding: 3px;
}

.circleHighlight7 {
  background: url(../images/circle-highlight/c6.svg);
  padding: 3px;
}

.circleHighlight8 {
  content: url(../images/circle-highlight/c1.svg);
  position: absolute;
  top: -5px;
  left: -13px;
  width: 100px;
}

.readMore-btn a {
  color: #182643;
  font-weight: bold;
}
/* ---------------------------------------------------------- */

/* ============================
   MODAL BACKDROP IMPROVEMENT
============================ */

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

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

.custom-modal-content {
  border-radius: 18px;
  border: none;
  padding: 28px 26px 30px;
  background: #ffffff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

/* ============================
   LOGO SECTION
============================ */

.modal-logo {
  text-align: center;
  margin-bottom: 18px;
}

.modal-logo img {
  max-width: 140px;
}

/* ============================
   CLOSE BUTTON
============================ */

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #000;
}

.modal-close img {
  width: 14px;
}

/* ============================
   FORM SPACING
============================ */

.modal-body {
  padding: 0;
}

/* ============================
   INPUT FIELDS
============================ */

.custom-input,
.form-select {
  height: 52px;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #dcdcdc;
  transition: all 0.25s ease;
}

/* Focus Effect */

.custom-input:focus,
.form-select:focus {
  border-color: #000;
  box-shadow: none;
}

/* Placeholder */

.custom-input::placeholder {
  color: #999;
}

/* ============================
   CHECKBOX
============================ */

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-check-input {
  margin-top: 4px;
  cursor: pointer;
}

.form-check-label {
  font-size: 13.5px;
  line-height: 1.4;
  color: #555;
}

/* ============================
   SUBMIT BUTTON
============================ */

.btn-primary {
  height: 52px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #000000, #333333);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ============================
   VALIDATION UI
============================ */

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
  border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
  border-color: #28a745;
}

.invalid-feedback {
  font-size: 12px;
}

/* ============================
   MOBILE OPTIMIZATION
============================ */

@media (max-width: 576px) {
  .modal-dialog {
    margin: 15px;
  }

  .custom-modal-content {
    padding: 22px 18px 24px;
  }

  .modal-logo img {
    max-width: 110px;
  }

  .btn-primary {
    font-size: 14px;
  }
}

/* media query */

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

/* ---------------------------------------------------------- */

@media only screen and (max-width: 992px) {
  .sectionpad {
    padding: 40px 0;
  }

  .mobileBannerForm {
    /* background: var(--secondary); */
    border-radius: 20px;
    padding: 20px 10px;
  }

  .ctaSection .marquee {
    padding: 35px 0;
  }
}

/* ---------------------------------------------------------- */

@media only screen and (max-width: 768px) {
  footer {
    margin-bottom: 1.5rem;
  }
  .journey-btn .fixedEnquires {
    margin-bottom: 10px;
  }
  .reqCardWrap .u-logo img {
    height: auto;
    width: 35%;
  }
  .popupModalCloseBtn {
    right: 0px;
  }
  .fixedEnquire {
    position: static;
    top: inherit;
    right: inherit;
    transform: rotate(0);
    background: transparent;
    border: 0;
    padding: 0;
  }
  .mobileFixedCta {
    display: block;
    border-top: 1px solid #fff;
  }
  .journey-wrap .timeline-wrapper::after {
    left: 35px;
    width: 90%;
  }
  .journey-wrap {
    padding: 2rem 1rem;
  }
  .swiper-01 .swiper-button-wrap {
    width: 70%;
  }
  .testimonial-slide-section .swiper-wrapper {
    padding-bottom: 2rem;
  }
  .testimonial-slide-section .swiper-slide.swiper-slide-active,
  .testimonial-slide-section .swiper-slide.swiper-slide-prev,
  .testimonial-slide-section .swiper-slide.swiper-slide-next {
    top: 0;
  }
  .marquee-content .item img {
    height: 27px;
  }
  .marquee .item {
    padding: 0 1rem;
  }
  .marqueeWrap .head-rec {
    font-size: 10px;
  }
  .foottext {
    font-size: 10px !important;
  }
  .tab-01 .intake-box .second-t .default-f {
    font-size: 11px;
  }
  .herosection .quote-row .name {
    color: #b99750;
    font-size: 12px;
  }
  .faq-wrapper {
    padding: 1.5rem 1rem;
  }
  .testimonial-slide-section .t-item .info .details .name {
    font-size: 14px;
  }
  .testimonial-slide-section .t-item .designation {
    font-size: 16px;
  }
  .statistics-wrap .item:nth-child(1) {
    margin-top: 3rem;
  }
  .statistics-wrap .item:nth-child(3) {
    margin-top: 0;
  }
  .statistics-wrap .item .title {
    font-size: 18px;
  }
  .statistics-wrap .item .icon img {
    width: 100%;
  }
  .statistics-wrap .item {
    max-height: fit-content;
  }
  .statistics-wrap .item .icon {
    margin: -75px auto 0;
    width: 90px;
  }
  .statistics-wrap {
    display: flex;
    grid-gap: 4rem;
    margin-top: 0;
    flex-direction: column;
  }
  .career-pathways {
    padding: 2rem 1rem;
  }
  .exemptions-section .exemptions .point-list img {
    width: 50px;
  }
  .career-pathways-section .cp-item.no-bg .title {
    font-size: 18px;
  }
  .career-pathways-section .cp-item .demand span {
    padding: 8px 15px;
    font-size: 10px;
  }
  .career-pathways-section .cp-item .price {
    font-size: 13px;
  }
  .career-pathways-section .cp-item .name {
    font-size: 14px;
    line-height: 18px;
  }
  .career-pathways-section .cp-item::after {
    background-size: 50%;
  }
  .career-pathways-section .cp-item .icon img {
    width: 50px;
  }
  .career-pathways-section .cp-item {
    padding: 1rem;
    text-align: center;
  }
  .journey-btn {
    flex-direction: column;
  }
  .journey-btn a,
  .journey-btn button {
    display: block;
    margin-bottom: 0.5rem;
  }
  .journeyCarousel {
    margin-top: 1rem;
  }
  .journey-wrap .timeline-card p {
    margin-left: -12% !important;
  }
  .journey-wrap .timeline-card .heading {
    font-size: 18px;
    padding: 1rem 1rem 1rem 3rem;
    margin-left: -66px;
  }
  .journey-wrap .timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 56px;
    top: 70px;
    width: 2px;
    height: 130px;
    background: #f2d38a;
  }
  .journey-wrap .timeline-wrapper::before {
    left: 34px;
    top: 53px;
    width: 2px;
    height: 100%;
  }
  .journey-wrap .year-circle {
    left: 7px;

    width: 54px;
    height: 54px;
  }

  .journey-wrap .timeline-wrapper::after {
    /* content: none; */
  }
  .slide-right .owl-nav {
    position: inherit;
    top: inherit;
    right: inherit;
  }
  .exemptions-section .exemptions .details .logo span {
    width: 40%;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .exemptions-section .exemptions .details .logo img {
    width: 100%;
  }
  .exemptions-section .exemptions .details .title {
    font-size: 18px;
  }
  .reqCardWrap .u-logo {
    margin-top: 2rem;
  }
  .slide-center .owl-nav {
    position: inherit;
    justify-content: center;
  }
  .reqHeadText {
    font-size: 18px;
  }
  .duration-section .duration .years .item .yrs::before {
    content: none;
  }
  .duration-section .duration .title {
    padding: 0.5rem;
  }
  .duration-section .duration {
    font-size: 10px;
    line-height: 14px;
  }
  .duration-section .duration .title img {
    width: 20px;
  }
  .tab-01 .intake-box .third-t {
    font-size: 11px;
  }
  .tab-01 .apply-btn {
    font-size: 9px;
  }
  .tab-01 .intake-box .second-t {
    font-size: 12px;
  }
  .fillBtn-c {
    padding: 10px 12px;
    font-size: 12px;
  }
  .program-overview .tab-01 {
    margin-top: 1.5rem;
  }
  .bannerFormWrap .submit-btn {
    font-size: 14px;
    font-weight: 500;
  }
  .program-overview {
    margin-top: 0rem;
  }
  .herosection .quote-row {
    margin: 2rem 0 2rem;
    width: 100%;
  }
  .pathway-btn a {
    display: block;
    margin-left: 0 !important;
    margin-bottom: 0.5rem;
  }
  .pathway-item a {
    font-size: 12px;
    display: block;
    margin-bottom: 0.5rem;
  }
  .pathway-item a img {
    /* width: 20px; */
  }
  .herosection .pageSubtitleWrap .banner-year span {
    font-size: 24px;
  }
  .herosection .pageSubtitleWrap .banner-year {
    font-size: 16px;
    width: 100%;
  }
  body {
    font-size: 14px;
    line-height: 22px;
  }
  p {
    font-size: 14px;
    line-height: 22px;
  }
  .navbarsection,
  .herosection,
  .career-pathways-section,
  .testimonial-slide-section,
  .faq-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 1rem;
  }
  .fillBtn {
    font-size: 12px;
    padding: 10px;
  }

  .navphonetext {
    font-size: 12px;
  }
  .logoimg {
    width: 120px;
    height: auto;
  }
  /**new ED**/
  .navbarsection {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .mobileView {
    display: block;
  }

  .desktopView {
    display: none !important;
  }

  .bannerFormHead .formtitle {
    font-size: 17px;
  }

  button.accordion-button {
    padding: 14px;
  }

  p {
    font-size: 14px;
  }

  .sectionpad {
    padding: 40px 0;
  }

  .sectionpadtop {
    padding-top: 40px;
  }

  .sectionpadbottom {
    padding-bottom: 40px;
  }

  /* hero banner section */

  .pageTitle {
    font-size: 29px;
  }

  .bannerStudent {
    display: none;
  }

  .navbarsection {
    margin-top: 10px;
  }

  .sectionTitle {
    font-size: 24px;
    text-align: center;
  }

  .desktopFixedCta {
    display: none;
  }

  /* ------------------ */

  .outlineBtn {
    font-size: 14px;
    padding: 10px 15px;
  }

  /* --------------------------- */

  .lineHighlightText::after {
    width: 85%;
  }

  /* --------------------------- */

  .whySection .container {
    height: 680px;
  }

  .whyStudentWrap {
    position: absolute;
    bottom: 0;
    left: 35px;
    width: 90%;
    height: auto;
  }

  /* --------------------------- */
  .aboutContentWrap {
    width: 90%;
    margin-left: 15px;
    margin-top: 25px;
  }

  .aboutSection2 .row {
    flex-direction: column-reverse;
    gap: 10px 0;
  }

  .aboutContentWrap2 {
    width: 90%;
    margin-left: 15px;
  }

  .slightUpper {
    margin-top: 18px;
  }

  .objectiveContentWrap2 {
    margin-left: 15px;
    margin-top: 30px;
  }

  .benefitIcon {
    width: 40px;
    height: auto;
  }

  .benefitText {
    font-size: 16px;
  }

  .programCard {
    width: 100%;
  }

  .requirementImgWrap {
    width: 100%;
    margin-top: 15px;
  }

  .reqWrapper {
    background: var(--primary) url(../images/banner/reqBg.png) center / cover
      no-repeat;
    padding: 40px 15px;
    border-radius: 0px;
    height: auto;
  }

  /* highlighter css */

  .line6HighlightText::after {
    width: 106%;
    height: 54%;
    bottom: -6px;
    left: -51px;
    z-index: -1;
    background-size: 100% 100%;
  }

  .reqCardWrap {
    border: 1px solid var(--light);
  }

  .scholarshipSection {
    background: #fef7fb;
    margin-top: 0px;
    position: relative;
    height: 810px;
  }

  .pageSubtitleWrap p {
    font-size: 18px !important;
  }

  .scholarshipContentCard {
    position: relative;
    height: unset;
  }

  .stext {
    position: relative;
    margin-top: 20px !important;
  }

  .stext1,
  .stext2,
  .stext3,
  .stext4,
  .stext5 {
    top: unset;
    bottom: unset;
  }

  .scholarshipStudentImgWrap {
    width: 100%;
  }

  .ctaFormWrap {
    width: auto;
  }

  .programImgWrap {
    width: 60%;
    margin-bottom: -24px;
  }

  .benefitStudentImgWrap {
    width: 65%;
  }

  .ctaStudentImgWrap img {
    display: none;
  }

  .universityNameText {
    font-size: 55px;
  }

  .mobileBannerForm {
    display: flex;
    justify-content: center;
  }

  .bannerUpperFormWrap {
    width: 100%;
  }
}

/* ---------------------------------------------------------- */
