.navbar-header {
    display: flex;
    align-items: center;
    /*gap: 15px; */
    padding-left: 10px; 
    padding-top: 5px;   
}

.logout-btn {
    margin-top: 10px;    /* top space */
    margin-bottom: 10px; /* bottom space */
    padding: 8px 16px;   /* inner padding (optional) */
    font-weight: bold;
}

/*income*/

.dashboard-card {
    border-radius: 15px;
  background: #606060;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  color: white;
  margin-bottom: 1rem;
}

.dashboard-card:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.dashboard-card input[type="text"] {
   background-color:white;
    border: none;
    color: black;
    outline: none;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.row.no-gutters > [class^="col-"] {
    padding-right: 0;
    padding-left: 0;
}
@media (max-width: 767.98px) {
  .dashboard-card {
    margin-bottom: 1rem; /* or 16px */
  }
}


.big-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.08));
    backdrop-filter: blur(8px);
    height: 100%;
    min-height: 240px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.icon-bg {
    right: 10px;
    bottom: 10px;
    width: 100px;
    opacity: 0.07;
    z-index: 0;
}

.big-card * {
    position: relative;
    z-index: 1;
}

.small-card {
    transition: all 0.3s ease;
    border-radius: 16px;
}

.small-card:hover {
    background: #f5f5f5;
}

.text-end {
    text-align: right;
}


.header {
    /*position: fixed;*/
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-content {
    /*padding-top: 80px; */
}

/*profile start*/


/* Card Style */
.custom-card {
  /*background: radial-gradient(circle, #23CD6B, #272D2D);*/
/*background-image: linear-gradient(to right, rgb(62, 43, 206) 0%, rgb(45, 211, 170) 100%, rgb(45, 211, 170) 100%, rgb(45, 211, 170) 100%);*/
border-radius: 15px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  background-image: linear-gradient(to right, #2c3e50 0%, #3498db  51%, #2c3e50  100%)
}
.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Section Title */
.section-title {
  color: #ffcc00;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 6px;
}

/* Info Rows */
.info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
}
.info-row span:first-child {
  font-weight: 600;
  opacity: 0.9;
}
.info-row span:last-child {
  text-align: right;
}

/* Referral Link Input */
.referral-input {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 75%;
}
.referral-input:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffcc00;
  outline: none;
  box-shadow: none;
}

/* Copy Button */
.copy-btn {
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 14px;
  transition: 0.3s;
}
.copy-btn:hover {
  background: #ffd633;
  color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .referral-input {
    width: 100%;
    margin-bottom: 10px;
  }
  .copy-btn {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------*/


/* Layout wrapper */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Make all cards uniform */
.info-grid .col-6,
.info-grid .col-md-3 {
  display: flex;
}

/* Card styling */
.info-card {
  background: linear-gradient(145deg, #292b3a, #3b3d5a);
  color: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 20px 10px;
  transition: 0.3s ease;
  flex: 1;
  width: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Icons */
.info-icon {
  font-size: 30px;
  color: #ff8800;
  margin-bottom: 8px;
}

/* Texts */
.info-card p {
  margin: 5px 0;
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
}

.info-card h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ff8800;
}

/* Link wrapper */
.info-link {
  text-decoration: none;
  color: inherit;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .info-card {
    min-height: 130px;
    padding: 16px 8px;
  }
}

@media (max-width: 768px) {
  .info-card {
    min-height: 120px;
  }
  .info-icon {
    font-size: 26px;
  }
  .info-card p {
    font-size: 13px;
  }
  .info-card h6 {
    font-size: 14px;
  }
}




/* ==================================================================*/






/*====================================================================*/
.dashboard-section-one,
.dashboard-section-two,
.dashboard-section-three {
  padding: 20px 10px;
  /*background-color: #0b0b0b;*/
}

.card-box {
  padding: 10px;
}

.card-content {
  background: linear-gradient(to bottom, #1e1e1e, #0d0d0d);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #fff;
  min-height: 160px;
  transition: all 0.3s ease;
}

.card-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

.card-content img {
  max-height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

.card-content b {
  font-size: 13px;
  display: block;
  color: #e0e0e0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .card-content {
    min-height: 140px;
    padding: 12px;
  }
}



.dashboard-section-one .row {
  display: flex;
  flex-wrap: wrap;
  /*gap: 15px;*/
}

.card-box {
  flex: 1 1 calc(25% - 15px); /* 4 card ek row me */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 10px;
}

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

.card-text {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

.card-img img {
  max-width: 60px;
  height: auto;
}

@media (max-width: 992px) {
  .card-box {
    flex: 1 1 calc(50% - 15px); /* tablet view me 2 card ek row me */
  }
}

@media (max-width: 576px) {
  .card-box {
    flex: 1 1 100%; /* mobile view me 1 card ek row me */
  }

  .card-content {
    flex-direction: row;
  }

  .card-img img {
    max-width: 50px;
  }
}


    .dashboard-section {
      padding: 20px;
      /*background-color: #f5f5f5; */
    }

    .dashboard-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .dashboard-item {
      background-color: #fff;
      flex: 1 1 calc(33.333% - 20px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      min-width: 250px;
      height:125px;
    }

    .dashboard-text {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .dashboard-image img {
      max-width:200px;
      height:125%;
    }

    /* Tablet: 2 cards per row */
    @media (max-width: 992px) {
      .dashboard-item {
        flex: 1 1 calc(50% - 20px);
      }
    }

    /* Mobile: 1 card per row */
    @media (max-width: 576px) {
      .dashboard-item {
        flex: 1 1 100%;
      }
    }
 
/*123456789098765432345678765434567876543*/
.dashboard-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.dashboard-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  width: 31%; /* 3 cards per row */
  overflow: hidden;
  transition: 0.3s ease;
}

.dashboard-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.dashboard-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  z-index: 2;
  text-transform: uppercase;
}

/*.dashboard-image {*/
/*  position: absolute;*/
/*  right: 0;*/
/*  top: 0;*/
/*  bottom: 0;*/
/*  width: 50%;*/
/*  z-index: 1;*/
/*  opacity: 0.8;*/
/*}*/
.dashboard-item {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* 🔹 Gradient Triangle in top-right */
.dashboard-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  /*background: radial-gradient(circle, #23CD6B, #272D2D);*/
  /*background: linear-gradient(to right, rgb(62, 43, 206), rgb(45, 211, 170));*/
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.9;
  background-image: linear-gradient(to right, #2c3e50 0%, #3498db  51%, #2c3e50  100%)
}


/*.dashboard-blue {*/
/*     width: 0;*/
/*      height: 0;*/
/*      border-top: 100px solid red;*/
/*      border-left: 100px solid transparent;*/
/*      background: linear-gradient(to right, rgb(62, 43, 206), rgb(45, 211, 170));*/
  /*width: 100%;*/
  /*height: 300%;*/
  /*object-fit: cover;*/
/*}*/

/* Responsive */
@media (max-width: 992px) {
  .dashboard-item {
    width: 48%; /* 2 cards per row */
  }
}

@media (max-width: 600px) {
  .dashboard-item {
    width: 100%; /* 1 card per row */
  }
}





/* --- Card Glassmorphism + Gradient Border --- */
.dashboard-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  animation: borderRotate 6s linear infinite;
  position: relative;
}

/* Animated Border Effect */
.dashboard-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(90deg, #3E2BCE, #2DD3AA, #3E2BCE);
  border-radius: 20px;
  background-size: 300% 300%;
  animation: gradientMove 5s ease infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Claim Button Image */
.btn-claim {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn-claim:hover {
  transform: scale(1.1);
}

.claim-img {
  width: 90px;
  background: white;
  border-radius: 50%;
  padding: 8px;
  transition: transform 0.4s ease;
}

.claim-img:hover {
  transform: rotate(10deg) scale(1.05);
}

/* Responsive Text */
@media (max-width: 576px) {
  .claim-img {
    width: 70px;
  }
  .fs-5 { font-size: 1rem !important; }
  .fs-3 { font-size: 1.4rem !important; }
}

/*---------------------time counter ---------------------*/
.profile-card {
  border-radius: 15px;
  background:#1c1323;
  color:white !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;

}
.profile-card:hover {
  transform: translateY(-3px);
}

.profile-pic img {
  border: 4px solid #f1f1f1;
  object-fit: cover;
}

.profile-title {
  font-weight: 600;
  color: #ffcc00;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

.profile-info {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}

.profile-info span:first-child {
  color:white;
  font-weight: 500;
}
.profile-info span:last-child {
  color:white;
  font-weight: 600;
}

/* Mining Box Styling */
.mining-box {
    border-radius: 20px;
    background-image: 
        linear-gradient(to right, rgba(62,43,206,0.6), rgba(45,211,170,0.6)),
        url('<?php echo base_url('public/associate/img/button.png'); ?>');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 20px;
}

/* Card Body */
.mining-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 250px;
}

/* Mining text */
.mining-text {
    font-size: 1.1rem;
    /*margin-bottom: 10px;*/
}

/* Image wrapper & animation */
.mining-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.mining-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /*background-color: #fff;*/
    padding: 5px;
    /*animation: scaleUp 1.5s infinite alternate;*/
}

@keyframes scaleUp {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Countdown timer styling */
.countdown-wrapper {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}


/*==============================================*/
.custom-dashboard-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Each card */
.custom-dashboard-card {
  position: relative;
  flex: 1 1 calc(25% - 15px); /* 4 cards in a row */
  min-width: 200px;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  transition: transform 0.3s ease;
}

.custom-dashboard-card:hover {
  transform: translateY(-5px);
}

/* Clip-path background */
.custom-card-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgb(38 32 5 / 80%), #ffc107);
  /*clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);*/
  z-index: 0;
}

/* Card content */
.custom-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Text on left */
  padding: 20px;
}

/* Text styling */
.custom-card-text b {
  font-size: 1rem;
  line-height: 1.3;
}

/* Responsive: 2 cards per row on tablets */
@media (max-width: 768px) {
  .custom-dashboard-card {
    flex: 1 1 calc(50% - 10px);
  }
}

/* 1 card per row on small mobile */
@media (max-width: 480px) {
  .custom-dashboard-card {
    flex: 1 1 100%;
  }
}

/*=============================================*/
/* Mining Box Styling */
.mining-box {
  border-radius: 20px;
  /*background-image: */
  /*  linear-gradient(to right, rgba(62,43,206,0.6), rgba(45,211,170,0.6)),url('<?php echo base_url('public/associate/img/button.png'); ?>');*/
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: white;
}

.mining-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 250px;
  border-radius: 20px;
}

/* Text styling */
.mining-text {
  font-size: 2.1rem;
  /*margin-bottom: 10px;*/
}

/* Image Wrapper & Animation */
.mining-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

.mining-image {
  /*width: 120px;*/
  /*height: 120px;*/
  border-radius: 50%;
  /*background-color: #fff;*/
  padding: 5px;
  /*animation: scaleUp 1.5s infinite alternate;*/
  cursor: pointer;
}

@keyframes scaleUp {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Countdown Timer */
.countdown-wrapper {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}


.dashboard-section-one {
  width: 100%;
}
.mining-box {
  border-radius: 20px;
 background-color: linear-gradient(to right, #2c3e50 0%, #3498db 51%, #2c3e50 100%); 
  color: #fff;
  padding: 0px;
}
.mining-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}
.mining-image {
  width: 300px;
  height:300px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.mining-image:hover {
  transform: scale(1.1);
}


/*=======================================*/
.wallet-dashboard-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.wallet-card {
  background: #fff;
  border: 2px solid #00ff75;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.wallet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.wallet-card-content {
  text-align: center;
  padding: 20px 10px;
}

.wallet-icon {
  font-size: 28px;
  color: #007c3d;
  margin-bottom: 10px;
}

.wallet-text {
  font-size: 15px;
  font-weight: 500;
  color: #111;
}

.wallet-text b {
  color: #333;
  display: block;
  margin-bottom: 4px;
}

.wallet-text span {
  font-weight: 600;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .wallet-dashboard-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wallet-dashboard-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .wallet-card-content {
    padding: 15px 5px;
  }
  .wallet-icon {
    font-size: 22px;
  }
}

   /*FIRST-BOX*/
 /* Main Box Styling */
.swap-box {
    width: 100%;
    /*background: linear-gradient(to bottom, black, #622929);*/
    /*background: linear-gradient(135deg, #0a1c3b, #09214f);*/
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Makes sure items stack on smaller screens */
    background-image: linear-gradient(90.8deg, rgb(27, 53, 68) 2.2%, rgb(110, 180, 135) 84%);
}

/* Left Side Content */
.swap-left {
    flex: 1;
    color: #fff;
}

.swap-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.5rem;
        color: #FEDF83;
}

.swap-list {
    padding: 0;
    margin: 0;
}

.swap-list li {
    list-style: none;
    color: #cdd7e5;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.swap-list li i {
    color: #2eccff;
    margin-right: 8px;
}

/* Right Side Image */
.swap-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.swap-img {
    width: 250px;   
    height: 200px;   
    border-radius: 10px;
}


.second-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}
.profile-card {
    background-color: #2c3e50;
    border-radius: 15px;
    color: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-title {
    font-size: 20px;
    font-weight: 600;
   color: #FEDF83;
}

.profile-info {
    font-size: 16px;
    margin-bottom: 10px;
}

.profile-info span:first-child {
    font-weight: 600;
}

.profile-info span {
    color: #ccc;
    font-weight: 500;
}


.text-info {
    color: #1abc9c;
}

.text-warning {
    color: #f39c12;
}

.text-danger {
    color: #e74c3c;
}

.profile-pic img {
    border: 5px solid #00bfff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-info .text-danger, 
.profile-info .text-warning {
    font-weight: 600;
}


@media (max-width: 767px) {
    .profile-card {
        padding: 15px;
    }

    .profile-title {
        font-size: 18px;
    }

    .profile-info {
        font-size: 14px;
    }

    .profile-info span {
        font-size: 14px;
    }
}
.premium-card {
    /*background: linear-gradient(145deg, #1f2a38, #2c3e50);*/
    /*background-image: linear-gradient(to right, #2c3e50 0%, #3498db 51%, #2c3e50 100%);*/
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    color: #fff;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(90.8deg, rgb(27, 53, 68) 2.2%, rgb(110, 180, 135) 84%);
}

.premium-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.card-section {
    margin-bottom: 25px;
}
.flexy-1{
    display:flex;
    justify-content:space-between;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 2px solid #00d8ff;
    display: inline-block;
    padding-bottom: 4px;
}

.news-marquee {
    /*background: rgba(255, 255, 255, 0.05);*/
    background: #2c1f36;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    color: #fff;
   border: 1px solid #FEDF83;
}

.referral-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.referral-input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 12px;
   border: 1px solid #FEDF83;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
}

.copy-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    background: #00d8ff;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #1abcfe;
}

.capping {
    font-size: 14px;
    color: #ccc;
    float: right;
}

.progress-container {
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    overflow: hidden;
    height: 15px;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    background: #00ffa1 !important;
    text-align: center;
    line-height: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border-radius: 25px 0 0 25px;
    transition: width 0.5s ease-in-out;
}

/* Responsive */
@media (max-width: 767px) {
    .premium-card {
        padding: 20px 15px;
    }
    .section-title {
        font-size: 16px;
    }
    .referral-input {
        font-size: 13px;
    }
    .copy-btn {
        font-size: 13px;
        padding: 8px 15px;
    }
    .progress-container {
        height: 12px;
    }
    .progress-bar {
        font-size: 12px;
        line-height: 12px;
    }
}
.wallet-dashboard-section {
  width: 100%;
}

.wallet-card {
  background: linear-gradient(135deg, #1e2a38 0%, #22334a 100%);
  border: 2px solid #24f4c5;
  border-radius: 12px;
 
  color: #00f7e6;
  box-shadow: 0 3px 8px rgba(36, 244, 197, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  height: 100%; 
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.wallet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(36, 244, 197, 0.5);
}

.wallet-card-content {
 
  align-items: center;
  gap: 10px;
  width: 100%;
}

.wallet-icon {
 
  border-radius: 50%;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
 
}

.wallet-text b {
  display: block;
  font-weight: 500;
  font-size: 9px;
 color:white;
  text-transform: uppercase;
 
}

.wallet-text span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00f7e6;
  line-height: 1.2;
}

.card-2{
 background-color: linear-gradient(to right, #2c3e50 0%, #3498db 51%, #2c3e50 100%);   
}
.dashboard-gradient-card1 {
 background-color: linear-gradient(to right, #2c3e50 0%, #3498db 51%, #2c3e50 100%);
 
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.4);
  border-radius: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dashboard-title {
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 0.5rem;
  color: #e0f7ff;
}

.dashboard-gradient-item {
  /*background-color: rgba(255, 255, 255, 0.1);*/
  background-image: linear-gradient(90.8deg, rgb(27, 53, 68) 2.2%, rgb(110, 180, 135) 84%);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  cursor: default;
  padding-left: 1rem;
  padding-right: 1rem;
}

.dashboard-gradient-item:hover {
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 170, 255, 0.6);
  border-color: #00ffff;
  color: #fff;
}

.dashboard-label {
  font-weight: 600;
  color: #d0eaff;
}

.dashboard-value {
  font-weight: 700;
  color: #ffffff;
}

/* Responsive font sizing */
@media (max-width: 576px) {
  .dashboard-gradient-item {
    font-size: 0.9rem;
  }
}


/* Full Card */
.bonus-card-container {
 /*background-image: linear-gradient(to right, #2c3e50 0%, #3498db 51%, #2c3e50 100%);*/
  padding: 22px;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background-image: linear-gradient(90.8deg, rgb(27, 53, 68) 2.2%, rgb(110, 180, 135) 84%);
}

/* Title */
.bonus-card-title {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid skyblue;
  padding-bottom: 8px;
  margin-bottom: 20px;
  color: #FEDF83;
}

/* Each Row */
.bonus-row {
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 15px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  transition: 0.3s ease;
}

/* Hover Effect */
.bonus-row:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: #00eaff;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.4);
}

/* Texts */
.bonus-label {
  font-weight: 600;
  color: #d6efff;
}

.bonus-value {
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .bonus-row { 
    font-size: 14px;
    padding: 10px;
  }
}
.card{
   background:#1c1323;
    /*background-image: linear-gradient(to right, #618bb5 0%, #3498db 51%, #2c3e50 100%) !important;*/
}
.card-header h4{
    color:white !important;
}

/*-------------------------------------------------------*/

.card {
  border-radius: 12px;
  background:linear-gradient(135deg, teal, #2b081a) !important;
  transition: 0.3s;
}
.card:hover {
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}
.mini-card {
  background: #fff;
  transition: 0.3s ease;
}
.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.text-primary {
  color: #007bff !important;
}
.referral-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  border: 1px solid #666;
  border-radius: 5px;
  padding: 8px 10px;
  color: #fff;
  background-color: #222;
}

.referral-marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 8s linear infinite;
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}
/**/

.profile-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.profile-label {
    font-weight: 600;
    font-size: 16px;
    /*color: #ccc;*/
    color:white;
}

.profile-value-box {
    /*background: rgba(255, 255, 255, 0.08);*/
    padding: 10px 12px;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 15px;
    color: #fff;
    word-break: break-all;       
    overflow-wrap: break-word;
}

/* Fully Responsive */
@media (min-width: 576px) {
    .profile-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .profile-value-box {
        width: 70%;
        margin-top: 0px;
    }

    .profile-label {
        width: 28%;
    }
}
.swap-right {
    width: 200px;          
    height: 200px;
    perspective: 1000px;    
    display: flex;
    justify-content: center;
    align-items: center;
}

.swap-img.rotate-3d {
    /*width: 100%;*/
    height: auto;
    transform-style: preserve-3d;
    animation: rotate3D 4s linear infinite;
}

@keyframes rotate3D {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(20deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}



/*-------------------------------------------------------*/
.label{
      color: white !important;
}





/*==============================================================*/




.pol-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 10px;
}

/* CARD */
.pol-card {
    position: relative;
    background: linear-gradient(135deg, #2b1055, #1a1a40);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.pol-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,255,200,0.25);
}

/* ICON */
.pol-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.pol-icon img {
    width: 32px;
    filter: drop-shadow(0 0 6px rgba(0,255,200,0.6));
}

/* TITLE */
.pol-title {
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.85;
    margin-bottom: 6px;
}

/* VALUE */
.pol-value {
    font-size: 22px;
    font-weight: 700;
    color: #00ffd5;
}

/* ROTATING CIRCLE ICON */
.pol-circle {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(0,255,213,0.3), transparent 70%);
    border-radius: 50%;
}

.pol-circle i {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: rgba(255,255,255,0.4);
}

/* DIFFERENT CARD COLORS (AUTO) */
.pol-card:nth-child(2) {
    background: linear-gradient(135deg, #0f5132, #0a2f23);
}

.pol-card:nth-child(3) {
    background: linear-gradient(135deg, #4a0f2d, #2b081a);
}

.pol-card:nth-child(4) {
    background: linear-gradient(135deg, #1f3c88, #111c44);
}


/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {

    .pol-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 8px;
    }

    .pol-card {
        padding: 16px;
        border-radius: 14px;
    }

    .pol-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 10px;
    }

    .pol-icon img {
        width: 26px;
    }

    .pol-title {
        font-size: 13px;
    }

    .pol-value {
        font-size: 18px;
    }

    .pol-circle {
        width: 55px;
        height: 55px;
        right: -8px;
        bottom: -8px;
    }

    .pol-circle i {
        font-size: 1.4rem;
       right: 19px;
       bottom: 21px;
    }
}

/* =========================
   SMALL MOBILE (Very Small)
   ========================= */

@media (max-width: 480px) {

    .pol-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pol-card {
        padding: 18px;
    }

    .pol-value {
        font-size: 20px;
    }
}














