.manage-account-wrapper:not(.manage-account-inner-wrapper) {
  padding: 85px 40px 0;
  font-family: 'Roboto', sans-serif;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
    background-image: url("/icons/Manage-account-container.png");
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
}

/* Background Splash */
/* .manage-account-wrapper:not(.manage-account-inner-wrapper)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, #f24b26 0%, #ff8c00 100%);
  background-clip: padding-box;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  z-index: 0;
  opacity: 0.95;
} */

.manage-account-outer-nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  /* margin-bottom: 50px; */
  gap: 80px;
}

.manage-account-heading {
  max-width: 52.5%;
  margin-left: auto;
  padding-left: 80px;
  color: #444;
  width: 65%;
  text-align: left;
}

.manage-account-heading-orange {
  color: #f04c23;
}

.manage-account-empty-div {
  flex: 1;
}

.manage-account-outer-nav-container {
  flex: 1;
}

.manage-account-outer-nav ul {
     list-style: none;
    gap: 0;
    border: 1px solid #ddd;
    background: #e3e3e3;
    border-radius: 20px;
    box-shadow: inset 0 0 7px 0 rgba(0, 0, 0, .2);
    display: inline-flex;
    margin: 22px 0;
    min-width: 260px;
}

.manage-account-outer-nav li {
     text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    color: #828282;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .65px;
    list-style: none;
    padding: 10px 30px;
    text-align: center;
    white-space: nowrap;
    width: 45%;
    box-sizing: border-box;
    border-bottom: 1px solid transparent;
    line-height: 16px;
}

.manage-account-outer-nav li.active {
  background-color: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, .3);
    color: #f04c23;
    width: 55%;
}

.manage-account-outer-panel {
  display: none;
  position: relative;
  z-index: 1;
}

.manage-account-outer-panel.active {
  display: block;
}

.manage-account-inner-content {
  display: flex;
  align-items: center;
}

/* Desktop View */
.manage-account-desktop-view {
  display: flex;
  width: 100%;
  gap: 100px;
  align-items: flex-start;
}

.manage-account-visual-side {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  height:413px;
  transform: scale(1.3) translate(-13rem, 4rem);
}

@media (min-width: 900px) and (max-width: 1199px) {
  .manage-account-visual-side {
    transform: scale(1.05) translate(-3rem, 2rem);
  }
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .manage-account-visual-side {
    transform: scale(1.15) translate(-7rem, 3rem);
  }
}

.manage-account-visual-item {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  top:-158px;
}

.manage-account-visual-item.active {
  opacity: 1;
  transform: translateY(0);
}

.manage-account-visual-item img {
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.manage-account-list-side {
  flex: 1;
}

.manage-account-list-side ul {
  list-style: none;
  padding: 7px 0 0;
  margin: 0;
}

.manage-account-inner-item {
line-height: 20px;
  cursor: pointer;
  border-left: 1.5px solid #b1b1b1;
  color: #b1b1b1;
  color: #c4c4c4;
  font-size: 18px;
  font-weight: 400;
  margin: 1rem 0 2rem;
  padding: .2rem 1rem;
}

.manage-account-inner-item .text {
  font-size: 18px;
  font-weight: 400;
  color: #bbb;
  transition: color 0.3s ease;
}

.manage-account-inner-item.active {
  border-left-color: #333;
  /* Grey colored indicator */
}

.manage-account-inner-item.active .text {
  color: #1a1a1a;
  font-weight: 500;
}

/* Mobile View - Swiper */
.manage-account-mobile-view {
  display: none;
  /* Desktop default */
}

@media (max-width: 899px) {
  .manage-account-wrapper:not(.manage-account-inner-wrapper)::before {
    display: none;
    /* Hide background splash on mobile for clarity */
  }

  .manage-account-heading {
                max-width: 100%;
        color: #fff;
        width: 100%;
        padding: 0;
        margin: 0 auto;
        text-align: center;
  }
.manage-account-heading-orange{
  color: #fff;
}
  .manage-account-desktop-view {
    display: none;
  }

  .manage-account-mobile-view {
    display: block;
    width: 100%;
  }

  .manage-account-wrapper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
  }

  .mobile-slide-visual {
    margin-bottom: 0px;
  }

  .mobile-slide-visual img {
    max-width: 250px;
    height: auto;
  }

  .mobile-slide-content {
    text-align: center;
    padding: 0 20px;
    color: #333;
  }

  .mobile-slide-content h3 {
    font-size: 16px;
        margin-bottom: 10px;
        color: #333;
        line-height: 32px;
        font-weight: 500;
        padding-bottom: 20px;
  }

  .mobile-slide-content p {
    display: none;
  }

  .swiper-pagination-bullet-active {
    background: #f24b26;
    height: 10px;
    width: 10px;
  }

  .manage-account-empty-div {
    display: none;
  }
  .manage-account-wrapper:not(.manage-account-inner-wrapper) {
  background-image: url("/icons/homepagecarosel.png");
  padding: 40px 40px 20px;
}

  .manage-account-outer-nav li {
    padding: 10px 35px;
  }

  .manage-account-outer-nav-container {
    display: flex;
    justify-content: center;
  }
}