ˀ/* Variable font (Inter) */
/* @font-face { */
  /* font-family: "Inter Variable"; */
  /* Use a unique name for the variable font */
  /* src: url("../Google_Font/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype"); */
  /* font-weight: 100 900; */
  /* Define the weight range, from 100 to 900 */
  /* font-display: swap; */
  /* Optional: ensures text is visible immediately */
/* } */

/* Regular font (CoveredByYourGrace) */
@font-face {
  font-family: "CoveredByYourGrace";
  /* Use a unique name for the regular font */
  src: url("../Google_Font/CoveredByYourGrace-Regular.ttf") format("truetype");
  font-weight: 400;
  /* Regular weight, 400 is typical for regular text */
  font-display: swap;
  /* Optional: ensures text is visible immediately */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

strong {
  color: #2e2f35;
  font-weight: 700;
}

.header__container {
  padding: 32px 100px;
}

.about__content::after {
  content: '';
  position: absolute;
  background: rgb(36 39 53 / 19%);
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  z-index: 1000000;
  border-radius: 0 0 30px 30px;
}

.about__content,.success-stories{
  padding: 50px 100px 100px 100px;
}

.key__highlights__wrapper {
  padding: 50px 100px;
}

.header__container .header__content,
.logos__left__section,
.right__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.right__section a.call__to__action {
  background: #f05a2b;
  padding: 11px 18px;
  border: none;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  line-height: 14.52px;
}

.hero__section__image {
  max-width: 100%;
  width: 100%;
  position: relative;
  /* height: 100vh; */
  height: 100%;
  padding: 40px 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__section__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity and color as needed */
  background-image: url("../Global_Assets/Images/hero_section_overlay.webp");
  z-index: 1;
  background-size: cover;
  background-position: center;
}

.hero__section__image .tag__line {
  color: #ffe7ff;
  font-weight: 400;
  font-size: 42px;
  line-height: 56.56px;
  font-family: "CoveredByYourGrace", serif;
  margin-bottom: 14px;
}

.hero__section__image p.course__name {
  color: #ffffff;
  font-size: 41px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 20px;
}

.hero__section__image p.abbrivation {
  color: #ffcc29;
  /*Abrivation global color will change as per the every landing page, It will come dynamically*/
  font-size: 82px;
  font-weight: 900;
  line-height: 96px;
  margin-bottom: 18px;
}


.hero__section__image p.approved__UGC {
  color: #ffffff;
  font-weight: 900;
  font-size: 32px;
  line-height: 38.73px;
}

.hero__right__content {
  position: relative;
  z-index: 100000;
}

.hero__right__content .error {
  border: 1px solid red;
}

.hero__right__content .check__error {
  font-size: 13px;
  margin: 0;
  color: red;
}

.hero__right__content select {
  appearance: none;
  /* Removes the default arrow */
  -webkit-appearance: none;
  /* Removes the default arrow in Safari */
  -moz-appearance: none;
  /* Removes the default arrow in Firefox */
  background-color: #f4f6f9;
  /* Background color */
  background-image: url("../Global_Assets/Images/down-arrow.webp");
  /* Background image */
  background-repeat: no-repeat;
  background-position: right 12px center;
  /* Adjust arrow position */
  background-size: 10px;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  padding: 6px;
  width: 100%;
  /* border-radius: 5px; */
  font-size: 13px;
  color: black;
}

/* Adjusting for IE */
select::-ms-expand,.desktop__hide {
  display: none;
}

form {
  background-color: rgb(134 134 134 / 65%);
  height: auto;
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-radius: 5px;
  position: relative;
  z-index: 10000;
}

form input::placeholder {
  color: black !important;
}

.hero__right__content form input,
select {
  background: #f4f6f9;
  border: 1px solid #d9d9d9;
  padding: 6px;
  width: 100%;
  /* border-radius: 5px; */
  color: black !important;
}

button.form__submit {
  background: #f05a2b;
  padding: 7px;
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.flex__wrapper {
  display: grid;
  grid-template-columns: 75% auto;
  align-items: center;
  height: auto;
  position: relative;
  z-index: 100000;
}

.flex__wrapper input#checkbox {
  width: auto;
}

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

.checkbox__wrapper label {
  font-size: 13px;
  color: white;
}

.admission__year__wrapper {
  background: #242735;
  padding: 18px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 50px;
}

/* .admission__year__wrapper::after {
  content: "";
  background: #ffffff;
  width: 1px;
  height: 70px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 57%;
  top: 50%;
} */

.admission__year__wrapper .years::before {
  content: "";
  background: #fff;
  width: 1px;
  height: 70px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: -45px;
}

.admission__year__wrapper .years::after {
  content: "";
  background: #fff;
  width: 1px;
  height: 70px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: -44px;
}

.admission__year__wrapper .years{
  position: relative;
}
.admission__year__wrapper .scholarship img{
  width: 80%;
}

.admission__open {
  border: 2px solid #ffcc29;
  /*The border color will change as per the landing page, so it will come dynamically.*/
  border-radius: 10px;
}

.admission__open p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 30px;
}

.years p:nth-child(1) {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}

.years p:nth-child(2) {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.key__highlights__inner .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.key__highlights__inner .row .card__col__md {
  text-align: center;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 48px;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.06);
  /* Shortened RGBA for better readability */
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  /* Specify transition for background color */
}

.key__highlights__inner .row .card__col__md:hover {
  background-color: #ffcc29;
}

.key__highlights__inner .row .card__col__md img {
  background: #fff5d7;
  padding: 11px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.key__highlights__inner .row .card__col__md p {
  color: #2e2f35;
  font-size: 24px;
  font-weight: 500;
  margin: 12px 0 0 0 !important;
}

.accreditations__award__VU{
  padding: 50px 100px;
}
.career__opportunity__wrapper {
  padding: 0 100px 50px 100px;
}
.career__opportunity__wrapper .career__center{
  margin-left: 40px;
}
.need__more__wrapper {
  padding: 50px 100px;
}

.career__opportunity__wrapper .career__opportunity__text{
font-size: 21px;
margin-bottom: 40px;
}

.accreditation__inner__wrapper #award_slider .swiper-wrapper .swiper-slide .img{
  background: #FFFFFF;
    border-radius: 30px;
    padding: 47px 20px;
    box-shadow: 1px 0px 8px 2px #d7d7d7;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accreditation__inner__wrapper #award_slider .swiper-wrapper .swiper-slide{
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
}
.accreditation__inner__wrapper .card__info__one p:nth-child(1) {
  color: #2e2f35;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.accreditation__inner__wrapper .card__info__one p:nth-child(2) {
  color: #313131e0;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 27px !important;
}

.accreditation__inner__wrapper .row {
  display: flex;
      flex-direction: row-reverse;
      align-items: center;
      justify-content: center;
      gap: 33px;
}

.accreditation__inner__wrapper .card__col__md{
  display: flex;
  align-items: center;
  gap: 33px;
}
.accreditation__inner__wrapper .card__col__md img{
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* Award Slider Container */ 

/* The wrapper for the images */
.slider__images,
#slider__images {
  transition: transform 0.5s ease;
  /* Smooth horizontal scrolling */
  display: flex;
  width: 100%;
}

/* Each group of 4 images */
.image-group {
  display: grid;
  justify-content: space-between;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}


/* Image Styling */
 

.award__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 0 11px 5px #0000000f;
  background: white;
  padding: 15px;
}

/* Styling for the dots */
.dots-container {
  text-align: center;
  margin-top: 20px;
  display: block;
  /*When morw than four award images will be there then this dots will be show*/
}

.career__opportunity__wrapper .mySwiper .swiper-pagination .swiper-pagination-bullet,
body .accreditation__inner__wrapper .owl-theme .owl-dots .owl-dot span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #000000;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  opacity: 1 !important;
}

 
.career__opportunity__wrapper .owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 7px;
  background: #000000;
}
body .amenities__VU__wrapper .amenities__slider .owl-theme .owl-dots .owl-dot.active span,.success__main__Wrapper span.swiper-pagination-bullet.swiper-pagination-bullet-active,.career__opportunity__wrapper .mySwiper .swiper-pagination .swiper-pagination-bullet-active,.owl-theme .owl-dots .owl-dot.active span  {
  width: 12px;
  height: 12px;
  background-color: #f05a2b;
}
body .amenities__VU__wrapper .amenities__slider .owl-theme .owl-dots .owl-dot span,.swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  border: 1px solid #F05A2B;
  background-color: transparent;
  display: flex;
  justify-content: center;
}
.success__main__Wrapper .swiper-pagination{
  margin-bottom: 28px;
}

.success__main__Wrapper .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  border: 1px solid #F05A2B;
  background-color: transparent;
}

.career__opportunity__wrapper .owl__carousel__slider .item p {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 37px 30px;
  z-index: 10;
}

/* .career__opportunity__wrapper p{
  margin-bottom: 12px !important;
} */

.career__opportunity__wrapper .item {
  width: 391px !important;
  height: 448px !important;
  border-radius: 30px;
  position: relative;
}

.career__opportunity__wrapper .item::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40.38%, #000000 100%);
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: inherit;
}

.career__opportunity__wrapper .item img {
  max-width: 100%;
  object-fit: cover;
  border-radius: inherit;
}


body .career__opportunity__wrapper .owl-carousel .owl-nav .owl-next{
  left: -72px;
  right: auto;
  position: absolute;
  top: 38%;
  transform: rotate(180deg);


}


body .career__opportunity__wrapper .owl-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.career__opportunity__wrapper .owl-carousel .owl-item {
  position: relative;
}

.career__opportunity__wrapper .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span,
.about__content .owl-theme .owl-dots .owl-dot.active span {
  background: #f05a2b;
}

.need__more__section p:nth-child(1) {
  color: #2e2f35;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.need__more__section p:nth-child(2) {
  color: #2e2f35;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.need__more__section button,
.course__info__section .info__wrapper button {
  background: #f05a2b;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.need__more__section button a,
.course__info__section .info__wrapper button a {
  text-decoration: none;
  color: #ffffff;
}

.need__more__section {
  background-color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 0 30px 10px #0000000f;
  padding: 30px;
}

.about__bgimg {
  position: relative;
}

.about__bgimg img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: 100%;
  /* Ensure it's a block-level element */
}

.about__content {
  background-color: #242735;
  position: relative;
  border-radius: 0 0 30px 30px;
  z-index: 100;
}

.about__bgimg::before {
  content: "";
  background-image: url(../Global_Assets/Images/about_img_overlay.webp);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
}

.about__content .row {
  display: grid;
      grid-template-columns: repeat(2, 1fr);
      justify-content: space-between;
      gap: 102px;
      /* align-items: center; */
      position: relative;
      z-index: 10000;
}

.about__content .col__md__right {
  margin-left: auto;
  /* border-left: 1px solid #FFFFFF;
  padding-left: 26px;
  height: 80%; */
}

.about__content .col__md__left p:nth-child(1) {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
}
 
.about__content .col__md__left ul li {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  text-align: left;
}

/* .about__content .VU-about-wrapper-mobile-carousel {
  display: block !important;
  position: relative;
} */

/* .about__content
  .VU-about-wrapper-mobile-carousel
  .item:last-child
  p:nth-child(2) {
  margin-bottom: 0 !important;
} */

/* .owl-carousel.owl-theme.VU-about-wrapper-mobile-carousel::before {
  position: absolute;
  width: 1px;
  height: 87%;
  content: "";
  top: 7px;
  background: #ffffff;
  left: -27px;
} */

.about__content .col__md__right .item p:nth-child(1) {
  color: #ffffff;
  font-weight: 500;
  font-size: 21px;
  line-height: 25.41px;
  margin-bottom: 10px;
}

.about__content .col__md__right .item p:nth-child(2) {
  color: #ffcc29;
  font-weight: 700;
  font-size: 24px;
  line-height: 29.05px;
  margin-bottom: 32px;
}

.about__content .item {
  position: relative;
}

.about__content .item::before {
  border-radius: 50%;
  position: absolute;
  background: #ffffff;
  content: "";
  width: 10px;
  height: 10px;
  left: -6%;
  top: 7px;
}

.horizon__divider img,.desktop__hide img {
  width: 100%;
  max-width: 100%;
}

.horizon__divider {
  margin-top: 50px;
  max-width: 100%;
    width: 100%;
    height: 100%;
}

.quality__education p {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
}

.education__content__box {
  display: grid;
  grid-template-columns:auto;
  gap: 101px;
}

.education__content__box .left__box .counting p:nth-child(1) {
  color: #ffcc29;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.education__content__box .left__box .counting p:nth-child(2) {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.education__content__box .right__box .ranked p:nth-child(1) {
  color: #ffcc29;
  font-size: 25px;
  font-weight: 700;
  margin: 0;
}

.education__content__box .right__box .ranked p:nth-child(2) {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.education__content__box .left__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  /* border-radius: 30px; */
  /* box-shadow: 0 0 30px 20px #d3a5180f; */
  /* padding: 30px; */
  gap: 30px;
}

.education__content__box .right__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  column-gap: 50px;
  position: relative;
  align-items: center;
}

.education__content__box .right__box::after {
  content: "";
  position: absolute;
  background: #ffffff;
  top: 50%;
  width: 100%;
  height: 1px;
}

.education__content__box .right__box .ranked p span {
  color: #ffcc29;
  font-size: 24px;
  font-weight: 700;
}

.education__content__box .right__box .ranked:nth-child(2) {
  position: relative;
}

.education__content__box .right__box::before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 1px;
  height: 50%;
  left: 50%;
  top: 0;
}

.course__info__section .info__wrapper p:nth-child(1),.key__highlights__wrapper h1,.career__opportunity__wrapper h1,.amenities__main h1,.success-stories h1,.VU__about__wrapper .col__md__left h1 {
  color: #2e2f35;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 48px;
}
.success-stories h1{
  text-align: center;
}
.success-stories iframe{
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
}
.career__opportunity__wrapper h1{
  margin-bottom: 20px !important;
}

.course__info__section .info__wrapper p:nth-child(2) {
  color: #737477;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  line-height: 34px;
  margin: 30px;
  padding: 0 60px;
}

.course__info__section .info__inner {
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.course__info__section .info__inner .left__cornerImg {
  position: relative;
  top: -57px;
}

.course__info__section .info__inner .right__cornerImg {
  position: relative;
  top: 72px;
}


.partnership__wrapper .slick-list{
height: 400px !important;
}
.partnership__wrapper .slick-slide div{
  margin-top: 30px;
}


.partner-image-group{
  display: grid !important;
}

 
.partnership__media {
  background: #242735;
  padding: 50px 100px 0 100px !important;
  /* overflow: hidden; */
  z-index: 100000;
  position: relative;
  border-radius: 0 0 30px 30px;
}
body .partnership__media .col__md__left img{
  position: relative;
    bottom: -4px !important;
    object-fit: cover !important;
    max-width: 100% !important;
}

.partnership__wrapper {
  display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 61px;
}

.partnership__wrapper .image-group {
  gap: 25px 61px;
}

.partnership__media .row {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.partnership__media .partnership__img {
  width: 100%;
  height: 60px;
}

.partnership__media .row .col__md__left p:nth-child(1),
.partnership__media .row .col__md__left p:nth-child(3),
.partnership__media .row .col__md__left p:nth-child(5) {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}

.partnership__media .row .col__md__left p:nth-child(2),
.partnership__media .row .col__md__left p:nth-child(4),
.partnership__media .row .col__md__left p:nth-child(6) {
  color: #ffcc29;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.partnership__media .col__md__right p {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

div#partner__dots {
  position: relative;
  padding: 41px 0;
  left: 47%;
}

.partnershipDot.active {
  background: #f05a2b;
}

.partnershipDot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid rgba(240, 90, 43, 1);
}

/* .partnership__media .col__md__left img{
  position: absolute;
    bottom: 0;
} */


/* Enlarged slide style */
.slide.active {
  flex: 0 0 350px;
  /* Double the thumbnail size */
  /* transform: scale(1.1); */
  height: auto;
  width: 100%;
  display: flex;
}

.slide.active img,video {
  /* transform: scale(1.1); */
  width: 100%;
  height: 100%;
}

.slide.active .content {
  display: block;
  position: absolute;
  width: 100%;
  left: 394px;
  top: 21px;
  padding: 0;
  text-align: justify;
}

/* Arrow buttons */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 10;
  transition: background 0.3s;
  background-color: transparent !important;
}

.arrow.prev {
  left: 35px;
  transform: rotate(180deg);
}

.arrow.next {
  right: 35px;
}

.video__wrapper {
  position: relative;
}

.video__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgb(38 38 38 / 95%), rgb(38 38 38 / 71%) 40%, rgb(38 38 38 / 67%) 100%);
  z-index: 1;
  /* Ensure the overlay is above the video but below any other content */
}

.university__amenities__video {
  padding: 0 100px 50px 100px;
}

.university__amenities__video p {
  color: #2e2f35;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

#videoPlayer{
  display: none;
  max-width: 100%;
  width: 100%;
  height: 100%;
}


button#playPauseButton {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.play-pause-button {
  width: 40px;
  /* Icon size */
  height: 40px;
  box-sizing: content-box;
  /* Ensures padding is added outside the width/height */
  padding: 10px;
  /* Space around the icon */
  background-size: contain;
  /* Ensures icon fits within the element */
  background-position: center;
  border: none;
  background-color: #f05a2b;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  outline: none;
  z-index: 100000;
}

#default__btn {
  width: 15px;
  height: 15px;
}

.university__amenities__image__slide {
  padding: 0 0 50px 0;
}

.university__amenities__image__slide .owl-carousel .owl-item img {
  width: 100% !important;
  height: 275.52px;
}

.university__amenities__image__slide .owl-prev,
.owl-next,
.about__content .VU-about-wrapper-mobile-carousel .owl-prev,
.about__content .VU-about-wrapper-mobile-carousel .owl-next {
  display: none !important;
}

.university__amenities__image__slide .universityAmenities-slider .owl-dots {
  margin-top: 50px !important;
  display: none;
}

.footer__wrapper {
  background-color: #242735;
  padding: 61px 100px;
}

.footer__wrapper .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__wrapper .footer__inner .left__text p:nth-child(1) {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer__wrapper .footer__inner .left__text p:nth-child(2) {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
}

.footer__wrapper .footer__inner .right__text p:nth-child(1) {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer__wrapper .footer__inner .right__text p:nth-child(2) {
 
  font-size: 30px;
  font-weight: 700;
}
.footer__wrapper .footer__inner .right__text p:nth-child(2) a {
  text-decoration: none;
  color: #f05a2b;
}

.mobile__header__logo {
  display: none;
}

/* Style for the button */
.scroll__to__top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #f05a2b;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  /* Initially hidden */
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100000000;
}

.scroll__to__top:hover {
  background-color: #f05a2b;
}

a.enquiry__to__form {
  background: #f05a2b;
  position: fixed;
  top: 50%;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  padding: 8px 14px;
  border: none;
  right: -51px;
  transform: rotate(90deg);
  text-decoration: none;
  z-index: 100000;
}
 

.admission__open p,
.years p:first-child {
  font-size: 21px;
  font-weight: 700;
  color: #fff
}

/*Mobile responsive media query code*/
@media screen and (max-width: 768px) {
  a.enquiry__to__form{
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    box-shadow: 2px 3px 2px 3px #707070;
    justify-content: center;
    transform: none !important ;
    -webkit-transform: none !important ;
    -moz-transform: none !important ;
    -ms-transform: none !important ;
    -o-transform: none !important ;
    top: initial !important;
    text-align: center;
}
  .swiper-carousel .swiper-slide{
    max-width: 100%;
    width: 500 !important;
    height: 500 !important;
  }
  .career__opportunity__wrapper .career__center{
    margin-left: 0 !important;
  }
  .success__main__Wrapper .swiper-pagination{
    padding: 13px;
    margin: 0 !important;
  }
  .header__container {
    padding: 30px 0;
  }

  .header__container .header__content,
  .logos__left__section,
  .right__section,
  .accreditation__inner__wrapper .card__col__md {
    flex-direction: column;
  }

  .hero__section__image .tag__line {
    font-size: 20px;
    line-height: normal;
  }

  .hero__section__image p.course__name {
    font-size: 28px;
    line-height: 34px;
  }

  .hero__section__image p.abbrivation {
    font-size: 42px;
    line-height: 50.83px;
  }

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

  .flex__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px !important;
  }

  .hero__section__image p.approved__UGC,.career__btmtext {
    font-size: 16px !important;
    line-height: normal;
  }

  .key__highlights__inner .row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .accreditation__inner__wrapper .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .about__content .row,
  .education__content__box,
  .partnership__media .row {
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
  }

  .course__info__section .info__inner {
    flex-direction: column;
  }

  .course__info__section .info__inner .left__cornerImg,
  .course__info__section .info__inner .right__cornerImg{
    display: none !important;
  }

  .partnership__media .col__md__left img,.devider__two img{
    width: 100%;
    max-width: 100%;
  }

  .slide.active img,
  .slide img {
    width: 100%;
    height: 100%;
  }

  .slide.active .content {
    position: relative;
    left: 0 !important;
    top: 0 !important;
    padding: 0 40px;
  }

  .web__header__logo,div#partner__dots{
    display: none;
  }

  .mobile__header__logo,
  .right__section,.devider__two,.devider__two img{ 
    display: block !important;
  }
  .devider__two{
    margin: 30px 0;
  }
  .header__container .right__section{
    position: fixed;
    top: 32%;
    z-index: 1000000000;
    right: 6px;
  }

  .admission__year__wrapper {
    flex-direction: column;
    padding: 20px 47px;
    text-align: center;
    gap: 10px;
  }

  .admission__open p,
  .years p:nth-child(1) {
    font-size: 16px;
    padding: 10px;
  }

  .years p:nth-child(2),
  .need__more__section p:nth-child(2) {
    font-size: 12px;
  }

  .admission__year__wrapper::after,
  .about__content .item::before,
  .education__content__box .right__box::before,
  .education__content__box .right__box::after,
  .career__opportunity__wrapper .item::before{
    display: none !important;
  }

  .hero__section__image,
  .key__highlights__wrapper,
  .about__content,
  .footer__wrapper,
  .university__amenities__video,.amenities__main,.success-stories {
    padding: 60px 30px !important;
  }

  .accreditations__award__VU,
  .career__opportunity__wrapper,
  .need__more__wrapper,
  .info__wrapper,
  .partnership__media .col__md__right {
    padding: 60px 30px;
  }

  .footer__wrapper .footer__inner {
    flex-direction: column;
    flex-direction: column;
    gap: 30px;
    align-items: baseline;
  }

  .key__highlights__wrapper p:nth-child(2),
  .accreditations__award__VU p:nth-child(2),
  .need__more__section p:nth-child(1),
  .about__content .col__md__left p:nth-child(2),
  .quality__education p,
  .course__info__section .info__wrapper p:nth-child(1),
  .partnership__media .col__md__right p,
  .university__amenities__video p {
    font-size: 26px;
  }

  .logos__left__section {
    display: flex;
    flex-direction: row;
  }

  .logos__left__section {
    flex-direction: column !important;
  }
  .header__container{
    padding: 30px !important;
  }
  .mobile__header__logo{
    height: 100%;
    width: 100%;
  }

  .hero__left__content{
    padding-bottom: 20px !important;
  }

  .hero__right__content {
    padding: 20px 0 0 0;
  }

  .key__highlights__wrapper p:nth-child(1),
  .accreditations__award__VU p:nth-child(1),
  .career__opportunity__wrapper p:nth-child(1),
  .about__content .col__md__left p:nth-child(1) {
    font-size: 16px !important;
    margin-bottom: 8px;
  }

  .key__highlights__inner .row .card__col__md {
    display: flex;
    align-items: center;
    padding: 22px;
    border-radius: 50px;
    gap: 15px;
  }

  .key__highlights__inner .row .card__col__md p {
    font-size: 16px;
    margin: 0 !important;
    text-align: start;
  }

  .key__highlights__wrapper,
  .accreditations__award__VU {
    padding-bottom: 0 !important;
  }

  .dots-container,
  body .accreditation__inner__wrapper .owl-carousel .owl-nav button.owl-prev,
  body .accreditation__inner__wrapper.owl-carousel .owl-nav button.owl-next {
    /* margin: 40px 0; */
    display: none;
  }

  .accreditation__inner__wrapper .card__info__one p:nth-child(2),
  .about__content .col__md__left p:nth-child(3) {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 26px;
  }
/* 
  .career__opportunity__wrapper p:nth-child(2) {
    margin-bottom: 25px !important;
  } */

  .need__more__section {
    text-align: center;
  }

  .career__opportunity__wrapper {
    position: relative;
    z-index: 100000;
  }

  .about__content .col__md__left p:nth-child(2) {
    margin-bottom: 20px !important;
  }

  .about__content .item {
    text-align: center;
    padding-top: 10px;
  }

  .about__content .col__md__right .item p:nth-child(1) {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .about__content .col__md__right .item p:nth-child(2) {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .about__content .col__md__right{
    border: none !important;
    padding: 0 !important;
  }

  .about__content .row {
    display: block !important;
  }

  .about__content .owl-theme .owl-dots .owl-dot span {
    border: 1px solid #ffffff;
    background: transparent;
  }

  .horizon__divider {
    margin-top: 30px;
  }

  .quality__education p {
    margin-top: 15px;
    line-height: 31.47px;
    color: rgba(255, 255, 255, 1);
  }

  .education__content__box .left__box {
    margin-top: 20px;
  }

  .education__content__box .right__box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    align-items: baseline;
  }

  .education__content__box {
    gap: 30px !important;
  }

  .education__content__box .left__box .counting p:nth-child(2),
  .education__content__box .right__box .ranked p:nth-child(1),
  .education__content__box .right__box .ranked p span,.career__opportunity__wrapper .career__opportunity__text {
    font-size: 16px !important;
  }

  .education__content__box .left__box .counting p:nth-child(1) {
    font-size: 26px !important;
  }

  .education__content__box .right__box .ranked p:nth-child(2),.about__content .col__md__left ul li {
    font-size: 13px !important;
    font-weight: 600;
  }

  .education__content__box .right__box .ranked:nth-child(1),
  .education__content__box .right__box .ranked:nth-child(2) {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 15px;
  }

  .course__info__section .info__wrapper p:nth-child(2) {
    padding: 0;
    margin: 30px 0;
  }

  .partnership__media .row .col__md__left p:nth-child(1),
  .partnership__media .row .col__md__left p:nth-child(3),
  .partnership__media .row .col__md__left p:nth-child(5) {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 0 30px;
  }

  .partnership__media .row .col__md__left p:nth-child(2),
  .partnership__media .row .col__md__left p:nth-child(4),
  .partnership__media .row .col__md__left p:nth-child(6) {
    font-size: 26px;
    padding: 0 30px;
  }

  .partnership__media {
    padding: 60px 0 0 0 !important;
    border-radius: 0 0 30px 30px;
  }

  .partnership__media .row {
    gap: 0;
  }

  .partnership__media .partnership__img {
    width: 100% !important;
  }

  
  .slide .content,
  .slide.active {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
  }

  .university__amenities__video p {
    margin-bottom: 30px;
  }

  .university__amenities__video {
    padding: 60px 0 !important;
  }

  .footer__wrapper .footer__inner .left__text p:nth-child(1),
  .footer__wrapper .footer__inner .right__text p:nth-child(1) {
    font-size: 26px;
  }

  .footer__wrapper .footer__inner .left__text p:nth-child(2),
  .footer__wrapper .footer__inner .right__text p:nth-child(2) {
    font-size: 13px;
  }

  .web__slider,.VU__about__wrapper img.desktop__img,#partnership__slider,.right__section a.call__to__action,div#partnership__slider_one,div#partnership__slider_two {
    display: none !important;
  }

  body .accreditation__inner__wrapper .owl-carousel .owl-item .item {
    padding: 20px !important;
    box-shadow: none !important;
  }

  body .accreditation__inner__wrapper .owl-carousel .owl-item img {
    width: 100% !important;
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.06);
    padding: 20px;
    border-radius: 30px;
  }

  body .accreditation__inner__wrapper .owl-theme .owl-dots,
  body .accreditation__inner__wrapper .owl-theme .owl-nav {
    margin: 0 !important;
    padding: 0 0 30px 0 !important;
  }
  body .career__opportunity__wrapper .item{
    width: auto !important;
    margin-top: 20px;
  }
  body .career__opportunity__wrapper .owl-theme .owl-dots .owl-dot span{
    background-color: rgba(0, 0, 0, 1);
  }
  /* .about__content::before{
    top: -570px;
  } */
  .VU__about__wrapper img.mobile__img,body .career__opportunity__wrapper .owl-carousel .owl-dots,.partnership__wrapper {
    display: block !important;
  }
  body .partnership__wrapper .owl-carousel .owl-item img{
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  body .partnership__wrapper .owl-carousel .owl-item .item{
    width: 100%;
    height: 100px;
  }
  
  span.dot.active {
    background: rgba(240, 90, 43, 1);
  }
 
  .about__content .col__md__left p:nth-child(3){
    text-align: left;
  }
  .need__more__wrapper{
    position: relative;
    z-index: 1000;
    background: white;
  }
  .bottom__section .need__more__section{
    padding: 0 !important;
  }
  .partnership__media .col__md__left img{
    position: relative;
  }
 
  .whyVU__bottomAward{
    flex-direction: column;
    gap: 50px;
    margin-top: 40px !important;
  }
  .whyVU__bottomAward img{
    width: 100%;
    height: auto;
}
.accreditation__inner__wrapper #award_slider .swiper-wrapper .swiper-slide{
  display: grid;
      grid-template-columns: auto;
      gap: 0;
}
.accreditation__inner__wrapper .card__col__md img{
  width: 100%;
}

.amenities__VU__wrapper{
  flex-direction: column-reverse;
  gap: 35px !important;
}

.VU__about__wrapper .col__md__left ul{
  padding: 0 0 0 20px;
}
.amenities__slider,.text__wrapper{
  width: 100% !important;
}

.success-stories .slick-slide.slick-current.slick-active.slick-center iframe{
 width: 100%;
 transform: none !important;
 -webkit-transform: none !important;
 -moz-transform: none !important;
 -ms-transform: none !important;
 -o-transform: none !important;
}

.course__info__section .info__wrapper p:nth-child(1), .key__highlights__wrapper h1, .career__opportunity__wrapper h1, .amenities__main h1, .success-stories h1,.VU__about__wrapper .col__md__left h1{
  margin-bottom: 35px;
  text-align: left;
  font-size: 26px;
}

.desktop__hide{
  display: block;
  margin-top: 6px;
}

.admission__year__wrapper .years::before,.admission__year__wrapper .years::after{
  display: none;
}

.admission__year__wrapper .scholarship img {
  width: 100%;
}

}

.university__amenities__image__slide .item::before{
  display: none;
}

.success-stories video{
  padding: 20px;
  opacity: 0.8;
    transition: all 300ms ease;
}
 

 

.success-stories .slick-slide.slick-current.slick-active.slick-center iframe {
  transform: scale(1.8);
  opacity: 1;
  position: relative;
  z-index: 1;
  -webkit-transform: scale(1.8);
  -moz-transform: scale(1.8);
  -ms-transform: scale(1.8);
  -o-transform: scale(1.8);
}


.success-stories .swiper-slide {
  pointer-events: none;
  border-radius:20px ;
  -webkit-border-radius:20px ;
  -moz-border-radius:20px ;
  -ms-border-radius:20px ;
  -o-border-radius:20px ;
}

.success-stories .swiper-slide.swiper-slide-active {
  pointer-events: auto; /* Enable pointer events for the active slide */
  cursor: pointer; /* Add pointer cursor for active slide */
}

.career__opportunity__wrapper .swiper img{
  border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  -ms-border-radius: 30px !important;
  -o-border-radius: 30px !important;
}

.career__opportunity__wrapper .swiper-slide p{
  position: absolute;
  bottom: 37px;
  z-index: 10000;
  width: 100%;
  padding: 29px;
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  text-align: left;
}
.career__opportunity__wrapper .career__btmtext{
  font-size: 21px;
  text-align: center;
  font-weight: bold;
  margin: 30px 0 50px 0;
}

.VU__about__wrapper .about__bgimg img.mobile__img {
  display: none;
}

.whyVU__bottomAward{
  display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 71px;
}

.amenities__VU__wrapper {
  display: flex;
  justify-content: center;
  gap: 99px;
}
.amenities__VU__wrapper .text__wrapper,.amenities__VU__wrapper .amenities__slider {
  width: 48%;
}

.amenities__VU__wrapper .images__swiper .owl-carousel .owl-item img{
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.amenities__VU__wrapper .text__wrapper ul li{
  color: #2E2F35;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.amenities__main{
  padding: 80px 100px;

}
.success-stories h1,.VU__about__wrapper .col__md__left h1{
  color: #ffffff;
}
.amenities__VU__wrapper .text__wrapper ul{
  padding-left: 40px;
}

.success__main__Wrapper {
  background: #242735;
  border-radius: 30px;
  position: relative !important;
}

.bottom__section .need__more__section{
text-align: center;
box-shadow: none;
}
.bottom__section .need__more__section button {
  margin-top: 15px;
}

body .amenities__VU__wrapper .amenities__slider .owl-theme .owl-dots{
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.amenities__VU__wrapper .owl-carousel .owl-item img{
  max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.devider__two{
  display: none;
}


.animated-text {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease, transform 1s ease;
}

.animated-text.visible {
  opacity: 1;
  transform: translateX(0);
}

p.career__opportunity__bottom__text {
  text-align: center;
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

.career__opportunity__wrapper .owl-carousel .item img{
  max-width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .abr__longtxt{font-size: 22px !important;line-height: inherit !important;}
  .amenities__VU__wrapper .text__wrapper ul li{
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }
  body #award_slider button.owl-dot.active span{
    background-color: #f05a2b;
  }
  .scholership-img{
    width: 100% !important;
    
  }
}
.scholership-img{
  width: 500px;
  display: flex;
  margin: 0 auto;
  padding: 80px 0 0 0;
}
 