/* wsua.css — Full-width 2D Design with Big Text */

.wsua-section {
  background: linear-gradient(180deg, #f1efec 0%, #ffffff 100%);
  color: #123458;
  padding: 100px 20px;
}

.wsua-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: #123458;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.wsua-subheading {
  color: #6c757d;
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto 60px;
}

/* Wrapper fills most of container width */
.wsua-carousel-wrapper {
  position: relative;
  max-width: 95%;
  margin: 0 auto;
  overflow: hidden;
}

/* 2D Card fills wide space */
.wsua-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 3px solid #e6e6e6;
  border-radius: 30px;
  padding: 70px 60px;
  box-shadow: 0 10px 0 #d4c9be;
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s ease;
  pointer-events: none;
}

.wsua-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
}

.wsua-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -70px;
}

.wsua-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Title Text */
.wsua-card h4 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #123458;
}

/* Description Text */
.wsua-card p {
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Sub-description */
.wsua-card small {
  color: #a49d94;
  display: block;
  font-style: italic;
  font-size: 1.2rem;
}

/* Dots Navigation */
.wsua-dots {
  margin-top: 45px;
}

.wsua-dots .dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 10px;
  border-radius: 50%;
  background-color: #d4c9be;
  border: 2px solid #123458;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wsua-dots .dot.active {
  background-color: #123458;
  transform: scale(1.4);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .wsua-heading {
    font-size: 2.8rem;
  }

  .wsua-card {
    padding: 50px 35px;
  }

  .wsua-card h4 {
    font-size: 2rem;
  }

  .wsua-card p {
    font-size: 1.2rem;
  }

  .wsua-icon {
    width: 90px;
    height: 90px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .wsua-card {
    padding: 40px 25px;
  }

  .wsua-card h4 {
    font-size: 1.8rem;
  }

  .wsua-card p {
    font-size: 1.1rem;
  }

  .wsua-icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
}
