header, .navbar, .elementor-nav-menu--main {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 9999;
}



.asis-tab-section {
  display: flex;
  align-items: center;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  padding: 40px;
  font-family: 'Inter', sans-serif;
}

.left-column {
  flex: 1;
  position: relative;
}

/* The full vertical line beside all tabs */
.tab-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #2e2e40;
}

/* Container for all tab items */
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px; /* space between line and tab content */
}

.tab-item {
  position: relative;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: transparent;
}

/* Thin left line that highlights only the active tab */
.tab-item.active::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #17FF21;
}

.tab-item h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

.tab-item p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: #aaa;
}

/* Active tab styles */
.tab-item.active {
  background-color: #074946;
  color: #00ffe4;
}

.tab-item.active h3 {
  color: #17FF21;
}

.tab-item.active p {
  color: #ffffff;
}

.right-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-content {
  display: none;
  animation: fadeSlide 0.4s ease;
}

.tab-content.active {
  display: block;
}

.tab-content img {
  max-width: 100%;
  width: 400px;
  border-radius: 12px;
}





.loading-ring-wrapper {
  position: relative;
  width: 290px; /* Image + 2x ring thickness */
  height: 290px;
  display: inline-block;
}

.loading-ring-wrapper img {
  width: 250px;
  height: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 50%;
}

.loading-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: conic-gradient(white 0deg, #00ff00 360deg);
  z-index: 1;
  animation: rotateRing 2s linear 1;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}







@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Responsive layout for screens below 768px */
@media screen and (max-width: 768px) {
  .asis-tab-section {
    flex-direction: column;
    padding: 20px;
  }

  .left-column,
  .right-column {
    width: 100%;
  }

  .tab-list {
    flex-direction: column;
    gap: 16px;
    padding-left: 16px;
    margin-bottom: 20px;
  }

  .tab-item {
    padding: 14px 16px;
  }

  .tab-item.active::before {
    left: -16px;
  }

  .tab-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}