@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");


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

body {
  width: 100vw !important;
  overflow-x: hidden !important;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

html {
  scroll-behavior: auto;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
}


.companylogo {
  margin-left: 1rem;
  width: 11rem;
  margin-top: .3rem;

}



.eightyPercentView {
  transform: scale(0.8);
}



.darkBg {
  background-color: #1A1A1A;

  width: 100vw !important;
  height: max-content;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;
  position: relative;
}

.whiteBg {
  background-color: #ffffff;

  width: 100vw !important;
  height: max-content;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}


.maxWidthController {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;

}


@media screen and (width<=768px) {

  .maxWidthController {
    width: 100vw;
  }


  .eightyPercentView {
    transform: scale(1);
  }


}


/* ================ custom class ============ */


.primaryBtn {
  border-radius: 1rem;
  background: linear-gradient(180deg, #F8CC6B 0%, #FAAC00 100%);
  padding: 1.25rem 1.5rem;

  color: var(--Neutral-Black, #1A1A1A);
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem;
  /* 125% */
  letter-spacing: -0.03125rem;

  outline: none;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.secondaryBtn {
  border-radius: 0.75rem;
  border: 1px solid #ffffff50;
  background: rgba(255, 255, 255, 0.08);

  color: var(--Neutral-White, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.03125rem;

  padding: 1rem 1.25rem;
  outline: none;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}


.showInMobile_flex {
  display: none;
}

.showInMobile_block {
  display: none;
}

.hideInWeb {
  display: none;
}


@media screen and (width <=700px) {

  .showInMobile_flex {
    display: flex;
  }

  .showInMobile_block {
    display: block;
  }


  .hideInMobile {
    display: none;
  }


  .hideInWeb {
    display: block;
  }


  .secondaryBtn {
    padding: .8rem .9rem;
  }


}

/* ======== Custom scrollbar ======== */
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 0px;
  background: rgb(192, 192, 192);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: rgb(143, 143, 143);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(41, 41, 41);
}

html.lenis,
html.lenis body {
  height: auto;
  width: 100vw !important;
  margin: 0 auto !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.animatedHeading,
.animatedHeadin2 {
  display: inline-block;
}

/* .ThumbnailImage {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;

  border-radius: 1.25rem;
  background-image: url("./assets/thumbnail.png");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (width <= 700px) {
  .ThumbnailImage {
   display: none;
  }
}  */

/* ============================================ snap scroll =================================== */

/* @media screen and (width <= 700px) {
  .mainWebsiteContent {
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    height: 100vh;
  }
  

  .noSnapWhileScroll{
    scroll-snap-type: none;

  }
} */

/* ================================ device specific style  */

@media screen and (width: 320px) and (height: 658px) {
  .SectionHeading_AcademicCouncil {
    font-size: 1.8rem !important;
  }
}

.hide-icon {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.show-icon {
  opacity: 1;
}

/* Hide the play icon on mobile devices */
video::-webkit-media-controls-play-button {
  display: none !important;
}

video::-moz-media-controls-play-button {
  display: none !important;
}

video::-ms-media-controls-play-button {
  display: none !important;
}

video::-media-controls-play-button {
  display: none !important;
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

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

.VideoForWebVersion {
  display: block;
}

.VideoForMobVersion {
  display: none;
}



@media screen and (width <=700px) {
  .VideoForWebVersion {
    display: none !important;
  }

  .VideoForMobVersion {
    display: block !important;
  }


  /* General rule for hiding the fullscreen button */
  .VideoForMobVersion::-webkit-media-controls-fullscreen-button {
    display: none;
  }

  .VideoForMobVersion::-webkit-media-controls-enclosure {
    overflow: hidden;
    /* Prevent gaps where the fullscreen button was */
  }

  /* For Mozilla Firefox */
  .VideoForMobVersion::-moz-media-controls-fullscreen-button {
    display: none;
  }

}




#mobNavLinks,
#footerLinksInNav {
  display: none;
}

#closeMenuIcon {
  display: none;
}

#hamburgerIcon {
  display: flex;
}



/* =================== custom animation classes ============== */


.zoomOutEffect4x {
  transition: transform 0.3s ease-in-out;
  animation: zoomOutEffect .5s ease forwards;
}


@keyframes zoomOutEffect {
  from {
    transform: scale(4);
  }

  to {
    transform: scale(1);
  }
}

.zoomOutEffect3x {
  transition: transform 0.3s ease-in-out;
  animation: zoomOutEffect 1s ease forwards;
}


@keyframes zoomOutEffect {
  from {
    transform: scale(3);
  }

  to {
    transform: scale(1);
  }
}

.zoomOutEffect2x {
  transition: transform 0.3s ease-in-out;
  animation: zoomOutEffect 1s ease forwards;
}


@keyframes zoomOutEffect {
  from {
    transform: scale(2);
  }

  to {
    transform: scale(1);
  }
}

.zoomOutEffect15x {
  transition: transform 0.3s ease-in-out;
  animation: zoomOutEffect 1s ease forwards;
}


@keyframes zoomOutEffect {
  from {
    transform: scale(1.5);
  }

  to {
    transform: scale(1);
  }
}



/* =====================================  fade animation ======================= */

/* Animation class */
.fade-up {
  opacity: 0;
  animation: fadeUp .5s ease-in-out forwards;
}

/* Fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Animation class */
.fade-down {
  opacity: 0;
  animation: fadeDown .5s ease-in-out forwards;
}


/* Fade-up animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Animation class */
.fade-right {
  opacity: 0;
  animation: fadeRight .5s ease-in-out forwards;
}


/* Fade-up animation */
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation class */
.fade-left {
  opacity: 0;
  animation: fadeLeft .5s ease-in-out forwards;
}


/* Fade-up animation */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.text-white {
  color: #fff !important;
}