@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primaryColor: #C5161D;
  --secondaryColor: #FFDD17;
  --whiteColor: #FFFFFF;
  --blackColor:#000000;
  --textColor:#555555;
  --linkColor: #666666;
  --borderColor: #C4C4C4;
  --fontFamily: "Roboto", sans-serif;
  --fontBold: 700;
  --fontSemiBold:600;
  --fontMedium:500;
  --fontRegular: 400;
  --fontLight: 300 ;
}

body {
  font-family: var(--fontFamily);
  font-weight: var(--fontRegular);
  background-color: var(--whiteColor);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: var(--textColor);
}

*::-webkit-scrollbar {
  width: 8px; /* width of the vertical scrollbar */
  height: 10px; /* height of the horizontal scrollbar */
}

*::-webkit-scrollbar-track {
  background: #f1f1f1; /* light background */
}

*::-webkit-scrollbar-thumb {
  background-color: var(--textColor); /* thumb color */
  border-radius: 10px; /* rounded corners */
  border: 2px solid var(--whiteColor); /* space around thumb */
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--textColor); /* darker on hover */
}

.customContainer {
  max-width: 1720px;
  width: 90%;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

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

.w-100 {
  width: 100%;
}

*, ::after, ::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.headingDark {
  font-weight: 800;
  font-style: Black;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(92.85deg, #C4161C 45.86%, #851818 119.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}

.headingDarkSm {
  font-weight: 800;
  font-style: Black;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(92.85deg, #C4161C 45.86%, #851818 119.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.headingLight {
  font-weight: 800;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  background-color: var(--whiteColor);
  color: transparent;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 2px 2px 2px rgba(0, 0, 0, 0.03), 3px 3px 3px rgba(0, 0, 0, 0.15);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
}

.navbarTop {
  background-color: var(--whiteColor);
  padding: 13px 0px;
}
.navbarTop .customContainer .upperLink {
  display: flex;
  align-items: center;
}
.navbarTop .customContainer .upperLink .snapLogo {
  margin-right: 11px;
}
.navbarTop .customContainer .upperLink .snapLogo img {
  height: 30px;
  max-width: auto;
}
.navbarTop .customContainer .upperLink .symbosisLlogo img {
  height: 39px;
  max-width: auto;
}
.navbarTop .customContainer .upperLink .mobileToggle {
  margin-left: auto;
  cursor: pointer;
}
.navbarTop .customContainer .upperLink .mobileToggle img {
  height: 24px;
}
.navbarTop .customContainer .lowerLink {
  display: flex;
  gap: 17px;
  margin-bottom: 10px;
}
.navbarTop .customContainer .lowerLink a {
  flex: 1;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  background: linear-gradient(92.85deg, #C4161C 45.86%, #851818 119.9%);
  color: var(--whiteColor);
  padding: 6px 10px 7px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 7px;
}

.leftMenuBar {
  background-color: var(--whiteColor);
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  /* No transition initially to prevent animation on page load */
  will-change: transform, opacity, visibility;
}

/* Add transition only after page is loaded */
.leftMenuBar.transitions-enabled {
  transition: all 0.4s ease-in;
}

.leftMenuBar.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.leftMenuBar .upperFixedLink {
  display: flex;
  align-items: center;
  padding: 14.5px 0;
}
.leftMenuBar .upperFixedLink .snapLogo {
  margin-right: 11px;
}
.leftMenuBar .upperFixedLink .snapLogo img {
  height: 30px;
  max-width: auto;
}
.leftMenuBar .upperFixedLink .symbosisLlogo img {
  height: 39px;
  max-width: auto;
}
.leftMenuBar .upperFixedLink .mobileToggleClose {
  margin-left: auto;
  cursor: pointer;
}
.leftMenuBar .upperFixedLink .mobileToggleClose img {
  height: 24px;
}
.leftMenuBar .lowerLink {
  display: flex;
  gap: 17px;
  padding: 1rem;
  align-items: center;
}
.leftMenuBar .lowerLink a {
  flex: 1;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  background: linear-gradient(92.85deg, #C4161C 45.86%, #851818 119.9%);
  color: var(--whiteColor);
  padding: 6px 10px 7px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 7px;
  align-self: stretch;
  align-items: center;
  display: flex;
  justify-content: center;
}
.leftMenuBar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.leftMenuBar ul li {
  display: block;
  width: 100%;
  position: relative;
}
.leftMenuBar ul li a {
  display: block;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000719;
  text-decoration: none;
  border-bottom: 1px solid #CCCCCC;
}
.leftMenuBar ul li.dropdown .dropdownAcco {
  background: url(../images/mobileImg/CaretDown.svg) no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: 8px;
  z-index: 99;
}
.leftMenuBar ul li.dropdown ul li a {
  padding-left: 2rem;
  background-color: #F8F8F8;
}

.mainHeroSection {
  background-image: url(../images/mobileImg/bannerBg-mb.webp);
  background-color: #F4F4F4;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  position: relative;
}
.mainHeroSection .mainHeroContainer {
  background: url(../images/mobileImg/bannerPersonMb.webp);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 281px;
}
.mainHeroSection .leftContent {
  padding: 30px 0 228px;
  max-width: 80%;
  overflow: hidden;
  margin: 0 auto;
}
.mainHeroSection .leftContent .sanpDates {
  display: block;
  text-align: left;
  margin-bottom: 60px;
}
.mainHeroSection .leftContent .sanpDates img {
  height: 130px;
}
.mainHeroSection .leftContent .openingSoon {
  font-weight: 600;
  font-style: Italic;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #1D1C3D;
  text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922) inset;
  position: relative;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  margin-bottom: 15px;
}
.mainHeroSection .leftContent .openingSoon::before, .mainHeroSection .leftContent .openingSoon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1000px; /* large width to ensure stretch */
  height: 2px;
  background-color: #1c2143;
  transform: translateY(-50%);
}
.mainHeroSection .leftContent .openingSoon::before {
  right: 100%;
  margin-right: 12px;
}
.mainHeroSection .leftContent .openingSoon::after {
  left: 100%;
  margin-left: 12px;
}
.mainHeroSection .bannerBottomImg {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.mainHeroSection .bannerBottomImg img {
  height: 50px;
  width: auto;
}

.exellenceSection {
  background: url(../images/mobileImg/excellence.webp) no-repeat top left;
  background-size: 100% auto;
  padding: 73px 0 0;
}
.exellenceSection .subTitle {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--whiteColor);
  display: block;
  padding: 10px 0 47px;
}
.exellenceSection .subTitle .hightLight {
  display: inline-block;
  font-style: Italic;
  color: var(--secondaryColor);
  text-transform: uppercase;
  padding: 0;
}
.exellenceSection .exellenceContainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 17px;
}
.exellenceSection .exellenceBlock {
  width: calc(50% - 10px);
  padding: 0 0 13px;
  border-radius: 30px; /* Optional */
  color: #fff; /* Optional for contrast */
  text-align: center;
}
.exellenceSection .exellenceBlock span {
  display: block;
}
.exellenceSection .exellenceBlock img {
  max-height: 50px;
  width: auto;
  align-self: center;
}
.exellenceSection .exellenceBlock span {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: var(--whiteColor);
}
.exellenceSection .exellenceBlock span.ttl {
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 3%;
  text-align: center;
  color: var(--secondaryColor);
  text-shadow: 3px 4px 4px rgba(7, 7, 7, 0.3);
  margin: 12px 0 5px;
}
.exellenceSection .exellenceBlock:nth-child(3) img, .exellenceSection .exellenceBlock:nth-child(4) img {
  height: 36px;
}
.exellenceSection .infoUniversity {
  background-color: var(--secondaryColor);
  padding: 38px 25px;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 55px;
  justify-content: center;
  gap: 40px 40px;
  position: relative;
}
.exellenceSection .infoUniversity::before {
  content: "";
  position: absolute;
  width: 1px;
  background: url(../images/mobileImg/vertical.svg) no-repeat center center;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
.exellenceSection .infoUniversity::after {
  content: "";
  position: absolute;
  width: 1px;
  background: url(../images/mobileImg/horizantal.svg) no-repeat center center;
  height: 1px;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
.exellenceSection .infoUniversity .infoBlock {
  width: calc(50% - 20px);
  padding: 0 0px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
}
.exellenceSection .infoUniversity .infoBlock img {
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 20px;
}
.exellenceSection .infoUniversity .infoBlock .digit {
  font-weight: 900;
  font-style: Black;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(92.85deg, #C4161C 45.86%, #851818 119.9%);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 2px 2px 2px rgba(0, 0, 0, 0.03), 3px 3px 3px rgba(0, 0, 0, 0.15);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}
.exellenceSection .infoUniversity .infoBlock .text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--blackColor);
  width: 50%;
}

.quickLinkSection {
  padding: 60px 0 56px;
}
.quickLinkSection ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #E8E8E8;
  border-bottom: 0;
  border-right: 0;
  gap: 10px;
  justify-content: center;
}
.quickLinkSection ul li {
  width: 30.33%;
  border-width: 0 1px 1px 0;
  border-color: #E8E8E8;
  border-style: solid;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-radius: 1rem;
  padding: 0.5rem;
}
.quickLinkSection ul li a {
  display: block;
  height: 100%;
  background-size: cover;
  background-position: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  padding: 100px 2px 16px;
  color: #333333;
  background-repeat: no-repeat;
  text-decoration: none;
  background-color: #FFf;
}
.quickLinkSection ul li:nth-child(1) a {
  background-image: url("../images/mobileImg/quickLink-1.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}
.quickLinkSection ul li:nth-child(2) a {
  background-image: url("../images/mobileImg/quickLink-2.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}
.quickLinkSection ul li:nth-child(3) a {
  background-image: url("../images/mobileImg/quickLink-3.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}
.quickLinkSection ul li:nth-child(4) a {
  background-image: url("../images/mobileImg/quickLink-4.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}
.quickLinkSection ul li:nth-child(5) a {
  background-image: url("../images/mobileImg/quickLink-5.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}
.quickLinkSection ul li:nth-child(6) a {
  background-image: url("../images/mobileImg/quickLink-6.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}
.quickLinkSection ul li:nth-child(7) a {
  background-image: url("../images/mobileImg/quickLink-7.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}
.quickLinkSection ul li:nth-child(8) a {
  background-image: url("../images/mobileImg/quickLink-8.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}
.quickLinkSection ul li:nth-child(9) a {
  background-image: url("../images/mobileImg/quickLink-9.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}
.quickLinkSection ul li:nth-child(10) a {
  background-image: url("../images/mobileImg/quickLink-10.svg");
  background-size: 60px 60px;
  background-position: top 16px center;
}

.institutesSection {
  background: url(../images/mobileImg/mainBg.webp) no-repeat bottom center;
  background-size: 100% auto;
  padding: 0px 0 180px;
}
.institutesSection .institutesContainer {
  display: flex;
  flex-wrap: wrap;
}
.institutesSection .institutesBlock {
  width: 100%;
  position: relative;
  border-radius: 15px;
  transition: all ease-in 0.4s;
  margin-bottom: 24px;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.institutesSection .institutesBlock .innerContent {
  border-radius: 15px;
  width: 100%;
  display: flex;
}
.institutesSection .institutesBlock .innerContent .innerGroupUpper {
  padding: 9px 10px 9px;
  width: 69%;
  border: 1px solid #FEBCBE;
  border-left: 0;
  border-radius: 0 15px 15px 0;
}
.institutesSection .institutesBlock .innerContent .innerGroupUpper p {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 8px;
  color: var(--primaryColor);
}
.institutesSection .institutesBlock .innerContent .innerGroupUpper img {
  max-height: 20px;
  width: auto;
  margin-bottom: 8px;
}
.institutesSection .institutesBlock .innerContent .innerGroupUpper .showLess {
  background-color: transparent;
  color: #333333;
  border: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  padding-right: 24px;
  background: url(../images/mobileImg/CaretDown.svg) no-repeat center right;
}
.institutesSection .institutesBlock .innerContent .innerGroup {
  position: relative;
  overflow: hidden;
  width: 40.27%;
}
.institutesSection .institutesBlock .innerContent .innerGroup img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.institutesSection .institutesBlock .overlay {
  position: relative;
  padding: 0px;
  display: none;
  justify-content: flex-end;
  flex-direction: column;
  visibility: hidden;
  height: auto;
  opacity: 0;
  transition: all 0.4s ease-in;
}
.institutesSection .institutesBlock .overlay a {
  background-color: var(--primaryColor);
  border-radius: 30px;
  padding: 10px 18px;
  color: var(--whiteColor);
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 12px;
  align-self: flex-start;
}
.institutesSection .institutesBlock .overlay.active {
  visibility: visible;
  display: flex;
  padding: 8px;
  opacity: 1;
}
.institutesSection .institutesBlock:hover {
  background-color: #FFEEEE;
}
.institutesSection .institutesBlock:hover .innerContent .innerGroupUpper {
  border: 0;
}

footer {
  margin-bottom: 60px;
}
footer .footerTop {
  padding: 31px 0 40px;
}
footer .footerTop .logoLeftBlock {
  text-align: center;
}
footer .footerTop .footerLogo {
  display: inline-block;
}
footer .footerTop .footerLogo img {
  height: 80.72px;
  max-width: auto;
  margin-bottom: 22px;
}
footer .footerTop .socailMediaIcon {
  display: flex;
  gap: 24.8px;
  justify-content: center;
}
footer .footerTop .socailMediaIcon a {
  display: inline-block;
}
footer .footerTop .socailMediaIcon a img {
  height: 45px;
}
footer .footerTop .bottomInfoLink {
  background-color: #FFEEEE;
  border-radius: 15px;
  padding: 10px 10px;
  margin: 24px 0;
  gap: 10px;
}
footer .footerTop .bottomInfoLink a {
  width: calc(50% - 10px);
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0%;
  display: inline-block;
  padding: 9px 7.5px 9px 30px;
  text-decoration: none;
  background-size: 24px 24px;
  background-position: top 7px left;
  background-repeat: no-repeat;
  color: var(--blackColor);
  text-align: left;
}
.institutesBlock.active button.showLess {
  background: url(../images/mobileImg/CaretUp.svg) no-repeat center right;
}

/* Enhanced active state styling for institute blocks */
.institutesSection .institutesBlock.active {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(254, 188, 190, 0.3);
}

.institutesSection .institutesBlock.active .innerContent .innerGroupUpper {
  border-color: var(--primaryColor);
  background-color: rgba(254, 188, 190, 0.1);
}
footer .footerTop .bottomInfoLink a.downloadDoc {
  background-image: url(../images/mobileImg/f-download.svg);
}
footer .footerTop .bottomInfoLink a.call {
  background-image: url(../images/mobileImg/f-call.svg);
}
footer .footerTop .bottomInfoLink a.email {
  background-image: url(../images/mobileImg/f-email.svg);
}
footer .footerTop .bottomInfoLink a.rightSideCol {
  text-align: right;
}
footer .footerBottom {
  padding: 0px 0 30px;
  border-top: 1px solid #A83D3D;
}
footer .footerBottom .customContainer p {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
  margin-top: 20px;
}
footer .footerBottom .customContainer .bottomLink {
  margin-left: auto;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}
footer .footerBottom .customContainer .bottomLink li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--blackColor);
}

.fixedBottomFooter {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--whiteColor);
  border-radius: 15px 15px 0 0;
  z-index: 99;
  height: 66px;
  display: flex;
  justify-content: space-around;
  gap: 0px;
  overflow: hidden;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* subtle shadow on top */
}
.fixedBottomFooter a {
  display: inline-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  font-weight: 500;
  font-size: 9px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #333333;
  gap: 7px;
  justify-content: center;
  padding: 15px 6px 15px;
  text-decoration: none;
}
.fixedBottomFooter a img {
  align-self: center;
}
.fixedBottomFooter a.active {
  background-color: #FFEEEE;
}

/* Sticky Button Container */
.sticky-buttons {
  position: fixed;
  top: 40%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* Each Button */
.sticky-btn {
  background: #86191D;
  /* red like in your image */
  color: #fff;
  font-size: 20px;
  padding: 8px 8px 4px 12px;
  border-radius: 23px 0 0 23px;
  text-align: center;
  transition: 0.3s;
  display: inline-block;
}

/* Hover Effect */
.sticky-btn:hover {
  background: #800000;
}

.buttonSpacing {
  max-width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .openCustomBtn, .openCustomBtnInner {
    position: fixed !important;
    left: 1rem;
    top: unset;
    padding: 1rem;
    bottom: 5rem;
    padding: 0.5rem 2rem;
    transform: unset;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 0;
    background-color: #214a9a;
    color: #fff;
    font-weight: 800;
    border-radius: 1rem;
    z-index: 999;
    font-family: "Roboto", sans-serif;
  }
}
@media screen and (max-width: 575px) {
  #exampleModal111 {
    top: 0rem;
  }
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

@media screen and (max-width: 991px) {
  .openCustomBtn, .openCustomBtnInner {
    position: fixed !important;
    left: 1rem;
    top: unset;
    padding: 1rem;
    bottom: 5rem;
    padding: 0.5rem 2rem;
    transform: unset;
    text-decoration: none;
    font-size: 16px;
    border-radius: 0;
    background-color: #214a9a;
    color: #fff;
    font-weight: 800;
    border-radius: 1rem;
    z-index: 999;
  }
}
/* Modal backdrop */
.customNew {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
}

/* Modal box */
.customNew-content {
  background: #fff;
  margin: 10% auto;
  width: 500px;
  max-width: 90%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
  overflow: auto;
  height: 90%;
}

/* Header */
.customNew-header {
  color: #333333;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3960784314);
}

.customNew-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.customNew-close {
  font-size: 24px;
  cursor: pointer;
}

/* Body */
.customNew-body {
  padding: 20px;
}

/* Footer */
.customNew-footer {
  padding: 15px;
  background: #f1f1f1;
  text-align: right;
}

.customNew-footer button {
  padding: 8px 15px;
  margin-left: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.customNew-footer .closeBtn {
  background: #ccc;
}

.customNew-footer .actionBtn {
  background: #007bff;
  color: #fff;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.cust-p-format {
  margin-bottom: 1.5rem;
  font-size: 16px;
  line-height: 140%;
}

@media (min-width: 992px) and (max-width: 767px) {
  .headingDark {
    font-size: 48px;
  }
  .headingDarkSm {
    font-size: 42px;
  }
  .headingLight {
    font-size: 42px;
  }
  .navbarTop .container .upperLink .snapLogo {
    margin-right: 11px;
  }
  .navbarTop .container .upperLink .snapLogo img {
    height: 40px;
    width: auto;
  }
  .navbarTop .container .upperLink .symbosisLlogo img {
    height: 49px;
    width: auto;
  }
  .navbarTop .container .upperLink .mobileToggle {
    margin-left: auto;
  }
  .navbarTop .container .upperLink .mobileToggle img {
    height: 28px;
  }
  .navbarTop .container .lowerLink a {
    font-size: 14px;
  }
  .mainHeroSection .leftContent {
    padding: 30px 0 228px;
    max-width: 80%;
    overflow: hidden;
  }
  .mainHeroSection .leftContent .sanpDates img {
    height: 90px;
  }
  .mainHeroSection .leftContent .openingSoon {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .mainHeroSection .bannerBottomImg img {
    height: 60px;
    width: auto;
  }
  .exellenceSection {
    background: url(../images/mobileImg/excellence.webp) no-repeat top left;
    background-size: 100% auto;
    padding: 90px 0 0;
  }
  .exellenceSection .subTitle {
    font-size: 28px;
    padding: 15px 0 47px;
  }
  .exellenceSection .exellenceBlock span {
    display: block;
  }
  .exellenceSection .exellenceBlock img {
    max-height: 80px;
  }
  .exellenceSection .exellenceBlock span {
    font-size: 16px;
  }
  .exellenceSection .exellenceBlock span.ttl {
    font-size: 36px;
  }
  .exellenceSection .exellenceBlock:nth-child(3) img, .exellenceSection .exellenceBlock:nth-child(4) img {
    height: 48px;
  }
  .exellenceSection .infoUniversity {
    margin-top: 85px;
    gap: 50px 50px;
  }
  .exellenceSection .infoUniversity .infoBlock {
    width: calc(50% - 25px);
  }
  .exellenceSection .infoUniversity .infoBlock img {
    width: 54px;
    height: 53px;
  }
  .exellenceSection .infoUniversity .infoBlock .digit {
    font-size: 72px;
  }
  .exellenceSection .infoUniversity .infoBlock .text {
    font-size: 28px;
  }
  .quickLinkSection ul li a {
    font-size: 18px;
    padding: 80px 2px 16px;
  }
  .quickLinkSection ul li:nth-child(1) a {
    background-image: url("../images/mobileImg/quickLink-1.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(2) a {
    background-image: url("../images/mobileImg/quickLink-2.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(3) a {
    background-image: url("../images/mobileImg/quickLink-3.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(4) a {
    background-image: url("../images/mobileImg/quickLink-4.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(5) a {
    background-image: url("../images/mobileImg/quickLink-5.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(6) a {
    background-image: url("../images/mobileImg/quickLink-6.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(7) a {
    background-image: url("../images/mobileImg/quickLink-7.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(8) a {
    background-image: url("../images/mobileImg/quickLink-8.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(9) a {
    background-image: url("../images/mobileImg/quickLink-9.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(10) a {
    background-image: url("../images/mobileImg/quickLink-10.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(11) a {
    background-image: url("../images/mobileImg/quickLink-11.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .quickLinkSection ul li:nth-child(12) a {
    background-image: url("../images/mobileImg/quickLink-12.svg");
    background-size: 36px 36px;
    background-position: top 24px center;
  }
  .institutesSection {
    padding: 0px 0 240px;
  }
  .institutesSection .institutesBlock {
    margin-bottom: 28px;
  }
  .institutesSection .institutesBlock .innerContent .innerGroupUpper p {
    font-size: 21px;
  }
  .institutesSection .institutesBlock .innerContent .innerGroupUpper img {
    max-height: 32px;
    margin-bottom: 10px;
  }
  .institutesSection .institutesBlock .innerContent .innerGroupUpper .showLess {
    font-size: 18px;
  }
  .institutesSection .institutesBlock .overlay span {
    font-size: 16px;
  }
}
@media (max-width: 419px) {
  .headingDark {
    font-size: 28px;
  }
  .headingDarkSm {
    font-size: 24px;
  }
  .headingLight {
    font-size: 28px;
  }
  .exellenceSection .subTitle {
    font-size: 18px;
  }
  .exellenceSection .exellenceContainer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .exellenceSection .exellenceBlock {
    width: calc(50% - 6px);
    padding: 0 0 13px;
    border-radius: 30px; /* Optional */
    color: #fff; /* Optional for contrast */
    text-align: center;
  }
  .exellenceSection .exellenceBlock span {
    display: block;
  }
  .exellenceSection .exellenceBlock img {
    max-height: 40px;
    width: auto;
    align-self: center;
  }
  .exellenceSection .exellenceBlock span {
    font-size: 12px;
  }
  .exellenceSection .exellenceBlock span.ttl {
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 3%;
    text-align: center;
    color: var(--secondaryColor);
    text-shadow: 3px 4px 4px rgba(7, 7, 7, 0.3);
    margin: 12px 0 5px;
  }
  .exellenceSection .exellenceBlock:nth-child(3) img, .exellenceSection .exellenceBlock:nth-child(4) img {
    height: 30px;
  }
  .exellenceSection .infoUniversity {
    padding: 24px 16px;
  }
  .exellenceSection .infoUniversity .infoBlock img {
    width: 42px;
    height: 42px;
  }
  .exellenceSection .infoUniversity .infoBlock .digit {
    font-size: 42px;
  }
  .exellenceSection .infoUniversity .infoBlock .text {
    font-size: 14px;
  }
  .institutesSection .institutesBlock .innerContent .innerGroupUpper p {
    font-size: 12px;
  }
  .institutesSection .institutesBlock .innerContent .innerGroupUpper .showLess {
    font-size: 14px;
  }
  .institutesSection .institutesBlock .overlay span {
    font-size: 12px;
  }
  footer .footerTop {
    padding: 31px 0 40px;
  }
  footer .footerTop .logoLeftBlock {
    text-align: center;
  }
  footer .footerTop .socailMediaIcon {
    display: flex;
    gap: 24.8px;
  }
  footer .footerTop .socailMediaIcon a {
    display: inline-block;
  }
  footer .footerTop .socailMediaIcon a img {
    height: 30px;
  }
  footer .footerBottom .container p {
    font-size: 12px;
  }
  footer .footerBottom .container .bottomLink li a {
    font-size: 12px;
  }
}/*# sourceMappingURL=style-mb.css.map */