 body, html {
  overflow-x: hidden;
}

 
 .top-img {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
        width: 65%;
    }

    @media (max-width: 600px) {
    .top-img {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
        width: 95%;
    }
    }
    @keyframes up-down {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-20px);
        }
    }

    .tummoc-slider {
        width: 100%;
        padding: 60px 10%;
        background: #fff;
        position: relative;
        /* IMPORTANT for fade effect */
    }

    .tummoc-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tummoc-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        width: 100%;
    }

    .tummoc-text {
        flex: 1;
        max-width: 50%;
    }

    .tummoc-text h2 {
        font-size: 2rem;
        margin-bottom: .4rem;
    }

    .tummoc-text h4 {
        font-size: 1.2rem;
        margin-bottom: .6rem;
    }

    .tummoc-text p {
        color: #555;
        line-height: 1.6;
    }

    .tummoc-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .tummoc-image img {
        width: 100%;
        max-width: 340px;
        animation: tummocFadeUp 1.2s ease;
    }

    @keyframes tummocFadeUp {
        0% {
            opacity: 0;
            transform: translateY(60px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Pagination dots */
    .tummoc-pagination .swiper-pagination-bullet {
        background: #ccc;
        opacity: 1;
        width: 14px;
        height: 14px;
    }

    .tummoc-pagination .swiper-pagination-bullet-active {
        background: #1baab1;
    }

    /* Responsive */
    @media (max-width:768px) {
        .tummoc-content {
            flex-direction: column-reverse;
            text-align: center;
        }

        .tummoc-text,
        .tummoc-image {
            max-width: 100%;
        }

        .tummoc-image {
            justify-content: center;
            margin-bottom: 20px;
        }
    }


/* 
    .tummoc-buttons {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .tummoc-buttons a {
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    } */
@media (max-width:768px) {
.btn-dwnd-img{
  margin-bottom: 10px;
  width: 40%;

}}

    .btn-know {
        background-color: #1baab1;
        color: #fff;
    }

    .btn-know:hover {
        background-color: #159399;
    }

    .btn-download {
        background-color: #f0f0f0;
        color: #333;
        border: 1px solid #ccc;
    }

    .btn-download:hover {
        background-color: #ddd;
    }















    /* Floating slider overlaps banner bottom */
.floating-slider-container {
  position: relative;
  margin-top: -100px; /* 50% overlap on banner */
  z-index: 10;
  padding: 30px 0 60px 0;
}

/* Swiper container */
.six-card-swiper {
  width: 90%;
  margin: auto;
}

/* Card design */
.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.info-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.info-card h4 {
  color: #1baab1;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
}

.info-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.swiper-pagination-bullet-active {
  background: #1baab1 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .floating-slider-container {
    margin-top: -60px;
  }
}





  .app-process-fade {
    transition: opacity 1s ease-in-out;
  }
  .app-process-fade-in {
    opacity: 0;
    animation: appProcessFadeIn 1s forwards;
  }
  @keyframes appProcessFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }


    /* ====== Container ====== */
  .superSwipeContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    perspective: 1200px;
  }

  /* ====== Phone Frame ====== */
  .superPhoneFrame {
    width: 270px;
    height: 520px;
    background: linear-gradient(145deg, #000, #111);
    border-radius: 40px;
    border: 8px solid #000;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transform: rotateY(0deg);
    animation: phoneFloat 6s ease-in-out infinite alternate;
  }

  @keyframes phoneFloat {
    from {
      transform: rotateY(8deg) translateY(0);
    }
    to {
      transform: rotateY(-8deg) translateY(-10px);
    }
  }

  /* ====== Notch ====== */
  .superPhoneNotch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #000;
    border-radius: 10px;
    z-index: 10;
  }

  /* ====== Swipe Wrapper ====== */
  .superSwipeWrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  }

  /* ====== Each Screen ====== */
  /* .superSwipeImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 30px;
    transform: scale(0.92) rotateY(5deg);
    transition: transform 1.2s ease, box-shadow 1.2s ease;
  }

  .superSwipeImg.active {
    transform: scale(1) rotateY(0deg);
    box-shadow: 0 0 30px rgba(41, 186, 176, 0.7);
  } */

  .superSwipeImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 30px;
  transition: opacity 0.8s ease-in-out;
  opacity: 0.5;
}

.superSwipeImg.active {
  opacity: 100%;
  box-shadow: 0 0 25px rgb(249, 252, 252);
}

  /* Optional glowing effect */
  .superPhoneFrame::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 40px;
    background: linear-gradient(45deg, #29bab0, #00ffd5, #29bab0);
    filter: blur(10px);
    opacity: 0.3;
  }

  .banner-sec2{
transform: skewX(0deg) translateX(7%);
  }

  @media (max-width: 768px) {
    .banner-sec2{
transform: skewX(0deg) translateX(0%);
  }

  }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

.logo-content {
     display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* gap: 8px; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: normal;
    padding-bottom: 20px;
    padding-left: 10px;
     padding-right: 60px;
}

@media (max-width: 768px) {
  .logo-content {
     display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* gap: 8px; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: normal;
    padding-bottom: 20px;
    padding-left: 10px;
   
}
}

.logo-content span {
  display: inline-block;                  /* needed so background-clip works per word */
  background: linear-gradient(90deg, #30CFD0 0%, #330867 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;   /* shows the gradient through the text */
  background-size: 100% 100%;

  /* keep your animation behaviour */
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: popIn 0.6s ease forwards;
}

/* .logo-content span {
  color: #1baab1;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: popIn 0.6s ease forwards;
} */

.logo-content span:nth-child(1) { animation-delay: 0.1s; }
.logo-content span:nth-child(2) { animation-delay: 0.3s; }
.logo-content span:nth-child(3) { animation-delay: 0.5s; }
.logo-content span:nth-child(4) { animation-delay: 0.7s; }


@keyframes popIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
.banner-sec-desktop{
  display: none;
}
}

@media (min-width: 768px) {
.banner-sec-mobile{
  display: none;
}
}


.vendor-section {
  width: 100%;
  background: #fff; /* optional – change or remove */
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vendor-carousel img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 992px) {
  .vendor-carousel img {
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .vendor-carousel img {
    max-width: 100px;
  }
}

/* 
.client-section {
  background: #fff;

  padding: 50px 0;
  text-align: center;
}

.clientSwiper {
  width: 100%;
}

.clientSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clientSwiper .swiper-slide img {
  width: 80% ; 
  height: auto;
  transition: transform 0.3s ease;
}

.clientSwiper .swiper-slide img:hover {
  transform: scale(1.1);
}
.myCardSwiper .swiper-slide > div {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.myCardSwiper .swiper-slide > div img {
    transition: transform 0.4s ease;
}

.myCardSwiper .swiper-slide > div:hover {
    transform: translateY(-12px);
}

.myCardSwiper .swiper-slide > div:hover img {
    transform: scale(1.1);
}

.myCardSwiper .swiper-slide > div:hover > div {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 25px 45px,
                rgba(0, 0, 0, 0.3) 0px 20px 15px !important;
} */

.client-section {
  background:#fff;
  /* padding:50px 0; */
  text-align:center;
}

.clientSwiper {
  width:100%;
  position:relative;
}

.clientSwiper .swiper-slide {
  display:flex;
  justify-content:center;
  align-items:center;
}

/* SINGLE IMAGE SIZE */
.clientSwiper img {
  width:50%;
  max-width:100%;
  height:auto;
  transition:0.3s ease;
}

.clientSwiper img:hover {
  transform:scale(1.1);
}

/* Navigation button color */
.swiper-button-next,
.swiper-button-prev {
  color:#0d6efd;
}