/* Impact Snapshot Section Styles */
.impact-snapshot {
  width: 100vw;
  max-width: 100vw;
  background: #fff;
  padding: 64px 0 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.impact-snapshot__title {
  font-family: 'Poppins', Arial, sans-serif;
  width: 609px; /* Adjusted width for better fit */
  height: 83px;
  font-weight: 600;
  top: 905px;
  left: 415px;
  font-size: 60px;
  color: #274472;
  line-height: 1;
  text-align: center;
  margin: 0 0 0px 0;
}
.impact-snapshot__subtitle {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 64px 0; /* Increased margin-bottom for more gap */
  max-width: 874px;
}
.impact-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  width: 900px;
  max-width: 95vw;
}
.impact-snapshot__card {
  background: #FFFFFFC7;
  border-radius: 5px;
  box-shadow: 0px 0px 20px 5px #00000040;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 8px;
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  height: auto;
  min-height: 0;
  max-height: none;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}
.impact-snapshot__card:hover {
  box-shadow: 0px 0px 32px 8px #27447233;
}
.impact-snapshot__icon {
  width: 110px;
  height: 79px;
  margin-bottom: 10px;
  object-fit: contain;
  display: block;
}
.impact-snapshot__number {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 40px;
  top:1271px;
  
  color: #274472;
  margin-bottom: 8px;
  text-align: center;
  width: 142px;
  height: 69px;
  line-height: 69px;
  vertical-align: middle;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.impact-snapshot__desc {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 25px; /* Slightly reduced for better fit */
  color: #222;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto;
  width: 100%;
  min-height: 53px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  white-space: normal !important; /* Allow wrapping */
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  text-overflow: clip !important;
  hyphens: auto;
}
@media (max-width: 1000px) {
  .impact-snapshot__grid {
    width: 98vw;
    gap: 24px 12px;
  }
  .impact-snapshot__card {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 12px 4px;
  }
  .impact-snapshot__icon {
    width: 64px;
    height: 60px;
  }
  .impact-snapshot__desc {
    font-size: 18px;
    width: 100%;
    height: auto;
    min-height: 48px;
    max-width: 100%;
  }
  .impact-snapshot__number {
    font-size: 28px;
  }
  .impact-snapshot__title {
    font-size: 36px;
  }
  .impact-snapshot__subtitle {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .impact-snapshot__grid {
    grid-template-columns: 1fr !important;
    width: 96vw;
    max-width: 96vw;
    margin: 0 auto;
    gap: 18px 0;
    justify-items: center;
    padding: 0;
    box-sizing: border-box;
  }
  .impact-snapshot__card {
    width: 94vw;
    min-width: 0 !important;
    max-width: 94vw !important;
    margin: 0 auto;
    box-sizing: border-box;
    height: auto;
    min-height: 0 !important;
    max-height: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 12px 2vw;
  }
}
@media (max-width: 700px) {
  .impact-snapshot__grid {
    width: 98vw;
    max-width: 98vw;
    gap: 12px 0;
    padding: 0;
    justify-items: center;
  }
  .impact-snapshot__card {
    width: 96vw;
    min-width: 0 !important;
    max-width: 96vw !important;
    padding: 6px 1vw;
    margin: 0 auto;
  }
  .impact-snapshot__icon {
    width: 32px;
    height: 28px;
    margin-bottom: 4px;
  }
  .impact-snapshot__desc {
    font-size: 12px;
    width: 100%;
    min-height: 18px;
    max-width: 100%;
  }
  .impact-snapshot__number {
    font-size: 14px;
    width: auto;
    height: auto;
    line-height: 1.1;
  }
  .impact-snapshot__title {
    font-size: 30px;
    width: 90vw;
  }
  .impact-snapshot__subtitle {
    font-size: 24px;
    max-width: 95vw;
  }
}
@media (min-width: 1700px) {
  .impact-snapshot__title {
    font-size: 80px;
    width: 900px;
  }
  .impact-snapshot__subtitle {
    font-size: 40px;
    max-width: 1200px;
  }
  .impact-snapshot__grid {
    width: 1400px;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 64px;
  }
}
@media (max-width: 2000px) {
  .impact-snapshot__grid {
    width: 900px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
    justify-content: center;
  }
}
@media (min-width: 2001px) {
  .impact-snapshot__title {
    font-size: 90px;
    width: 1000px;
    margin-bottom: 20px;
  }
  .impact-snapshot__subtitle {
    font-size: 45px;
    max-width: 1400px;
  }
  .impact-snapshot__grid {
    width: 1600px;
    grid-template-columns: repeat(4, 1fr);
    gap: 72px 72px;
  }
  .impact-snapshot__card {
    width: 350px;
    height: 280px;
  }
  .impact-snapshot__number {
    font-size: 52px;
  }
  .impact-snapshot__desc {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 2400px) {
  .impact-snapshot__title {
    font-size: 100px;
    width: 1200px;
    margin-bottom: 30px;
  }
  .impact-snapshot__subtitle {
    font-size: 50px;
    max-width: 1600px;
  }
  .impact-snapshot__grid {
    width: 1900px;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 80px;
  }
  .impact-snapshot__card {
    width: 400px;
    height: 320px;
  }
  .impact-snapshot__number {
    font-size: 58px;
  }
  .impact-snapshot__desc {
    font-size: 20px;
    line-height: 26px;
  }
}

/* Extra Ultra Large screens 2800px+ */
@media (min-width: 2800px) {
  .impact-snapshot {
    padding: 100px 0;
  }
  .impact-snapshot__title {
    font-size: 120px;
    width: 1500px;
    margin-bottom: 40px;
  }
  .impact-snapshot__subtitle {
    font-size: 60px;
    max-width: 2000px;
    margin-bottom: 80px;
  }
  .impact-snapshot__grid {
    width: 2400px;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 100px;
  }
  .impact-snapshot__card {
    width: 500px;
    height: 400px;
    border-radius: 20px;
  }
  .impact-snapshot__number {
    font-size: 72px;
  }
  .impact-snapshot__desc {
    font-size: 26px;
    line-height: 34px;
  }
}
