.MainHeroSec_UPI {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 80vh;
  width: 100%;
  padding-top: 10px;
  background-size: cover;
  background-position: center 85%;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .MainHeroSec_UPI {
    min-height: 60vh;
  }
}

.upi-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upi-banner-text {
  max-width: 820px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.2;
}

.upi-cta-wrapper {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.upi-cta-btn {
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.upi-cta-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .upi-cta-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.upi-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.upi-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.upi-cta-pretitle {
  font-size: 8px;
  font-weight: 400;
}

/* Icon hover effects */
.google-play-icon path,
.app-store-icon path {
  fill: #ffffff;
  transition: fill 0.25s ease;
}

.upi-cta-btn:hover .gp-blue {
  fill: #03a9f4;
}
.upi-cta-btn:hover .gp-green {
  fill: #4caf50;
}
.upi-cta-btn:hover .gp-red {
  fill: #f44336;
}
.upi-cta-btn:hover .gp-yellow {
  fill: #ffc107;
}
.upi-cta-btn:hover .as-body,
.upi-cta-btn:hover .as-leaf {
  fill: black;
}

.safe-wrapper .row {
  display: flex;
  justify-content: space-between;
}
.safe-wrapper img {
  max-width: 100%;
  height: auto;
}

.top-row .text-block {
  flex: 1;
}
@media (max-width: 768px) {
  .top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
}

.image-wrapper {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .image-wrapper {
    margin-top: 4px;
  }
}

.bottom-cards-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.bottom-cards-wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 769px) {
  .bottom-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    overflow: visible;
  }
}

.bottom-card {
  flex: 0 0 80%;
  max-width: 280px;
  border-radius: 12px;
  background: #fff;
  scroll-snap-align: center;
}
@media (min-width: 769px) {
  .bottom-card {
    flex: unset;
    max-width: unset;
  }
}
