@font-face {
  font-family: "paperFont";
  src: url(../font/R&C-Demo.otf) format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Roboto";
  background-color: white;
  cursor: none;
}

/* selection color */
body::selection {
  background-color: #2aa22ebd;
  color: white;
}

/* to hide the green dot in mobile screens */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

@media (max-width: 2500px) {

  html,
  body {
    overflow-x: clip !important;
  }
}

/* hero section */
.blur-hero-card {
  backdrop-filter: blur(2px);
}

/* loading animation */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.hero-btn {
  transition: all 3ms ease !important;
}

.icons {
  color: #1fff26;
}

.hero-btn:hover {
  background: #2cb830 !important;
}

.custom-cursor {
  position: fixed;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #2aa22e;
  box-shadow: 0px 0px 20px rgb(0, 255, 0);
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
}

/* for the right margin issue */
/* @media (max-width: 1600px) {

  html,
  body {
    overflow-x: hidden !important;
  }
} */

/* for the right margin issue */

/* enquiry animation */
.enquiry-img {
  z-index: 555;
  right: 0;
  transition: all 0.3s ease;
}

.enquiry-img:hover {
  transform: scale(1.05);
}

/* nav bar */

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: relative; */
  top: 2.5rem;
  z-index: 1000;
  /* new change */
  position: fixed !important;
  width: 100%;
}

.navbar {
  background-color: #1d3934;
  margin: 10px;
  position: absolute;
  border-radius: 1rem;
  height: 4rem;
}

/* hover effects */
.navbar-socialInfo {
  color: hsl(0, 0%, 80%);
  transition: all 0.3s ease;
  position: relative;
}

.navbar-socialInfo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background-color: #11e619;
  transition: transform 0.5s ease;
}

.navbar-socialInfo:not(.active):hover {
  color: white;
  filter: drop-shadow(0px 0px 1px white);
}

.navbar-socialInfo:not(.active):hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* mobile version */
.navbar-collapse {
  background-color: #1d3934;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

/* when the page is active */
.navbar-socialInfo.active {
  color: white;
  filter: drop-shadow(0px 0px 1px white);
  border-bottom: 2px solid #11e619;
}

/* footer */
.socialInfo {
  color: hsl(0, 0%, 80%);
  transition: filter 0.5s ease;
}

.socialInfo:hover {
  color: white;
  filter: drop-shadow(0px 0px 1px white);
}

#footer {
  position: relative;
  background-image: url(../images/leafy-bg2.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin: 20px;
}

.fb {
  fill: white;
}

.fb:hover {
  color: royalblue;
}

/*navbar ends*/

/* custom printing */

.custom-printing-dots {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  opacity: 1;
  background-color: hsl(0, 0%, 64%);
  box-shadow: inset 1px 1px 3px hsl(0, 0%, 20%);
}

.custom-printing-dots.active {
  background-color: #2aa22e;
  box-shadow: inset 1px 1px 2px hsl(0, 0%, 20%);
}

.custom-printing-1 {
  position: absolute;
  left: 130px;
  top: 80px;
}

@media (max-width: 690px) {
  .custom-printing-1 {
    position: absolute;
    left: 0px;
    top: 150px;
  }
}

/* hero section starts*/
.hero-section {
  position: relative;
  /* background-image: linear-gradient(to bottom right, #25D267, #15957C); */
  background-color: #2aa22e;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 0;
  height: 80vh;
  /*it will make the hero section to occupy the 80% of the screen*/
  overflow: hidden;
}

.hero-parent-container {
  display: flex;
  justify-self: start;
  align-items: center;
}

.heroTxt {
  font-size: clamp(2rem, 5vw, 4rem);
  font-family: "paperFont";
}

.hero-content {
  position: relative;
  z-index: 5;
  /* padding-bottom: 120px; */
  color: white;
}

/* hero section ends */

/* video property starts*/
/* .video-container { */
/* object-fit: fill; */
/* width: 80%; */
/* top: 0; */
/* left: 0; */
/* height: 100vh;  */
/* position: absolute; */
/* overflow: hidden; */
/* opacity: 0.25; */
/* } */

/* .bg-video{
  position: absolute;
  opacity: 0.1;
  object-fit: cover;
  width: 100%;
  height: 90vh;
} */

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* overflow: hidden; */
}

.demo-img {
  transform: scale(-1);
}

/* video property ends */

/* image animation starts */
/* .heroImg1 {
  right: -20px;
  top: 0;
  height: 400px;
  position: absolute;
  animation: movement 4s linear infinite;
}

.heroImg2 {
  right: 190px;
  top: 25%;
  height: 300px;
  position: absolute;
  z-index: 3;
  animation: movement 4s linear infinite 1.3s;
} */

@keyframes movement {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* video animation ends */

.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  line-height: 0;
  z-index: 4;
}

.custom-shape-divider-bottom svg {
  display: block;
  width: 100%;
  height: 120px;
}

.shape-fill {
  fill: #ffffff;
  /* Match the hero bg */
}

/* hero section */

.greenText {
  color: #2aa22e;
}

.greenBg {
  /* background-color: #2aa22e; */
  background-color: #273e47;
}

.greenBtn {
  background-color: #2aa22e;
  transition: transform 0.5s;
  color: white;
}

.border-green {
  border-top: 0.3rem solid #2aa22e;
  border-top: 0.3rem solid #273e47;
  /* border-left: .2rem solid #2aa22e; */
  /* border-right: .2rem solid #2aa22e; */
}

.greenBtn:hover {
  background-color: hsl(122, 59%, 35%);
  transform: scale(1.05);
  box-shadow: 2px 2px 10px hsl(122, 59%, 20%);
  color: white;
}

/* who we are starts */
/* .whoWeAre {
  overflow: hidden;
} */

/* .whoWeAreCard {
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0.2px 0.2px 10px hsl(0, 0%, 40%);
  overflow: hidden;
} */

/* who we are 2 */
/* parent */
/* .container-wwa {
  display: flex !important;
  align-items: flex-start !important;
  max-width: 1200px;
  padding: 100px 20px;
  gap: 50px;
}

.sticky-wrapper {
  position: sticky;
  top: 100px;
}

.image-section {
  flex: 1 !important;
  height: fit-content;
}

.sticky-image {
  transition: all 0.5s ease-in-out;
  background-color: #f0f0f0;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.text-section {
  flex: 1;
} */





.container-wwa {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  padding: 100px 20px;
}

.text-section {
  flex: 1;
}

.image-section {
  flex: 0 0 500px;
  align-self: stretch;
}

/* .sticky-wrapper {
  position: relative !important;
} */

.sticky-image {
  position: sticky;
  top: 100px;
  width: 500px;
  height: 500px;
  background: lightblue;
  border-radius: 15px;
  background-position: center;
  background-size: cover;
  transition: all .3s ease;
}

.step {
  margin-bottom: 500px;
  font-size: 18px;
  padding: 40px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.step.active {
  background-color: #e0f8e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2aa22e;
  font-weight: 600;
}

.step p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 500px;
}




/* for mobile version */
.mobile-image {
  display: none;
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  /* background-color: #E0F8E0; */
  margin-bottom: 30px;
}

/* for smaller screens */
@media (max-width: 768px) {
  .image-section {
    display: none;
  }

  .mobile-image {
    display: block;
  }

  .container-wwa {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 50px 20px;
  }

  .text-section {
    flex: none;
  }

  .image-section {
    flex: none;
    width: 100%;
    position: relative;
  }

  .sticky-image {
    position: relative;
    /* Removes sticky behavior on mobile */
    top: auto;
    height: 300px;
    margin-bottom: 30px;
  }

  .step {
    margin-bottom: 80px;
    padding: 30px 15px;
    background-color: #e0f8e0;
  }

  .step h2 {
    font-size: 28px;
  }

  .step p {
    font-size: 16px;
    max-width: 100%;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .container-wwa {
    padding: 30px 15px;
  }

  .sticky-image {
    height: 250px;
  }

  .step {
    margin-bottom: 60px;
    padding: 20px 10px;
  }

  .step h2 {
    font-size: 24px;
  }

  .step p {
    font-size: 15px;
  }
}

/* who we are ends */

/* product section 2 */
.card__img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* CARD */
.product-container {
  display: grid;
  place-items: center;
  margin-inline: 0.2rem;
  padding-block: 5rem;
}

.card__container {
  display: grid;
  row-gap: 3rem;
}

.card__article {
  position: relative;
  overflow: hidden;
  /* transition: opacity .5 ease; */
}

.card__img {
  width: 328px;
  border-radius: 1.5rem;
  /* transition: transform .5s ease; */
  /* object-fit: contain; */
}

.glass-texture {
  transition: all 0.5s ease;
}

.card__container:has(.glass-texture:hover) .glass-texture:not(:hover) {
  /* opacity: .8; */
  filter: blur(3px);
  border-radius: 1.5rem;
  overflow: hidden;
}

.card__data {
  width: 200px;
  background-color: hsla(0, 0%, 80%, 0.893);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  border-radius: 1rem;
  position: absolute;
  bottom: -9rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
}

.card__description {
  display: block;
  margin-bottom: 0.25rem;
}

.card__title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card__button {
  text-decoration: none;
  font-weight: 500;
}

.card__button:hover {
  text-decoration: underline;
}

/* Naming animations in hover */
.card__article:hover .card__data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity 0.3s;
}

/* in mobile version, when clicking activates the info card */
.card__article:active .card__data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity 0.3s;
}

.card__article:hover {
  animation: remove-overflow 2s forwards;
}

.card__article:not(:hover) {
  animation: show-overflow 2s forwards;
}

.card__article:not(:hover) .card__data {
  animation: remove-data 1s forwards;
}

/* Card animation */
@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }

  100% {
    transform: translateY(-7rem);
  }
}

@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}

@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }

  50% {
    transform: translateY(-10rem);
  }

  100% {
    transform: translateY(0.5rem);
  }
}

@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }

  50% {
    overflow: hidden;
  }
}

/* breakpoints */
/* For small devices */
@media screen and (max-width: 340px) {
  .product-container {
    margin-inline: 1rem;
  }

  .card__data {
    width: 250px;
    padding: 1rem;
  }
}

@media (max-width: 500px) {
  .card__title {
    font-size: 1.5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
  .product-container {
    height: 70vh;
  }

  .card__container {
    grid-template-columns: repeat(4, 1fr);
  }

  .card__img {
    width: 348px;
  }

  .card__data {
    width: 316px;
    padding-inline: 2.5rem;
  }
}

.productImage {
  /* height: 150px; */
  transition: transform 0.5s;
  filter: drop-shadow(0px 0px 4px black);
}

.productImage:hover {
  transform: translateY(-10px);
  transform: scale(1.1);
}

.carousel-item img {
  max-height: 500px;
  object-fit: cover;
}

/* animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    /* transform: translateY(20px); */
    z-index: 0;
  }

  to {
    opacity: 1;
    /* transform: translateY(0); */
    z-index: 1;
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(2deg);
  }

  75% {
    transform: rotate(-2deg);
  }
}

@keyframes btnFade {
  from {
    background-color: white;
    color: black;
  }

  to {
    background-color: #2aa22e;
    color: white;
  }
}

/* animations */

.svgLogo {
  color: #2aa22e;
  filter: drop-shadow(0 0 10px #2aa22e);
}

.welcomeTitle {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: clamp(1.2rem, 5vw, 3rem);
  /* color: #2aa22e; */
  /* animation: fadeRight 1s ease-in; */
  color: hsl(0, 0%, 20%);
}

.titleContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tilt-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 950px;
}

.teamTiltImage {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 400px;
}

#tiltImage {
  animation: wiggle 4s linear infinite;
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}

.whoWeAreContainer {
  background-color: hsl(0, 0%, 90%);
  padding: 1rem;
}

.teamImage {
  transition: transform 0.5s ease;
}

.teamImage:hover {
  transform: scale(1.05);
}

.navBtn {
  background-color: white;
  color: black;
  border-radius: 1rem;
  transition: background-color 2s ease, color 0.5s ease;
}

.navBtn:hover {
  color: #1f5c22;
}

.nav-link.navBtn.active,
.dummyBtn {
  background-color: #2aa22e;
  color: white;
  box-shadow: 2px 2px 10px hsl(122, 60%, 20%);
}

.navbar:focus {
  background-color: #2aa22e;
  color: white;
}

.dummyBtn {
  background-color: #2aa22e;
  color: white;
  box-shadow: 2px 2px 10px hsl(122, 60%, 20%);
}

.dummyBtn:hover,
.dummyBtn:active {
  background-color: hsl(122, 60%, 30%);
  color: white;
}

.animationBox {
  background-color: #92e394;
  background-color: #c2f0c3;
  /* background-color: #e0f8e0; */
}

/* product card animation starts */
.productCard {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: inset 2px 2px 15px hsl(0, 0%, 40%);
}

.productCard:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 15px hsl(0, 0%, 40%);
  box-shadow: inset 2px 2px 15px hsl(0, 0%, 40%);
}

.productBtn:hover {
  box-shadow: inset 0.2px 0.2px 10px hsl(0, 0%, 40%);
}

.innerCard {
  height: 21rem;
}

/* product card animation ends*/

/* pricing card section starts */
.priceCard {
  padding: 1rem;
  box-shadow: inset 0.2px 0.2px 10px hsl(0, 0%, 40%);
  transition: transform 0.5s ease;
  height: 15rem;
}

.priceCard:hover {
  transform: translateY(-15px);
}

@media (max-width: 770px) {
  .priceCard {
    height: 12rem;
  }
}

/* pricing card section ends */

/* logo slider starts */

/* .logo-slider {
  overflow: hidden;
  padding: 60px 0;
  background-color: white;
  white-space: nowrap;
}

.logo-track {
  display: inline-block;
  animation: logoSlider 3.5s linear infinite;
}

.logo-img {
  height: 50px;
  margin: 0px 50px;
}

@keyframes logoSlider {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-100%);
  }
} */

.wrapper {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 100px;
  margin-top: 5rem;
  overflow: hidden;
  mask-image: linear-gradient(to right,
      hsla(0, 0%, 0%, 0),
      hsl(0, 0%, 0%) 20%,
      hsl(0, 0%, 0%) 80%,
      hsla(0, 0%, 0%, 0));
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.item {
  display: block;
  width: 200px;
  height: 100px;
  position: absolute;
  left: max(calc(200px * 8), 100%);
  animation: scrollLeft 30s linear infinite;
}

.logo-img {
  height: 80px;
}

.item1 {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
  /* margin-left: -80px; */
}

.item2 {
  animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
  animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
  animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
  animation-delay: calc(30s / 8 * (8 - 5) * -1);
  /* margin-left: -100px; */
}

.item6 {
  animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
  animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

/* logo slider ends */

/* testimonial section */
.testimonial-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
  pointer-events: none;
}

.section-title {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  margin: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0.2px 0.2px 20px hsl(0, 0%, 40%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 3rem;
  color: #2aa22e;
  margin-bottom: 20px;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2aa22e, #1e7e34);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.author-info h5 {
  margin: 0;
  color: #2c3e50;
  font-weight: 600;
}

.author-info p {
  margin: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.stars {
  color: #ffc107;
  margin-bottom: 20px;
}

.slider-nav {
  text-align: center;
  margin-top: 30px;
}

.testimonial-nav-btn {
  background: #2aa22e;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: #1e7e34;
  transform: scale(1.1);
}

.testimonial-nav-btn:disabled {
  background: #dee2e6;
  cursor: not-allowed;
  transform: none;
}

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: hsl(0, 0%, 84%);
  box-shadow: inset 0.5px 0.5px 3px hsl(0, 0%, 20%);
}

.testimonial-dot.active {
  background: #2aa22e;
  transform: scale(1.2);
  box-shadow: inset 0.5px 0.5px 3px hsl(0, 0%, 20%);
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 30px 20px;
    margin: 10px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

/* testimonial section */

/* ⬇️⬇️⬇️ Mobile scroll cards container - reduced height and allows page scroll */
.mobile-scroll-container {
  display: none;
  /* Hidden by default (desktop) */
}

@media (max-width: 768px) {
  .mobile-scroll-container {
    position: relative;
    height: 60vh;
    /* REDUCED from 100vh to 60vh */
    overflow: hidden;
    display: block !important;
    margin: 40px 20px;
    /* Added margins for better spacing */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 162, 46, 0.1);
  }

  .mobile-scroll-card {
    display: none;
    transition: opacity 0.3s ease;
    /* new ⬆️ */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    /* REDUCED to match container */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    /* Reduced padding */
    opacity: 0;
    transform: translateY(30px);
    /* Reduced transform distance */
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    background: linear-gradient(135deg, #e0f8e0 0%, #f0fff0 100%);
    border-radius: 20px;
  }

  .mobile-scroll-card.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-scroll-card.fade-out {
    opacity: 0;
    transform: translateY(-30px);
    /* Reduced transform distance */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  /* Reduced image size for smaller container */
  .mobile-scroll-image {
    height: 200px;
    width: 100%;
    max-width: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    /* Reduced margin */
  }

  .mobile-scroll-card h2 {
    font-size: 24px;
    /* REDUCED from 28px */
    margin-bottom: 12px;
    /* Reduced margin */
    text-align: center;
    color: #2aa22e;
  }

  .mobile-scroll-card p {
    font-size: 15px;
    /* REDUCED from 16px */
    line-height: 1.5;
    /* Tightened line height */
    text-align: center;
    color: #555;
    max-width: 90%;
  }

  /* Progress indicator - positioned relative to container, not fixed */
  .scroll-progress {
    position: absolute;
    bottom: 15px;
    /* CHANGED from fixed bottom: 30px */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .mobile-progress-dot {
    width: 10px;
    /* REDUCED from 12px */
    height: 10px;
    border-radius: 50%;
    background-color: rgba(42, 162, 46, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .mobile-progress-dot.active {
    background-color: #2aa22e;
    transform: scale(1.2);
  }
}

/* Desktop version - hide mobile scroll container completely */
@media (min-width: 769px) {
  .mobile-scroll-container {
    display: none !important;
  }

  /* Desktop WWA styles */
  .container-wwa {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px;
    gap: 50px;
  }
}

/* Hide desktop version on mobile */
@media (max-width: 768px) {
  .container-wwa {
    display: none !important;
  }
}