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

:hover {
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
}

body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
}
p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
}
.container-fluid
{
  max-width: 1780px;
  margin: 0px auto;
}

/*** Header css Start ***/

header {
  padding: 10px 0;
  position: absolute;
  width: 100%;
  background: #23376E80;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  margin: 0px auto;
  backdrop-filter: blur(40px);
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

.pageHeader.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  z-index: 9999;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}


.top-flex {
  display: flex;
  justify-content: space-between;
  padding: 0 0px;
}

.top-left {
  width: auto;
  height: auto;
  margin: 0px 0 0 0;
}

.top-right {
  width: auto;
  height: auto;
  margin: 0px 0 0 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.topPic
{
  margin: 6px 0 0 0;
}
.topBtn
{
  width: auto;
  height: auto;
  margin: 33px 0 0 0;
}
.topBtn a  
{
  padding: 10px 25px;
  border-radius: 8px;
  color: #222222;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  background: #F1E404;
}
.topBtn a span 
{
  font-weight: 700;
}
.topBtn a:hover 
{
  color: #fff;
  background: #284587;
  border: 2px solid #284587;
}

.banner {
  width: 100%;
  height: auto;
  position: relative;
  padding: 80px 0 0px 0;
  background: url(../images/banner-bg.webp) no-repeat right;
  background-size: cover;
  min-height: 800px;
  position: relative;
}
.bannerText {
  width: 100%;
  max-width: 740px;
  margin: 85px 0 0 0;
}
.bannerText h1 {
  color: #fff;
  margin: 0 0 30px 0;
  font-weight: 700;
  font-size: 62px;
  line-height: 120%;
  text-transform: uppercase;
  z-index: 99;
  position: relative;
}
.bnInner
{
  border-radius: 16px;
  background: #123986;
  padding: 20px 30px;
  width: 100%;
  max-width: 420px;
  z-index: 999;
  position: relative;
}
.bannerText h3 {
  color: #fff;
  margin: 0 0 10px 0;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
}
.bannerText h4 {
  color: #fff;
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
}
.bannerText p {
  color: #fff;
  margin: 0 0 10px 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
}

.ladyPic {
  width: 550px;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0px auto;
  text-align: center;
}

.ladyPic img {
  width: auto;
  height: auto;
  max-width: 90%;
  margin: 0 0 0 0;
}
.relative
{
  position: relative;
}

.form
{
  width: 100%;
  height: auto;
  position: absolute;
  right: 60px;
  max-width: 400px;
  top:170px;
}
.heading
{
  margin: 0 0 30px 0;
}
.heading h2
{
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: #284587;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.heading p
{
  font-size:20px;
  line-height: 150%;
  text-align: center;
  max-width: 1200px;
  margin: 0px auto 10px;
  color: #555555;
}

.heading h4
{
  font-size:24px;
  line-height: 150%;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.progSection
{
  width: 100%;
  height: auto;
  padding: 70px 0;
  background: #05111D;
}
.progSection .heading h2
{
  color: #F1E404; 
}
.progSection .heading p
{
  color: #FFFFFF; 
}
.progSection .heading p span 
{
  color: #F1E404;
  font-weight: 600;
}
.progFl
{
  width: 100%;
  min-height: 300px;
  background: #FFFFFF1A;
  text-align: center;
  padding:30px 20px 20px;
  border-radius: 20px;
  position: relative;
  transition: all .4s;
  -moz-transition: all .4s;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
}
.progFl::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;            /* border thickness */
  border-radius: inherit;
  background: linear-gradient(180deg, #F1E404, #8ACBE3);
  /* mask to create hollow center */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}
.progNo
{
  width: 80px;
  height: 80px;
  background: #D9D9D91A;
  border-radius: 50%;
  position: relative;
  color: #FFFFFF50;
  font-size: 32px;
  line-height: 150%;
  font-weight: 400;
  margin: 0px auto 30px;
  padding: 15px 0 0 0;
}
.progNo::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;            /* border thickness */
  border-radius: inherit;
  background: linear-gradient(180deg, #F1E404, #8ACBE3);
  /* mask to create hollow center */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}
.progFl p
{
  font-size: 18px;
  line-height: 150%;
  color: #fff;
}
.buti1
{
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 20px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.buti1:before
{
  content: "";
  width: 12px;
  height: 12px;
  left: 0;
  background:#FFFFFF1A;
  border-radius: 50%;
}
.buti1:after
{
  content: "";
  width: 12px;
  height: 12px;
  left: 0;
  background:#FFFFFF1A;
  border-radius: 50%;
}
.buti2
{
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 20px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.buti2:before
{
  content: "";
  width: 12px;
  height: 12px;
  left: 0;
  background:#FFFFFF1A;
  border-radius: 50%;
}
.buti2:after
{
  content: "";
  width: 12px;
  height: 12px;
  left: 0;
  background:#FFFFFF1A;
  border-radius: 50%;
}
.progFl:hover
{
  background: linear-gradient(180deg, #F1E404 0%, #8ACBE3 100%);
}
.progFl:hover p 
{
  color: #000;
}
.progFl:hover .progNo
{
  color: #222222;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.progFl:hover .buti1:before, .progFl:hover .buti1:after
{
  background: #00000066;
}
.progFl:hover .buti2:before, .progFl:hover .buti2:after
{
  background: #00000066;
}

.dualSection
{
  width: 100%;
  height: auto;
  padding: 60px 0;
  background: #F8F6F0;
  min-height: 1150px;
  position: relative;
  overflow: hidden;
}
.dualanime
{
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 75px 0 0 0;
  z-index: 9;
}
.dualLeft
{
  width: 37%;
  height: auto;
  position: relative;
  min-height: 450px;
}
.dualRight
{
  width: 37%;
  height: auto;
  position: relative;
  min-height: 450px;
}
.dualInner
{
  width: 100%;
  height: auto;
  position:absolute;
  text-align: center;
  top: 84px;
  left: 0;
  right: 0;
}
.dualInner img 
{
  mix-blend-mode: Darken;
  max-width: 100%;
  margin-top: 0px;
}
.dualLogo
{
  width: 347px;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 350px;
  margin: 0px auto;
}
.dualLeft div
{
  width: 195px;
  height: 60px;
  box-shadow: 0px 10.29px 17.63px 0px #00000040;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-weight: 500;
  font-size: 14.69px;
  line-height: 150%;
  text-align: center;
  position: absolute;
  z-index: 99;
  border-radius: 14px;
  padding: 0 10px;
}
.dualLeft div::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(180deg, #F1E404, #8ACBE3);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.dualLeft1
{
  left: 65%;
  top: 3%;
}
.dualLeft2
{
  left: 0%;
  top: 120px;
}
.dualLeft3
{
  left: 40%;
  top: 200px;
}
.dualLeft4
{
  top: 3%;
  top: 360px;
}
.dualLeft5
{
  left: 65%;
  top: 360px;
}

.dualRight div
{
  width: 195px;
  height: 60px;
  box-shadow: 0px 10.29px 17.63px 0px #00000040;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  position: absolute;
  z-index: 99;
  border-radius: 14px;
  padding: 0 10px;
}
.dualRight div::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(180deg, #F1E404, #8ACBE3);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.dualRight1
{
  left: 0%;
  top: 60px;
}
.dualRight2
{
  left: 60%;
  top: 130px;
}
.dualRight3
{
  left: 6%;
  top: 220px;
}
.dualRight4
{
  left: 60%;
  top: 270px;
}
.dualRight5
{
  left: 15%;
  top: 360px;
}
.dualRight6
{
  left: 70%;
  top: 0px;
  top: -30px;
}

.placementSection
{
  width: 100%;
  height: auto;
  padding: 120px 0 70px;
  background:#F8F6F0 url(../images/line-2.webp) repeat;
  min-height: 1000px;
  position: relative;
  box-shadow: 0px -3px 15px 0px #00000026;
  border-radius: 200px 200px 0 0;
  margin-top: -134px;
}
.placementSection .container-fluid
{
  position: relative;
  z-index: 1;
}

.placementSection .heading h2
{
  text-align: left;
}
.placementSection .heading p
{
  text-align: left;
  margin: 0 0 20px 0;
}
.placementSection .heading h4
{
  text-align: left;
  margin: 0 0 20px 0;
  color: #284587;
  font-weight: 600;
}
.placementInner
{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  max-width: 900px;
  margin: 0 0 30px 0;
}
.placeBox
{
  width: 100%;
  height: auto;
  border-bottom: 8px solid #F1E404;
  padding: 20px 10px 20px 10px;
}
.placeBox h3
{
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #222222;
  margin: 0 0 30px 0;
}
.placeBox h3 span
{
  font-size: 48px;
}
.placeBox p
{
  font-size: 20px;
  line-height: 150%;
  color: #333333;
  padding: 0 30px 0 0;
}
.placeBox:hover
{
  background: #F1E404;
}
.logoSlider
{
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  margin: 0 0 40px 0;
}
.schoolLogo
{
  width: 100%;
  height: 100px;
  text-align: center;
  border: 1px solid #E2E2E2;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;

}
.schoolLogo img 
{
  width: auto !important;
  max-width: 90%;
  max-height: 80px;
}

.manPic
{
  width: 100%;
  position: absolute;
  top: 46px;
  right: 0;
  max-width: 60%;
  z-index: 0;
}
.jobHeading
{
  width: 100%;
  height: auto;
  text-align: center;
}
.jobHeading h4 
{
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  font-weight: 600;
  color: #284587;
}
.jobReady
{
  width: 100%;
  height: auto;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 70px 0 0 0;
  text-align: center;
  position: relative;
}

.jobBox
{
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid #C9C025;
  position: relative;
  min-height: 150px;
  padding: 0px 50px 40px;
}
.jobBox p{
  color: #333333;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
}
.jobIcon
{
  background: linear-gradient(180deg, #F1E404 0%, #8ACBE3 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0px 13px 14px 0px #00000040;
  border: 2px solid #FFFFFF;
  margin: -40px auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutSection
{
  width: 100%;
  height: auto;
  background: url(../images/about.webp) no-repeat;
  background-size: 100% auto;
  background-position: 0 100%;
  padding: 70px 0 800px;
}
.aboutSection .heading h2 span
{
  display: block;
  font-size: 32px;
}
.aboutSection .heading p
{
  max-width: 100%;
}

.whySection
{
  width: 100%;
  height: auto;
  padding: 70px 0;
}

.whyInner
{
  width: 100%;
  height: auto;
  padding: 50px 40px;
  background: #05111D;
  border-radius: 30px;
  margin: 0 0 70px 0;
}
.whyInnerBox
{
  display: flex;
}
.whyBox
{
  width: 100%;
  height: auto;
  position: relative;
  padding: 0 30px;
  text-align: center;
}
.whyBox:before
{
  content: "";
  top: 40px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
}
.whyBox:last-child:before
{
  display: none;
}
.whyIcon {
  background: linear-gradient(180deg, #F1E404 0%, #8ACBE3 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0px 13px 14px 0px #00000040;
  border: 2px solid #FFFFFF;
  margin:0px auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9;
}
.whyBox h5 
{
  color: #F1E404;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  margin: 0 0 15px 0;
}
.whyBox p 
{
  color: #fff;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
}

.lifeSlider
{
  width: 100%;
  height: auto;
  position: relative;
  padding: 0 0px;
}
.lifeSlider .owl-carousel
{
 padding: 0 40px;
}
.line1
{
  width: 100%;
  height: auto;
  position: absolute;
  top: 50px;
  z-index: 99;
}
.line1 img 
{
  width: 100%;
  height: auto;
}

.gredFlex
{
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.gredBox
{
  width: 100%;
  height: auto;
  padding: 40px 50px;
  background: linear-gradient(180deg, #F1E404 0%, #8ACBE3 100%);
  color: #222222;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}


.campusSection
{
  width: 100%;
  height: auto;
  padding: 70px 0 40px;
  background: #F8F6F0;
}
.campusInner
{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0 0 0;
}
.campFl
{
  width: 32%;
  height: auto;
  margin: 0 0 30px 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
}
.campFl img 
{
  width: 100%;
  height: auto;
}
.campFlText
{
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: absolute;
  padding: 0 100px;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
}
.campFl:hover .campFlText
{
  top: 0;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.admissionSection
{
  width: 100%;
  height: auto;
  padding: 70px 0;
  position: relative;
}
.eligibility
{
  width: 100%;
  height: auto;
  padding: 40px 50px;
  position: relative;
  max-width: 1150px;
  min-height: 180px;
  margin: 0px auto 30px;
  text-align: center;
  background: #05111D;
  border-radius: 88px;
  color: #fff;
}
.eligibility:before
{
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  width: 98%;
  border: 2px dashed #727272;
  min-height: 150px;
  border-radius: 88px;
}

.eligibility h4  
{
  color: #fff;
  font-size: 32px;
  line-height: 150%;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}
.eligibility p 
{
  color: #fff;
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
}
.eligibility p span
{
  font-weight: 700;
  color: #F1E404 ;
}

.admissionSection .heading h4 
{
  text-transform: uppercase;
  color: #284587;
  font-size: 32px;
}

.admisionStep
{
  width: 100%;
  height: auto;
  padding: 10px 50px 10px;
  position: relative;
  background: url(../images/vec.webp) no-repeat;
  background-position: 0 200px;
}

.admisionStep .owl-carousel
{
  position: relative;
}
.stepBox
{
  width: 310px;
  height: 310px;
  margin: 0px auto 30px;
  box-shadow: 0px 12.21px 13.15px 0px #00000040;
  border: 1.88px solid #FFFFFF;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}
.stepinner
{
  width: 318px;
  height: 318px;
  background: linear-gradient(180deg, #F1E404 65.67%, #8ACBE3 100%);
  border: 1.88px solid #FFFFFF;
  box-shadow: 0px 12.21px 13.15px 0px #00000040;
  border-radius: 157px;
  padding: 230px 0 0 0;
  text-align: center;
  margin: -210.62px 0 30px 0;
}
.stepinner h4
{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #000;
}
.stepinner h5
{
  font-weight: 400;
  font-size: 42px;
  line-height: 120%;
  text-align: center;
  color: #000;
}
.stepBox p
{
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #333333;
  padding: 0 30px;
}

.tesimonialSection
{
  width: 100%;
  height: auto;
  padding: 130px 0 0px;
  background:#F8F6F0 url(../images/line-2.webp) repeat;
  position: relative;
  box-shadow: 0px -3px 15px 0px #00000026;
  border-radius: 200px 200px 0 0;
}
.testim
{
  width: 100%;
  height: auto;
  text-align: center;
  border: 1px solid #B5B5B5;
  max-width: 1450px;
  border-radius: 30px;
  padding: 60px 40px 8px;
  margin: 0px auto 140px;
}
.testim h2 
{
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: #284587;
  text-transform: uppercase;
  background: #f8f8f8;
  margin: -31px 0 40px 0;
  background: #f8f8f8;
  display: inline-block;
  padding: 0 20px;
}
.testim p
{
  color: #000000;
  font-weight: 400;
  font-size: 32px;
  line-height: 180%;
  margin: 0 0 50px 0;
}
.testimBtm
{
  width: 100%;
  height: auto;
  margin: 0 0 -144px;
}
.testimPic
{
  width: 125px;
  height: 125px;
  border: 4px solid #fff;
  background: #F1E404;
  box-shadow: 0px 0px 14px 0px #00000040;
  margin: 0px auto 10px;
  border-radius: 50%;
  overflow: hidden;
}
.testimPic img 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimBtm h4
{
  font-weight: 500;
  font-size: 24px;
  line-height: 180%;
  color: #000;
}
.testimBtm h5
{
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  color: #000;
}
.footer
{
  width: 100%;
  height: auto;
  background: url(../images/bg-4.webp) no-repeat;
  background-size: auto 100%;
  background-position: 100% 0;
  padding: 70px 0 0 0;
  margin: 50px 0 0 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.ftPic
{
  width: 100%;
  height: auto;
  max-width: 50%;
}
.ftPic img 
{
  max-width: 100%;
  margin: 0 0 -7px 0;
}
.ftDec
{
  width: 100%;
  max-width: 630px;
  padding: 100px 0 0 20px;
}
.ftDec h5
{
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  color: #222222;
}
.ftDec h3
{
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #284587;
  text-transform: uppercase;
}
.last-footer
{
  width: 100%;
  height: auto;
  padding: 20px 20px;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  background: #05111D;
  border-top: 3px solid #F1E404;
}
.topBtn.btn-1
{
  width: 372px;
  margin: 20px auto 0;
}
.topBtn.btn-1 a
{
   color: #fff;
   background: #284587;
   border: 2px solid #284587;
}
.topBtn.btn-1 a span 
{
  color: #F1E404;
}
.ftDec .topBtn.btn-1
{
  margin: 40px 0 0 0;
}
.topBtn.btn-1 a:hover
{
   color: #000;
   background: #F1E404;
   border: 2px solid #F1E404;
}
.topBtn.btn-1 a:hover span  
{
  color: #000;
}


.manPicMobile
{
  display: none;
}
.dualMobile
{
  display: none;
}
.campusSl
{
  display: none;
}
.testHeading
{
  width: 360px;
  text-align: center;
  margin: 0px auto;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #284587;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  background: #F8F8F8;
  top: -35px;
}

/* Banner Hit Section */
.bannerHit {
  width: 100%;
  height: auto;
  background: url(../images/backsky.webp) no-repeat center center;
  background-size: cover;
  position: relative;
  padding-top: 120px;
}

.bannerHit-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}


.bannerHit-left {
  flex: 1 1 350px;
  min-width: 300px;
  padding-top: 51px;
  position: relative;
  z-index: 999;
}

.admissions-label {
  background: #fff;
  color: #003087;
  font-family: Poppins;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(16px, 2vw, 36px);
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  padding: clamp(6px, 1.5vw, 15px) clamp(15px, 2.5vw, 30px);
  display: inline-block;
  font-size: 28px;
  box-shadow: 3px 9px 9px 0px #00000040 inset, 0px 14px 15px 0px #00000040;
}

.mba-title {
  font-family: Poppins;
  font-weight: 800;
  font-style: normal;
  margin: -15px -10px;
  font-size: clamp(50px, 10.5vw, 200px);
  line-height: 100%;
  letter-spacing: 0.53px;
  color: #e8e8e8;
  text-transform: uppercase;
  text-shadow: 
    -1px -1px 1px rgba(255, 255, 255, 0.8),
    1px 1px 2px rgba(0, 0, 0, 0.4),
    2px 2px 3px rgba(0, 0, 0, 0.3),
    6px 7px 5px rgba(0, 0, 0, 0.25);
  filter: drop-shadow(0px 14px 14px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: first baseline;
}
.mba-title span 
{
  font-size: 32px;
  text-wrap: nowrap;
  text-transform: initial;
  height: 38px;
}

.university-name {
  color: #fff;
  font-family: Poppins;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(14px, 1.1vw, 24px);
  line-height: 150%;
  letter-spacing: 0.53px;
  margin-bottom: 30px;
}

.university-name span {
  font-family: Poppins;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(12px, 1.7vw, 20px);
  line-height: 150%;
  letter-spacing: 0.53px;
}

.campus-locations {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 17px 108px 17px 22px;
  background: #FFFFFF1A;
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(40px);
  border-radius: 0px 70px 70px 0px;
  justify-content: space-between;
}

.location-item {
  text-align: center;
  flex: 0 0 auto;
}

.location-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
}

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

.location-name {
  color: #fff;
  font-weight: 500;
font-weight: 600;
font-size: 20px;
line-height: 150%;
letter-spacing: 0px;

}

.accreditation-badges {
  display: flex;
  align-items: center;
}

.badge-item {
  width: auto;
  height: 150px;
  flex: 0 0 auto;
}

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

.bannerHit-center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-right: clamp(20px, 18vw, 320px);
}

.people-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.bannerHit-right {
  flex: 0 0 380px;
  min-width: 300px;
}

.bannerHit-form-wrapper {
  width: 100%;
  max-width: 450px;
}

.d-none {
  display: none;
}

/* Stats Section */
.statsSection {
  width: 100%;
  background: #0E1113;
  padding: 80px 0 40px;
  position: relative;
}
.statsSection:before
{
  content:"";
  height: 190px;
  width: 100%;
  position: absolute;
  left: 0;
  top: -145px;
  background: url(../images/grd.webp) no-repeat;
  background-size: 100%;
  background-position: 0 100%;
}

.statsInner {
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
  background: #FFDB061A;
  border-radius: 12px;
  border: 2px solid #FFFFFF4D;
}

.statsGrid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
}

.statsItem {
  flex: 1 1 25%;
  text-align: center;
  padding: 20px 15px;
  border-right: 2px solid #FFFFFF4D;
}

.statsItem:last-child {
  border-right: none;
}

.statsIcon {
  width: 100px;
  padding-top: 75px;
  height: 100px;
  margin: -65px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF66;
  background: #FFDB061A;
  backdrop-filter: blur(40px);
  padding: 10px;
  border-radius: 50%;
}

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

.statsTitle {
  font-family: Poppins;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.statsText {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #ffffff;
  margin: 0;
}

.apFull
{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.pgSection
{
  width: 100%;
  height: auto;
  padding: 70px 0;
  background: url(../images/pg-bg.webp) no-repeat;
  background-size: cover;
}
.block
{
  display: block;
}
.pgSection .heading h2
{
  line-height: 150%;
}

.table-wrapper {
  width: 100%;
  margin: auto;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

/* TABLE RESET */
.exam-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 14px 18px;
}

/* HEADER */
.exam-table thead th {
  background: transparent;
  text-align: center;
  padding: 0;
}

.exam-table thead th span {
  display: block;
  padding: 14px 20px;
  border-radius: 50px;
  background: linear-gradient(180deg, #F1E404 0%, #8ACBE3 100%);
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

/* BODY CELLS */
.exam-table tbody td {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  text-align: left;
  font-size: 16px;
  color: #000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  vertical-align: middle;
  font-weight: 500;
}

/* Sr No */
.exam-table .sn {
  font-weight: 700;
  font-size: 18px;
}

/* Superscript */
sup {
  font-size: 10px;
  margin-left: 2px;
}


.thankyou
{
  width: 100%;
  background: url(../images/backsky.webp) no-repeat center center;
  background-size: cover;
  height: calc(100vh - 63px);
  text-align: center;
  padding: 0px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thankyou h2 
{
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}
.thankyou h4 
{
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
