@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

.light {

  /* font-family */
  --font-poppins: 'Poppins', sans-serif;
  --font-arial: 'arial';

  /* text color */
  --text-black: #0f172a;
  --text-white: #e6f0ff;
  --text-grey: #9aa3b2;
  --text-dark-grey: #d0d0d0f5;
  --text-primary: #3b82f6; /* brand blue */

  /* button color */
  --btn-primary: #3b82f6; /* blue */
  --btn-secondary: #06b6d4; /* cyan */

  /* background-circles */
  --bg: #0b1120;
  --bg-circle-1: #1d4ed8; /* blue */
  --bg-circle-2: #0891b2; /* cyan */
}

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

::-webkit-scrollbar {
  display: none;
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(120deg, #0b1120 0%, #0a172f 40%, #0b1120 100%);
  color: var(--text-white);
  z-index: -3;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font-poppins);
}

body::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 480px;
  height: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--bg-circle-1), transparent 60%);
  filter: blur(80px);
  z-index: -2;
}

body::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 520px;
  height: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, var(--bg-circle-2), transparent 60%);
  filter: blur(100px);
  z-index: -1;
}

.container {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  z-index: 10;
}

nav {
  position: relative;
  width: 280px;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-poppins);
  z-index: 99;
}

nav.sidebar #btn_close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
  place-content: center;
  padding: 8px;
  background: #ffffff;
  border-radius: 8px;
}

/* code for open responsive sidebar */

nav .logo {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px;
}

nav .logo img {
  width: 80px;

}

nav .logo span {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}


/* nav links */

.nav_links {
  margin-top: 20px;
  width: 100%;
}

.nav_links a.nav_link {
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-grey);
  font-size: 16px;
  text-transform: capitalize;
  transition: hover 1s ease;
}


a.nav_link svg .icon {
  fill: var(--text-grey);
}

.nav_links a.nav_link:hover .nav_link_text,
.nav_links a.active .nav_link_text {
  color: var(--text-white);
}

.nav_links a.nav_link:hover svg .icon,
.nav_links a.active svg .icon {
  fill: var(--btn-primary);
}

.life_cover_offer {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.life_cover_offer img {
  height: 150px;
}

.life_cover_offer .life_cover_text {
  padding-inline: 20px;
  margin-top: 20px;
}

.life_cover_text p.title {
  font-size: 14px;
  color: var(--text-black);
  font-weight: 600;
  text-align: center;
}

.life_cover_text p.desc {
  font-size: 12px;
  color: var(--text-dark-grey);
  font-weight: 400;
  text-align: center;
}

.life_cover_offer a {
  margin-top: 20px;
  margin-inline: 20px;
  width: 85%;
  padding: 10px 20px;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  text-transform: capitalize;
  text-align: center;
  font-weight: 500;
  background: linear-gradient(90deg, rgba(59,130,246,0.2), rgba(6,182,212,0.2));
  box-shadow: 0 0 0 0 rgba(59,130,246,0.0);
  transition: 300ms ease;
}

.life_cover_offer a:hover {
  background: linear-gradient(90deg, var(--btn-primary), var(--btn-secondary));
  color: var(--text-white);
  border: 1px solid transparent;
  box-shadow: 0 0 25px rgba(59,130,246,0.45), 0 0 45px rgba(6,182,212,0.35);
}

.profile {
  margin-top: 70px;
  margin-bottom: 20px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: 300ms ease;
  cursor: pointer;
}

.profile .img_with_name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.profile .img_with_name img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile .img_with_name p.name {
  color: var(--text-black);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 14px;
  font-size: 14px;
}

.profile .img_with_name p.occupation {
  color: var(--text-grey);
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
}

.profile .icon {
  fill: var(--text-white);
}


.profile:hover {
  background: linear-gradient(90deg, rgba(59,130,246,0.15), rgba(6,182,212,0.15));
  box-shadow: 0 10px 30px rgba(6,182,212,0.25);
}

.profile:hover .icon {
  fill: var(--text-white);
}

.profile:hover .img_with_name p.name {
  color: var(--text-white);
}

.profile:hover .img_with_name p.occupation {
  color: var(--text-white);
}

/* --------x-------------sidebar ended------------x-----------x---- */


/* content section */
section.main_content {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow-x: hidden;
  overflow-y: scroll;
  background: transparent;
}

section.main_content .topbar {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-poppins);
}

.topbar #menu_btn {
  width: 32px;
  height: 32px;
  display: none;
  place-items: center;
  background: #ffffff;
  padding: 8px;
  border-radius: 12px;
}

.topbar .overview_text p.title {
  font-size: 36px;
  font-weight: 300;
}

.topbar .overview_text p.desc {
  font-size: 12px;
  font-weight: 400;
}

.topbar .topbar_icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.topbar .topbar_icons a {
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.topbar .topbar_icons a svg {
  color: var(--text-white);
}


.topbar .topbar_icons a.alert {
  position: relative;
}

.topbar .topbar_icons a.alert::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 20%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff0000;
}

main .overview_text {
  display: none;
}

section.main_content section {
  display: grid;
  grid-template-columns: 1fr 400px;
  font-family: var(--font-poppins);
}

section.main_content section main {
  width: 100%;
  padding-inline: 20px;
}

main .bank_balance_card {
  background: rgba(255,255,255,0.06);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.bank_balance_card p:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-grey);
  text-transform: uppercase;
}

.bank_balance_card p.balance {
  font-size: 36px;
  font-weight: 700;
}

.bank_balance_card .account_no {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bank_balance_card .account_no span {
  color: var(--text-grey);
}

.bank_balance_card .account_no span>span.no {
  color: var(--text-white);
  font-weight: 600;
}

.bank_balance_card .account_no button {
  background: transparent;
}

.bank_balance_card .account_no button img {
  width: 20px;
  transition: all 0.3s ease;

}

.bank_balance_card .account_no button img:hover {
  cursor: pointer;
  width: 25px;
}

main .button_group {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

main .button_group button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 24px;
  cursor: pointer;
  background: transparent;
}

main .button_group .r_transaction {
  position: relative;
  background: linear-gradient(90deg, var(--btn-primary), var(--btn-secondary));
  border-radius: 25px;
  color: var(--text-white);
  box-shadow: 0 10px 25px rgba(59,130,246,0.35);
}

main .button_group .r_transaction::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--btn-primary);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
}

main .button_group .r_transaction:hover {
  background: linear-gradient(90deg, var(--btn-secondary), var(--btn-primary));
  box-shadow: 0 15px 35px rgba(6,182,212,0.4);
}

main .button_group .r_transaction:hover::before {

  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--btn-secondary);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
}

main .button_group .s_analysis:hover {
  background: linear-gradient(90deg, rgba(59,130,246,0.15), rgba(6,182,212,0.15));
  color: var(--text-white);
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(6,182,212,0.25);
}

main .button_group .s_analysis:hover .icon {
  fill: var(--text-white);
}

main .transaction_info {
  margin-top: 40px;
}

main .transaction_info .transaction_date {
  color: var(--text-white);
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--text-grey);
  margin-bottom: 24px;
}

.transaction_info .transaction_data {
  margin-block: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.transaction_data .get_send_money {
  display: flex;
  align-items: center;
  gap: 20px;
}

.get_send_money span.icon {
  display: grid;
  place-content: center;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.get_send_money .trasaction_details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

p.transaction_metadata>span {
  text-transform: capitalize;
  font-weight: 700;
}

.get_send_money .trasaction_details p:last-child {
  font-size: 12px;
  color: var(--text-dark-grey);
  font-weight: 500;
}

.transaction_value {
  font-weight: 500;
}



.show_more {
  width: 100%;
  background: transparent;
  animation: up_down 1.5s linear infinite;
  border: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.show_more svg {
  color: var(--text-white);
  width: 24px;
  height: 24px;
}

.show_more:hover svg {
  color: var(--btn-primary);
  transform: scale(1.1);
  transition: all 300ms ease;
}

@keyframes up_down {

  0%,
  100% {
    transform: translateY(50%);
  }

  50% {
    transform: translateY(0%);
  }
}

/*-------x------------- main end----------x------------- */

/* aside section started */

section.main_content section aside {
  padding-inline: 20px;
  font-family: var(--font-poppins);
}

aside .transfer_money_section {
  padding: 14px 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.transfer_money_section p.title {
  margin-top: 10px;
  color: var(--text-grey);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.transfer_money_section .button_group {
  margin-top: 10px;
  display: flex;
  flex-wrap: no-wrap;
  align-items: center;
  justify-content: space-between;
}

.transfer_money_section .button_group button {
  padding: 12px 20px;
  background: transparent;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: .6s ease;
}

.button_group button.via_no {
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.button_group button.via_no:hover,
.button_group button.via_ac:hover {
  background: var(--btn-primary);
  color: var(--text-white);
}

.transfer_money_section form {
  margin-top: 20px;
}

.transfer_money_section form .phone_no_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--text-grey);
  padding-bottom: 10px;
}

.transfer_money_section form .phone_no_info label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
  border-right: 2px solid var(--text-grey);
  font-size: 14px;
}

.transfer_money_section form .phone_no_info input[type="none"] {
  width: 100%;
  font-size: 14px;
  padding: 8px 14px;
  border: none;
  outline: none;
  caret-color: var(--text-primary);
}

.transfer_money_section form .phone_no_info input[type="none"]::placeholder {
  font-size: 14px;
}

.transfer_money_section form .phone_no_info input[type="none"]::-webkit-inner-spin-button {
  display: none;
}

form .phone_no_info label img {
  width: 20px;
}

.transfer_money_section form .phone_no_info img {
  width: 30px;
  border-radius: 50%;
}

form .amount {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--text-grey);
}

.amount label {
  font-size: 14px;
  font-weight: 600;
}

.amount input[type="none"] {
  font-size: 14px;
  padding: 8px 14px;
  border: none;
  outline: none;
  caret-color: var(--text-primary);
}

.amount input[type="none"]::placeholder {
  font-size: 14px;
}

.amount input[type="none"]::-webkit-inner-spin-button {
  display: none;
}


form input[type="submit"] {
  cursor: pointer;
  margin-top: 30px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--btn-primary), var(--btn-secondary));
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-white);
  border-radius: 10px;
  display: block;
  width: 100%;
  padding: 10px 20px;
  transition: 300ms ease;
}

form input[type="submit"]:hover {
  background: linear-gradient(90deg, var(--btn-secondary), var(--btn-primary));
}

.cards {
  margin-top: 30px;
  background: rgba(255,255,255,0.06);
  padding: 20px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.cards .title_with_button {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.sliber_controller {
  padding: 20px;
  display: flex;
  gap: 20px;
}

.cards .title_with_button p.title {
  font-size: 12px;
  color: var(--text-grey);
  font-weight: 700;
  text-transform: uppercase;
}

/* card slider or swiper code */
.swiper {
  padding: 20px;
  width: 90%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  min-height: 240px;
}

.swiper-slide img {
  width: 100%;
  border-radius: 10px;
}

.swiper-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ Section Styles */
.faq-section {
  padding: 40px 20px;
  margin-top: 40px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1200px) {
  .faq-container {
    max-width: 1200px;
    padding: 0 40px;
  }
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--btn-primary), var(--btn-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-header p {
  font-size: 16px;
  color: var(--text-grey);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 300ms ease;
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 300ms ease;
  text-align: left;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  flex: 1;
  margin-right: 16px;
}

.faq-icon {
  color: var(--text-grey);
  transition: transform 300ms ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
}

/* Mobile responsive FAQ */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 30px 16px;
    margin-top: 30px;
  }
  
  .faq-container {
    padding: 0 16px;
  }
  
  .faq-header h2 {
    font-size: 28px;
  }
  
  .faq-header p {
    font-size: 14px;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-question span {
    font-size: 15px;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }
}

@media screen and (max-width: 480px) {
  .faq-section {
    padding: 20px 12px;
  }
  
  .faq-container {
    padding: 0 12px;
  }
  
  .faq-header h2 {
    font-size: 24px;
  }
  
  .faq-question {
    padding: 16px 18px;
  }
  
  .faq-question span {
    font-size: 14px;
  }
}

/* Tokenomics card styles */
.tokenomics-card {
  width: 100%;
  padding: 18px 18px;
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.tokenomics-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tokenomics-card .card-header h4 {
  font-size: 16px;
  font-weight: 600;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.12);
}

.pill-blue { background: rgba(59,130,246,0.18); color: #cfe1ff; }
.pill-cyan { background: rgba(6,182,212,0.18); color: #cff6ff; }
.pill-purple { background: rgba(147,51,234,0.18); color: #ecd8ff; }
.pill-green { background: rgba(34,197,94,0.18); color: #d9ffe6; }
.pill-amber { background: rgba(245,158,11,0.18); color: #ffe8c2; }

.tokenomics-card .card-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.tokenomics-card .stat-value {
  font-size: 24px;
  font-weight: 800;
}

.tokenomics-card .stat-sub {
  font-size: 12px;
  color: var(--text-grey);
}

.tokenomics-card .card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.tokenomics-card .card-meta .meta-label {
  display: block;
  font-size: 10px;
  color: var(--text-grey);
  text-transform: uppercase;
}

.tokenomics-card .card-meta .meta-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
}


/* add responsive query */

@media screen and (max-width:1150px) {
  .container {
    grid-template-columns: 1fr;
  }

  nav.sidebar {
    position: absolute;
    background: rgba(30, 41, 59, 0.95);
    top: 0%;
    left: -200%;
    transition: 1s ease;
  }

  nav.show_sidebar {
    position: absolute;
    top: 0%;
    left: 0%;
  }

  nav.sidebar #btn_close {
    display: grid;
    cursor: pointer;
  }

  .topbar .overview_text {
    display: none;
  }

  .topbar #menu_btn {
    display: inline;
    cursor: pointer;
  }

  main .overview_text {
    display: flex;
    flex-direction: column;
    padding: 0px 0px 20px 10px;
  }

  main .overview_text p.title {
    font-size: 36px;
    font-weight: 300;
  }

  main .overview_text p.desc {
    font-size: 12px;
    font-weight: 400;
  }
}

/* mobile responsive */

@media screen and (max-width:870px) {
  section.main_content section {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    height: auto;
  }

  /* Allow natural page scroll on mobile */
  .container {
    overflow-y: visible;
  }

  section.main_content {
    height: auto;
    overflow-y: visible;
  }

  body {
    overflow-y: auto;
    min-height: 100vh;
  }

  section.main_content section main {
    /* background: #000; */
    width: 100vw;
    padding-inline: 20px;
  }


  aside {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    padding-bottom: 30px;
  }

  .transfer_money_section .button_group {
    justify-content: space-evenly;
  }

  .transfer_money_section p.title {
    width: 100%;
    text-align: center;
  }

  .cards {
    display: block;
    width: 100%;
  }


  .cards .title_with_button {
    justify-content: space-evenly;
  }

}

@media screen and (max-width:546px) {

  .transaction_info .transaction_data {
    width: 95%;
  }

  section.main_content {
    height: auto;
    overflow-y: visible;
  }

  section.main_content .topbar {
    width: 100vw;
  }

  .get_send_money span.icon {
    padding: 6px;
  }

  .get_send_money p.transaction_metadata {
    font-size: 14px;
  }

  .button_group .r_transaction,
  .button_group .s_analysis {
    padding: 10px 14px;
    font-size: 8px;
    letter-spacing: 1px;
  }


  .sliber_controller {
    display: none;
  }

  .title_with_button p.title,
  .transfer_money_section p.title {
    width: 100%;
    text-align: center;
  }

  .cards {
    background: transparent;
  }

  nav {
    padding-bottom: 50px;
  }

  .bank_balance_card .account_no span>span.no {
    color: var(--text-white);
    font-weight: 600;
    font-size: 10px;
  }

  .bank_balance_card .account_no button img {
    width: 15px;
    transition: all 0.3s ease;

  }

  .bank_balance_card .account_no button img:hover {
    cursor: pointer;
    width: 15px;
  }
}


.logoround {
  border: 3px solid transparent;
  border-radius: 100px;
  background:
    linear-gradient(90deg, var(--btn-primary), var(--btn-secondary)) border-box,
    rgba(255,255,255,0.06) padding-box;
}

.logoround2 {
  border: 2px solid transparent;
  border-radius: 100px;
  background:
    linear-gradient(90deg, var(--btn-primary), var(--btn-secondary)) border-box,
    rgba(255,255,255,0.06) padding-box;
}

/* Footer Styles */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding: 40px 0 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--btn-primary);
}

.footer-logo h3 {
  color: var(--text-white);
  font-size: 24px;
  font-weight: 700;
}

.footer-desc {
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-grey);
  transition: all 300ms ease;
}

.social-link:hover {
  background: var(--btn-primary);
  color: var(--text-white);
  border-color: var(--btn-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-links span {
  color: var(--text-grey);
  text-decoration: none;
  transition: color 300ms ease;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--btn-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-grey);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-links a {
  color: var(--text-grey);
  text-decoration: none;
  transition: color 300ms ease;
}

.footer-bottom-links a:hover {
  color: var(--btn-primary);
}

.separator {
  color: var(--text-grey);
}

/* Mobile responsive footer */
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    margin-top: 40px;
    padding: 30px 0 20px 0;
  }
  
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 20px 0 15px 0;
  }
  
  .footer-container {
    padding: 0 12px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .footer-logo h3 {
    font-size: 20px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
}