.carousel-container {
  max-width: 980px;
  width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column; /* Change to column layout */
  align-items: center; /* Center horizontally */
}

.carousel {
  position: relative;
  width: 100%;
  padding-top: calc(570 / 980 * 100%);
  overflow: hidden;
}

.carousel-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-h2 {
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%; /* Take full width of container */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .carousel-container {
    width: 90%;
    margin-bottom: 0px; /* Adjust the margin-bottom as needed */
  }

  .left-arrow,
  .right-arrow {
    width: 100px;
  }

  .carousel-h2 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .document-center {
    padding: 0; /* Add padding for smaller screens */
    height: 200px;
  }
}

/* .telecom-section {
  margin-top: 20px;
} */

.telecom-title {
  font-size: 24px;
}

.telecom-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.telecom-row {
  display: flex;
  flex-wrap: wrap;
}

.telecom-column-text {
  flex: 0 0 50%;
  max-width: 50%;
}

.telecom-column-image {
  flex: 0 0 50%;
  max-width: 50%;
}

.telecom-text {
  margin-top: 30px;
}

.telecom-image {
  max-width: 100%;
  height: 400px;
  margin-left: 90px;
}

@media screen and (max-width: 768px) {
  .telecom-column-text,
  .telecom-column-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
