.header-container {
  min-height: 100vh !important;
  height: 100% !important;
  width: 100% !important;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 100%);
  overflow: hidden;
}

/* Center the orbit container on the page */
.orbit-container {
  position: relative;
  width: 100%;
  height: 100vh;
  /* height: 810px; */
  margin: 50px auto;
}

/* Outer and Inner Orbits */
.outer-orbit,
.inner-orbit,
.innermost-orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed #cacaca90;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Outer Orbit Styling */
.outer-orbit {
  width: 65vw;
  height: 65vw;
  transform-origin: center;
}

/* Inner Orbit Styling */
.inner-orbit {
  width: 40vw;
  height: 40vw;
  border: 2px dashed #cacaca70;
}

.innermost-orbit {
  width: 18vw;
  height: 18vw;
  border: 2px dashed #cacaca30;
}

/* Planets */
.planet {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 5.08px 25.4px 0px #3030301a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Planet Colors */
.planet-outer {
  background-color: #fff;
}

.planet-inner {
  width: 40px;
  height: 40px;
}

.planet-label {
  position: absolute;
  white-space: nowrap;
  border-radius: 4px;
  padding: 6px 12px;

  border: 1px solid #4ad7d1;

  top: 50%;
  transform: translateY(-50%);
  border-radius: 120px;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  /* background: #F7F9FE !important; */
  background: linear-gradient(90deg, #000000 21.5%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* display: none; */
}

.planet-hoverd span {
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #68c1d2 0%, #2bd2b6 99.99%);
  color: #ffffff;
  border: none;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(32.5vw) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(32.5vw) rotate(360deg);
  }
}

.planet-outer-1 {
  animation: orbit 60s linear infinite;
  animation-delay: 0s;
}

.planet-outer-2 {
  animation: orbit 60s linear infinite;
  animation-delay: -15s;
}

.planet-outer-3 {
  animation: orbit 60s linear infinite;
  animation-delay: -30s;
}

.planet-outer-4 {
  animation: orbit 60s linear infinite;
  animation-delay: -45s;
}

@keyframes orbit-inner {
  0% {
    transform: rotate(0deg) translateX(20vw) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(20vw) rotate(-360deg);
  }
}

.planet-inner-1 {
  animation: orbit-inner 60s linear infinite;
  animation-delay: 0s;
}

.planet-inner-2 {
  animation: orbit-inner 60s linear infinite;
  animation-delay: -15s;
}

.planet-inner-3 {
  animation: orbit-inner 60s linear infinite;
  animation-delay: -30s;
}

.planet-inner-4 {
  animation: orbit-inner 60s linear infinite;
  animation-delay: -45s;
}

/* Words */

.header-content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
}

.word {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  position: relative;
  color: #585858;
}
.no-credit-text {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #404654;
}
.tiny-information-text {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}

@keyframes changeColor {
  0%,
  16.7%,
  100% {
    color: #585858;
  }
  8.3% {
    color: #4ad7d1;
  }
}

/* First line words */
.text-line:first-child .word:nth-child(1) {
  animation: changeColor 26s infinite;
  animation-delay: 0s;
}

.text-line:first-child .word:nth-child(2) {
  animation: changeColor 26s infinite;
  animation-delay: 2s;
}

.text-line:first-child .word:nth-child(3) {
  animation: changeColor 26s infinite;
  animation-delay: 4s;
}

/* Second line words */
.text-line:nth-child(2) .word:nth-child(1) {
  animation: changeColor 26s infinite;
  animation-delay: 6s;
}

.text-line:nth-child(2) .word:nth-child(2) {
  animation: changeColor 26s infinite;
  animation-delay: 8s;
}

.text-line:nth-child(2) .word:nth-child(3) {
  animation: changeColor 26s infinite;
  animation-delay: 10s;
}

.header-text-caption {
  font-family: Poppins;
  font-size: 48px;
  font-weight: 500;
  line-height: 72px;
  text-align: center;
}

.header-action-cta {
  margin-top: 60px;
}

.book-a-demo {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 20px;
  color: #000;
  cursor: pointer;
}

/* Scroll animation */

.before-section,
.after-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tabs-section {
  height: 400vh;
  position: relative;
}

.sticky-container {
  height: 100vh;
  position: sticky;
  top: 80px;
  left: 0;
  right: 0;
  overflow: hidden;
  background: white;
}

.tabs,
.tabs-inner-conetent {
  display: flex;
  gap: 48px;
  justify-content: center;
  padding-bottom: 16px;
  position: relative;
}

.tab {
  cursor: pointer;
  font-weight: bold;
  position: relative;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  color: #222222;
}
.tab-indicator-line {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  background: #eaeaeacc;
  height: 3px;
  border-radius: 6px;
}
.tab-indicator {
  height: 3px;
  background: linear-gradient(90deg, #68c1d2 0%, #2bd2b6 99.99%);
  width: 0;
  border-radius: 6px;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.tab-content {
  position: absolute;
  width: 100%;
  visibility: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.content-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-box h3 {
  color: #333;
  margin-bottom: 10px;
}

.content-box p {
  color: #555;
  line-height: 1.5;
}

.eco-imgs {
  height: 248px;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

/* Companies slider */

.logo-container {
  padding: 20px 80px;
  position: relative;
  width: 100%;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  position: relative;
  will-change: transform;
  gap: 72px;
}
.logo-track img {
  max-width: 108px;
}

.logo-container::before,
.logo-container::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 200px;
  z-index: 2;
  pointer-events: none;
  top: 0;
}

.logo-container::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.logo-container::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.company-text {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #cacaca;
  text-transform: uppercase;
}

.ecosystem-margin {
  margin-top: 40px;
}

/* AWARD SECTIOn */
.about-press-container {
  padding: 0 80px;
}
.award-card {
  border-radius: 20px 0px 0px 0px;
  background: rgba(82, 76, 132, 0.05);
  border-radius: 20px;
  padding: 24px 0;
}
.award-card-text {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  color: #000000;
}

.award-card-main-heading {
  font-family: Poppins;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  color: #2bd2b6;
}

.award {
  width: 100%;
  height: 400px;
}
.zefyron-story {
  width: 100%;
  height: 183px;
}
.chats {
  width: 100%;
  height: 244px;
}
.media {
  width: 100%;
  height: 183px;
}
.iso {
  width: 100%;
  height: 400px;
}

.testimonials-container {
  background-color: (201, 240, 255, 0.2);
  padding: 0 80px;
}

/* TEAM */

.team-container {
  height: 100%;
  position: relative;
}

.text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: end;
}
.inner-text-box {
  padding: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  height: 75px;
  margin: 12px;
  width: 100%;
}
.text-name {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 1);
}
.text-role {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  color: rgba(88, 88, 88, 1);
}
.text-more {
  margin-top: 24px;
}
.team-points {
  padding-left: 10px;
}
.team-points li {
  font-family: Nunito;
  font-size: 10px;
  font-weight: 500;
  line-height: 13.64px;
  text-align: left;
  color: rgba(0, 0, 0, 1);
}

.text-container .inner-text-box .text-more {
  opacity: 0;
  transition: all 1s ease; /* Smoothly transition opacity */
}

.team-container:hover .text-container .inner-text-box {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 20px;
  border-radius: 9px;
}

.team-container:hover .text-container .inner-text-box .text-more {
  opacity: 1;
}

/* TESTIMONIALS */
.testimonial-main-section {
  padding: 80px 0;
  background: #f8fbff;
}
.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.testimonial-slide {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  padding: 40px;
  justify-content: center;
  margin: 0;
  border-radius: 8px;
  gap: 40px;
}

/* .company-info {
  flex: 1;
} */
.company-info img {
  width: 200px;
}
.company-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.testimonial-content {
  /* flex: 2; */
  padding-left: 40px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(90deg, #68c1d2 0%, #2bd2b6 99.99%);
  border-image-slice: 1;
}

.quote {
  font-family: Nunito;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.82px;
  text-align: left;
  color: rgba(0, 0, 0, 1);
}

.author-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: justified;
  margin: 0;
  color: rgba(0, 0, 0, 1);
}

.author-position {
  font-family: Nunito;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.82px;
  text-align: justified;
  margin: 0;
}

/* Custom arrows */
.slick-prev,
.slick-next {
  z-index: 1;
  transition: all 0.3s ease;
}
.slick-track {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

/* Hide dots */
.slick-dots {
  display: none !important;
}

.team-section {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 0 80px;
}
.press-sub-items :nth-child(2) {
  margin-top: 20px;
}

.zef-logo-design {
  width: 104.33px;
  height: 24px;
}

.iso_mobile,
.award_mobile {
  display: none;
}
.outer-orbit-icons {
  width: 32px;
  height: 32px;
}
.inner-orbit-icons {
  width: 22px;
  height: 22px;
}

.tab-container {
  display: none;
  position: relative;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.tab-header {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}

.tab-btn {
  text-align: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 100px;
  padding: 8px 10px;
}

.tab-btn span {
  display: none;
}

.tab-btn.active span {
  display: flex;
  text-wrap: nowrap;
}
.tab-btn.active-page span {
  display: flex;
  text-wrap: nowrap;
}

/* .tab-btn.active path {
  fill: #00BFD7 !important;
} */

.tab-btn.active {
  background-color: rgba(201, 240, 255, 0.3);
  color: #000;
}

.tab-btn.active-page {
  background-color: rgba(201, 240, 255, 0.3);
  color: #000;
}

.tab-container-content {
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease;
}

.tab-panel {
  position: absolute;
  top: 0;
  left: 100%; /* Start offscreen */
  width: 100%;
  opacity: 0;
  padding: 20px;
  box-sizing: border-box;
}
.tab-panel.active {
  position: relative; /* Active panel should be displayed properly */
  left: 0;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tab-panel.active img {
  height: auto !important;
}

.tab-panel-m {
  position: absolute;
  top: 0;
  left: 100%; /* Start offscreen */
  width: 100%;
  opacity: 0;
  padding: 20px;
  box-sizing: border-box;
}

.tab-panel-m.active-page {
  position: relative; /* Active panel should be displayed properly */
  left: 0;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tab-panel-m.active-page img {
  height: auto !important;
}

.tab-para {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
}
.ecosystem-header {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.ecosystem-text {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #585858;
}
.ecosystem-text-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 16px 20px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 100px;
}
.ecosystem-img-container {
  position: relative;
  border: 0.5px solid #4ad7d1;
  border-radius: 11px;
}
.header-section-container-new {
  height: 510px;
  padding: 0 140px;
  position: relative;
  padding-top: 100px;
  width: 100%;
  max-width: 1235px;
  margin: 0 auto;
}

#hidden-team {
  display: none;
  overflow: hidden;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.show-more-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  all: unset;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #000;
}
/* <= 1200px */

@media (min-width: 1800px) {
  #hidden-team {
    padding: 0 264px;
  }
}

@media (max-width: 1500px) {
  .eco-imgs {
    height: 180px;
    width: 100%;
    aspect-ratio: 16/9;
  }
  .content-wrapper {
    max-width: 1052px;
    margin: 0 auto;
    position: relative;
  }
  .ecosystem-margin {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .ecosystem-text-container {
    height: auto;
  }
  .testimonial-main-section{
    padding: 20px 0;
  }
  .testimonial-main-section .slick-next {
    right: 12px;
  }
  .testimonial-main-section .slick-prev {
    left: 0;
  }
  .header-section-container-new {
    padding: 0 20px;
    padding-top: 90px;
    height: 475px;
  }
  .header-text-caption {
    font-size: 20px;
    line-height: 32px;
  }
  .word {
    font-size: 12px;
    line-height: 24px;
  }
  .tab-container {
    display: block;
  }
  .tabs-section {
    height: 100%;
  }
  .team-section {
    flex-direction: column !important;
  }
  .book-a-demo {
    font-size: 12px !important;
  }

  .logo-container {
    padding: 20px 32px;
    position: relative;
    width: 100%;
  }
  .about-press-container {
    padding: 0 20px;
  }
  .press-sub-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    /* align-items: start; */
  }
  .press-sub-items :nth-child(2) {
    margin-top: 0 !important;
  }
  .zefyron-story {
    height: 124px;
  }
  .award-card-main-heading {
    font-size: 24px;
    line-height: 36px;
  }
  .award-card-text,
  .award-card-text {
    font-size: 10px;
    line-height: 15px;
  }
  .chats {
    height: 150px;
  }
  .zef-logo-design {
    width: 64px;
    height: 13.21px;
  }
  .media {
    height: 116px;
  }
  .iso_mobile,
  .award_mobile {
    display: flex;
    align-items: end;
    justify-content: end;
    height: 262px;
    width: 100%;
  }
  .award,
  .iso {
    display: none;
  }

  .outer-orbit {
    width: 100vw;
    height: 100vw;
    transform-origin: center;
  }

  /* Inner Orbit Styling */
  .inner-orbit {
    width: 80vw;
    height: 80vw;
    border: 2px dashed #cacaca70;
  }

  .innermost-orbit {
    width: 58vw;
    height: 58vw;
    border: 2px dashed #cacaca30;
  }

  @keyframes orbit {
    from {
      transform: rotate(0deg) translateX(50vw) rotate(0deg);
    }
    to {
      transform: rotate(-360deg) translateX(50vw) rotate(360deg);
    }
  }
  @keyframes orbit-inner {
    0% {
      transform: rotate(0deg) translateX(40vw) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(40vw) rotate(-360deg);
    }
  }
  .planet-label {
    font-size: 10px;
    line-height: 15px;
  }
  .outer-orbit-icons,
  .inner-orbit-icons {
    width: 12px;
    height: 12px;
  }
  /* .planet {
    width: 18px;
    height: 18px;
  } */
  .sticky-container {
    display: none;
  }

  .testimonial-slide {
    flex-direction: column;
  }
  .testimonial-content {
    border: none;
    padding-left: 0;
  }
  .slick-list.draggable {
    height: 100% !important;
  }
  .quote,
  .author-name {
    font-size: 14px;
  }
  .author-position {
    font-size: 12px;
  }
}
