.ttextshow {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.for-text-show:hover .ttextshow {
  display: block;
  animation: slideInFromBottom 0.5s ease forwards;
}

.for-text-show:hover {
  cursor: pointer;
}

.bluebg {
  background: #3F4FF2;
  padding: 0px 10px;
  color: white;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #3F4FF2;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0px;

  background-color: transparent;
  border-bottom: 1px solid#97979733;
  color: #0a0e0a;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.custom-card:hover {
  background-color: #0047ff;
  color: white;
  border-radius: 12px;
  padding: 10px 10px;

}

.card-content {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.card-title {
  font-size: 2rem;
  font-family: AcidGrotesk-Bold;
  font-size: 50px;
  margin-left: 50px;
}

.card-number {
  font-family: AcidGrotesk-Bold;
  font-size: 40px;
}

.custom-card:hover .card-content {
  transform: translateX(10px);
}

.card-icon {
  font-size: 1.5rem;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  right: 30px;
  font-family: AcidGrotesk-Norma;
  font-size: 50px;
}

.custom-card:hover .card-icon {
  opacity: 0;
  visibility: hidden;
}


.card-description {
  max-width: 600px;
  opacity: 0;
  font-family: AcidGrotesk-Bold;
  visibility: hidden;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform: translateX(20px);
  flex: 1;
  font-size: 18px;
}


.custom-card:hover .card-description {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*BTN CSS*/
.my-custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
  text-decoration: none;
  font-family: AcidGrotesk-Bold;
  font-size: 20px;
  padding-bottom: 5px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.my-custom-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.my-custom-btn .btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.my-custom-btn:hover {
  color: #000;
}

.my-custom-btn:hover::after {
  width: calc(100% - 22px);
}

.my-custom-btn:hover .btn-icon {
  transform: rotate(48deg);
}

/*//// Pricing table*/
.my-cstm-pricing-table-select-btn:hover {
  background: #3f4ff2 !important;
}

.my-cstm-pricing-table {
  font-family: 'AcidGrotesk-Bold', sans-serif;
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem;
  background: transparent;
}

.my-cstm-pricing-table-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.my-cstm-pricing-table-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.my-cstm-pricing-table-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.my-cstm-pricing-table-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.my-cstm-pricing-table-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked+.my-cstm-pricing-table-slider {
  background-color: #3f4ff2;
}

input:checked+.my-cstm-pricing-table-slider:before {
  transform: translateX(26px);
}

.my-cstm-pricing-table-round {
  border-radius: 34px;
}

.my-cstm-pricing-table-round:before {
  border-radius: 50%;
}

.my-cstm-pricing-table-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.my-cstm-pricing-table-card {
  background: transparent;
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 0px solid rgba(0, 0, 0, 0.1);
}

.my-cstm-pricing-table-card.my-cstm-pricing-table-featured {
  background: white;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: none;
}

.my-cstm-pricing-table-card:hover {
  transform: translateY(-5px);
}

.my-cstm-pricing-table-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.my-cstm-pricing-table-price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.my-cstm-pricing-table-price span {
  font-size: 1rem;
  font-weight: normal;
  color: #666;
}

.my-cstm-pricing-table-divider {
  height: 1px;
  background: #eee;
  margin: 1.5rem 0;
}

.my-cstm-pricing-table-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.my-cstm-pricing-table-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.my-cstm-pricing-table-feature-icon,
.my-cstm-pricing-table-list-icon {
  width: 16px;
  height: 16px;
}

.my-cstm-pricing-table-includes {
  margin: 1.5rem 0 2rem;
  flex-grow: 1;
}

.my-cstm-pricing-table-includes ul {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.my-cstm-pricing-table-includes li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.my-cstm-pricing-table-select-btn {
  width: 100%;
  padding: 0.75rem;
  background: white;
  color: black;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  font-family: 'AcidGrotesk-Bold', sans-serif;
  margin-top: 40px;
}

.my-cstm-pricing-table-select-btn.my-cstm-pricing-table-featured-btn {
  background: black;
  color: white;
  border-color: black;

}

.my-cstm-pricing-table-select-btn:hover {
  background: #f0f0f0;
}

.my-cstm-pricing-table-select-btn.my-cstm-pricing-table-featured-btn:hover {
  background: #333;
}

/* Hide yearly prices by default */
.my-cstm-pricing-table-yearly-price {
  display: none;
}

/* When toggle is checked, show yearly prices and hide monthly */
#my-cstm-pricing-table-toggle:checked~.my-cstm-pricing-table-cards .my-cstm-pricing-table-yearly-price {
  display: block;
}

#my-cstm-pricing-table-toggle:checked~.my-cstm-pricing-table-cards .my-cstm-pricing-table-monthly-price {
  display: none;
}

/*// End*/
#ffor-radd .elementor-motion-effects-container {
  border: 0px;
  border-radius: 25px;
}

/* Existing desktop styles remain the same */
/* .process-container {
  display: flex;
  gap: 20px;
}

.process {
  width: 268px;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #333;
  height: 500px;
  transition: all 0.4s ease-in-out;
  color: #555;
}
 */

@media only screen and (min-width: 600px) {
  .swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
    top: 115% !important;
    width: 207% !important;
    left: -46%;
  }
}

@media (max-width: 768px) {
/*   .process-container {
    flex-direction: column;
    align-items: center;
  }

  .process {
    width: 380px;
    height: auto;
    min-height: 150px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.4s ease-in-out;
  }

  .process h2 {
    margin-bottom: 20px;
  }

  .process.active,
  .process:hover {
    width: 380px;
    height: auto;
  }
 */
  .sss-item {
    padding: 12px 20px !important;
    font-size: 18px !important;

    border-radius: 15px !important;

  }

  .sss-container {
    display: flex;
    min-height: 60vh !important;
    padding: 0 10px !important;
    gap: 10px !important;
  }

  .sss-left-column {
    width: 90px !important;
  }

  .sss-save-text {
    font-size: 27px !important;
    color: #fff;

  }
}



/*/////Header-btn*/
span.my-custom-btn2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
  text-decoration: none;
  font-family: AcidGrotesk-Bold;
  font-size: 20px;
  padding-bottom: 5px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: capitalize;
}


span.my-custom-btn2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

span.my-custom-btn2 .btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

span.my-custom-btn2:hover {
  color: #000;
}

span.my-custom-btn2:hover::after {
  width: calc(100% - 22px);
}

span.my-custom-btn2:hover .btn-icon {
  transform: rotate(48deg);
}

/* 	///////We ARE */

#ssecc .elementor-widget-container {
  justify-content: center;
  display: flex;
}

.sss-container {
  display: flex;
  min-height: 60vh;
  padding: 0 50px;
  gap: 10px;
}

.sss-left-column {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding-top: 10vh;
}

.sss-save-text {
  font-size: 60px;
  color: #ffff;
  position: sticky;
  font-family: AcidGrotesk-Bold;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
}

.sss-content {
  flex-grow: 1;
  padding: 10vh 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sss-item {
  padding: 20px 30px;
  font-size: 32px;
  font-weight: bold;
  border-radius: 50px;
  width: fit-content;
  transition: all 0.3s ease;
  font-family: AcidGrotesk-Bold;

}

/* Default colors */
.sss-item:nth-child(1) {
  background: #FFD700;
  color: #000;
}

.sss-item:nth-child(2) {
  background: #FF6347;
  color: #000;
}

.sss-item:nth-child(3) {
  background: #9370DB;
  color: #000;
}

.sss-item:nth-child(4) {
  background: #20B2AA;
  color: #000;
}

.sss-item:nth-child(5) {
  background: #FF69B4;
  color: #000;
}

.sss-item:nth-child(6) {
  background: #32CD32;
  color: #000;
}

.sss-item:nth-child(7) {
  background: #FF8C00;
  color: #000;
}

/* Highlight state */
.sss-item.sss-highlight {
  background: #fff !important;
  color: #000 !important;
}

div#wp-chatbot-ball img {
  opacity: 0;
}

div#wp-chatbot-ball .wp-chatbot-ball {
  background-image: url(https://gouplyft.com/wp-content/uploads/2025/04/Logomark-white.svg) !important;
  background-size: 44px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}