body {
      background-color: #f4f6f9;
      font-family: 'Segoe UI', sans-serif;
    }

    html,body {
    margin:0;
    padding:0;
    overflow-x:hidden;
    
}

/* Add this to your CSS */
#navbarsExample07 {
  background-color: #212529; /* Matches bg-dark */
}

    .hero {
      background: linear-gradient(to right, hsla(194, 100%, 71%, 0.629), #0a58ca);
      color: white;
      padding: 0px 10px;
      text-align: center;
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .hero p {
      font-size: 1.2rem;
      margin-top: 10px;
    }

    .section {
      padding-top: 5x;
      padding-bottom: 30px;
    }

    .section h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .card {
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .store-buttons img {
      height: 50px;
      margin: 10px;
    }

    footer {
      color: #ccc;
    
      text-align: center;
    }

    footer a {
      color: #ccc;
      text-decoration: underline;
    }


.social-icon {
    margin-right: 10px; /* Adjust spacing as needed */
  }


  /* Bouncing image animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.bouncing-image {
  animation: bounce 2s infinite;
  position: relative;
  z-index: 2;
}

/* Container for ripple effect */
.ripple-container {
  position: relative;
  display: inline-block;
}

/* Ripple base style */
.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  height: 35%;
  background: rgba(67, 255, 246, 0.649); /* Light blue color */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  animation: radar-ripple 3s infinite ease-out;
  z-index: 1;
}

/* Staggered delays for multiple ripples */
.ripple1 {
  animation-delay: 0s;
}
.ripple2 {
  animation-delay: 1s;
}
.ripple3 {
  animation-delay: 2s;
}

/* Ripple animation */
@keyframes radar-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.5);
    opacity: 0;
  }
}
