* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ================================
   GLOBAL RESPONSIVE SAFETY
================================ */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Prevent images from breaking layout */
img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 320px) {
  .bills-grid {
    gap: 12px;
  }
}

/* ================================
   MOBILE (DEFAULT ≤ 480px)
   You already optimized this well
================================ */
@media (max-width: 480px) {

  body {
    max-width: 100%;
    /* background: #f8f9fa; */
  }

  .main-content {
    padding: 14px 14px 96px;
  }

  .money-transfers,
  .bills-grid {
    gap: 14px;
  }

  .recharge-bills {}



  .services-grid {
    gap: 12px;
  }

  .icon-grid {
    gap: 14px;
  }

  .qr-card,
  .wallet-card {
    margin-left: 12px;
    margin-right: 12px;
  }

  .bottom-nav {
    height: 68px;
  }
}

/* ================================
   SMALL TABLETS (481px – 768px)
================================ */
@media (min-width: 481px) and (max-width: 768px) {

  body {
    /* background: #eaeaea; */
  }

  .main-content {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
  }

  .top-bar,
  .bottom-nav {
    max-width: 520px;
    left: 50%;
    transform: translateX(-50%);
  }

  .money-transfers {
    grid-template-columns: repeat(4, 1fr);
  }

  .bills-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .icon-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .qr-card,
  .wallet-card {
    max-width: 480px;
    margin: 16px auto;
  }
}

/* ================================
   DESKTOP (769px – 1024px)
================================ */
@media (min-width: 769px) {

  body {
    /* background: linear-gradient(135deg, #eef1f5, #e4e7ec); */
  }

  .main-content {
    max-width: 420px;
    /* margin: 24px auto; */
    /* background: #fff; */
    /* border-radius: 18px; */
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  }

  .top-bar,
  .bottom-nav {
    max-width: 420px;
    left: 50%;
    transform: translateX(-50%);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .qr-card,
  .wallet-card {
    margin: 16px;
  }
}

/* ================================
   LARGE DESKTOP / MONITORS (≥1200px)
================================ */
@media (min-width: 1200px) {

  body {
    /* background: linear-gradient(135deg, #f1f3f6, #e8ebef); */
  }

  /* .main-content {
    max-width: 390px;
  }

  .top-bar,
  .bottom-nav {
    max-width: 390px;
  } */
}

/* ================================
   SAFE AREA SUPPORT (iPhone)
================================ */
@supports (padding: env(safe-area-inset-bottom)) {
  .bottom-nav {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .main-content {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}



html {
  scroll-behavior: smooth;
}

button,
a,
svg,
i {
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  /* mobile tap glow remove */
}



body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f8f9fa;
  /* background-color: #fff; */
  max-width: 414px;
  margin: 0 auto;
  min-height: 100vh;
}

body {
  overflow-x: hidden !important;
}

body.scrolled {
  padding-top: 60px;
}

.main-content {
  /* padding: 15px 20px 80px;
  background: white; */
  background: #fff;
  position: relative;
  transform: all 5s ease-in-out;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  /* background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%); */
  /* background: #010e22; */
  background: transparent;
  /* background: #020754; */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.help-icon {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}


.top-bar.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  max-width: 414px;
  color: black;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar.fixed>.help-icon {
  width: 30px;
  height: 30px;
  border: 2px solid black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 18px;
  font-weight: bold;
}


.header {
  background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
  padding: 20px;
  color: white;
  position: relative;
  min-height: 200px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* .logo {
  width: 50px;
  height: 50px;
  background: #ffd32a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #5f27cd;
  font-size: 14px;
} */



.promo-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  margin-top: 43px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: translateY(0);
}

.header.scrolled {
  min-height: 80px;
  padding: 10px 20px;
}

.header.scrolled .promo-content {
  opacity: 0;
  transform: translateY(-20px);
}

.promo-text {
  font-size: 16px;
  margin-bottom: 8px;
  opacity: 0.9;
  color: #9e9e9e;
}

.cashback-text {
  font-size: 28px;
  margin-bottom: 3px;
}

.try-now-btn {
  background: transparent;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.promo-illustration {
  position: absolute;
  bottom: -16px;
  left: 37%;
  transform: translateX(-50%);
  width: 335px;
  height: 133px;
  background: url("assets/images/backgound-preview.png") center / contain no-repeat;
}

.tc-apply {
  position: absolute;
  bottom: 11px;
  right: 6px;
  color: rgb(154 154 154 / 70%);
  font-size: 12px;
  z-index: 2;
}


.section {
  /* margin-bottom: 30px; */
  padding: 0 20px;
  background: #fff;
  margin-bottom: -19px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 10px 0;
}

.section-money-transfers {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-money-transfers .refer-rs {
  color: #b29685;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  background: #ffede1;
  border-radius: 20px;
  padding: 3px 15px;
  display: flex;
}

.section-money-transfers .refer-rs .arrow-right {
  position: relative;
  top: 1px;
  margin-left: 3px;
  margin-right: 3px;
}

.section-money-transfers .refer-rs img {
  width: 26px;
  height: 26px;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-size: contain;
  object-fit: contain;
}

.refer-rs .refer-rs-text {
  margin-top: 4px;
}

.view-all {
  color: #5f27cd;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.money-transfers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  padding: 11px;
}

.transfer-item {
  text-align: center;
  position: relative;
}

.transfer-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #670fc3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-size: 24px;
}

.transfer-icon-after {
  content: "";
  position: absolute;
  top: 1px;
  right: 10px;
  width: 16px;
  height: 16px;
  background: #00d084;
  border-radius: 50%;
  border: 2px solid white;
}

.transfer-text {
  font-size: 12px;
  color: #2c3e50;
  line-height: 1.3;
}

.recharge-bills {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 0px 12px 17px;
  margin-bottom: 20px;
  border: 1px solid #ebe6e6;
}

.bills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bill-item {
  text-align: center;
}

.bill-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #5f27cd;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bill-text {
  font-size: 12px;
  color: #2c3e50;
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.service-card {
  background: #f6f6f6;
  border-radius: 16px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ebe6e6;
}

.service-card.travel {
  grid-row: span 2;
}

.service-title {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
}

.service-subtitle {
  font-size: 13px;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.service-tag {
  background: #e8f4fd;
  color: #5f27cd;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.service-tag.offer {
  background: #e5ccff;
  color: #5f3880;
}

.service-tag.sale {
  background: #e5ccff;
  color: #5f3880;
}

.service-illustration {
  position: absolute;
  bottom: -3px;
  right: 0px;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 414px;
  background: white;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  z-index: 9999;
}




.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #7f8c8d;
  position: relative;
}

.nav-item.active {
  color: #3d3d3d;
}

.nav-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.qr-scanner {
  background: #5f27cd;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  top: -20px;
}

.nav-text {
  font-size: 12px;
  /* font-weight: 400; */
  font-weight: 600;
}

.nav-text:active {
  color: #000;
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #00d084;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner {
  margin: 10px 0;
  background: #220542;
  border-radius: 16px;
  padding: 5px 13px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-banner2 {
  background: #002329;
  border-radius: 16px;
  padding: 0px 13px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
}

.promo-banner2 h3,
.promo-banner h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-banner2 p,
.promo-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}



.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.dot.active {
  background: #333;
  width: 20px;
  border-radius: 10px;
}

.qr-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-top: 1px solid #e8e5e5;
}

.qr-separator {
  width: 1px;
  height: 20px;
  background-color: #e0e0e0;
  margin: 0 8px;
}

.qr-left {
  display: flex;
  align-items: center;
  gap: 5px;
}

.upi-id {
  font-size: 14px;
  color: #666;
}

.qr-icon {
  /* width: 24px;
  height: 24px; */
  background: #f0f0f0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.app-store-section {
  background: #220542;
  padding: 0px 24px;
  color: white;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.app-store-section h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.app-store-btn {
  background: #e1cafa;
  color: #5d318c;
  padding: 10px 9px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  font-size: 13px;
}

/* History Page */

.container {
  margin: 0 auto;
  background: white;
  min-height: 100vh;
  position: relative;
}

.history-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px 16px;
  background: white;
}

.history-header h1 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-icon2 {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}



.statements-btn {
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.clock-icon {
  width: 16px;
  height: 16px;
  border: 1px solid #666;
  border-radius: 50%;
  position: relative;
}

.clock-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  width: 1px;
  height: 5px;
  background: #666;
  transform: translateX(-50%);
}

.clock-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 4px;
  height: 1px;
  background: #666;
  transform: translateY(-50%);
}

.search-container {
  padding: 0 16px 16px;
  background: white;
  border-bottom: 1px solid #ebeaea;
}

.search-icon-main {
  border-left: 1px solid #dadada;
  padding: 0px 4px;
  width: 32px;
  height: 25px;
}

.search-bar {
  background: #f5f0fa;
  border-radius: 35px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  box-shadow: none;
}

.search-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #888;
  border-radius: 50%;
  position: relative;
  opacity: 0.7;
}

.search-icon::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 6px;
  height: 2px;
  background: #888;
  transform: rotate(45deg);
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  font-size: 16px;
  color: #999;
  outline: none;
}

.search-input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.filter-icon {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.filter-line {
  background: #888;
  border-radius: 1px;
  height: 2px;
}

.filter-line:nth-child(1) {
  width: 16px;
  position: relative;
}

.filter-line:nth-child(1)::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 0;
  width: 2px;
  height: 2px;
  background: #888;
  border-radius: 50%;
}

.filter-line:nth-child(2) {
  width: 12px;
  position: relative;
}

.filter-line:nth-child(2)::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 0;
  width: 2px;
  height: 2px;
  background: #888;
  border-radius: 50%;
}

.filter-line:nth-child(3) {
  width: 8px;
  position: relative;
}

.filter-line:nth-child(3)::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 0;
  width: 2px;
  height: 2px;
  background: #888;
  border-radius: 50%;
}

.transaction-list {
  padding: 0 16px;
  padding-bottom: 80px;
}

.transaction-item {
  display: flex;
  align-items: center;
}

.transaction-item .column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.transaction-item.column:last-child {
  border-bottom: none;
}

.transaction-icon {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  margin-bottom: 19px;
}

.transaction-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.arrow-icon {
  background: white;
  border-radius: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 14px;
  padding: 2px 9px;
}

/* .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 12px;
  height: 2px;
  background: #333;
  transform: translateY(-50%);
}

.arrow-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 2px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(-45deg);
} */

.transaction-details {
  flex: 1;
}

.transaction-type {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.transaction-name {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.transaction-time {
  font-size: 12px;
  color: #999;
}

.transaction-amount {
  text-align: right;
  margin-top: 20px;
}

.amount {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.amount-created {
  font-size: 16px;
  font-weight: 600;
  color: #22773b;
}

.amount-received {
  font-size: 16px;
  font-weight: 600;
  color: #22773b;
}

.amount-spent {
  font-size: 16px;
  font-weight: 600;
  color: #d32f2f;
}
.amount-debited {
  font-size: 16px;
  font-weight: 600;
  color: #d32f2f;
}

.transaction-status {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
  font-size: 12px;
}

.transaction-status img {
    width: 42px;
    height: 42px;
    margin-right: -13px;
    object-fit: contain;
}

.transaction-title {
   margin-top: 20px;
}
.transaction-date .month {
  font-size: 22px;
  color: #666;
  font-weight: 200;
}

.status-success {
  color: #b0b0b0;
}

.status-failed {
  color: #ababab;
}

.jio-logo {
  width: 16px;
  height: 16px;
  background: #edad3e;
  border-radius: 50%;
  color: white;
  font-size: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-icon {
  width: 16px;
  height: 16px;
  background: #d13532;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Indus */

.indus-wrapper {
  padding: 16px 0;
  margin: 8px;
}

.indus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 12px;
}

.indus-header .title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
}

.indus-icon {
  width: 20px;
}

.know-more {
  font-size: 13px;
  color: #6a1b9a;
}

/* SWIPER */
.indus-swiper {
  padding: 20px 0 32px;
}

/* CARD */
.indus-card {
  width: 240px;
  /* background: #fff; */
  border-radius: 18px;
  padding: 16px 14px;
  text-align: center;
  /* box-shadow: 0 12px 28px rgba(0,0,0,0.12); */
  border: 1px solid #dfdfdf;
}

.card-img {
  width: 120px;
  margin-bottom: 12px;
}

.indus-card p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* BUTTON */
.indus-card button {
  background: #6a1b9a;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  width: 100%;
}

/* ACTIVE SLIDE */
.swiper-slide-active {
  transform: scale(1.05);
}

.swiper-slide {
  flex-shrink: 0 !important;
  width: 50% !important;
  height: 90% !important;
  position: relative !important;
  transition-property: transform !important;
  display: block !important;
  margin: 12px 11px !important;
}



/* PHONE CONTAINER */
.phone {
  width: 390px;
  /* min-height: 100vh;
  background: #f7f7f7; */
  /* min-height:100vh; */
  background: #fff;
  /* padding-bottom:90px; */
}

/* QR CARD */
.qr-card {
  background: #fff;
  margin: 20px;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  /* overflow-y: auto;
    -webkit-overflow-scrolling: touch; */
}


.manage-payments-section {
  background: #fff;
  padding: 16px 0;
}

/* HEADER */
.mp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 12px;
  font-weight: 600;
}

.view-all {
  color: #7b3fe4;
  font-size: 13px;
}

/* SCROLL ROW */
.mp-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 16px 10px;
}

.mp-scroll::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.mp-item {
  min-width: 80px;
  text-align: center;
  font-size: 12px;
}

.mp-item img {
  width: 44px;
  height: 44px;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 6px;
}

/* MY QR ROW */
.pp-myqr {
  /* background: #f6f6f6;
    border-radius: 10px;
    padding: 12px 14px;
    margin: 8px 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between; */

  background: #f6f6f6;
  border-radius: 10px;
  margin-top: 15px;
  padding: 0px 6px;
  /* margin: 8px 16px 0; */
  display: flex;
  align-items: center;
  justify-content: space-between;


}

.pp-myqr-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pp-qr-icon {
  width: 26px;
  height: 26px;
  /* background: #e8e8e8; */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.pp-qr-icon img {
  width: 14px;
  height: 14px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.pp-myqr-text .pp-myor {
  /* font-weight: 700; */
  color: #666;
  font-size: 14px;
}

.pipe {
  margin: 0 6px;
  color: #aaa;
}

.upi {
  color: #666;
  font-size: 13px;
}

.pp-myqr-arrow {
  color: #bbb;
  font-size: 18px;
}


.dividerH {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 15px 0px;
}






/* .my-or {
  text-align: center;
  margin: 18px 0px;
  font-size: 31px;
  font-weight: 100;
  display: none;
} */
/* .my-or {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.my-or span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
}

.my-or.show {
    opacity: 1;
    transform: translateY(0);
}




.qr-cards {
  transform: scale(1);
  will-change: transform;
} */

/* .my-or {
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.my-or span {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    margin-top: 40px;
}


.my-or.show {
    opacity: 1;
    transform: translateY(0);
}


.qr-card {
    transform: scale(1);
    will-change: transform;
} */

.qr-card {
  transform: scale(1);
  will-change: transform;
  position: relative;
}



.my-or {
  position: absolute;
  /* top: 12px; */
  top: -42px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: -30;
}

.my-or.show {
  opacity: 1;
  transform: translateY(0);
}

.my-or span {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.08);
  /* faint like screenshot */
}




/* MERCHANT */
.merchant {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 14px;
}

.merchant img {
  width: 20px;
}

/* QR */
.qr-box {
  padding: 12px;
  border-radius: 14px;
  background: #fff;
}

.qr-box img {
  width: 100%;
  max-width: 260px;
}

/* PAY LOGO */
.pay-logo {
  position: absolute;
  width: 46px;
  height: 46px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

/* UPI */
.upi-id {
  margin-top: 14px;
  font-size: 13px;
  color: #555;
  display: flex;
  justify-content: center;
  gap: 6px;
}

/* ACTION BUTTONS */
.actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.action-btn {
  flex: 1;
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

/* .qr-card {
    will-change: transform, opacity;
    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 280ms ease-out;
}

.qr-card.qr-hide {
    transform: translateY(80px);
    opacity: 0;
    pointer-events: none;
}

.qr-card.qr-show {
    transform: translateY(0);
    opacity: 1;
} */

/* .qr-card {
    will-change: transform;
    transform: translateY(0) scale(1);
} */




.wallet-card {
  margin: 16px;
  /* background: #fff; */
  background: #fafafa;
  border-radius: 18px;
  padding: 14px 23px;
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.06); */
}

.wallet-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON CIRCLE */
.wallet-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wallet-icon img {
  width: 40px;
}



/* TEXT */
.wallet-text .title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.wallet-text .amount {
  font-size: 13px;
  color: #777;
  display: block;
}

.wallet-text {
  margin-top: 6px;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 36px;
  background: #e5e5e5;
  margin: 0 24px;
}


/* SECTION TITLE */
.section-title {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 16px;
}

/* ICON GRID */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 10px 16px 20px;
  text-align: center;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.icon img {
  width: 25px;
}

.icon-box span {
  font-size: 12px;
  color: #333;
}

.section1 {
  padding: 16px;
  background: #f5f6f8;
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.section-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.section-header .link {
  color: #6a1b9a;
  font-size: 13px;
}

/* REWARDS */
.rewards-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.reward-card {
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, .08); */
  position: relative;
  overflow: hidden;
}

.reward-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.reward-text {
  padding: 12px;
}

.reward-text h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.reward-text p {
  font-size: 12px;
  color: #666;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffecec;
  color: #d32f2f;
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 6px;
}



/* ETF GRID */
.etf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.etf-card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

.etf-card img {
  width: 36px;
  margin-bottom: 8px;
}

.etf-card h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.etf-card .label {
  font-size: 12px;
  color: #777;
}

.etf-card .price {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0;
}

.etf-card button {
  background: #6a1b9a;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px;
  font-size: 13px;
  width: 100%;
}

/* FOOTER */
.explore {
  margin-top: 14px;
  color: #6a1b9a;
  font-weight: 600;
  font-size: 14px;
}

.disclaimer {
  margin-top: 10px;
  font-size: 11px;
  color: #777;
}


/* app start */

/* Section title */
.app-section-title {
  font-size: 18px;
  font-weight: 600;
  margin: 18px 0 12px;
}

/* Icon grids */
.app-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.app-icon-item {
  text-align: center;
  font-size: 13px;
  color: #333;
}

.app-icon-item span {
  display: block;
  margin-top: 6px;
  line-height: 1.2;
}

/* Purple round icons */
.app-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #6a1b9a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: auto;
}

/* Gray square icons */
.app-icon-box {
  /* width: 58px; */
  height: 48px;
  border-radius: 10px;
  background: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: auto;
  border: 1px solid #F1F1F0;
}

.app-icon-box img {
  width: 40px;
}

/* Banner row */
.app-banner-row {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}

.app-banner {
  flex: 1;
  background: #f9f9f9;
  border-radius: 14px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* List row */
.app-list-row {
  margin: 14px 0;
  background: #f9f9f9;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.app-more {
  color: #6a1b9a;
  font-weight: 600;
}

.app-list-row {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 14px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.app-lpg-two-col {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 14px 0;
}

/* LEFT CARD */
.app-lpg-left {
  background: #fbfbfb;
  border-radius: 8px;
  padding: 4px 14px;
  border: 1px solid #F1F1F0;
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.app-lpg-left img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* RIGHT CARD */
.app-lpg-right {
  background: #fbfbfb;
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #F1F1F0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 500;
  color: #6a1b9a;
  white-space: nowrap;
}

/* new css */




.section-silder {
  background: #efefef;
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
  /* margin-bottom: 20px; */
}

.section-silder-container {
  padding: 0 10px;
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  width: auto !important;
}

.section-silder-item {
  display: flex;
  align-items: center;
  gap: 10px;
  /* FIX SPACE */

  padding: 12px 18px;
  background: #fff;

  border: 1px solid #e5e5e5;
  border-radius: 13px;

  white-space: nowrap;
}

.section-silder-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
  /* REMOVE NEGATIVE SPACE */
}

.section-silder-item span {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin: 0;
  /* REMOVE EXTRA SPACE */
}

@media (max-width: 768px) {
  .section-silder-item {
    padding: 10px 14px;
  }

  .section-silder-item span {
    font-size: 13px;
  }
}

.recharge-card{
    width:100%;
    background:#fff;
    padding:16px 0;
    margin-bottom: 3px;
    border-top: 1px solid #ececec;
}

/* TITLE */

.recharge-card .recharge-title{
    font-size: 17px;
    font-weight:700;
    color:#111;
    padding:0 20px;
    margin-bottom:18px;
}

/* GRID */

.recharge-card .recharge-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    padding:10px 20px;
}

/* ITEM */

.recharge-card .recharge-grid .recharge-item{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* ICON BOX */

.recharge-card .recharge-grid .recharge-item .recharge-icon-box{
    width:106%;
    height:52px;

    padding:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f5f5f5;

    border:1px solid #e5e5e5;
    border-radius:10px;

    transition:0.3s ease;
}

.recharge-card .recharge-grid .recharge-item .recharge-icon-box:hover{
    transform:translateY(-2px);
}

/* IMAGE */

.recharge-card .recharge-grid .recharge-item .recharge-icon-box img{
    /* width:28px;
    height:28px; */
    width: 38px;
    height: 38px;
    object-fit:contain;
}

/* NAME */

.recharge-card .recharge-grid .recharge-item .recharge-name{
    font-size:13px;
    font-weight:500;
    color:#333;

    text-align:center;
    line-height:1.35;

    margin-top:10px;
}


/* OFFER CARD */

.recharge-bottom{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:12px;
    padding: 12px 12px;
}

.recharge-offer{
    height:50px;

    background:#f5f5f5;

    border:1px solid #e5e5e5;
    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 16px;

    overflow:hidden;
}

.recharge-offer span{
    font-size: 12px;
    font-weight: 500;
    color:#333;
    line-height:1.3;
}

.recharge-offer img{
    width:26px;
    height:26px;
    object-fit:contain;
}

.recharge-offer img {
    margin-top: 18px;
    width: 36px;
    height: 36px;
    margin-right: -13px;
}

/* MORE BUTTON */

.recharge-more{
    height:50px;

    background:#f5f5f5;

    border:1px solid #e5e5e5;
    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size: 14px;
    font-weight: 400;
    color:#5f259f;

    cursor:pointer;

    transition:0.3s ease;
}

.recharge-more:hover{
    background:#efe7ff;
}


.recharge-card .recharge-grid .recharge-item .recharge-icon-box {
  position: relative;
}

.free-badge{
    position:absolute;
    top:-7px;
    left:-3px;
    background:#8c005d;
    color:#fff;
    font-size:12px;
    font-weight:700;
    padding:2px 6px;
    /* border-radius:18px 18px 18px 6px; */
    border-radius: 5px 6px 6px 0px;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
}

/* REWARDS */

.rewards-section{
    background:#fff;
    padding:22px 16px;
    border-top:1px solid #ececec;
}

.reward-title{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
}

.reward-slider{
    display:flex;
    gap:14px;
    overflow-x:auto;
    scrollbar-width:none;
}

.reward-slider::-webkit-scrollbar{
    display:none;
}

/* CARD */

.reward-card{
    min-width:160px;
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:18px;
    padding:16px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.reward-icon{
    width:90px;
    height:90px;

    border-radius:50%;
    background:#fafafa;
    border:1px solid #ededed;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:48px;

    margin-bottom:18px;
}

.reward-card h3{
    font-size:18px;
    font-weight:700;
    color:#222;
    text-align:center;
}

.reward-sub{
    font-size:14px;
    color:#7a7a7a;
    margin-top:8px;
}

.reward-tag{
    margin-top:14px;

    background:#f4dcea;
    color:#8f1563;

    padding:10px 16px;

    border-radius:10px;

    font-size:14px;
    font-weight:700;
}

.more-card{
    /* justify-content:center; */
}

.more-text{
    color:#6c2bd9 !important;
}

/* REWARDS SECTION */

.rewards-section{
    background:#fff;
    padding:16px 12px;
}

.reward-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:14px;
}

.reward-slider{
    display:flex;
    gap:10px;
    overflow-x:auto;
    scrollbar-width:none;
}

.reward-slider::-webkit-scrollbar{
    display:none;
}

/* CARD */

.reward-card{
    min-width:120px;

    border:1px solid #e8e8e8;
    border-radius:16px;

    background:#fff;

    padding:14px 10px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.reward-icon{
    width:64px;
    height:64px;

    border-radius:50%;

    background:#fafafa;
    border:1px solid #ededed;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    margin-bottom:14px;
}

.reward-icon img {
    width: 35px;
}

.reward-card h3{
    font-size:14px;
    font-weight:700;
    color:#222;

    text-align:center;
    line-height:1.3;
}

.reward-sub{
    margin-top:6px;

    font-size:12px;
    color:#777;
}

.reward-tag{
    margin-top:10px;

    background:#f5ddea;

    color:#8f1563;

    padding:6px 10px;

    border-radius:8px;

    font-size:12px;
    font-weight:700;
}

.more-text{
    color:#6b2bd9 !important;
}


/* .more-card .swiper{
    width:64px;
    height:64px;
    margin:auto;
}

.more-card .swiper-slide{
    display:flex;
    align-items:center;
    justify-content:center;
}

.more-card .swiper-slide img{
    width:48px;
    height:48px;
    object-fit:contain;
} */

.more-card .moreCardSwiper{
    width:64px !important;
    height:64px !important;
    margin:0 auto 8px;
}

.more-card .swiper-slide{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.more-card .reward-icon{
    width: 64px !important;
    height:64px !important;

    border-radius:50% !important;

    background:#fafafa !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    margin:0 !important;
}

.more-card .reward-icon img{
    width:28px !important;
    height:28px !important;
    object-fit:contain !important; 
}

.more-card .more-text{
    font-size:14px;
    font-weight:700;
    color:#6b2bd9;
}

.stock-section{
    margin-top:10px;
    background:#f6f6f6;
    /* padding:18px 14px 20px; */
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px;
}

/* TITLE */

.stock-title{
    font-size:16px;
    line-height:1.4;

    font-weight:700;

    color:#111;
}

.share-market{
    margin-top:4px;

    font-size:22px;
    font-weight:800;

    color:#6b2bd9;
}

.share-market span{
    color:#22c55e;
}

/* SWIPER */

.sharemarket-slider{
    margin-top:16px;

    overflow:hidden;
}

.sharemarket-slider .swiper-slide{
    /* width:170px !important; */
    width: 230px !important;
}

/* CARD */

.stock-card{
    background:#fff;

    border:1px solid #e7e7e7;
    border-radius:18px;

    padding:12px;

    overflow:hidden;
}

/* LOGO */

.stock-logo{
    width:42px;
    height:42px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:20px;
    font-weight:700;

    margin-bottom:12px;
}

.sbi{
    background:#241c88;
}

.jsw{
    background:#2342b5;
}
.irc {
  background: #1a2d72;
}

.oilAnd{
    background:#b5234e;
}

.hdfc{
    background:#33528f;
}

/* TEXT */

.stock-card h3{
    font-size:14px;
    line-height:1.3;

    font-weight:700;

    color:#111;
}

.stock-price{
    margin-top:12px;

    font-size:18px;
    font-weight:700;

    color:#111;
}

.stock-card p{
    margin-top:4px;

    font-size:11px;

    color:#777;
}

/* GRAPH */

.graph-line{
    width:100%;
    height:42px;

    margin-top:12px;
/* 
    border-bottom:3px solid #2f8d3d;

    border-radius:50%;

    transform:skewX(-20deg); */
}

.graph-line img {
  margin-top: -17px;
  width: 99%;
  margin-left: 14px;
}


/* EXPLORE */

.explore-market{
    margin-top:16px;

    color:#6b2bd9;

    font-size:16px;
    font-weight:700;
}

/* DISCLAIMER */

.market-disclaimer{
    padding:14px 0 0;

    border-top:1px solid #ececec;

    color:#7a7a7a;

    font-size:11px;

    line-height:1.45;

    margin-top:14px;
}


.chatgpt-section{
    margin-top:10px;

    background:#fff;

    padding:18px 14px 24px;
}

/* TITLE */

.chatgpt-title{
    font-size:20px;
    font-weight:700;

    color:#111;

    margin-bottom:22px;
}

/* GRID */

.chatgpt-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px 10px;
}

/* ITEM */

.chatgpt-item{
    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;
}

/* ICON */

.chatgpt-icon{
    width:48px;
    height:48px;

    border-radius:14px;

    background:#f5f5f5;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    margin-bottom:10px;

    box-shadow:inset 0 0 0 1px #ececec;
}

.chatgpt-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain
}

/* TEXT */

.chatgpt-item span{
    font-size:11px;

    line-height:1.35;

    font-weight:500;

    color:#5a5a5a;
}

.rewardBannerSwiper{
    position:relative;
    overflow:hidden;
}


.reward-banner-card2 img {
    width: 100%;
    height: 106px;
    margin-bottom: 19px;
    object-fit: fill;
}

.reward-banner-card{
    height:120px;
    border-radius:18px;
    overflow:hidden;
}

.reward-gift{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

/* Pagination */

/* .rewardBannerSwiper .swiper-pagination{
    position:absolute;
    bottom:6px !important;
    left:0;
    width:100%;
}

.rewardBannerSwiper .swiper-pagination-bullet{
    width:28px;
    height:4px;
    border-radius:20px;
    background:rgba(255,255,255,.5);
    opacity:1;
}

.rewardBannerSwiper .swiper-pagination-bullet-active{
    background:#fff;
} */


/* KEYFRAME */

@keyframes progressRun{

    from{
        width:0%;
    }

    to{
        width:100%;
    }

}

/* MOBILE */

@media (max-width:414px){

    .reward-banner-card img{
        width:100px;
        height:100px;
    }

    .reward-banner .swiper-pagination-bullet{
        width:52px;
        height:3px;
    }

}



/* new css end */
/* app end */

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .logo {
    width: 70px;
    height: 70px;
  }

  .logo-text {
    font-size: 28px;
  }

  .brand-name {
    font-size: 28px;
  }

  .security-badges {
    bottom: 40px;
    gap: 15px;
  }

  .badge {
    padding: 6px 10px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .logo-text {
    font-size: 24px;
  }

  .brand-name {
    font-size: 24px;
  }

  .security-badges {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .badge {
    padding: 5px 8px;
    font-size: 9px;
  }
}

/* Animation */
/* .logo {
  animation: pulse 2s infinite;
} */

/* Animation */
@keyframes slideInFromBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes logoEntrance {
  0% {
    transform: translateY(50px) scale(0.5);
    opacity: 0;
  }

  60% {
    transform: translateY(0) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
  }
}


@media screen and (max-width: 414px) and (orientation: portrait) {
  body {
    width: 100%;
  }
}