.our-app {
  background:
    linear-gradient(135deg, #0a1f44, #071633),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-blend-mode: overlay;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: relative;
  /* overflow: hidden; */
  margin: 120px auto;
}
/* Background Circle Decoration */
.our-app::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  right: 7%;
  top: 10%;
  z-index: 1;
}

.app-content {
  flex: 1;
  max-width: 450px;
  z-index: 2;
}
.app-content h2 {
  font-family: "ClashDisplay-Semibold", sans-serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 10px;
}
.app-content p {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 30px;
}
.app-badges {
  display: flex;
  gap: 12px;
}

.app-badges img {
  height: 40px;
  cursor: pointer;
}
.app-visual {
  flex: 1;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  height: 100%;
  /* padding-top: 40px; */
  z-index: 2;
  position: absolute;
  /* top: 0; */
  right: 12%;
  bottom: 0;
}
.app-visual img {
  border-radius: 20px;
  width: 350px;
  height: 500px;
  transform: translateY(-28px);
  object-fit: contain;
}

@media (max-width: 1100px) {

    .our-app{
        flex-direction: column;
        overflow: hidden;
        height: auto;
        padding: 50px ;
    }

    .app-visual{
        position: relative;
        padding-top: 40px;
        display: none;
    }
    
}
