/*------------------------------animation code-------------------------------------------------------*/

[data-animate="left"] {
  opacity: 0;
  transform: translateX(-16px);
  visibility: hidden;
  /* Add this */
}

[data-animate="right"] {
  opacity: 0;
  transform: translateX(16px);
  visibility: hidden;
  /* Add this */
}

[data-animate].animate {
  animation: slideIn 1.5s ease forwards;
  visibility: visible;
  /* Add this */
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(var(--slide-offset, 0));
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Set the slide offset direction */
[data-animate="left"] {
  --slide-offset: -16px
}

[data-animate="right"] {
  --slide-offset: 16px;
}


/* -----------------------------------Enabling Growth------------------------- */

.enabling-growth {
  background: linear-gradient(180deg, #FFF 0%, #F2FCFF 100%);
  margin-top: 120px;
  padding-bottom: 40px;
}


.enabling-growth-heading>h1 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  width: 60%;
  margin: auto;
}


.enabling-growth-subheading>p {
  color: #575756;
  text-align: center;
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}

.enabling-growth-container {
  border-radius: 24px 24px 0px 0px;
  background: #FFFFFF;
  padding: 40px 0;
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  overflow-y: hidden;
}

.enabling-growth-content-heading>h3 {
  color: #212121;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

.enabling-growth-content-subheading>p {
  color: #575756;
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin: 2rem 0;
}

.enabling-growth-content {
  padding-bottom: 40px;
  padding-left: 40px;
}

.enabling-growth-content,
.enabling-growth-content-gallery {
  width: 50%;
}


.enabling-growth-content-button>a>button {
  padding: 15px 55px;
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border-radius: 8px;
  background: #14B1E7;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.enabling-growth-content-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gallery-row-1,
.gallery-row-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-card {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  padding: 8px;
  width: fit-content;
}

.gallery-card>p {
  color: #212121;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}


.slider-container {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  flex-direction: column;
  animation: scrollUp 40s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* !-- ----------------------------------------What Drives--------------------------> */

.what-drive-us {
  margin-top: 60px;
}


.what-drive-us-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.what-drive-us-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  height: auto;
  margin-top: 36px;
}

.what-drive-us-card>h4 {
  color: #212121;
  text-align: start;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}


.what-drive-us-card>p {
  color: #575756;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.24px;
  margin: 0;
}

.what-drive-us-card {
  border-radius: 20px;
  border: 2px solid #EFEFEF;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  width: calc(100%/2);
}


/* -- ----------------------------------------Our values------------------------------------ -- */

.our-values {
  margin-top: 96px;
}

.our-values-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.our-values-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.our-values-long-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.our-values-long-row>.our-values-card {
  border: 1px solid #212121;
  background: #FFFFFF;
  box-shadow: 4px 4px 0px 0px #1BB1E7;
  width: 188px;
  height: 80px;
}


.our-values-short-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-evenly;
}

.our-values-short-row>.our-values-card {
  border: 1px solid #212121;
  background: #FFFFFF;
  box-shadow: 4px 4px 0px 0px #FCB040;
  width: 188px;
  height: 80px;
}

.our-values-card {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}

.our-values-card:hover {
  transform: scale(1.05);
}

.our-values-card>p {
  color: #212121;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.22px;
  margin: 0;
  text-align: center;
}


/* -------------------------------------------Empowering Learning------------------------------------ */


.empowering-learning {
  margin-top: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}


.empowering-learning-heading>h2 {
  color: #212121;
  text-align: start;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.empowering-learning-content {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-direction: column;
  width: 50%;
}


.empowering-learning-button>a>button {
  padding: 15px 55px;
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border-radius: 8px;
  background: #14B1E7;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.button-mobile {
  display: none;
}


.empowering-learning-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-content: space-between;
  width: 50%;
}

.empowering-learning-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.03);
  padding: 10px;
}

.empowering-learning-card>p {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  margin-top: 5px;
}

.empowering-learning-card>span {
  color: #212121;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

/* ------------------------------------Our Journey------------------------------------- */

.our-journey {
  margin-top: 80px;
}

.our-journey-heading>h2 {
  color: #212121;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin: 0;
}


.our-journey-subheading>p {
  color: #575756;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  width: 80%;
  margin: auto;
  margin-top: 36px;
}


/* ---------------------Ziz zag container=-------------- */

.process-container {
  position: relative;
  width: 60%;
  margin: 0 auto;
  aspect-ratio: 600 / 1000;
}

.our-journey-container-mobile {
  display: none;
}

.flow-path-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.checkpoint {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #58D0FC, #1BB1E7);
  color: white;
  font-family: Inter;
  font-weight: bold;
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  transform: translate(-50%, -50%);
}

.content-block {
  position: absolute;
  width: 55%;
  /* Updated from 45% to 55% */
  z-index: 15;
  transform: translateY(-50%);
}

.content-block.left {
  left: -38%;
  /* Moved content outside to the left */
  text-align: right;
}

.content-block.right {
  right: -38%;
  /* Moved content outside to the right */
  text-align: left;
}

.content-block h4 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
}

.content-block p {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Checkpoint Positions (unchanged) */
.point-1-pos {
  top: 10%;
  left: 25%;
}

.point-2-pos {
  top: 30%;
  left: 75%;
}

.point-3-pos {
  top: 50%;
  left: 25%;
}

.point-4-pos {
  top: 70%;
  left: 75%;
}

.point-5-pos {
  top: 90%;
  left: 25%;
}

/* Updated content vertical alignment */
.content-1 {
  top: 18%;
}

.content-2 {
  top: 35%;
}

.content-3 {
  top: 55%;
}

.content-4 {
  top: 76%;
}

.content-5 {
  top: 95%;
}

.our-journey-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.our-journey-content>h4 {
  color: #212121;
  text-align: right;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
}

.our-journey-content>p {
  color: #575756;
  text-align: right;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}

.our-journey-blue-container {
  background-color: #F4FDFF;
  width: 95%;
  margin: auto;
  padding: 30px 50px;
  margin-top: 60px;
}

.our-journey-blue-container>p {
  font-family: Inter;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  color: #14B1E7;
  margin: 0;
}


.journey-dotted-line-mobile {
  border: 1px dashed #575756;
  width: 30%;
  margin: auto;
}

.dotted-line-left {
  transform: rotate(45deg);
}

.dotted-line-right {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .journey-dotted-line-mobile {
    width: 40%;
  }
}

/* -------------------------------------------iDream Digital----------------------- */


.idream-digital {
  margin-top: 96px;
}

.idream-digital-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}


.idream-digital-subheading>p {
  color: #575756;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  width: 70%;
  margin: 1.5rem auto;
}

.idream-digital-container {
  margin-top: 48px;
}

.idream-digital-slide {
  border-radius: 12px;
  border: 1px solid #EFEFEF;
  height: 500px;
  padding: 24px;
}

.idream-digital-slide>p {
  color: #575756;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}



/* ---------------------------------------Library ecosytem--------------------------- */

.learning-ecosystem {
  margin-top: 80px;
}


.learning-ecosystem-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}


.pal-ideal-choice-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  margin-top: 50px;
  position: relative;
}

.pal-ideal-choice-container-mobile {
  display: none;
}

.pal-ideal-choice-image,
.pal-ideal-choice-list {
  width: 50%;
}

.pal-ideal-choice-list>ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;

}

.pal-ideal-choice-list>ul>li {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  list-style: none;
  cursor: pointer;
}


.active-pal-ideal-choice-list>span {
  background: #1BB1E7;
  color: #FFFFFF;
  font-size: 18px;
  padding: 26px 12px;
  border: none;
  border-radius: 22px;

}

.active-pal-ideal-choice-list>p {
  font-weight: 700;
  color: #212121;
}




.pal-ideal-choice-list-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 0.84px solid #57575640;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #212121;
  z-index: 2;

}

.pal-ideal-choice-list-text {
  font-family: Inter;
  font-weight: normal;
  font-size: 20px;
  line-height: 1.4;
  color: #212121;
  margin: 0;
}

.pal-ideal-choice-list-line {
  /* border: 0.84px solid #57575640; */
  height: 75%;
  position: absolute;
  z-index: 1;
  left: 1.5%;
}

.learning-ecosystem-mobile {
  display: none;
}





/* ----------------------------------------Why idream education--------------------------------*/


.why-idream {
  margin-top: 96px;
}

.why-idream-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.why-idream-paragraph>p {
  color: #575756;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  width: 80%;
  margin: 1.5rem auto;
}


.why-idream-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-content: space-between;
  margin-top: 48px;
}

.why-idream-card-container-mobile {
  display: none;
}
.why-idream-card {
  border-radius: 16px;
  border: 1px solid rgba(102, 102, 102, 0.23);
  padding: 16px;
  transition: box-shadow 0.2s ease-in-out;
}

.why-idream-card:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.why-idream-card>p {
  color: #212121;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}


/* -----------------------------------------------Digital Learning Platform-------------------------------- */

.digital-learning {
  margin-top: 96px;
}

.digital-learning-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.digital-learning-subheading>p {
  color: #575756;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin: 1.5rem 0;
}

.digital-learning-container {
  margin-top: 48px;
}

.digital-learning-svg-container {
  width: 38px;
  height: 38px;
  padding: 10px;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.digital-learning-slide {
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #EFEFEF;
  background: #FFF;
  height: 280px;
}

.digital-learning-slide>p {
  color: #212121;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}


/* ----------------------------------------------Major Projects------------------------------------ */

.major-projects {
  margin-top: 96px;
}

.major-projects-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}


.major-projects-container {
  margin-top: 48px;
}


.major-projects-slide {
  border-radius: 16px;
  border: 1px solid rgba(102, 102, 102, 0.23);
  background: #FFFFFF;
  padding: 12px;
  height: 430px;
}

.major-projects-slide>p {
  color: #212121;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

/* ----------------------------------------Teacher Students----------------------------------- */


.teacher-students {
  margin-top: 80px;
}

.teacher-students-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.teacher-students-container {
  margin-top: 48px;
}


.teacher-students-slide>p {
  color: #212121;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}


.teacher-student-slide>iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.teacher-student-slide>p {
  color: #212121;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.teacher-students-button {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.teacher-students-button>a>button {
  padding: 15px 55px;
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border-radius: 8px;
  background: #14B1E7;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}



/* ----------------------------------------Awards and recognition-------------------------------- */


.awards-recognition {
  margin-top: 96px;
}


.awards-recognition-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.awards-recognition-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.awards-recognition-card {
  width: 100%;
  display: flex;
  gap: 40px;
  border-radius: 12px;
  border: 1px solid #DEDEDE;
  padding: 28px;
  align-items: start;
}

.awards-recognition-card:nth-child(even) {
  flex-direction: row-reverse;
}



.awards-recognition-card>img {
  width: 290px;
  height: 260px;
}

.awards-recognition-card-text>h4 {
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0%;
  margin: 0;
  margin-bottom: 1rem;
}

.awards-recognition-card-text>ul {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.awards-recognition-card-text>ul>li {
  font-family: Inter;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: #666666;
  margin-top: 10px;
}

.awards-recognition-card:nth-child(odd) .awards-recognition-card-text {
  text-align: left;
}


/* -------------------------------Our Core Products-------------------------------- */


.core-products {
  margin-top: 100px;
}

.core-products-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.core-products-blue-container {
  background: #E3F5FB;
  height: 230px;
  margin-top: 12%;
  margin-bottom: 5%;
  position: relative;
  display: flex;
  justify-content: center;
}

.our-core-products-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  bottom: 20%;
}

.core-products-mobile {
  display: none;
}

.our-core-products-card {
  border-radius: 15px;
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  box-shadow: 13.078px 12.368px 0px 0px rgba(18, 17, 17, 0.07), 7.7px 7.283px 0px 0px rgba(18, 17, 17, 0.05), 3.955px 3.74px 0px 0px rgba(18, 17, 17, 0.04), 1.59px 1.504px 0px 0px rgba(18, 17, 17, 0.03), 0.356px 0.336px 0px 0px rgba(18, 17, 17, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 10px;
  width: calc(100%/5);
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.our-core-products-card:hover {
  transform: scale(1.05);
}

.our-core-products-card>a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: space-around;
}

.our-core-products-card>a:focus {
  outline: none;
}

.our-core-products-card>a>h3 {
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  margin: 0;
  color: #212121;
}

.our-core-products-card>a>img {
  width: 60%;
  margin: 0px auto;
}

.our-core-products-card>a>p {
  font-family: Inter;
  font-size: 14px;
  margin: 0;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #575756;
}

/* -----------------Swiper slider style------------------ */
.swiper-wrapper {
  margin-bottom: 28px !important;
}

.swiper-pagination {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0px !important;
  margin-top: 40px !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background-color: #c9c9c9 !important;
  opacity: 1 !important;

}

.swiper-pagination-bullet-active {
  background: #212121 !important;
  width: 12px !important;
  border-radius: 4px !important;
}


/*------------------------------animation code-------------------------------------------------------*/

[data-animate="left"] {
  opacity: 0;
  transform: translateX(-16px);
  visibility: hidden;
  /* Add this */
}

[data-animate="right"] {
  opacity: 0;
  transform: translateX(16px);
  visibility: hidden;
  /* Add this */
}

[data-animate].animate {
  animation: slideIn 1.5s ease forwards;
  visibility: visible;
  /* Add this */
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(var(--slide-offset, 0));
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Set the slide offset direction */
[data-animate="left"] {
  --slide-offset: -16px
}

[data-animate="right"] {
  --slide-offset: 16px;
}


@media screen and (max-width: 1400px) {

  .enabling-growth-heading>h1 {
    width: 100%;
  }

}

@media screen and (max-width:1300px) {


  .process-container {
    display: none;
  }


  .our-journey-container-mobile {
    display: block;
  }


  .our-journey-card {
    border-radius: 5px;
    border: 1px solid #EFEFEF;
    padding: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
    background-color: white;
  }

  .our-journey-card-icon {
    background: linear-gradient(to bottom, #58D0FC, #1BB1E7);
    border-radius: 50%;
    border: none;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    color: #FFFFFF;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 60px;
    height: 60px;
  }


  .our-journey-card-heading>h3 {
    color: #212121;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .our-journey-card-paragraph>p {
    color: #575756;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  /* -----Our core products----- */

  .core-products-blue-container {
    display: none;
  }

  .core-products-mobile {
    display: grid;
    position: static;
    flex-wrap: wrap;
    margin: 6% auto;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .our-core-products-card {
    width: 100%;
  }

  .our-core-products-card>a>img {
    width: 100%;
  }
}


@media screen and (max-width: 1200px) {

  .what-drive-us-heading>h2,
  .our-values-heading>h2,
  .empowering-learning-heading>h2,
  .our-journey-heading>h2,
  .idream-digital-heading>h2,
  .learning-ecosystem-heading>h2,
  .why-idream-heading>h2,
  .digital-learning-heading>h2,
  .major-projects-heading>h2,
  .teacher-students-heading>h2,
  .awards-recognition-heading>h2,
  .core-products-heading>h2 {
    font-size: 42px;
  }

  .enabling-growth-subheading>p,
  .idream-digital-subheading>p,
  .why-idream-paragraph>p,
  .digital-learning-subheading>p,
  .our-journey-subheading>p {
    width: 100%;
  }


  .teacher-student-slide>p {
    font-size: 20px;
  }

  .major-projects-slide>p {
    font-size: 18px;
  }

  .enabling-growth-content-heading>h3 {
    font-size: 28px;
  }

  .enabling-growth-content-subheading>p {
    font-size: 18px;
  }

  .our-values-card>p {
    font-size: 18px;
  }

  .breakpoint-1200 {
    display: none;
  }

  .our-values-long-row>.our-values-card,
  .our-values-short-row>.our-values-card {
    height: 65px;
  }

  .what-drive-us-card {
    padding: 20px;
    border-radius: 8px;
    gap: 8px;
  }

  .what-drive-us-card>p {
    font-size: 20px;
  }

  .what-drive-us-card>h4 {
    font-size: 26px;
  }

  .what-drive-us-card>svg {
    width: 40px;
    height: 40px;
  }


  .idream-digital-slide {
    height: 425px;
  }

  .why-idream-card>p,
  .idream-digital-slide>p,
  .digital-learning-slide>p {
    font-size: 20px;
  }

  .digital-learning-slide {
    height: 260px;
  }

  .awards-recognition-card {
    align-items: center;
  }

  .awards-recognition-card-text>h4 {
    font-size: 36px;
  }

  .awards-recognition-card-text>ul>li {
    font-size: 20px;
  }

  .awards-recognition-card>img {
    width: 25%;
    height: 100%;
  }


}


@media screen and (max-width: 1100px) {


  .what-drive-us,
  .our-values,
  .empowering-learning,
  .our-journey,
  .idream-digital,
  .learning-ecosystem,
  .why-idream,
  .digital-learning,
  .major-projects,
  .teacher-students,
  .awards-recognition,
  .core-products {
    margin-top: 60px;
  }

  .enabling-growth-subheading>p,
  .idream-digital-subheading>p,
  .why-idream-paragraph>p,
  .digital-learning-subheading>p,
  .our-journey-subheading>p {
    font-size: 20px;
  }

  .enabling-growth-heading>h1 {
    font-size: 50px;
  }


  .enabling-growth-content-button>a>button,
  .empowering-learning-button>a>button,
  .teacher-students-button>a>button {
    padding: 14px 35px;
    font-size: 16px;
  }

  .empowering-learning-card>p {
    font-size: 24px;
    margin-top: 8px;
  }

  .empowering-learning-card>span {
    font-size: 14px;
  }

}

@media screen and (max-width: 1050px) {
  .empowering-learning-content {
    width: 57%;
  }

  .empowering-learning-gallery {
    width: 40%;
  }
}

@media screen and (max-width: 992px) {


  .enabling-growth-heading>h1 {
    font-size: 42px;
  }


  .what-drive-us-heading>h2,
  .our-values-heading>h2,
  .empowering-learning-heading>h2,
  .our-journey-heading>h2,
  .idream-digital-heading>h2,
  .learning-ecosystem-heading>h2,
  .why-idream-heading>h2,
  .digital-learning-heading>h2,
  .major-projects-heading>h2,
  .teacher-students-heading>h2,
  .awards-recognition-heading>h2,
  .core-products-heading>h2 {
    font-size: 32px;
  }


  .enabling-growth-subheading>p,
  .idream-digital-subheading>p,
  .why-idream-paragraph>p,
  .digital-learning-subheading>p,
  .our-journey-subheading>p {
    font-size: 18px;
  }

  .learning-ecosystem-card>p {
    font-size: 14px;
  }

  .major-projects-slide {
    height: 590px;
  }

  .enabling-growth-container {
    flex-direction: column-reverse;
    width: 95%;
  }

  .enabling-growth-content {
    padding: 0 24px;
  }

  .enabling-growth-content,
  .enabling-growth-content-gallery {
    width: 100%;
  }

  .slider-container {
    height: 400px;
  }

  .enabling-growth-content-button {
    display: flex;
    justify-content: center;
  }

  .enabling-growth-content-subheading>p {
    font-size: 16px;
    text-align: center;
    margin-top: 0;
  }

  .enabling-growth-content-heading>h3 {
    font-size: 24px;
    text-align: center;
  }

  .our-values-card>p {
    font-size: 16px;
    padding: 0 5px;
  }

  .our-values-short-row>.our-values-card,
  .our-values-long-row>.our-values-card {
    width: 140px;
    height: 55px;
  }

  .our-values-container {
    gap: 30px;
  }

  .what-drive-us-container {
    flex-direction: column;
  }

  .what-drive-us-card>h4 {
    font-size: 22px;
  }

  .what-drive-us-card {
    width: 100%;
  }

  .what-drive-us-card>p {
    font-size: 18px;
  }


  .why-idream-card-container {
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
  }

  .why-idream-card>p,
  .digital-learning-slide>p {
    font-size: 16px;
  }

  .idream-digital-slide {
    height: 520px;
  }

  .digital-learning-slide {
    height: 130px;
    padding: 20px;
  }

  .digital-learning-svg-container>svg {
    width: 28px;
    height: 28px;
  }

  .digital-learning-svg-container {
    width: 32px;
    height: 32px;
    padding: 10px;
  }

  .awards-recognition-card-text>h4 {
    font-size: 30px;
  }

  .awards-recognition-card-text>ul>li {
    font-size: 18px;
  }

  .our-journey-blue-container {
    width: 100%;
    margin-top: 40px;
    padding: 24px;
  }

  .our-journey-blue-container>p {
    font-size: 20px;
  }

  .core-products-mobile{
    grid-template-columns: 1fr 1fr;
  }
}



@media screen and (max-width: 767px) {


  .enabling-growth-heading>h1 {
    font-size: 36px;
  }

  .what-drive-us-container,
  .our-journey-subheading>p,
  .our-journey-blue-container,
  .digital-learning-container,
  .major-projects-container,
  .teacher-students-container,
  .awards-recognition-container {
    margin-top: 30px;
  }

  .what-drive-us-heading>h2,
  .our-values-heading>h2,
  .empowering-learning-heading>h2,
  .our-journey-heading>h2,
  .idream-digital-heading>h2,
  .learning-ecosystem-heading>h2,
  .why-idream-heading>h2,
  .digital-learning-heading>h2,
  .major-projects-heading>h2,
  .teacher-students-heading>h2,
  .awards-recognition-heading>h2,
  .core-products-heading>h2 {
    font-size: 28px;
  }

  .learning-ecosystem-card>p,
  .teacher-student-slide>p,
  .major-projects-slide>p {
    font-size: 18px;
  }

  .enabling-growth-subheading>p,
  .idream-digital-subheading>p,
  .why-idream-paragraph>p,
  .digital-learning-subheading>p,
  .our-journey-subheading>p {
    font-size: 16px;
  }

  .gallery-card>p {
    font-size: 12px;
  }

  .major-projects-slide {
    height: 450px;
  }

  .enabling-growth-content-heading>h3 {
    font-size: 20px;
  }

  .enabling-growth-content-subheading>p {
    font-size: 14px;
  }

  .enabling-growth-content-button>a>button,
  .empowering-learning-button>a>button,
  .teacher-students-button>a>button {
    font-size: 14px;
    border-radius: 5px;
    padding: 10px 30px;
  }

  .empowering-learning {
    flex-direction: column;
    align-items: center;
  }

  .empowering-learning-heading>h2 {
    text-align: center;
  }

  .empowering-learning-button {
    display: none;
  }

  .button-mobile {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .empowering-learning-content,
  .empowering-learning-gallery {
    width: 100%;
  }

  /* -----------------------Choose Digital Library--------- */

  .pal-ideal-choice-container{
    display: none;
  }

  .learning-ecosystem-mobile {
    display: block;
    margin-top: 36px;
  }

  .learning-ecosystem-slide {
    width: auto;
  }

  .learning-ecosystem-slide>img {

    width: 100%;
    height: 100%;
  }

  .learning-ecosystem-slide>p {
    color: #212121;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0px 2.36px 2.36px 0px #E1F7FF;
  }

  .learning-ecosystem-pagination {
    display: flex;
    justify-content: center;
  }

  .why-idream-card-container {
    display: none;
  }


  .why-idream-card-container-mobile {
    display: block;
  }

  .idream-digital-slide {
    height: 390px;
  }

  .idream-digital-slide>p {
    font-size: 16px;
  }

  .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
  }

  .awards-recognition-card-text>h4 {
    font-size: 24px;
  }

  .awards-recognition-card-text>ul>li {
    font-size: 16px;
  }

  .awards-recognition-card {
    padding: 10px;
  }

  .awards-recognition-card>img {
    width: 30%;
  }


}



@media screen and (max-width: 600px) {



  .enabling-growth {
    margin-top: 90px;
  }

  .what-drive-us,
  .our-values,
  .empowering-learning,
  .our-journey,
  .idream-digital,
  .learning-ecosystem,
  .why-idream,
  .digital-learning,
  .major-projects,
  .teacher-students,
  .awards-recognition,
  .core-products {
    margin-top: 40px;
  }

  .enabling-growth-heading>h1 {
    font-size: 32px;
  }

  .what-drive-us-heading>h2,
  .our-values-heading>h2,
  .empowering-learning-heading>h2,
  .our-journey-heading>h2,
  .idream-digital-heading>h2,
  .learning-ecosystem-heading>h2,
  .why-idream-heading>h2,
  .digital-learning-heading>h2,
  .major-projects-heading>h2,
  .teacher-students-heading>h2,
  .awards-recognition-heading>h2,
  .core-products-heading>h2 {
    font-size: 22px;
  }

  .teacher-student-slide>p,
  .major-projects-slide>p {
    font-size: 16px;
  }


  .major-projects-slide {
    height: 380px;
  }

  .our-values-long-row,
  .our-values-short-row {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }


  .what-drive-us-card>svg {
    width: 32px;
    height: 32px;
  }

  .what-drive-us-card>h4 {
    font-size: 20px;
  }

  .digital-learning-slide {
    height: 150px;
  }

  .what-drive-us-card>p {
    font-size: 16px;
  }


  .awards-recognition-card {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
  }

  .awards-recognition-card:nth-child(even) .awards-recognition-card-text {
    text-align: start;
  }

  .awards-recognition-card:nth-child(even) {
    flex-direction: column;
  }

  .awards-recognition-card>img {
    width: 100%;
  }

  .our-journey-card-icon {
    height: 48px;
    width: 48px;
    font-size: 20px;
  }

  .our-journey-card-paragraph>p {
    font-size: 16px;
  }

  .learning-ecosystem-slide>p {
    font-size: 16px;
  }
}


@media screen and (max-width: 550px) {
  .enabling-growth-heading>h1 {
    font-size: 24px;
  }

  .our-values-short-row>.our-values-card,
  .our-values-long-row>.our-values-card {
    width: 110px;
  }

  .our-values-card>p {
    font-size: 14px;
  }

  .digital-learning-slide {
    height: 180px;
  }

  .major-projects-slide {
    height: 360px;
  }


  .our-journey-blue-container>p {
    font-size: 18px;
  }


  .our-core-products-card>a>h3{
    font-size: 18px;
  }
}

@media screen and (max-width: 550px) {
  .core-products-mobile{
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 500px) {
  .idream-digital-slide {
    height: 350px;
  }
}

@media screen and (max-width: 400px) {
  .digital-learning-slide {
    height: 200px;
  }
}