.download-section {
  background: linear-gradient(to bottom, #f2effacc, #fcfaff, #e1d2ff);
  border-radius: 20px;
  padding: 60px 40px 0px 40px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 4px solid #e1d2ff;
}

/* Left Content */
.text-content {
  width: 50%;
  opacity: 0;
  justify-content: center;
  margin-bottom: 30px;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.text-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
}

.store-buttons img {
  height: 60px;
  margin-right: 12px;
  transition: transform 0.2s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

/* Right Content */
.qr-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-mockup {
  position: relative;
  max-width: 350px;
  opacity: 0;
  transform: translateX(60px);
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.5s;
  border-radius: 20px 20px 0px 0px;
}

.mobile-mockup img {
  width: 100%;
  display: block;
}

/* QR Animation */
.qr-code {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  text-align: center;
  opacity: 0;
  animation: zoomIn 0.8s ease forwards;
  animation-delay: 1s;
}

.qr-code p {
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
}

.qr-code img {
  width: 200px;
  height: 200px;
  background: #ffffffff;
  padding: 10px;
  border-radius: 12px;
  border: 2px solid #e1d2ff;
}

.rounded-top-20 {
  border-radius: 30px 30px 0px 0px;
}

.play-store-img {
  width: 200px;
  gap: 20px;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .download-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px 0px 20px;
    height: auto;
  }

  .text-content {
    width: 100%;
    opacity: 0;
    justify-content: center;
    margin-bottom: 30px;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
  }

  .text-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
  }

  .text-content {
    max-width: 100%;
    margin-bottom: 30px;
    animation-delay: 0s;
  }

  .mobile-mockup {
    animation-delay: 0.3s;
  }

  .qr-code {
    animation-delay: 0.6s;
  }

  .store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .store-buttons img {
    height: auto;
    width: 100%;
    transition: transform 0.2s ease;
  }

  .play-store-img {
    width: 45%;
    gap: 10px;
  }
}
.qr-code1 img {
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: 12px;
  border: 2px solid #e1d2ff;
}
.dashboard-app-banner {
  background-image: url("../img/db3.jpg");
  background-size: contain;
  background-position: center;
  border-radius: 20px;
  padding: 40px 80px !important;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .dashboard-app-banner {
    background-image: url("../img/db3.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 20px 20px !important;
    margin: 20px 0px;
    background-repeat: no-repeat;
    overflow: hidden;
  }
}

@media screen and (max-width: 576px) {
  .dashboard-app-banner {
    background-image: url("../img/db6.png");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 20px 20px !important;
    margin: 20px 0px;
    background-repeat: no-repeat;
    overflow: hidden;
  }
}
