.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to bottom, #ffffff 55%, #fad2be); 
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecosystem-image{
  width: 100%;
  margin-top:120px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.ecosystem-content{
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -25%);
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
	    display: flex;
    flex-flow: column;
}
.ecosystem-title {
  color: #023264;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  margin-block: 15px;
}
.ecosystem-title-span {
  color: #F6661F;
}
.ecosystem-description {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #4a4a4a;
  font-family: Urbanist, sans-serif;
}
.sb-btn {
  display: block;
  background: #023264;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  margin: 30px auto 0;
  font-size: 15px;
  border: 1px solid transparent;
  font-weight: 600;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.sb-btn span {
  position: relative;
  z-index: 1;
}

/* ripple circle - starts at center */
.sb-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: #F6661F;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.4s cubic-bezier(0, 0, 0.2, 1), 
              height 0.4s cubic-bezier(0, 0, 0.2, 1), 
              opacity 0.3s ease 0.1s;
  z-index: 0;
  pointer-events: none;
}

/* hover expand - ripple fills from center outward */
.sb-btn:hover::after {
  width: 20em;
  height: 20em;
  opacity: 1;
  transition: width 0.4s cubic-bezier(0, 0, 0.2, 1), 
              height 0.4s cubic-bezier(0, 0, 0.2, 1), 
              opacity 0.3s ease;
}

.sb-btn:hover {
  color: #fff !important;
  border-color: #F6661F;
}

/* click shrink animation */
.sb-btn:active {
  transform: scale(0.97);
}

.hero-dashboard-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 1400px;
}
.hero-dashboard {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.overview-image {
  width: 100%;
  height: auto; 
}
.overview-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 2;
}
.card-gsap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0px auto 0;
  border: 2px solid #F6661F;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  color: #023264;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.card-content-gsap{
  text-align: start;
  padding: 15px;
  flex: 1;
}
.card-content-gsap .ecosystem-title {
  text-align: start;
  font-size: 40px;
  margin-block: 10px 15px;
}
.card-content-gsap .ecosystem-description {
  text-align: start;
  margin-bottom: 15px;
}
.card-content-gsap .sb-btn {
  margin: 20px 0 0 0;
}
.card-image-wrapper-gsap{
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.card-image-gsap {
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: contain;
}

/* Responsive styles for card */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .card-content-gsap .ecosystem-title {
    font-size: 32px;
  }
  .card-image-wrapper-gsap {
    padding: 10px;
  }
  .card-image-gsap {
    max-width: 100%;
  }
}
.overview-section-wrapper {
  position: relative;
  height: 80vh;     
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.overview-section-content {
  position: relative;
  z-index: 2;
}

.icon-orbit-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.orbit {
  position: relative;
  width: 600px;
  height: 600px;
}

.icon-wrapper {
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper img {
  width: 130px;
  height: 130px;
}

@media (max-width: 768px) {
  .orbit {
    width: 400px;
    height: 400px;
  }

  .icon-wrapper {
    width: 75px;
    height: 75px;
  }

  .icon-wrapper img {
    width: 80px;
    height: 80px;
  }
}

.card-gsap {
  position: absolute;  /* Remove from layout */
  bottom: 0;           /* Place off-screen initially */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  min-width: 1000px;
}
