.about-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 50px;
    }
    .about-content p{
        font-family: 'shabnam';
    }
    .carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 80vh;
}

.slider-viewport {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 9;
  transition: opacity 0.8s ease-in-out;
}

.slide:first-child {
  opacity: 1;
  z-index: 11;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.slider-controls a {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 10px;
  margin: 0 15px;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.slider-controls a:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.slider-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.slider-page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-page.active {
  background-color: rgba(255, 255, 255, 0.9);
}
    .about-content h2 {
      font-size: 2.2rem;
      color: var(--color1);
      margin-bottom: 20px;
    }
    .about-content p {
      line-height: 2;
      font-size: 1.1rem;
      margin-bottom: 16px;
      text-align: justify;
    }
    .about-content .highlight {
      font-weight: bold;
      color: var(--color1);
      margin-top: 30px;
      text-align: center;
      font-size: 1.2rem;
    }
    @media (max-width: 768px) {
      .about-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
      }
    }