/* Hero Section Styling */
.mbl-section {
  background-image: url('images/240_F_404216128_AzxvFH2p321asyRWiGfH9G7XmqLb8zl8.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.app-section {
  padding: 20px 0;
}

.app-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: blue;
}

.app-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.app-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.app-card h3 {
  color: #1976d2;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.app-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-box {
  text-align: center;
  margin-top: 40px;
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0d47a1;
}

.cta-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-button {
  background: #1976d2;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #0d47a1;
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .mbl-section{
        height: 30vh;
    }
  
  }

  .app-card {
    padding: 10px;
  }

  .cta-box h3 {
    font-size: 1.5rem;
  }
