/* import statement */

/* @import url("../font/Queen-Semi-Bold.otf");
@import url("../font/Outfit-Regular.ttf"); */

@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");

@font-face {
  font-family: "Queen";
  src: url("../font/Queen-Semi-Bold.otf");
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Regular.ttf");
}

@font-face {
  font-family: "AlbertSans";
  src: url("../font/AlbertSans-Regular.ttf");
}
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.ttf");
}

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

/* default CSS  */

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

:root {
  --light: #ffffff;
  --dark: #000;
  --AlbertSans: "AlbertSans";
  --Queen: "Queen";
  --Outfit: "Outfit";
  --funnel-display: "Funnel Display", sans-serif;
  --Poppins: "Poppins";
  --primary: #fff234;
  --secondary: #031f42;
  --tertiary: rgba(255, 208, 180, 1);
  --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(--Poppins) !important;
  color: var(--secondary);
  background: #f8f8ff;
  overflow: hidden;
}

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

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

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

.sectionpad {
  padding: 70px 0;
}

.sectionpadtop {
  padding-top: 70px;
}

.sectionpadbottom {
  padding-bottom: 70px;
}

.sectionTitle {
  font-family: var(--AlbertSans);
  color: var(--secondary);
  text-align: center;
  font-weight: 700;
  font-size: 2.5vw;
  text-wrap: balance;
  position: relative;
}

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

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

.fixedctaCallBtn {
  position: fixed;
  top: 120px;
  right: 2px;
  z-index: 999;
}

.fixedEnquire {
  position: fixed;
  top: 300px;
  right: -43px;
  transform: rotate(-90deg);
  background: linear-gradient(335deg, #031f42 44.1%, #084fa8 128.25%);
  color: var(--light);
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.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: 38px;
  height: auto;
}

.fillBtn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  background: radial-gradient(
    79.18% 255.17% at 49.71% -167.24%,
    #fff234 0%,
    #031f42 100%
  );

  color: var(--light);
  border-radius: 12px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
  border: 1px solid rgba(3, 31, 66, 0);

  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 200px; */
}

.fillBtn:hover {
  background: var(--light);
  border: 1px solid #031f42;
  color: var(--secondary);
}

.fillBtn .arw2 {
  display: none;
}

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

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

.fillBtn1 {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;

  color: var(--secondary);
  border-radius: 12px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
  border: 1px solid rgba(3, 31, 66, 0);
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 200px; */
}

.fillBtn1:hover {
  background: var(--secondary);
  border: 1px solid var(--primary);
  color: var(--light);
}

.fillBtn1 .arw2 {
  display: none;
}

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

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

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

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

.outlineBtn .arw1 {
  display: none;
}

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

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

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

/* navbar */

.navbarsection .container {
  border-radius: 1rem;
  background: #001f4d;
  margin-top: 1rem;
  /* filter: blur(13px); */
  padding: 15px;
}

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

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

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

.navwrapper {
  display: flex;
}

.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: #fff;
  font-weight: 600;
  font-size: 16px;
}

.contact1wrap {
  /* border-radius: 10px;
  background: var(--primary); */
  padding: 7px 15px;
  display: inline-block;
  border-radius: 12px;
  border: 1px solid;
  border-image-source: linear-gradient(
    112.17deg,
    rgba(3, 31, 66, 0) 47.94%,
    #031f42 111.98%
  );
  background: radial-gradient(
      69.04% 69.26% at -19.16% -22.41%,
      #6b68eb 0%,
      #031f42 100%
    ),
    radial-gradient(
      60.96% 60.96% at 106.99% 105.17%,
      #6b68eb 0%,
      rgba(3, 31, 66, 0) 100%
    );
}

.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 */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  background-color: var(--light);
  color: var(--secondary);
  padding: 10px;
}

.marquee-content {
  display: inline-flex;
  animation: scroll 12s linear infinite;
}

.marquee .item {
  display: flex;
  align-items: center;
  padding-right: 40px;
}

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

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

.bannesection {
  background: url("../images/banner/bgLines.png");
  background: radial-gradient(
    79.18% 255.17% at 49.71% -167.24%,
    #3db166 0%,
    #031f42 100%
  );
}

.pageSubtitleWrap {
  background-color: transparent;
  font-family: var(--Poppins);
  color: var(--light);
  display: inline-block;
  border-radius: 2rem;
  padding: 10px 15px;
  font-size: 17px;
  border: 1px solid var(--primary);
  width: fit-content;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 10px;
}

.bannerWrapper {
  position: relative;
}

.bannerContent p {
  font-size: 16px;
}

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

.bannerContentIconWrap {
  margin: 10px 0;
}

.chipBtn {
  border-radius: 30px;
  background: #ededff;
  color: var(--primary);
  display: inline-block;
  padding: 5px 20px;
}

.bannerStudentImgWrap {
  position: relative;
}

/* SECTION */

/* MAIN BANNER */

/* LEFT CONTENT */
.heroContentWrap {
  /* padding: 80px 50px; */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.pageTitle {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--light);
}

.highlightText {
  color: #ffe600;
}

.pageSubtitleWrap p {
  display: inline-block;
  margin: 18px 0 28px;
  padding: 8px 18px;
  border-radius: 22px;
  font-size: 14px;
}

/* FEATURES */
.featureGrid {
  row-gap: 18px;
}

.bannerContentIconWrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bannerContentIconWrap img {
  width: 30px;
}

.bannerContentIconWrap p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* CTA BUTTON */

/* RIGHT PANEL */
.bannerStudentbg {
  background: url("../images/banner/banner.png") center/cover no-repeat;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  min-height: 520px;
  position: relative;
  left: 7%;
}

/* CURVED DIVIDER */

.bannerWrapper {
  position: relative;
}

.bannerStudentImgWrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-5%);
  z-index: 3;
  pointer-events: none;
}

.bannerStudent {
  width: 420px;
  max-width: 100%;
  height: auto;
}

/* MOBILE */
@media (max-width: 991px) {
  .heroContentWrap {
    padding: 20px 14px;
  }

  .pageTitle {
    font-size: 24px;
  }

  .bannerStudentbg {
    min-height: 320px;
    border-radius: 0 0 24px 24px;
  }

  .bannerStudentbg::before {
    display: none;
  }

  .bannerStudentImgWrap {
    position: static;
    text-align: center;
    margin-top: 20px;
  }

  .bannerStudent {
    width: 260px;
  }
}

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

/* grade section */

.gradeSection {
  background: #f8f8ff;
}

.gradeContentWrap {
  border-radius: 24px;
  border: 1px solid rgba(107, 104, 235, 0.5);
  background: url("../images/banner/gradeBg.png");
  padding: 40px;
}

.gradeIcon {
  width: 30px;
  height: 32px;
}

.gradeText {
  font-family: var(--funnel-display);
  font-size: 21px;
  text-wrap: balance;
}

.element1 {
  position: absolute;
  top: -29%;
  left: 3%;
}

.element2 {
  position: absolute;
  bottom: 0;
  right: 4%;
}

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

/* enroll section */

.enrollSection {
  background: url("../images/banner/enrollBg.jpg");
  height: 675px;
  position: relative;
}

.studentImgWrap {
  position: absolute;
  height: auto;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.studentImgWrap img {
  width: 335px;
  height: auto;
}

/* .enrollStudentCardWrap {
  position: relative;
  z-index: 2;
  height: 600px;
} */

.studentCardWrap {
  position: absolute;
  background: url("../images/banner/cardBg.png");
  display: flex;
  justify-content: center;
  align-items: center;
  width: 365px;
  color: var(--light);
  padding: 25px;
  border-radius: 24px;
  border: 1px solid rgba(107, 104, 235, 0.3);
  box-shadow: -5px -4px 30px 0 rgba(208, 207, 255, 0.1);
}

.studentCard1 {
  transform: rotate(-6deg);
  bottom: 90px;
  left: 82px;
}

.studentCard2 {
  transform: rotate(6.422deg);
  bottom: 261px;
  left: 188px;
}

.studentCard3 {
  width: 495px;
  top: 140px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.studentCard4 {
  transform: rotate(-6.42deg);
  bottom: 261px;
  right: 188px;
}

.studentCard5 {
  transform: rotate(7deg);
  bottom: 67px;
  right: 108px;
}

.studentContent {
  position: relative;
  z-index: 10;
}

.student1Content::before {
  content: url(../images/elements/e3.svg);
  width: 50px;
  height: auto;
  position: absolute;
  left: -54px;
  bottom: -72px;
  z-index: 99;
}

.student2Content::before {
  content: url(../images/elements/e8.svg);
  width: 50px;
  height: auto;
  position: absolute;
  left: -72px;
  top: -85px;
  z-index: 99;
}

.student4Content::before {
  content: url(../images/elements/e9.svg);
  width: 50px;
  height: auto;
  position: absolute;
  right: -56px;
  top: -60px;
  z-index: 99;
}

.student5Content::before {
  content: url(../images/elements/e10.svg);
  width: 50px;
  height: auto;
  position: absolute;
  right: -51px;
  bottom: -76px;
  z-index: 99;
}

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

/* key benefits section */

.keyBenefitSection {
  position: relative;
}

img.benefitTickIcon {
  width: 25px;
}

.benefiteHead {
  font-weight: 600;
  font-size: 20px;
}

.benefitePara {
  color: var(--gray);
  margin-top: 8px !important;
}

.keyBenefitImgWrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 550px;
  height: auto;
}

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

/* testimonial section */

.testimonialSection {
  background: #f8f8ff;
}

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

/* review section */

/* ===== SECTION BACKGROUND ===== */
.testimonialCarouselContentWrap {
  background: radial-gradient(
      120% 120% at 50% 100%,
      rgba(120, 160, 90, 0.35) 0%,
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(180deg, #071c3a 0%, #03132a 100%);
  padding: 80px 40px;
  border-radius: 32px;
}
.testimonialCarouselContentWrap .sectionTitle {
  color: #fff;
}

/* ===== REVIEW CARD ===== */
.reviewCard {
  position: relative;
  height: 100%;
  border-radius: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: transform 0.3s ease;
}

.reviewCard:hover {
  transform: translateY(-6px);
}

/* ===== HEADER ===== */
.reviewCard .d-flex {
  gap: 12px;
}

.reviewerName {
  font-size: 16px;
  font-weight: 600;
  color: #f4d23c; /* yellow like image */
  margin-bottom: 0;
}

/* ===== QUOTE ICON (TOP RIGHT) ===== */
.reviewCard img {
  width: 40px !important;
  opacity: 0.9;
}

/* ===== CONTENT ===== */
.reviewContent {
  font-size: 14.5px;
  line-height: 1.7;
  color: #dbe4f3;
}

/* ===== BIG QUOTE MARK (BOTTOM RIGHT) ===== */
.reviewCard::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: 20px;
  width: 49px;
  height: 139px;
  background-image: url("/images/icon/Icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
}

/* ===== OWL FIXES ===== */
.testimonialCarousel .owl-stage {
  display: flex;
}

.testimonialCarousel .item {
  height: 100%;
  padding: 10px;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .testimonialCarouselContentWrap {
    padding: 50px 20px;
  }

  .reviewCard {
    padding: 22px;
  }

  .reviewCard::after {
    font-size: 90px;
  }
}

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

/* cta section */

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

.ctaSection .marqueeWrap {
  position: absolute;
  top: 50%;
  z-index: 0;
}

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

.universityNameText {
  font-size: 65px;
  font-weight: 600;
  color: var(--secondary);
}

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

.ctaFormWrap {
  width: 450px;
  position: absolute;
  right: 1px;
}

.ctaImgWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 700px;
  height: auto;
}

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

/* lms section */

.lmsFeatureSection {
  background: url("../images/banner/bgLines.png");
}

.lmsHeadWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.durationImg {
  background: url("../images/circle-highlight/c7.svg");
  padding: 30px;
}

.LMSCardCarousel .item {
  padding: 10px;
  /* border-radius: 10px; */
  overflow: hidden;
}

.lmsCardWrap {
  padding: 20px;
  /* background: url("../images/banner/lmsCardBg.jpg"); */

  border-radius: 20px;
  /* border: 1px solid rgba(107, 104, 235, 0); */
  background: linear-gradient(
    120deg,
    #eae9ff -12.83%,
    #fff 50.68%,
    #d0cfff 116.68%
  );
  /* box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.15),
    0 30px 60px -30px rgba(0, 0, 0, 0.2),
    0 -2px 6px 0 rgba(10, 37, 64, 0.35) inset; */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.lmsCardWrap img {
  border-radius: 15px;
}

.lmsHead {
  font-family: var(--funnel-display);
  color: var(--primary);
  margin: 15px 0 !important;
  font-size: 18px;
}

.lmsContent {
  color: var(--gray);
  font-size: 13px;
}

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

/* about section */
.aboutSection {
  /* background: url("../images/banner/aboutbg.png") !important; */
  background: linear-gradient(180deg, #c1d8e5 0%, #edebbb 100%);
  border-radius: 100px 100px 0px 0px;
}

.aboutSection .section-subtitle {
  width: 75%;
  margin: 0 auto !important;
  margin-top: 15px !important;
}

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

/* syallbus section */

/* .syllabusContentWrap {
  border-radius: 24px;
  border: 1px solid rgba(59, 140, 240, 0);
  background: #fbfbfb;
  box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.15),
    0 30px 60px -30px rgba(0, 0, 0, 0.2),
    0 -2px 6px 0 rgba(10, 37, 64, 0.35) inset;
} */

/* .tab-content {
  background: rgba(59, 140, 240, 0.1);
  border-left: 1px solid #3b8cf0;
  border-right: 1px solid #3b8cf0;
  border-bottom: 1px solid #3b8cf0;
  border-top: none !important;
  border-radius: 0 0 10px 10px;
  margin-top: 1px;
} */
section.programsSection {
  padding: 40px 0px;
}

/* Outer rounded pill container */

.syllabusContentWrap .nav-tabs {
  margin-left: auto;
  margin-right: auto;
}

.syllabusContentWrap .nav-tabs {
  padding: 5px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  align-items: center;
}

/* Default Tab */
.syllabusContentWrap .nav-link {
  background: transparent;
  border: 1px solid rgba(181, 179, 255, 1);
  color: #3d4d6a;
  border-radius: 10px 10px 0px 0px;
  padding: 0.5rem 6rem;

  font-weight: 600;
  transition: 0.3s ease;
}

/* Active Tab (Dark Gradient like your screenshot) */
.syllabusContentWrap .nav-link.active {
  background: linear-gradient(90deg, #0b1f4d, #153b7a);
  color: #ffffff !important;
  border-radius: 10px 10px 0px 0px;
}

/* Remove underline */
.nav-tabs {
  border-bottom: none !important;
}

/* Styling inner text wrapper */
.syllabusContentWrap .nav-link .syllabusBtn {
  border: none !important;
}

/* Mobile Scroll */
@media (max-width: 768px) {
  .syllabusContentWrap .nav-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 10px;
    justify-content: flex-start;
  }
}

.dot {
  background: #000;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  display: inline-block;
}

.syllabusContent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.syllabusPointer {
  padding: 10px 20px;
  background: var(--light);
  border-radius: 10px;
  border: 1px solid #dddcff;
}

.examOverviewHead {
  font-family: var(--funnel-display);
  font-weight: 700;
}

.examOverviewContentWrap {
  border-radius: 24px;
  /* border: 1px solid rgba(59, 140, 240, 0); */
  background: #fbfbfb;
  box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.15),
    0 30px 60px -30px rgba(0, 0, 0, 0.2),
    0 -2px 6px 0 rgba(10, 37, 64, 0.35) inset;
  padding: 25px 20px;
}

.examHeadText {
  color: var(--secondary);
  font-family: var(--funnel-display);
  font-weight: 600;
}

.examContentText {
  color: var(--gray);
  font-size: 15px;
}

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

/* Modal */

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

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

.modal-body {
  position: relative;
}

.popupModalCloseBtn {
  position: absolute;
  top: 3px;
  right: 15px;
}

.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(--secondary);
}

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

.accordion {
  background: transparent !important;
}

button.accordion-button {
  padding: 25px 30px 20px 30px;
}

.accordion-body {
  background-color: var(--light);
  padding: 0 20px 30px 28px !important;
  font-size: 14px;
  color: var(--gray);
  border-radius: 10px;
}

.faqhead {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
}

.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: 10px;
  border-bottom: 1px solid #6b68eb !important;
  border-right: 1px solid #6b68eb !important;
  border-left: 1px solid #6b68eb !important;
  border-top: none !important;
  background-color: transparent !important;
}

.accordion-header,
.accordion-button {
  background-color: var(--light) !important;
  /* border: 1px solid #c3e4e8; */
  border-radius: 10px;
}

.accordion-header {
  border-top: 1px solid #6b68eb;
}

.accordion-button:not(.collapsed) {
  background-color: var(--light) !important;
  border-radius: 10px 10px 0 0;
}

.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: 2px solid var(--secondary);
  background: rgba(107, 104, 235, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* height: 87%; */
}

.bannerFormContentWrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

.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(--secondary);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 15px 0px;
}

.bannerFormHead2 {
  /* background: var(
    --Radial,
    radial-gradient(69.94% 74.85% at -13.28% -35.34%, #031f42 0%, #6b68eb 100%)
  ); */
  background: #fff;
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 15px 0px;
  font-family: var(--AlbertSans);
}

.bannerFormWrap {
  /* border-radius: 16px; */
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: #d9e9ff;
  padding: 20px 15px;
  border-radius: 0 0 20px 20px;
}

.bannerFormHead .formtitle {
  color: #fff;
  font-family: var(--funnel-display);
  font-size: 17px;
  font-weight: 800;
  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: 12px;
}

.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(--secondary);
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
}

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

.formTerms {
  font-size: 9px;
  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;
}

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

/* media query */

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

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

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

  .faqheadwrap h2 {
    text-align: center;
    margin-bottom: 12px !important;
  }

  /* banner section */
  /* 
  .bannerUpperFormWrap {
    height: auto;
  } */

  .bannerFormContentWrap {
    width: 100%;
  }

  .bannerStudent {
    position: absolute;
    height: auto;
    width: 534px;
    top: 50px;
    left: -105px;
  }

  .pageTitle {
  }

  .bannerReviewCard {
    margin-top: 45px;
    width: 93%;
    margin-bottom: 30px;
    position: relative;
  }

  .reviewStudentImgWrap {
    display: block;
    position: absolute;
    bottom: 0;
    right: -65px;
  }

  .reviewStudentImgWrap img {
    width: 175px;
    height: auto;
  }

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

  .banneStudentImgWrap {
    display: none;
  }

  .bannerFormContentWrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
  }

  .banReviewText {
    width: 90%;
    font-size: 15px;
  }

  .gradeContentWrap .row {
    gap: 13px;
  }

  .syllabusContentWrap .nav-link {
    width: 23%;
  }

  .syllabusContentWrap .nav-tabs {
    display: flex;
    column-gap: 17.67px;
  }

  .examOverviewContentWrap {
    margin-top: 30px;
  }

  .ctaImgWrap {
    display: none;
  }

  .keyBenefitImgWrap {
    position: relative;
    bottom: 0;
    right: 0;
    width: 390px;
    height: auto;
    display: flex;
    justify-content: center;
    /* margin-top: 40px; */
    margin: 40px auto 0 auto;
  }

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

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

  .ctaFormWrap {
    width: auto;
  }
}

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

@media only screen and (max-width: 768px) {
  .faqhead {
    font-size: 13px;
    font-weight: 400;
  }

  .mobileView {
    display: block;
  }

  .desktopView {
    display: none !important;
  }

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

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

  p {
    font-size: 14px;
  }

  .contactbtn1,
  .contactbtn2 {
    color: #fff;
    font-weight: 600;
    /* font-size: 20px; */
    display: flex;
    align-items: center;
  }

  .navphonetext {
    /* display: none; */
    font-size: 13px;
  }

  .contactbtn1 img {
    width: 18px;
    margin-left: 5px;
  }

  .contact1wrap {
    padding: 7px 8px;
  }

  .mobileView {
    display: block;
  }

  .desktopView {
    display: none;
  }

  .sectionpadtop {
    padding-top: 40px;
  }

  .sectionpadbottom {
    padding-bottom: 40px;
  }

  /* hero banner section */

  .pageTitle {
    font-size: 24px;
  }

  .bannerStudent {
    display: none;
  }

  .navbarsection {
    margin-top: 0px;
  }

  p {
    font-size: 16px;
  }

  .pageSubtitleWrap {
    border-radius: 3rem;
  }

  .bannerContent p {
    font-size: 16px;
  }

  .banReviewText {
    width: 65%;
    font-size: 14px;
  }

  .reviewStudentImgWrap {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .bannerReviewCard {
    padding: 30px 20px;
    width: 100%;
    /* overflow: hidden; */
  }

  .reviewStudentImgWrap img {
    width: 143px;
    height: auto;
  }

  .bannerFormContentWrap {
    width: 100%;
  }

  .fillBtn {
    padding: 10px 15px;
    font-size: 16px;
  }

  img.arw1,
  img.arw2 {
    width: 22px;
  }

  .bannerUpperFormWrap {
    margin-top: 15px;
  }

  .element1 {
    position: absolute;
    top: -17%;
    left: 4%;
    width: 60px;
    height: auto;
  }

  .gradeContentWrap {
    padding: 20px;
    background: url("../images/banner/gradeMobBg.png");
    margin-bottom: 40px;
  }

  .element2 {
    position: absolute;
    bottom: 13px;
    right: 0%;
    width: 67px;
    height: auto;
    transform: rotate(13deg);
  }

  .gradeText {
    font-size: 20px;
    /* margin-bottom: 6px !important; */
  }

  /* enroll section */

  .enrollSection {
    height: 1380px;
  }

  .studentCardWrap {
    width: 88%;
    padding: 26px;
  }

  .studentText {
    font-size: 14px;
  }

  /* cta section */

  .enrollSection {
    background: url("../images/banner/enrollMobBg.jpg");
  }

  .desktopFixedCta {
    display: none;
  }

  .studentCardWrap {
    bottom: unset;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .studentCard1 {
    top: 45%;
    transform: rotate(3deg);
  }

  .studentCard2 {
    transform: rotate(3deg);
    top: 23%;
  }

  .studentCard3 {
    transform: rotate(-3deg);
  }

  .studentCard4 {
    transform: rotate(-3deg);
    top: 34%;
  }

  .studentCard5 {
    transform: rotate(-3deg);
    top: 56%;
  }

  .student1Content::before {
    content: url(../images/elements/e8.svg);
    width: 50px;
    height: auto;
    position: absolute;
    left: -69px;
    bottom: 51px;
    z-index: 99;
  }

  .student4Content::before {
    content: url(../images/elements/e3.svg);
    width: 50px;
    height: auto;
    position: absolute;
    right: -53px;
    top: -72px;
    z-index: 99;
    transform: rotate(182deg);
  }

  .student5Content::before {
    content: url(../images/elements/e10.svg);
    width: 50px;
    height: auto;
    position: absolute;
    right: -51px;
    bottom: 47px;
    z-index: 99;
    transform: rotate(-115deg);
  }

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

  img.benefitTickIcon {
    width: 20px;
    margin-top: 7px;
  }

  .benefiteHead {
    font-size: 16px;
    text-wrap: balance;
  }

  .keyBenefitImgWrap {
    position: relative;
    width: unset;
    bottom: unset;
    right: unset;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 300px;
  }

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

  /* mobile testimonial */

  .reviewDateTime {
    font-size: 14px;
    color: #9ca3af;
    display: flex;
    align-items: center;
  }

  img.reviewIcon {
    width: 19px !important;
  }

  /* cta section */

  .ctaFormWrap {
    width: 100%;
  }

  .ctaSection {
    /* height: 275px !important; */
    /* background: url("../images/student/s5.png"); */
    /* margin-top: 30px; */
  }

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

  .universityNameText {
    font-size: 40px;
  }

  /* circle highlighter */

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

    background: unset;
    padding: 2px;
  }

  .circleHighlight2 {
    /* background: unset; */
  }

  .circleHighlight3 {
    /* content: unset; */
    top: -10px;
    left: -16px;
    width: 45%;
  }

  .circleHighlight4 {
    background: unset;
  }

  .circleHighlight5 {
    /* content: unset; */
    width: 127px;
  }

  .circleHighlight6 {
    /* background: unset; */
  }

  .circleHighlight7 {
    /* background: unset; */
    padding: unset;
  }

  .circleHighlight8 {
    content: unset;
  }

  /* faq */

  .accordion-body {
    padding: 0 20px 20px 20px !important;
  }

  /*  */

  /* .bannerUpperFormWrap {
    height: auto;
  } */

  /* syalbus section */

  .examOverviewContentWrap {
    margin-top: 30px;
  }

  .syllabusContentWrap .nav-link {
    width: 48%;
  }

  .syllabusContentWrap .nav-link.active {
    height: auto;
    border-bottom: 1px solid #3b8cf0 !important;
    border-radius: 10px;
  }

  .syllabusContentWrap .nav-link {
    margin: 5px 0;
  }

  .tab-content {
    margin-top: 10px;
    border-top: 1px solid #3b8cf0 !important;
    border-radius: 10px;
  }

  .dot {
    width: 5px;
    height: 4px;
    margin-right: 10px !important;
  }

  .syllabusPointer p {
    font-size: 14px;
  }

  .aboutSection .section-subtitle {
    width: 95%;
    font-size: 13px;
    text-wrap: balance;
  }

  .faqCard p {
    font-size: 14px;
  }

  .pageSubtitleWrap {
    padding: 10px 23px;
    font-size: 19px;
    width: 315px;
  }

  .gradeContentWrap .row {
    row-gap: 20px;
  }

  .sectionTitle {
    font-size: 24px;
  }

  .reviewHead {
    font-size: 15px;
  }

  .reviewContent {
    font-size: 13px;
  }

  .reviewCard img {
    width: 40px !important;
  }

  .testimonialCarouselContentWrap {
    margin-bottom: 20px;
  }

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

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

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

  .sectionTitle {
    font-size: 26px;
  }

  .navbarsection .container {
    border-radius: 0rem;
    /* background: rgba(255, 255, 255, 0.75); */
    /* filter: blur(13px); */
    margin-top: 0px;
    padding: 8px;
  }

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

  .fixedctaimg img {
    width: 45px;
    height: auto;
  }

  /* cta section */

  /* lms */

  .lmsHeadWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .durationImg {
    margin-top: 10px;
  }

  .mobileFixedCta {
    display: block;
  }

  .footercontentwrap {
    margin-bottom: 43px;
  }

  .ctaImgWrap {
    display: none;
  }

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

  p {
    font-size: 14px;
  }

  .fillBtn {
    padding: 10px 15px;
    font-size: 12px;
  }
}

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

@media only screen and (max-width: 576px) {
  /* .ctaSection {
    height: 642px !important;
    background: url("../images/student/s5.png");
    margin-top: 40px;
  } */

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

  .studentImgWrap img {
    width: 340px;
    height: auto;
  }

  .syllabusContentWrap .nav-link {
    width: 47%;
  }

  .gradeText {
    font-size: 15px;
    /* margin-bottom: 6px !important; */
  }
}

@media only screen and (max-width: 500px) {
  .ctaSection .marqueeWrap {
    position: absolute;
    top: 84px;
  }
}

@media only screen and (max-width: 450px) {
  .ctaSection .marqueeWrap {
    position: absolute;
    top: 63px;
  }
}

@media only screen and (max-width: 400px) {
  .ctaSection .marqueeWrap {
    position: absolute;
    top: 40px;
  }
}

/* extra CSS */

.sectionTitle {
  position: relative;
}

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

.benefitCircleHighlight::after {
  content: "";
  background: url("../images/circle-highlight/c9.svg") no-repeat center
    center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-size: 100% 100%;
}

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

.reviewCircleHighlight::after {
  content: "";
  background: url(../images/circle-highlight/c10.svg) no-repeat center center /
    cover;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-size: 100% 100%;
}

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

.aboutCircleHighlight::after {
  content: "";
  background: url("../images/circle-highlight/c1.svg") no-repeat center
    center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-size: 100% 100%;
}

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

.degreeCircleHighlight::after {
  content: "";
  background: url("../images/circle-highlight/c11.svg") no-repeat center
    center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-size: 100% 100%;
}

/* -------form section-------------- */
/* .proceedSection {
  padding: 40px 0;
} */

/* Outer dark blue border */
.proceedOuterBorder {
  width: 85%;
  margin: 0 auto;
  border: 3px solid #02254d;
  border-radius: 18px;
  padding: 8px;
  /* space for inner border */
  background: transparent;
  backdrop-filter: blur(14px);
  margin-top: -4rem;
  z-index: 4;
  position: relative;
}

/* Inner white box with faint border + shadow */
.proceedBox {
  background: #ffffff;
  border: 1px solid rgba(251, 125, 49, 0.15);
  box-shadow: 0px 1px 4.5px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

/* Heading */
.proceedHeading {
  text-align: center;
  background: #dddcff;
  color: #02254d;
  padding: 14px 10px;
  font-weight: 900;
  font-family: var(--AlbertSans);
  border-radius: 12px 12px 0 0;
  width: 100%;
}

/* Keep your form padding */
.proceedform {
  padding: 20px;
}

.proceedInput {
  height: 40px;
  border-radius: 8px;
  font-size: 12px;
}

.form-select {
  color: #666 !important;
}

.proceedPhoneWrap {
  background: #fff;
  border: 1px solid #ced4da;
  padding-left: 10px;
  border-radius: 8px;
  height: 50px;
  align-items: center;
  width: 100%;
}

.proceedPhoneCode {
  font-weight: 600;
  margin-right: 6px;
}

.proceedPhoneInput {
  /* border: none !important; */
  box-shadow: none !important;
}

.proceedBtn {
  background: radial-gradient(
    79.18% 255.17% at 49.71% -167.24%,
    #3db166 0%,
    #031f42 100%
  );
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease-in-out;
}

.proceedBtn:hover {
  background: #f4d23c;
}

.proceedCheckWrap {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* -------form section end-------------- */

/* 
------------------Online Programs We Offer------------------------
*/
.course-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e4e4e4;
  transition: 0.3s ease;
  border: 1px solid;
  background: linear-gradient(90deg, #001a3a 0%, #002f5f 50%, #0b2d1f 100%);
}

.course-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.course-card-top {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.course-icon {
  width: 70px;
  height: auto;
}

.course-card-img-wrap {
  padding: 40px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 15px;
  border-radius: 20px;
  margin-bottom: 0px;
}

img.programIcon {
  width: 70px !important;
  height: auto;
}

.applyIcon {
  width: 20px !important;
  height: auto;
}

.course-card-bottom {
  padding: 10px 20px;
}

.course-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 25px;
  height: 60px;
}

.course-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-actions a {
  font-size: 11px;
}

.apply-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff7a00;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.apply-btn span {
  background: #ff7a00;
  color: #fff;
  padding: 5px 7px;
  border-radius: 50%;
  font-size: 12px;
}

.duration {
  margin: 0;
  color: #ffffff79;
  font-size: 10px;
}

.duration strong {
  font-weight: 600;
  color: #fff;
}

.vtu-advantage {
  background: url("../images/banner/counsellingbg.png") no-repeat center
    center/cover;
}

.btn-orange {
  background-color: #f97316;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
}

.person-image {
  width: 380px;
  position: relative;
}

.person-image img {
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

/* Card Text Color */
.feature-card {
  color: #031d40;
}

.feature-card h5 {
  font-family: var(--funnel-display);
}

.feature-card p {
  font-size: 15px;
}

/* Card Background Colors */

.payment-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background: #f8f9fc;
  flex-wrap: wrap;
}

.left-block h2 {
  font-size: 32px;
  font-weight: 600;
  color: #152851;
}

.payment-options {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.option-card {
  text-align: center;
  width: 220px;
}

.option-card img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}

.option-card p {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .payment-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 30px;
  }

  .left-block h2 {
    font-size: 26px;
  }

  .payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    width: 100%;
  }

  .option-card {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .option-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }

  .option-card p {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
  }

  #banner-form .proceedInput {
    /* height: 48px; */
    width: 97%;
    border-radius: 8px;
  }
}

.selectPlaceholder {
  color: #666;
}

.contact-text-wrapper {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30px;
  padding: 50px 25px;
  border-radius: 24px;
  border: 1px solid #031f42;
  background: linear-gradient(
    120.22deg,
    #dcebff -12.83%,
    #ffffff 50.68%,
    #dcebff 116.68%
  );
  border: 1px solid;
}

.cotactwrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1 / -1;
  /* full width inside grid */
}

.contact-text-card {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  /* padding: 10px; */
  /* background-color: beige; */
}

.contact-text-head {
  color: var(--secondary);
  font-weight: bold;
  /* font-family: Outfit; */
  font-size: 17px;
  font-style: normal;

  line-height: normal;
  margin-bottom: 5px !important;
}

.contact-text-subhead {
  color: var(--secondary);
  /* font-family: Outfit; */
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  /* line-height: 24px; */
  /* 150% */
}

@media only screen and (max-width: 768px) {
  .contact-text-wrapper {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .mobileView {
    display: block !important;
  }

  .desktopView {
    display: none !important;
  }

  .proceedform {
    padding: unset;
  }

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

  .proceedOuterBorder {
    width: 100%;
  }

  .person-image {
    width: 80%;
    height: auto;
    margin: 0 auto;
    position: relative;
    margin-bottom: -24px;
  }

  .syllabusContentWrap .nav-link {
    width: 100%;
  }

  .syllabusContentWrap .nav-tabs {
    border-radius: 10px;
  }
}

.LMSCarouselWrap,
.LMSCarouselWrap .owl-stage-outer,
.LMSCarouselWrap .owl-stage,
.LMSCarouselWrap .owl-item {
  height: auto !important;
}

.tab-pane:not(.active) .owl-stage-outer {
  height: 0 !important;
  overflow: hidden;
}

@media only screen and (max-width: 576px) {
  .formtitle {
    font-size: 19px;
  }

  .proceedHeading h4 {
    font-size: 15px;
  }

  .pageTitle {
    font-size: 24px;
    text-wrap: balance;
  }
}

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

/* --------------------------cta section---------------------------- */

/* ---------------payment section ---------------------------- */
.payment-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.payment-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b2b52;
  margin-bottom: 60px;
}

.payment-title .reg {
  font-size: 14px;
  background: #1aa187;
  color: #fff;
  border-radius: 50%;
  padding: 4px 6px;
  vertical-align: super;
  margin-left: 4px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.payment-card {
  position: relative;
  padding: 60px 20px 28px;
  border-radius: 12px;
  background: linear-gradient(180deg, #edf6f5 0%, #f8f3d8 100%);
}

.payment-grid {
  margin-bottom: 30px; /* creates breathing room */
}

.payment-card.active {
  transform: translateY(-50px); /* NOT 100% */
}

.payment-card p {
  font-size: 16px;
  font-weight: 600;
  color: #0b2b52;
  margin: 0;
}

/* Floating icon */
.icon-wrap {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.centerBtn {
  display: grid;
  place-items: center;
}

.icon-wrap img {
  width: 36px;
}

/* Button */
.payment-btn-wrap {
  margin-top: 50px;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0b2b52, #061a34);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.apply-btn span {
  width: 22px;
  height: 22px;
  background: #ffffff;
  color: #0b2b52;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.apply-btn:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .payment-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .payment-title {
    font-size: 26px;
  }
  .payment-card.active {
    transform: translateY(0px);
  }
}

.journeySection {
  background: #fff;
}

.journeyTitle {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0b2b52;
  margin-bottom: 60px;
}

.journeyTimeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin: 0 auto;
}

/* Horizontal line */
.timelineLine {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #d1d5db, #0b2b52);
  border-radius: 20px;
  z-index: 1;
}

/* Step */
.journeyStep {
  position: relative;
  text-align: left;
  z-index: 2;
}

.stepNo {
  font-size: 24px;
  font-weight: 700;
  color: #0b2b52;
  display: block;
  margin-bottom: 8px;
}

.stepDot {
  width: 14px;
  height: 14px;
  background: #0b2b52;
  border-radius: 50%;
  display: inline-block;
  border: 3px solid #fff;
  margin-bottom: 16px;
}

/* Active step */
.journeyStep.active .stepDot {
  background: #1aa187;
  box-shadow: 0 0 0 6px rgba(26, 161, 135, 0.25);
}

/* Text */
.journeyStep h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0b2b52;
  margin-bottom: 6px;
}

.journeyStep p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

/* Button */
.journeyBtnWrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

/* Responsive */
/* ===== MOBILE VERTICAL TIMELINE ===== */
@media (max-width: 768px) {
  .journeyTimeline {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 40px; /* space for left line */
    gap: 40px;
  }

  /* Vertical line */
  .timelineLine {
    display: block;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #d1d5db, #0b2b52);
    left: 12px;
    top: 0;
    right: auto;
    border-radius: 10px;
  }

  .journeyStep {
    text-align: left;
    position: relative;
  }

  /* Move number above content */
  .stepNo {
    font-size: 20px;
    margin-bottom: 6px;
  }

  /* Align dot on left line */
  .stepDot {
    position: absolute;
    left: -34px;
    top: 32px;
    margin: 0;
  }

  .journeyStep.active .stepDot {
    box-shadow: 0 0 0 5px rgba(26, 161, 135, 0.25);
  }
}

/* -------------why section----------------------- */
.whyGnduSection {
  padding: 80px 20px;
  background: #fff;
}

.whyGnduWrap {
  background: linear-gradient(135deg, #0a1f3d, #04152d);
  border-radius: 28px;
  padding: 60px;
  margin: auto;
  color: #fff;
}

.whyTitle {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.whyContent {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.whyImage img {
  max-width: 100%;
}

/* Cards Grid */
.whyCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

/* Card */
.whyCard {
  position: relative;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.whyCard h4 {
  color: #f4d23c;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.whyCard p {
  font-size: 14px;
  color: #dbe4f3;
  line-height: 1.6;
}

/* Big faded numbers */
.whyNo {
  position: absolute;
  top: -35px;
  left: 0px;
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
}

/* Button */
.whyBtnWrap {
  grid-column: span 2;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .whyContent {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whyCards {
    grid-template-columns: 1fr;
  }

  .whyBtnWrap {
    grid-column: span 1;
    display: flex;
    justify-content: center;
  }

  .whyNo {
    right: 16px;
  }
  .whyGnduWrap {
    padding: 20px;
  }
  .whyCard {
    text-align: left;
  }
}

/* -----------usp section ---------------- */
.approval-section {
  padding: 22px 0;
}

.approval-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  border-radius: 18px;
  background: linear-gradient(90deg, #001a3a 0%, #002f5f 50%, #0b2d1f 100%);
}

.approval-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  flex: 1;
}

.icon-wrap-usp {
  width: 75px;
  height: 75px;
  min-width: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap-usp img {
  width: 38px;
  height: auto;
}

.approval-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

.approval-item strong {
  font-weight: 700;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .approval-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .approval-item {
    justify-content: center;
  }
  .whyGnduSection {
    padding: 50px 0px;
  }
}

.mobileBreak {
  display: none;
}

@media (max-width: 576px) {
  .mobileBreak {
    display: inline;
  }
}

#pageloader {
  background: rgba(34, 34, 34, 0.9);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999999;
  top: 0;
}

.loading-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-wrap img {
  width: 125px;
}