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

.hero-section-edusarc {
  position: relative;
  width: 100%;
  height: 806px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(to right, #e63570, #5a2c8e);
}
.sushank11{
    font-family: 'Noto Sans', sans-serif;
}

/* Watermark text image */
.background-text-img-edusarc {
  position: absolute;
  top: 39%;
  left: 50%;
  width: 90%;
  max-width: 1400px;
  opacity: 1.07;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Phone image */
.phone-container-edusarc {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
}

.phone-img-edusarc {
  width: 90vw;
  max-width: 1500px;
  height: auto;
  margin-top: 6.5%;
  object-fit: contain;
  /* transition: all 0.3s ease; */
}

/* Responsive styles for 1600px and below */
@media (max-width: 1600px) {
  .phone-img-edusarc {
    width: 85vw;
    margin-top: 12%;
  }

  .background-text-img-edusarc {
    width: 85%;
    top: 38%;
  }
}

/* 1440px */
@media (max-width: 1482px) {
  .phone-img-edusarc {
    width: 80vw;
    margin-top: 17%;
  }

  .background-text-img-edusarc {
    width: 80%;
    top: 37%;
  }
}

@media (max-width: 1340px) {
  .hero-section-edusarc {
    height: 637px;
  }
}
/* 1280px */
@media (max-width: 1280px) {
  .phone-img-edusarc {
    width: 75vw;
    margin-top: 3%;
  }

  .background-text-img-edusarc {
    width: 75%;
    top: 36%;
  }
}
@media (max-width: 1080px) {
  .hero-section-edusarc {
    height: 525px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .phone-img-edusarc {
    width: 70vw;
  }

  .background-text-img-edusarc {
    width: 70%;
    top: 35%;
  }

}
@media (max-width: 915px) {
  .hero-section-edusarc {
    height: 429px;
  }
}

/* 768px (Tablet) */
@media (max-width: 768px) {
  .phone-img-edusarc {
    width: 90vw;
    margin-top: 2%;
  }

  .background-text-img-edusarc {
    width: 90%;
    top: 33%;
    opacity: 0.5; /* reduce opacity for smaller screens */
  }
}
@media (max-width: 630px) {
  .hero-section-edusarc {
    height: 341px;
  }
}

/* 480px (Mobile) */
@media (max-width: 480px) {
  .phone-img-edusarc {
    width: 95vw;
  }

  .background-text-img-edusarc {
    width: 95%;
    top: 30%;
    opacity: 1.3;
  }
}

/* //////////////////2nd page /////////////////// */
.about-edusarc2 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 8%;
  flex-wrap: wrap;
  background-color: #ffffff;
  /*font-family: "Segoe UI", sans-serif;*/
}

.about-left-edusarc2,
.about-right-edusarc2 {
  flex: 1 1 300px;
}

.about-left-edusarc2 {
  max-width: 600px;
}

.about-left-edusarc2 h2 {
  font-size: 31px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

.about-left-edusarc2 p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  width: 80%;
}

.about-right-edusarc2 {
  max-width: 400px;
}

.about-right-edusarc2 p {
  font-size: 21px;
  line-height: 1.8;
  color: #000;
}

.about-right-edusarc2 strong {
  font-weight: 500;
}

.about-right-edusarc2 span {
  font-weight: 600;
}

/* ✅ Responsive styles for tablets and mobile */
/* Tablet Devices */
@media (max-width: 1024px) {
  .about-edusarc-edusarc2 {
    flex-direction: column;
    padding: 50px 6%;
    gap: 32px;
    text-align: center;
  }

  .about-left-edusarc2,
  .about-right-edusarc2 {
    max-width: 100%;
    flex: 1 1 100%;
    /* width: 100%; */
  }

  .about-left-edusarc2 h2 {
    font-size: 28px;
  }

  .about-left-edusarc2 p,
  .about-right-edusarc2 p {
    font-size: 17px;
    line-height: 1.7;
  }
}
@media (max-width: 1015px) {
  .about-left-edusarc2 p {
    width: 100%;
  }
}
/* Medium to Small Tablets */
@media (max-width: 768px) {
  .about-edusarc-edusarc2 {
    padding: 40px 5%;
    gap: 28px;
  }

  .about-left-edusarc2 h2 {
    font-size: 26px;
  }

  .about-left-edusarc2 p,
  .about-right-edusarc2 p {
    font-size: 24px;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .about-edusarc-edusarc2 {
    padding: 30px 4%;
    gap: 24px;
  }

  .about-left-edusarc2 h2 {
    font-size: 22px;
  }

  .about-left-edusarc2 p,
  .about-right-edusarc2 p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-right-edusarc2 {
    text-align: center;
  }

  .about-left-edusarc2 p,
  .about-right-edusarc2 p {
    text-align: center;
  }
}
/* //////////////////3rd page/////////////////////// */

.mockup-section-edusarc3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  overflow: hidden;
  flex-wrap: wrap;
  background: #fdf3f4;
}

.background-decor-edusarc3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at left center,
    #be3a5c 0%,
    #9b3a5f 56%,
    transparent 36%
  );
  z-index: 0;
  pointer-events: none;
}

.background-decor-edusarc3::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 12px 12px;
  opacity: 0.4;
}

.image-area-edusarc3 {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mockup-image-edusarc3 {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin-left: 25%;
}

.text-area-edusarc3 {
  flex: 1;
  max-width: 500px;
  padding: 20px;
  z-index: 1;
  color: #444;
  margin-right: 20%;
}

.design-tags-edusarc3 {
  display: flex;
  gap: 16%;
  color: #6c6c6c;
  font-size: 40px;
  margin-bottom: 23%;
}

.text-area-edusarc3 h2 {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 30px;
}

.text-area-edusarc3 p {
  font-size: 26px;
  line-height: 1.4;
  width: 100%;
}
/* ///////Media query///////////////// */
/* === Responsive Styling Starts Here === */
/* ==== Responsive Enhancements Starting from 1300px ==== */

@media (max-width: 1300px) {
  .text-area-edusarc3 {
    margin-right: 10%;
  }

  .mockup-image-edusarc3 {
    margin-left: 15%;
  }

  .text-area-edusarc3 h2 {
    font-size: 48px;
  }

  .design-tags-edusarc3 {
    font-size: 36px;
    gap: 12%;
    margin-bottom: 20%;
  }
}

@media (max-width: 1024px) {
  .mockup-section-edusarc3 {
    flex-direction: column;
    align-items: center;
    padding: 50px 5%;
    text-align: center;
  }

  .image-area-edusarc3,
  .text-area-edusarc3 {
    max-width: 100%;
    margin: 0;
  }

  .mockup-image-edusarc3 {
    margin-left: 0;
    max-width: 75%;
  }

  .text-area-edusarc3 {
    margin-right: 0;
    padding: 25px 0;
  }

  .text-area-edusarc3 h2 {
    font-size: 40px;
  }

  .text-area-edusarc3 p {
    font-size: 28px;
  }

  .design-tags-edusarc3 {
    justify-content: center;
    font-size: 28px;
    gap: 10%;
    margin-bottom: 12%;
  }

  .background-decor-edusarc3 {
    width: 100%;
    height: 50%;
    background: radial-gradient(
      circle at top center,
      #cc2b5e 0%,
      #a10735 46%,
      transparent 80%
    );
  }
}

@media (max-width: 768px) {
  .text-area-edusarc3 h2 {
    font-size: 32px;
  }

  .text-area-edusarc3 p {
    font-size: 26px;
  }

  .mockup-image-edusarc3 {
    max-width: 85%;
  }

  .design-tags-edusarc3 {
    font-size: 22px;
    gap: 6%;
    margin-bottom: 10%;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .mockup-section-edusarc3 {
    padding: 30px 3%;
  }

  .text-area-edusarc3 h2 {
    font-size: 26px;
  }

  .text-area-edusarc3 p {
    font-size: 24px;
  }

  .mockup-image-edusarc3 {
    max-width: 95%;
  }

  .design-tags-edusarc3 {
    font-size: 18px;
    gap: 8px;
    margin-bottom: 8%;
  }

  .background-decor-edusarc3 {
    height: 60%;
    background: radial-gradient(
      circle at center top,
      #cc2b5e 0%,
      #a10735 46%,
      transparent 90%
    );
  }
}
/* ///////////////////4th page////////////////////////////// */

.objective-section-edusarc4 {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;

  height: 870px;
  background-color: #f5f5f5;
  background: linear-gradient(to bottom, #e73c61 0%, #1b2b7d 100%);
  background-repeat: no-repeat;
  background-size: 54% 100%, 50% 100%;
  background-position: left, right;
  background-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%),
    linear-gradient(to bottom, #e73c61 0%, #1b2b7d 100%);
  position: relative;
}

.text-content-edusarc4 {
  flex: 1 1 500px;
  max-width: 552px;
  color: #333;
}

.text-content-edusarc4 h2 {
  font-size: 56px;
  margin-bottom: 41px;
  color: #000;
}

.text-content-edusarc4 p {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #555;
}

.image-content-edusarc4 {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-content-edusarc4 img {
  width: 100%;
  max-width: 845px;
  /*height: 869px;*/
}
.side-ellipse::before {
  content: "";
  position: absolute;
  top: 233px;
  left: -302px;
  width: 359px;
  height: 48%;
  background: linear-gradient(to right, #97395d, #82375d);
  /* border-top-right-radius: 100% 50%; */
  /* border-bottom-right-radius: 100% 50%; */
  border-radius: 50%;
}

/* -------------------- Responsive Media Queries -------------------- */
/* 💻 Ultra-Wide Screens (4K and up) */
@media (min-width: 1920px) {
  .objective-section-edusarc4 {
    padding: 100px 12%;
    background-size: 50% 100%, 50% 100%;
  }

  .text-content-edusarc4 h2 {
    font-size: 64px;
  }

  .text-content-edusarc4 p {
    font-size: 28px;
  }

  .image-content-edusarc4 img {
    max-width: 1000px;
  }
}

/* 🖥️ Full HD Desktops */

@media (max-width: 1600px) {
  .text-content-edusarc4 h2 {
    font-size: 54px;
  }

  .text-content-edusarc4 p {
    font-size: 24px;
  }

  .image-content-edusarc4 img {
    max-width: 800px;
  }
}
@media (max-width: 1315px) {
  .side-ellipse::before {
    left: -315px;
  }
}
@media (max-width: 1158px) {
  .side-ellipse::before {
    height: 42%;
    top: 265px;
    left: -325px;
  }
}
@media (max-width: 993px) {
  .side-ellipse::before {
    display: none;
  }
}

/* 💼 Standard Laptops */
@media (max-width: 1280px) {
  .objective-section-edusarc4 {
    padding: 60px 6%;
    background-size: 60% 100%, 60% 100%;
  }

  .text-content-edusarc4 h2 {
    font-size: 44px;
  }

  .text-content-edusarc4 p {
    font-size: 24px;
  }

  .image-content-edusarc4 img {
    max-width: 650px;
  }
}

/* 📲 Tablets (Portrait) */
@media (max-width: 992px) {
  .objective-section-edusarc4 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    height: auto;
    padding: 40px 5%;
    background-size: 100% 100%, 100% 100%;
    background-position: center center;
  }

  .text-content-edusarc4 {
    max-width: 100%;
    flex: none;
  }

  .text-content-edusarc4 h2 {
    font-size: 40px;
    font-weight: bold;
  }

  .text-content-edusarc4 p {
    font-size: 24px;
  }

  .image-content-edusarc4 img {
    max-width: 90%;
    height: auto;
    max-height: 500px;
  }
}

/* 📱 Large Mobile Devices */
@media (max-width: 768px) {
  .text-content-edusarc4 h2 {
    font-size: 28px;
  }

  .text-content-edusarc4 p {
    font-size: 24px;
  }

  .objective-section-edusarc4 {
    padding: 30px 4%;
    gap: 30px;
  }

  .image-content-edusarc4 img {
    max-width: 100%;
    max-height: 450px;
  }
}

/* 📳 Small Phones (iPhone SE, etc.) */
@media (max-width: 480px) {
  .text-content-edusarc4 h2 {
    font-size: 22px;
  }

  .text-content-edusarc4 p {
    font-size: 24px;
  }

  .objective-section-edusarc4 {
    padding: 24px 3%;
  }

  .image-content-edusarc4 img {
    max-height: 380px;
  }
}

@media (max-width: 445px) {
  .about-left-edusarc2 h2 {
    display: flex;
    justify-content: center;
  }
}

/* 🪞 Extra Small Devices (320px) */
@media (max-width: 360px) {
  .text-content-edusarc4 h2 {
    font-size: 20px;
  }

  .text-content-edusarc4 p {
    font-size: 24px;
  }

  .image-content-edusarc4 img {
    max-height: 340px;
  }
}

/* ////////////////5th page/////////////////////// */

.main-container-edusarc5 {
  margin: 0;
  color: #333;
  
  background-color: #ecf0f3;
}

.container-edusarc5 {
  max-width: 1000px;
  margin: 0 auto;
}

.section-edusarc5 {
  margin-bottom: 60px;
  margin-left: -20%;
}

.subtitle-edusarc5 {
  font-size: 45px;
  color: #888;
  line-height: 1.4;
  padding-top: 5%;
}

.title-edusarc5 {
  font-size: 70px;
  font-weight: 700;
  margin: 20px 0;
  color: #000;
}

.buttons-edusarc5 {
  display: flex;
  gap: 20px;
  margin-bottom: 100px;
  margin-top: 5%;
  flex-wrap: wrap;
}

.buttons-edusarc5 span {
  padding: 4px 28px;
  border-radius: 22px;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 30px;
  color: #888;
  cursor: pointer;
  transition: background 0.3s;
}

.buttons-edusarc5 span:hover {
  background-color: #f1f1f1;
}

.image-text-edusarc5 {
        margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.image-text-edusarc5 img {
  max-width: 1210px;
  height: auto;
}

/* Info Grid Section */
.info-grid-edusarc5 {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 5%;
  flex-wrap: wrap;
}

.info-box-edusarc5 h2 {
  border-bottom: 1px solid #aaa;
  padding: 10px 0;
  font-weight: 600;
  font-size: 35px;
  margin-bottom: 10px;
}

.para-edusarc1-edusarc5 {
  font-size: 25px;
  font-weight: 700;
}

.para-edusarc2-edusarc5 {
  font-size: 18px;
}

.para-edusarc3-edusarc5 {
  font-size: 14px;
}

/* Color Grid */
.color-grid-edusarc5 {
    margin-top: 57px;
  display: flex;
  /* flex-wrap: wrap; */
  gap: 20px;
  padding-bottom: 7%;
  justify-content: space-between;
  width: 1400px;
}

.color-box-edusarc5 {
  width: 325px;
  max-width: 100%;
  height: 224px;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: start;
  padding: 10px;
  border-radius: 4px;
  font-size: 19px;
}
.edusarc5-three-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            text-align: center;
            gap: 30px;
            max-width: 1200px;
            margin: auto;
        }

        .edusarc5-section {
            margin-left: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .edusarc5-section-title {
            position: relative;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .edusarc5-section-title::before,
        .edusarc5-section-title::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 80px;
            height: 1px;
            background-color: #aaa;
        }

        .edusarc5-section-title::before {
            right: 100%;
            margin-right: 15px;
        }

        .edusarc5-section-title::after {
            left: 100%;
            margin-left: 15px;
        }

        .edusarc5-section-content {
            font-size: 16px;
            color: #222;
            line-height: 1.6;
            max-width: 300px;
        }

        .edusarc5-section-content b {
            font-weight: 700;
        }

        /* Tablet (768px and down) */
        @media (max-width: 768px) {
            .edusarc5-three-columns {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .edusarc5-section-title::before,
            .edusarc5-section-title::after {
                width: 60px;
            }

            .edusarc5-section-title {
                font-size: 24px;
            }

            .edusarc5-section-content {
                font-size: 15px;
            }
        }

        /* Mobile (480px and down) */
        @media (max-width: 480px) {

            .edusarc5-section-title::before,
            .edusarc5-section-title::after {
                width: 40px;
            }

            .edusarc5-section-title {
                font-size: 22px;
            }

            .edusarc5-section-content {
                font-size: 14px;
            }
        }

/* /* ------------------ MEDIA  */
@media (max-width: 1500px) {
  .color-grid-edusarc5 {
    justify-content: center;
    gap: 20px;
    padding: 0 3%;
    flex-wrap: wrap;
    width: 100%;
  }

  .color-box-edusarc5 {
    flex: 0 0 calc(33.333% - 20px);
    height: 220px;
    font-size: 19px;
    padding: 18px;
    border-radius: 10px;
  }

  .section-edusarc5 {
    margin-left: 0;
    padding: 0 5%;
  }

  .title-edusarc5 {
    font-size: 60px;
  }

  .subtitle-edusarc5 {
    font-size: 38px;
  }

  .buttons-edusarc5 span {
    font-size: 26px;
  }

  .info-grid-edusarc5 {
    justify-content: center;
  }

  .info-box-edusarc5 h2 {
    font-size: 30px;
  }

  .para-edusarc1-edusarc5 {
    font-size: 22px;
  }

  .para-edusarc2-edusarc5 {
    font-size: 16px;
  }

  .para-edusarc3-edusarc5 {
    font-size: 14px;
  }

  .image-text-edusarc5 img {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  .color-box-edusarc5 {
    flex: 0 0 calc(50% - 20px);
    height: 210px;
    font-size: 18px;
    padding: 16px;
  }

  .title-edusarc5 {
    font-size: 54px;
  }

  .subtitle-edusarc5 {
    font-size: 36px;
  }

  .buttons-edusarc5 span {
    font-size: 24px;
  }

  .image-text-edusarc5 img {
    max-width: 95%;
  }
}

@media (max-width: 992px) {
  .color-box-edusarc5 {
    flex: 0 0 calc(50% - 20px);
    height: 200px;
    font-size: 17px;
    padding: 14px;
  }

  .color-grid-edusarc5 {
    gap: 16px;
    width: 100%;
  }

  .info-grid-edusarc5 {
    flex-direction: column;
    gap: 30px;
  }

  .image-text-edusarc5 {
    flex-direction: column;
  }

  .title-edusarc5 {
    font-size: 48px;
  }

  .subtitle-edusarc5 {
    font-size: 32px;
  }
    .edusarc5-section{
      margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .color-box-edusarc5 {
    flex: 0 0 55%;
    height: 220px;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
  }

  .color-grid-edusarc5 {
    gap: 14px;
  }

  .title-edusarc5 {
    font-size: 42px;
  }

  .subtitle-edusarc5 {
    font-size: 28px;
  }

  .buttons-edusarc5 span {
    font-size: 20px;
  }

  .info-box-edusarc5 h2 {
    font-size: 24px;
  }

  .para-edusarc1-edusarc5 {
    font-size: 18px;
  }

  .image-text-edusarc5 img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .color-box-edusarc5 {
    flex: 0 0 100%;
    height: 240px;
    font-size: 15px;
    padding: 10px;
    border-radius: 6px;
  }

  .color-grid-edusarc5 {
    gap: 12px;
    margin-left: -2%;
  }

  .title-edusarc5 {
    font-size: 34px;
  }

  .subtitle-edusarc5 {
    font-size: 22px;
  }

  .buttons-edusarc5 span {
    font-size: 18px;
    padding: 4px 16px;
  }

  .image-text-edusarc5 img {
    width: 100%;
    height: auto;
  }
  
}

/* ////////////////6th page//////////////////////////// */

.container-edusarc6 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  color: #333;
  background: #ffffff;
}

.text-section-edusarc6 {
  max-width: 700px;
  margin-left: 43%;
}

.text-section-edusarc6 h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.text-section-edusarc6 p {
  font-size: 21px;
  line-height: 1.4;
}

.image-section-edusarc6 {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.image-section-edusarc6 img {
  width: 100%;
  /* max-width: 1000px; */
  height: auto;
  margin-top: -10%;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .text-section-edusarc6 {
    margin-left: 25%;
  }
}
@media (max-width: 940px) {
  .section-edusarc5 {
    /*margin-left: 5%;*/
  }
}

@media (max-width: 768px) {
  .text-section-edusarc6 {
    margin-left: 0;
    text-align: center;
  }

  .text-section-edusarc6 h1 {
    font-size: 24px;
  }

  .text-section-edusarc6 p {
    font-size: 24px;
  }

  .image-section-edusarc6 img {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .container-edusarc6 {
    padding: 20px 10px;
  }

  .text-section-edusarc6 h1 {
    font-size: 34px;
  }

  .text-section-edusarc6 p {
    font-size: 24px;
  }

  .image-section-edusarc6 img {
    margin-top: -5%;
  }
}

/* /////////////7th page////////////// */

.welcome-edusarc7 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #fdf3f4;
}

.welcome-edusarc7 img {
  width: 100%;
  max-width: 1112px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ////////////////8th page //////////////////// */

.main-section-edusarc8 {
  padding: 40px 20px;
  color: #333;
  background-color: #ecf0f3;
}

.content-wrapper-edusarc8 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
}

.phone-right-edusarc8 img {
  width: 325px;
  max-width: 100%;
  height: 695px;
  margin-top: 650px;
}
.phone-left-edusarc8 img {
  width: 325px;
  max-width: 100%;
  height: 695px;

  margin-left: -22%;
  z-index: 5;
  position: relative;
  left: 75px;
}

.center-block-edusarc8 {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-box1-edusarc8 {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  margin-left: -1%;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.info-box2-edusarc8 {
  background-color: white;
  padding: 25px;

  border-radius: 10px;
  margin-left: 2%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.info-box1-edusarc8 h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #111;
  line-height: 2;
}
.info-box2-edusarc8 h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #111;
  line-height: 2;
}

.info-box1-edusarc8 p {
  font-size: 21px;
  line-height: 1.4;
}
.info-box2-edusarc8 p {
  font-size: 21px;
  line-height: 1.4;
}

.student-image-edusarc8 img {
  max-width: 1000px;
  margin-left: -28%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Extra Large Screens: 1444px and below */
@media (max-width: 1444px) {
  .phone-left-edusarc8 img {
    margin-left: -15%;
    left: 60px;
  }

  .phone-right-edusarc8 img {
    margin-top: 550px;
    width: 310px;
  }

  .student-image-edusarc8 img {
    width: 950px;
    margin-left: -20%;
  }
}

/* Large Screens: 1280px and below */
@media (max-width: 1280px) {
  .phone-left-edusarc8 img {
    margin-left: -10%;
    left: 40px;
    width: 270px;
  }

  .phone-right-edusarc8 img {
    margin-top: 500px;
    width: 280px;
  }

  .student-image-edusarc8 img {
    width: 90%;
    margin-left: -10%;
  }

  .info-box1-edusarc8 h2,
  .info-box2-edusarc8 h2 {
    font-size: 30px;
  }

  .info-box1-edusarc8 p,
  .info-box2-edusarc8 p {
    font-size: 22px;
  }
}

/* Medium Screens: 1024px and below */
@media (max-width: 1024px) {
  .content-wrapper-edusarc8 {
    flex-direction: column;
    align-items: center;
  }

  .phone-left-edusarc8 img,
  .phone-right-edusarc8 img {
    position: static;
    width: 240px;
    height: auto;
    margin: 20px 0;
  }

  .student-image-edusarc8 img {
    width: 95%;
    margin-left: 0;
  }

  .info-box1-edusarc8,
  .info-box2-edusarc8 {
    margin-left: 0;
    padding: 20px;
  }

  .info-box1-edusarc8 h2,
  .info-box2-edusarc8 h2 {
    /*font-size: 26px;*/
    font-size: 32px;
    font-weight: 700;
  }

  .info-box1-edusarc8 p,
  .info-box2-edusarc8 p {
    font-size: 24px;
  }
}

/* Small Screens: 768px and below */
@media (max-width: 768px) {
  .phone-left img,
  .phone-right img {
    width: 200px;
  }

  .info-box1 h2,
  .info-box2 h2 {
    font-size: 22px;
  }

  .info-box1 p,
  .info-box2 p {
    font-size: 18px;
  }
}

/* Extra Small Screens: 480px and below */
@media (max-width: 480px) {
  .phone-left-edusarc8 img,
  .phone-right-edusarc8 img {
    width: 160px;
  }

  .student-image-edusarc8 img {
    width: 100%;
  }

  .info-box1-edusarc8,
  .info-box2-edusarc8 -edusarc8 {
    padding: 15px;
  }

  .info-box1-edusarc8 h2,
  .info-box2-edusarc8 h2 {
    font-size: 22px;
  }

  .info-box1-edusarc8 p,
  .info-box2-edusarc8 p {
    font-size: 16px !important;
  }
}

/* /////////////////////////9th page ////////////////////////// */

.design_impact-edusarc9 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #e84b6a 0%, #2c2c91 100%);
  color: white;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 0px 66px;
}

.di_edusarc9 {
  flex: 1 1 400px;
  max-width: 600px;
}

.di_edusarc9 h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 26px;
}

.di_edusarc9 p {
  font-size: 26px;
  line-height: 1.5;
  color: #f5f5f5;
}
.di_img_edusarc9 {
  flex: 1 1 300px;
  max-width: 900px;
  width: 100%;
}

.di_img_edusarc9 img {
  width: 100%;
  aspect-ratio: 2100 / 2000;
  object-fit: cover;
  border-radius: 2rem;

  display: block;
}

@media (max-width: 854px) {
  .design_impact-edusarc9 {
    padding: 0px 38px;
  }
}


/*img {*/
/*    max-width: none !important;*/
/*}*/
