.main-banner {
  position: relative;
  margin: 76px auto 0 auto;
  padding-top: 312px;
}
.main-banner::before {
  content: url("../new-website/new-img/bower-case-study/bower-edge.svg");
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 240px;
  animation: bannerDrop 1.2s ease forwards;
  animation-delay: 0.1s; /* delay after page load */
}

@keyframes bannerDrop {
  0% {
    transform: translate(-50%, -50px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0px);
    opacity: 1;
  }
}

.bower-head-title {
  width: 100%;
  text-align: center;
}
.bower-head-title span,
.bower-head-title {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards ease-out;
  transition: transform 0.3s ease, -webkit-text-stroke 0.3s ease;
  background: #6d66ea;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Antonio";
  font-size: 120px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  color: #6d66ea;
  -webkit-text-stroke-color: #6d66ea;
}
.bower-head-title span:active {
  -webkit-text-stroke-color: #6d66ea;
}
.bower-head-title span:hover {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-text-stroke 0.3s ease, color 0.3s ease;
  color: transparent;
  animation: fadeInUp 0.6s ease forwards;
  -webkit-text-stroke-color: #6d66ea;
}
.title.word-animation {
  color: #ffffff;
}
/* .bower-head-title {
  background: linear-gradient(264deg, #6d66ea 2.96%, #a8a3ff 60.45%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Antonio";
} */

.word-animation .letter {
  display: inline-block;
  opacity: 0;
  -webkit-text-stroke-color: #6d66ea;
  /* ✅ add this */

  /* transform: translateY(20px) scale(0.95); */
  animation: fadeInUp 0.6s ease forwards;
}
.title.word-animation .letter,
.title.word-animation .letter.ripple {
  -webkit-text-stroke-color: #ffffff !important;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.title.word-animation .letter.hovered {
  -webkit-text-stroke: 0.4rem;
  padding-inline: 0.55rem;
}
.word-animation .letter.hovered {
  color: transparent;
  padding-inline: 0.5rem;
  transform: scaleX(1.3) scaleY(0.9) !important;
  -webkit-text-stroke: 0.3rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); /* feels fluid */
}
.sub-title {
  color: #000;
  text-align: center;
  font-family: "Inter";
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  margin-top: 12px;
}
.title .word-animation .letter.ripple {
  -webkit-text-stroke: 0.224rem;
  -webkit-text-stroke-color: #ffffff !important;
  transform: scaleX(var(--scaleX, 1)) scaleY(var(--scaleY, 1)) !important;
}
.word-animation .letter.ripple {
  -webkit-text-stroke: 0.224rem;
  -webkit-text-stroke-color: #6d66ea !important;
  transform: scaleX(var(--scaleX, 1)) scaleY(var(--scaleY, 1)) !important;
}

/* Animation keyframe */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Word Reveal General */
.word-reveal {
  visibility: hidden;
  display: inline-block;
  line-height: 1.2;
  width: 100%;
}

.word-reveal.reveal-ready {
  visibility: visible;
}
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: wordFadeIn 1s forwards cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-delay: 5s;
  margin-right: 0.3ch;
}
@keyframes wordFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.solutions-built.scroll-top {
  animation-delay: 6s;
}
.zoom-in:hover {
  transform: scale(1.1) !important;
  transition: opacity 4s ease, transform 4s ease;
}
.scroll-top.scroll-left {
  transform: translateX(-200px);
  animation-delay: 8s;
}
.scroll-top.scroll-left.reveal {
  transform: translateX(0) !important;
}
.scroll-top.reveal {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.reveal.vision-icons.show-up {
  opacity: 0; /* Initially hidden */
  animation: showUp 1s ease forwards;
  animation-delay: 0.5s !important; /* Start animation after 2 seconds */
  transform: none !important;
}
@keyframes showUp {
  0% {
    opacity: 0; /* Keep hidden at the start */
  }
  100% {
    opacity: 1; /* Fade in to visible */
  }
}
.bower-sub-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.bower-sub-content h2 {
  color: #000;
  font-family: "inter";
  font-size: 30px;
  font-weight: 600;
  width: 356px;
}

.bower-sub-content p {
  width: 485px;
  color: #000;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  margin-top: 24px;
}

.who-build-section .bower-img-container {
  position: relative;
}
.who-build-section .bower-img {
  position: relative;
  z-index: 9999;
}
.who-build-section .bower-img.scroll-top.reveal {
  transform: translateY(50px) !important;
}
.who-build-section .bower-img-container::after {
  content: url("../new-website/new-img/bower-case-study/yellow-gradient.svg");
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
/* .who-build-section .bower-img-container::before {
  content: url(../new-website/new-img/bower-case-study/bower-bg-circles.svg);
  position: absolute;
  left: 18%;
  top: 60px;
  width: 100%;
  opacity: 0.4;
} */
.who-build-section {
  position: relative;
  /* padding-bottom: 132px; */
}
.who-build-section::before {
  content: "";
  background: linear-gradient(0deg, #ededed 0%, #ededed 100%), linear-gradient(180deg, #fff 0%, #6d6d6d 100%);
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 665px;
}
.from-vision-to-venture {
  z-index: 9999;
  position: relative;
  margin-top: 40px;
}
.from-vision-to-venture h2 {
  color: #000;
  font-family: "Inter";
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}
.from-vision-to-venture p {
  color: #000;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
}
.vision-icons {
  width: 142px;
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
}

.transformation {
  padding-top: 60px;
  padding-bottom: 116px;
  width: 964px;
  margin: 0 auto;
}

.bower-section-title {
  color: #000;
  text-align: center;
  font-family: "Inter";
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
}
.transformation .bower-subtitle,
.real-conversations .bower-subtitle,
.powered-byAI .bower-subtitle,
.results-matter .bower-subtitle {
  width: 640px;
  margin: auto;
}
.bower-subtitle {
  color: #000;
  text-align: center;
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  opacity: 0.5;
}

.collaboration-img {
  margin-top: 60px;
}
.user-centered,
.learning-path {
  background: linear-gradient(0deg, #ededed 0%, #ededed 100%), linear-gradient(180deg, #fff 0%, #6d6d6d 100%);
  /* padding: 80px 0;/ */
}
.collaborative-ideation {
  padding: 80px 0 62px 0;
  position: relative;
}
.collaborative-ideation::after {
  content: "";
  background-image: url(../new-website/new-img/bower-case-study/blue-gradient-full.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.user-centered h2,
.collaborative-ideation h2,
.learning-path h2,
.structured-progress h2,
.built-together h2 {
  color: #000;
  font-family: "Inter";
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 40px;
}
.solutions-built {
  width: 520px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 99;
  margin-top: 40px;
}
.solutions-built .title {
  color: #ffffff;
  text-align: center;
  font-family: "Antonio";
  font-size: 64px;
  font-weight: 400;
}
.learning-path {
  padding: 60px 0;
  position: relative;
  z-index: 999;
}

.real-conversations {
  padding-top: 60px;
  padding-bottom: 116px;
  /* width: 992px; */
  margin: 0 auto;
}

.real-progress-img {
  margin: auto;
  display: flex;
  align-items: center;
}

.structured-progress {
  background: linear-gradient(0deg, #ededed 0%, #ededed 100%), linear-gradient(180deg, #fff 0%, #6d6d6d 100%);
  padding: 60px 0;
}
.structured-img-container {
  margin-right: -400px;
}

.structured-progress-cntent {
  position: relative;
  top: -80px;
  width: 75%;
}
.built-together img {
  position: relative;
  bottom: -200px;
  right: -40px;
}

.powered-byAI {
  background: linear-gradient(0deg, #ededed 0%, #ededed 100%), linear-gradient(180deg, #fff 0%, #6d6d6d 100%);
  padding: 100px 0;
  margin: auto;
}

.powered-byAI img {
  position: relative;
  left: 20%;
}

.results-matter {
  padding: 200px 0 !important;
  position: relative;
}
.results-matter::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-image: url("../new-website/new-img/bower-case-study/blue-gradient.svg");
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1280px) {
  .who-build-section .bower-img-container::after {
    top: -25%;
  }
  .collaborative-ideation::after {
    bottom: -30% !important;
  }
  .structured-progress-cntent {
    width: 100%;
    top: 0;
  }
  .built-together img {
    position: relative;
    bottom: -170px;
    right: 0;
  }
}

@media (max-width: 991px) {
  .main-banner::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -8px;
    /* height: 240px; */
    background-image: url(../new-website/new-img/bower-case-study/bower-edge-mobile.svg);
    background-size: 100%;
    background-color: transparent;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
  }
  .main-banner {
    padding-top: 42% !important;
  }
  .bower-head-title {
    font-size: 80px;
  }
  .sub-title {
    font-size: 20px;
  }
  .bower-sub-content {
    padding-top: 40px;
  }
  .bower-sub-content h2 {
    font-size: 20px;
    width: 232px;
  }
  .bower-sub-content p {
    font-size: 16px;
    width: auto;
  }
  .who-build-section .bower-img-container::after {
    content: none;
  }
  .from-vision-to-venture h2 {
    font-size: 20px;
    margin-top: 16px;
  }
  .vision-icons {
    width: 82px;
    height: 82px;
  }
  .vision-icons img {
    width: 34px;
    height: 34px;
  }
  .who-build-section {
    padding-bottom: 40px;
  }
  .transformation {
    width: 100%;
  }
  .bower-section-title {
    font-size: 20px;
    text-align: left;
  }
  .transformation .bower-subtitle,
  .real-conversations .bower-subtitle,
  .powered-byAI .bower-subtitle,
  .results-matter .bower-subtitle {
    width: 100%;
    font-size: 16px;
    text-align: left;
  }
  .bower-section .container {
    padding: 0 28px;
  }
  .transformation img {
    margin-top: 28px;
  }
  .who-build-section::before {
    height: 550px;
  }
  .user-centered h2,
  .collaborative-ideation h2,
  .learning-path h2,
  .structured-progress h2,
  .built-together h2 {
    font-size: 20px;
  }
  .bower-subtitle {
    text-align: left;
    font-size: 16px;
  }
  .bower-section {
    padding: 40px 0;
  }
  .user-centered img {
    margin-left: -40px;
  }
  .collaborative-ideation::after {
    bottom: -54%;
    left: 50%;
  }
  .solutions-built {
    width: 100%;
  }
  .solutions-built .title {
    font-size: 40px;
  }
  .learning-path-img {
    margin-top: 24px;
  }
  .real-progress-img {
    margin-top: 24px;
  }
  .structured-progress-container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .structured-img-container {
    margin-right: 0;
  }
  .bower-section.built-together {
    padding-bottom: 0;
  }
  .built-together img {
    bottom: -16px;
  }
  .powered-byAI img {
    position: static;
    width: 100%;
    margin-top: 24px;
  }
  .powered-byAI {
    padding-bottom: 20px;
  }
  .results-matter {
    overflow: hidden;
    padding-bottom: 100px;
  }
  .results-matter::after {
    bottom: -100%;
  }
  .structured-progress .container {
    width: 100%;
  }
  .learning-path {
    padding-bottom: 0 !important;
  }
  .swiper-outer-wrapper {
    width: 94%;
    padding: 64px 32px;
  }
  .swiper-outer-wrapper .swiper-button-prev:after,
  .swiper-outer-wrapper .swiper-button-next:after {
    min-width: 62px !important;
    height: 62px !important;
  }
  .swiper-inner-wrapper .bowerMentorSwiper .swiper-slide {
    width: 152px !important;
  }
  .collaborative-ideation .row {
    flex-direction: column-reverse;
  }
  .mainn-content {
    padding-top: 40px !important;
  }
  .bower-head-title span {
    font-size: 112px;
    text-align: center;
    font-weight: 600;
  }
}
.colleborative-ideation-img {
  position: relative;
  z-index: 99;
}
.bowerMentorSwiper {
  overflow: visible;
}
/* .bowerMentorSwiper .swiper-wrapper {
  background-image: url(../new-website/new-img/bower-case-study/bower-mentor-bg.png);
  background-size: 100% 100%;
  width: 94%;
  padding: 100px 32px;
} */
.bowerMentorSwiper .swiper-slide {
  /* margin: 100px 50px; */
  display: flex;
  /* justify-content: space-between; */
  gap: 46px;
  width: 230px !important;
}

.bowerMentorSwiper .bower-mentor-card img {
  width: 100%;
}

.bowerMentorSwiper .bower-mentor-card .info {
  color: #fff;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: 21.605px;
  margin-top: 20px;
}
.swiper-outer-wrapper .swiper-button-next,
.swiper-outer-wrapper .swiper-button-prev {
  top: 50% !important;
}

.swiper-outer-wrapper .swiper-button-prev {
  left: -33px !important;
}
.swiper-outer-wrapper .swiper-button-next {
  right: -33px !important;
}
.swiper-outer-wrapper .swiper-button-prev:after,
.swiper-outer-wrapper .swiper-button-next:after {
  min-width: 91px;
  content: url(/new-website/new-img/bower-case-study/arrow-left.svg) !important;
  width: 100%;
  height: 91px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 11px -2px rgba(0, 0, 0, 0.2);
}
.swiper-outer-wrapper .swiper-button-next:after {
  content: url(/new-website/new-img/bower-case-study/arrow-right.svg) !important;
}
.swiper-outer-wrapper {
  position: relative;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
  background-image: url(../new-website/new-img/bower-case-study/bower-mentor-bg.png);
  background-size: 100% 100%;
  padding: 100px 32px;
}

.swiper-inner-wrapper {
  overflow: hidden; /* Hide next slide */
  width: 100%;
}

.bower-section {
  padding: 80px 0;
}
.transformation-img {
  margin-top: 24px;
}
.mainn-content {
  padding-top: 260px;
}

.zoom-bounce {
  opacity: 0;
  transform: scale(0.8);
  animation: zoomBounce 1.2s ease-out forwards;
  transform-origin: center center;
}

@keyframes zoomBounce {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  70% {
    opacity: 1;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
