/* Basic Section Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.apps-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
  font-family: 'Mulish', sans-serif;
  padding-top: 100px;
}

.apps-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
}

/* Grid Layout */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  justify-items: center;
}

/* App Buttons */
.app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.app-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.app-btn img {
  width: 140px;
  height: auto;
}

/* ✅ Mobile Responsive Design */
@media (max-width: 1024px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .app-btn {
    width: 90px;
    height: 90px;
  }

  .apps-section h2 {
    font-size: 1.5rem;
  }
}


/* === Scroll Animation Base Styles === */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up:nth-child(1) {
  transition-delay: 0.1s;
}

.fade-in-up:nth-child(2) {
  transition-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
  transition-delay: 0.3s;
}

.fade-in-up:nth-child(4) {
  transition-delay: 0.4s;
}