html {
  width: 100vw;
  overflow-x: hidden;
}

.slidePhotoSection {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  background-color: var(--background-900, #1a202c); /* fallback for bg-background-900 */
  z-index: 20;
  position: relative;
}
.slidePhotoSection > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.slidePhotoSection::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.slideContentSection {
  position: relative;
  z-index: 3;
}

.swiper-slide a {
  color: #374151;
  transition: color 0.2s;
}
.swiper-slide a:hover {
  color: #3b82f6;
}

.circle1 {
  background-size: contain;
  background-clip: border-box;
  background-repeat: no-repeat;
  background-position: center center;
}

.show-number-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.show-number-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.show-number-section div {
  position: relative;
  z-index: 2;
}

.faqSection .faq-item {
  margin-bottom: 1rem;
}
.faqSection .toggleIcon {
  transition-property: transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.faqSection .active .toggleIcon {
  transform: rotate(45deg);
  transition-property: transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.faqSection .active .faq-content {
  display: block;
}

.success-story-swiper {
  margin-left: 10rem;
  margin-right: 10rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 20rem;
  width: auto;
  height: auto;
  background: #ecf1f4;
}
@media (min-width: 768px) {
  .success-story-swiper {
    max-width: 100%;
    width: 70rem;
    height: 23rem;
  }
}
.success-story-swiper .swiper-wrapper .swiper-slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #ecf1f4;
  align-items: center;
}
@media (min-width: 768px) {
  .success-story-swiper .swiper-wrapper .swiper-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.success-story-swiper .swiper-wrapper .swiper-slide .image-container {
  margin-bottom: 1rem;
}
.success-story-swiper .swiper-wrapper .swiper-slide .image-container img {
  width: 100%;
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content {
  position: relative;
  height: 100%;
  padding: 1.5rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  background: #ecf1f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content .quote-icon-top {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: var(--primary-800, #1e40af);
  font-size: 2.25rem;
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content .quote-icon-bottom {
  position: absolute;
  bottom: 4.8rem;
  left: 3rem;
  color: var(--primary-800, #1e40af);
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .success-story-swiper .swiper-wrapper .swiper-slide .slide-content .quote-icon-bottom {
    bottom: 4rem;
  }
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content .story-content {
  color: #1f2937;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .success-story-swiper .swiper-wrapper .swiper-slide .slide-content .story-content {
    width: 30rem;
  }
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content p {
  font-size: 1rem;
  margin-top: 2.5rem;
}

.home-main-wrapper {
  width: 100%;
  margin: 0 auto;
  background: transparent;
}

.aboutSection {
  background: #eef2f5;
}

.slider-root {
  width: 100%;
  height: calc(100dvh - 9rem);
  background-color: #4b5563; /* Tailwind bg-gray-600 */
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
}

.slider-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 30;
  transition: background 0.2s;
}

.slider-link:hover {
  background: rgba(75, 85, 99, 0.1); /* bg-gray-600/10 */
}

.slider-title {
  font-size: 2.25rem; /* text-4xl */
  font-weight: bold;
  color: #fff;
}

.slider-description {
  color: rgba(255, 255, 255, 0.85);
}

.slider-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.slider-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 40;
}

.slider-button-prev,
.slider-button-next {
  position: absolute;
  top: 50%;
  z-index: 50;
}

.slider-button-prev {
  right: -4rem; /* -right-16 */
}

.slider-button-next {
  left: -4rem; /* -left-16 */
}

.slidePhotoSection .my-swiper {
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1), 0 1.5px 8px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #e0e7ef 60%, #f5f7fa 100%);
  position: relative;
  overflow: visible;
}
.slidePhotoSection .my-swiper .swiper-wrapper {
  margin: 0 0;
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide {
  box-shadow: 0 4px 18px rgba(30, 64, 175, 0.08);
  background: rgba(255, 255, 255, 0.92);
  transition: box-shadow 0.22s, transform 0.22s;
  overflow: hidden;
  position: relative;
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(20, 30, 50, 0.48) 60%, rgba(30, 40, 60, 0.32) 100%);
  z-index: 2;
  pointer-events: none;
  transition: background 0.2s;
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide .slider-content {
  position: relative;
  z-index: 3;
  padding: 2.5rem 2rem 2rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 0.75rem;
  box-shadow: 0 1.5px 8px rgba(30, 64, 175, 0.06);
  margin-top: 1rem;
  max-width: 92%;
  color: #1e293b;
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide .slider-title {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide .slider-description {
  color: #334155;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}
.slidePhotoSection .my-swiper .slider-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.8);
  width: 18px;
  height: 6px;
  border-radius: 8px;
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}
.slidePhotoSection .my-swiper .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.479); /* Tailwind bg-primary-800 */
  transform: scale(1.2);
  transition: background 0.2s, transform 0.2s;
}

.my-swiper .my-slider-button-prev,
.my-swiper .my-slider-button-next {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.my-swiper .my-slider-button-prev {
  position: absolute;
  top: 50%;
  left: -3rem; /* Adjust as needed */
  transform: translateY(-50%);
  z-index: 50;
}
@media (max-width: 768px) {
  .my-swiper .my-slider-button-prev {
    left: -1.5rem; /* Adjust for smaller screens */
  }
}

.my-swiper .my-slider-button-next {
  position: absolute;
  top: 50%;
  right: -3rem; /* Adjust as needed */
  transform: translateY(-50%) rotate(180deg); /* Rotate the next button */
  z-index: 50;
}
@media (max-width: 768px) {
  .my-swiper .my-slider-button-next {
    right: -1.5rem; /* Adjust for smaller screens */
  }
}

.my-swiper .my-slider-button-prev::after,
.my-swiper .my-slider-button-next::after {
  display: none;
}

.my-swiper .my-slider-button-prev:hover,
.my-swiper .my-slider-button-next:hover {
  transition: transform 0.2s ease-in-out;
}

.my-swiper .my-slider-button-prev:hover {
  transform: translateY(-50%) scale(1.1); /* Scale the previous button */
}

.my-swiper .my-slider-button-next:hover {
  transform: translateY(-50%) rotate(180deg) scale(1.1); /* Rotate the next button */
}

.my-slider-button-prev svg,
.my-slider-button-next svg {
  display: block;
  width: 56px;
  height: 56px;
  stroke: #fff;
}

.slidePhotoSection .my-swiper {
  width: 100%;
  height: calc(100dvh - 9rem); /* Adjust height as needed */
  position: relative;
  overflow: hidden;
}
.slidePhotoSection .my-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #4b5563; /* Tailwind bg-gray-600 */
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide .slider-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide .slider-title {
  font-size: 1.5rem; /* Tailwind text-4xl */
  font-weight: bold;
  color: #fff;
  z-index: 2;
  position: relative;
}
@media (min-width: 640px) {
  .slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide .slider-title {
    font-size: 3rem; /* Tailwind text-5xl */
  }
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide .slider-description {
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
  position: relative;
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide .slider-link {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  padding: 0.85rem 2rem;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  transition: transform 0.18s;
  position: relative;
  z-index: 3;
}
.slidePhotoSection .my-swiper .swiper-wrapper .swiper-slide .slider-link:hover {
  transform: translateY(-2px) scale(1.04);
}

.swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  z-index: 60;
  transition: opacity 0.4s, transform 0.4s;
}

.swiper-pagination.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(30px);
}

.swiper-pagination-progress {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-pagination-bullet-active.swiper-pagination-progress {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
  transform: scale(1.18);
}

.swiper-pagination-bullet-active.swiper-pagination-progress.progress-animate::after {
  animation: bullet-progress var(--swiper-autoplay-delay, 9000ms) linear forwards;
}

.swiper-pagination-bullet-active.swiper-pagination-progress::after {
  animation: none;
}

.swiper-pagination-bullet-active.swiper-pagination-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #fff 0%, #fff 100%);
  border-radius: 50%;
  animation: bullet-progress var(--swiper-autoplay-delay, 9000ms) linear forwards;
  z-index: 2;
}

@keyframes bullet-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.swiper-pagination-progress:active {
  transform: scale(1.3);
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section {
  width: 100%;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: -moz-max-content;
  height: max-content;
}
@media (min-width: 768px) {
  .about-section {
    min-height: 24rem;
  }
}
.about-section .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .about-section .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    flex-direction: row;
    justify-content: space-between;
  }
}

.about-section-content {
  width: 20rem;
  margin: 0 auto;
  order: 2;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .about-section-content {
    order: 0;
    width: 28rem;
  }
}

.about-section h1 {
  font-size: 1.5rem;
  font-weight: bold;
}

.about-section p {
  text-align: start;
}

.about-section a.btn.btn-primary {
  width: -moz-fit-content;
  width: fit-content;
}
.about-section a.btn.btn-primary:hover {
  background-color: #60a5fa; /* Tailwind blue-400 */
  cursor: pointer;
}

.about-section-image {
  width: 100%;
  order: 1;
  font-size: 1.5rem;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .about-section-image {
    width: 36rem;
  }
}
@media (min-width: 768px) {
  .about-section-image {
    margin-top: 0;
  }
}

.about-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.circle1,
.circle2 {
  position: absolute;
  left: -3.5rem;
  bottom: -2.75rem;
  width: 10rem;
  height: 10rem;
  background-size: contain;
  background-clip: border-box;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 768px) {
  .circle1,
  .circle2 {
    width: 20rem;
    height: 20rem;
  }
}

.circle2.circle1-second {
  right: 2rem;
  top: -2.5rem;
}

.newsSection {
  position: relative;
}

.newsDivider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: -moz-fit-content;
  height: fit-content;
  transform: rotate(180deg);
}

.new-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7faff;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .new-section {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.new-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: url("../../img/Curve Line.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 0.4;
}

.new-section > .container,
.new-section > .w-full {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 72rem; /* max-w-6xl */
  margin-left: auto;
  margin-right: auto;
}

.new-section__title,
.new-section h2 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold;
  text-align: right;
  margin-bottom: 2rem;
}

.news-grid,
.new-section .grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .news-grid,
  .new-section .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 968px) {
  .news-grid,
  .new-section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.show-post {
  background-color: transparent;
  position: relative;
  z-index: 20;
  background: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0.5rem;
}

.show-post .m-3 {
  margin: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.img-container {
  display: block;
  width: 100%;
  height: 12rem;
  overflow: hidden;
}

.show-post img {
  width: 100%;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
  background: #e5e7eb; /* bg-gray-200 */
}

.show-post .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
}

.show-post h2 {
  font-size: 1.25rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}

.show-post .text-gray-500 {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.show-post .text-gray-700 {
  color: #374151;
  margin-bottom: 1rem;
  flex: 1 1 0%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.show-post .read-more-link,
.show-post a.inline-block {
  display: inline-block;
  margin-top: auto;
  margin-inline-start: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: #3b82f6;
  font-weight: bold;
  text-align: end;
  border-radius: 0.375rem;
  transition: color 0.2s;
  width: -moz-fit-content;
  width: fit-content;
}

.show-post .read-more-link:hover,
.show-post a.inline-block:hover {
  color: #60a5fa;
}

.news-more {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  grid-column: span 3;
}

.news-more a {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: #3b82f6;
  color: #fff;
  border-radius: 0.375rem;
  transition: background 0.2s;
}

.news-more a:hover {
  background: #60a5fa;
}

.news-empty {
  grid-column: span 3;
  text-align: center;
  color: #718096;
  font-size: 1.875rem;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  grid-column: span 3;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #3b82f6; /* bg-blue-500 */
  color: #fff; /* text-white */
  border-radius: 0.375rem; /* rounded-md */
  transition: background-color 0.2s ease-in-out;
}

.more-link:hover {
  background-color: #60a5fa; /* bg-blue-400 */
}

.event-section {
  width: 100vw;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}
.event-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../../img/Curve Line2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.4;
}

.event-section > .container,
.event-section > .w-full {
  width: 100%;
  max-width: 72rem; /* max-w-6xl */
  margin-left: auto;
  margin-right: auto;
}

.event-section__title,
.event-section h2 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.event-grid,
.event-section .flex,
.event-section .grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 640px) {
  .event-grid,
  .event-section .grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .event-grid,
  .event-section .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.show-post {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0.5rem;
}

.show-post .m-3 {
  margin: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.post-image {
  position: relative;
}

.post-image .absolute {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #3b82f6;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  z-index: 10;
}

.show-post img {
  width: 100%;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
  background: #e5e7eb;
}

.post-content .show-post__title {
  text-align: start;
}

.post-content,
.show-post .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
}

.show-post h2 {
  font-size: 1.25rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}

.show-post .text-gray-500 {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.show-post .text-gray-700 {
  color: #374151;
  margin-bottom: 1rem;
  flex: 1 1 0%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.show-post .read-more-link,
.show-post a.inline-block {
  display: inline-block;
  margin-top: auto;
  margin-inline-start: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: #3b82f6;
  font-weight: bold;
  text-align: end;
  border-radius: 0.375rem;
  transition: color 0.2s;
  width: -moz-fit-content;
  width: fit-content;
}

.show-post .read-more-link:hover,
.show-post a.inline-block:hover {
  color: #60a5fa;
}

.event-more {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  grid-column: span 3;
}

.event-more a {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: #3b82f6;
  color: #fff;
  border-radius: 0.375rem;
  transition: background 0.2s;
}

.event-more a:hover {
  background: #60a5fa;
}

.event-empty {
  grid-column: span 3;
  text-align: center;
  color: #94a3b8;
}

.show-number-section {
  background-color: #eef2f5;
  background-size: cover;
  background-position: center;
}

.show-number-section .container {
  width: 100%;
  max-width: 100vw;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  justify-content: space-between;
}

.numbers-grid {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 90rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .numbers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.number-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

.number-card .mb-2 {
  margin-bottom: 0.5rem;
}

.number-card img {
  height: 4rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.number-card h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.number-card .Number {
  font-size: 2rem;
  font-weight: bold;
  color: #374151;
}

.success-stories-section {
  background: #ecf1f4;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: -moz-fit-content;
  min-height: fit-content;
}

@media (min-width: 768px) {
  .success-stories-section {
    flex-direction: row;
    min-height: unset;
    height: 50rem;
  }
}
.faqSection {
  width: 100%;
  flex-grow: 1;
  overflow-y: hidden;
  min-height: 15rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

@media (min-width: 768px) {
  .faqSection {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
  }
}
.faqSection h1 {
  font-size: 1.5rem;
  font-weight: bold;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.faqSection .faq-list,
.faqSection .flex {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.faq-item {
  display: flex;
  flex-direction: column;
  width: 20rem;
  border-bottom: 2px solid #d1d5db;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  cursor: pointer;
}

@media (min-width: 640px) {
  .faq-item {
    width: 24rem;
  }
}
@media (min-width: 868px) {
  .faq-item {
    width: 26rem;
  }
}
@media (min-width: 1024px) {
  .faq-item {
    width: 32rem;
  }
}
.faq-title {
  display: flex;
  width: 100%;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}

.faq-title .text-xl {
  font-size: 1.25rem;
}

.toggleIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #e5e7eb;
  transition: background-color 0.2s;
}

.toggleIcon:hover {
  background: #d1d5db;
}

.faq-content {
  height: 0;
  margin-top: 0.75rem;
  overflow: hidden;
}

.photo {
  flex-grow: 1;
  width: 100%;
}

.photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq-empty,
.col-span-3 {
  text-align: center;
  color: #94a3b8;
}

.partnership-section {
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  background: #fff;
}

.partnership-section .relative {
  position: relative;
}

.partnership-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.partnership-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0 4rem;
  /* animate-partners-scroll: add keyframes in main css if needed */
}
@media (min-width: 640px) {
  .partnership-logos {
    margin: 0 10rem;
  }
}

.logo img {
  height: 5rem;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.logo img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.circle1 {
  background-size: contain;
  background-clip: border-box;
  background-repeat: no-repeat;
  background-position: center center;
}

.show-number-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.show-number-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.show-number-section div {
  position: relative;
  z-index: 2;
}

.faqSection .faq-item {
  margin-bottom: 1rem;
}
.faqSection .toggleIcon {
  transition: transform 0.3s ease-in-out;
}
.faqSection .active .toggleIcon {
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out;
}
.faqSection .active .faq-content {
  display: block;
}

.success-story-swiper {
  margin-left: 10rem;
  margin-right: 10rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 20rem;
  background-color: #ecf1f4;
  height: -moz-fit-content;
  height: fit-content;
  /* Responsive styles for md screens */
}
@media (min-width: 768px) {
  .success-story-swiper {
    max-width: 100%;
    width: 70rem;
    height: 23rem;
  }
}
.success-story-swiper .swiper-wrapper .swiper-slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background-color: #ecf1f4;
  align-items: center;
}
@media (min-width: 768px) {
  .success-story-swiper .swiper-wrapper .swiper-slide {
    grid-template-columns: 1fr 1fr;
  }
}
.success-story-swiper .swiper-wrapper .swiper-slide .slider-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content {
  position: relative;
  height: 100%;
  padding: 1rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #ecf1f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content .quote-icon-top {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: #1e293b;
  font-size: 2.25rem;
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content .quote-icon-bottom {
  position: absolute;
  bottom: 4.8rem;
  left: 3rem;
  color: #1e293b;
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .success-story-swiper .swiper-wrapper .swiper-slide .slide-content .quote-icon-bottom {
    bottom: 4rem;
  }
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content .story-content {
  color: #1f2937;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .success-story-swiper .swiper-wrapper .swiper-slide .slide-content .story-content {
    width: 30rem;
  }
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.success-story-swiper .swiper-wrapper .swiper-slide .slide-content p {
  font-size: 1rem;
  margin-top: 2.5rem;
}/*# sourceMappingURL=home.css.map */