#topbanner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.carousel-slide.active {
  display: block;
}

.carousel-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  pointer-events: auto;
  padding: 0 20px;
  border-radius: 5px;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-indicators .indicator {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  transition: background 0.2s, border 0.2s;
}

.carousel-indicators .indicator.active {
  background: #3273dc;
  border: 2px solid #3273dc;
}
/*--------------------------------------------------------------------------------------------------------*/
/* Navigation Menu */
.iti-navbar {
  background: white;
  border-bottom: 3px solid var(--iti-purple);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.iti-navbar .navbar-menu {
  justify-content: center;
}

.iti-navbar .navbar-item {
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 1.2rem 1.5rem;
  transition: all 0.3s;
  position: relative;
  border-left: 1px solid #e0e0e0;
}

.iti-navbar .navbar-item:last-child {
  border-right: 1px solid #e0e0e0;
}

.iti-navbar .navbar-item:hover,
.iti-navbar .navbar-item.is-active {
  color: var(--iti-purple);
  background: transparent;
}

.iti-navbar .navbar-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--iti-purple);
  transition: width 0.3s;
}

.iti-navbar .navbar-item:hover::after,
.iti-navbar .navbar-item.is-active::after {
  width: 100%;
}
/*--------------------------------------------------------------------------------------------------------*/
.is-borderlessbottom {
  border-bottom-width: 0px !important;
}
.is-borderlesstop {
  border-top-width: 0px !important;
}

/*--------------------------------------------------------------------------------------------------------*/
.is-bordered {
  border: 1px solid black !important;
}
.is-borderedvertical {
  border-left: 1px solid black !important;
  border-right: 1px solid black !important;
}
.is-borderedtop {
  border-top: 1px solid black !important;
}
.is-borderedbottom {
  border-bottom: 1px solid black !important;
}
.is-borderedleft {
  border-left: 1px solid black !important;
}
.is-borderedright {
  border-right: 1px solid black !important;
}

.is-borderedbottomdash {
  border-bottom: 1px dashed black !important;
}

/*--------------------------------------------------------------------------------------------------------*/
.error-container {
  text-align: center;
  padding: 2rem 3rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.error-code {
  font-size: 6rem;
  font-weight: bold;
  color: #ff3860;
}

.error-message {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
/*--------------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------------------------------*/
.wrap-text {
  white-space: normal !important;
}
.heightmenucontent {
  height: 270px !important;
}
.heightlastcontent {
  height: 550px !important;
}
.is-scrollbarcontent {
  height: 500px;
  overflow: auto !important;
}
