/* Copy Animation */
.user-mobile {
  display: none;
}

.golden
{
  color: var(--golden) !important;
}
.order-details-info-wrapper .row
{
  background: var(--bg-dark);
}
.continue-google {
  display: none;
}
.register-align
{
  margin-top: 145px;
}
.base-color {
  color: hsl(var(--main)) !important;
}
.dropdown_card_parent {
  display: flex;
  flex-wrap: wrap;
}
.text-desc {
  font-size: 0.8rem;
}
.login-image {
  width: 450px;
  height: 450px;
}
.copy-link__icon {
  color: var(--golden);
}

.btn:hover {
  color: var(--text);
  border: 1px solid var(--golden);
}

.btn-design {
  background-color: black;
  border-radius: 50px;
  padding: 10px 35px;
  border: 1px solid white;
  margin-top: 25px;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: hsl(var(--base));
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  border-radius: 5px;
}

[data-theme="light"] .cookies-card {
  background-color: hsl(var(--section-bg));
}

[data-theme="light"] .cookies-card p {
  font-weight: 300;
  color: hsl(var(--black) / 0.7) !important;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.verification-code-wrapper {
  box-shadow: var(--box-shadow) !important;
  background-color: hsl(var(--footer-bg)) !important;
  border: 0 !important;
}

.verification-code input {
  background-color: transparent !important;
  color: hsl(var(--black)) !important;
}

.verification-code::after {
  background-color: transparent !important;
}

.verification-code span {
  background-color: transparent !important;
  border-color: hsl(var(--base)) !important;
}

.verification-code input {
  letter-spacing: 67px !important;
}

/* Add Some Styles for the Verification */
:root {
  --bg-color: #1a1d24;
  --bg-dark: #101014;
  --bg-light: #18181c;
  --grey: #333333;
  --golden: #e7aa14;
}

#toggleSidebar {
  background-color: var(--golden) !important;
  color: #000;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

#toggleSidebar i {
  font-size: 16px;
}

/* Hover Effect */
#toggleSidebar:hover {
  background-color: var(--golden);
}

/* Sidebar Responsive Behavior */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.active {
    transform: translateX(0);
  }
}

/* ===== Search Box ===== */
.nav-link {
  font-size: 14px;
}

.search-box {
  background-color: var(--bg-color);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Input */
.search-input {
  background-color: var(--bg-light);
  color: var(--text);
  border: none;
  padding: 6px 10px;
  min-width: 150px;
  font-size: 0.875rem;
  outline: none !important;
  box-shadow: none !important;
}

.search-input::placeholder {
  color: var(--grey-light);
  opacity: 1;
}

/* Button */
.search-btns {
  background-color: var(--bg-color);
  border: none;
  padding: 6px 12px;
  color: var(--text);
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background-color: var(--grey-light);
}

/* ===== Download Button ===== */
.btn-download {
  background-color: var(--bg-color);
  color: var(--golden);
  border: 1px solid var(--golden);
  padding: 5px 20px;
  font-size: 0.875rem;
  font-weight: normal;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-right: 10px;
}

.btn-download:hover {
  color: #000;
}

/* ===== Download Button ===== */
.btn-download {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  line-height: 1;
}
.btn-download i {
  display: inline-block;
  margin-right: 8px;
  margin-left: 0;
  color: var(--golden);
}

/* ===== Notification Bell ===== */
.notification-bell {
  color: var(--golden);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ===== Divider ===== */
.vr-line {
  width: 1px;
  height: 30px;
  background-color: var(--grey);
}

/* ===== Announcement Bar Wrapper ===== */

.announcement-bar {
  margin-top: 10px;
  margin-left: 5px;
  margin-bottom: 10px;
}

/* ===== Inner Flex Container ===== */
.announcement-container {
  display: flex;
  align-items: center;
  padding: 5px;
  gap: 0.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow-x: auto;
}

/* ===== General Breadcrumb Items ===== */
.announcement-container span {
  color: var(--text);
  transition: color 0.2s ease;
  cursor: pointer;
}

/* ===== Breadcrumb Separator (›) ===== */
.breadcrumb-separator {
  color: var(--grey-light);
  cursor: default;
}

/* ===== Hover Effect on Non-Active Items ===== */
.announcement-container span:hover:not(.breadcrumb-separator):not(.active) {
  color: var(--golden);
}

/* ===== Active Breadcrumb Item ===== */
.announcement-container .active {
  color: var(--golden);
  font-weight: 500;
  cursor: default;
}

/* ===== Avatar Section ===== */
.avatar-wrapper {
  border: 2px solid var(--golden, --golden);
  border-radius: 50%;
  padding: 2px;
  width: 110px;
  height: 110px;
  overflow: hidden;
  margin: 10px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ===== User Details ===== */
.user-details h6 {
  margin: 0;
  font-weight: 500;
  color: var(--golden, --golden);
  font-size: 1rem;
}

.user-details small {
  color: var(--text, #ccc);
  display: block;
  font-size: 0.875rem;
}

/* ===== Balance Card ===== */
.balance-card {
  background-color: var(--bg-light, #1e1e24);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

/* ===== Balance Box ===== */
.balance-box {
  background-color: var(--bg-dark);
  color: var(--text);
  /* border: 1px solid var(--grey); */
  padding: 16px;
  border-radius: 12px;
  min-width: 250px;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25); */
}

/* ===== Form Fields Inside Balance Box ===== */
.balance-box select,
.balance-box input {
  background-color: var(--bg-color);
  color: var(--input-text);
  border: 1px solid var(--input-border);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.875rem;
}

/* ===== Icon Styling ===== */
.balance-box i {
  font-size: 1.1rem;
  /* text-align: center; */
}

/* ===== Action Buttons ===== */
.action-buttons .btn {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* ===== Button Hover Effects ===== */
.btn-yellow:hover,
.btn-outline-yellow:hover {
  box-shadow: 0 4px 10px rgba(231, 170, 20, 0.4);
}

/* ===== Action Buttons ===== */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin: 10px;
}

/* ========== Base: Mobile First (up to 575px) ========== */
/* Already handled in your base CSS: use column layout, full-width components */

/* ========== Small Devices (≥576px) ========== */
@media (min-width: 576px) {
  .balance-card {
    gap: 1rem;
  }

  .balance-box,
  .action-buttons .btn {
    max-width: 100%;
    margin-left: 10px;
  }

  .action-buttons {
    align-items: flex-end;
  }
}

/* ========== Medium Devices (≥768px) ========== */
@media (min-width: 768px) {
  .balance-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .action-buttons {
    flex-direction: column;
    align-items: flex-end;
    width: auto;
  }

  .avatar-wrapper {
    margin: 10px;
  }

  .user-details {
    text-align: left;
  }
}

/* ========== Large Devices (≥992px) ========== */
@media (min-width: 992px) {
  .action-buttons .btn {
    max-width: 180px;
  }
}

/* ========== Extra Large Devices (≥1200px) ========== */
@media (min-width: 1200px) {
  .avatar-wrapper {
    width: 120px;
    height: 120px;
  }

  .balance-box {
    min-width: 315px;
  }

  .btn {
    font-size: 12px;
  }
}

.action-buttons .btn {
  padding: 6px 16px;
  font-weight: 500;
  border-radius: 2px;
  width: 100%;
  max-width: 150px;
}

/* ===== Button Styles ===== */
.btn-yellow {
  background-color: var(--golden);
  color: var(--bg-dark);
  border: none;
}

.btn-yellow:hover {
  background-color: var(--goldens);
  color: var(--bg-dark);
}

.btn-outline-yellow {
  border: 1px solid var(--golden);
  color: var(--golden);
  background-color: transparent;
}

.btn-outline-yellow:hover {
  background-color: var(--golden);
  color: var(--bg-darks);
}

/* ===== Copy Icon Hover ===== */
.fa-copy {
  cursor: pointer;
  transition: color 0.2s ease;
}

.fa-copy:hover {
  color: var(--golden);
}
h6 {
  font-size: 1.3rem;
  font-weight: normal;
}
/*<<<  NAVBAR  >>>*/
/* Dark theme navbar (default) */
.navbar {
  /* background: linear-gradient(to bottom, #222 0%, #111 100%); */
  background: linear-gradient(to bottom, #212121 0%, #040404 100%);
  padding: 5px 0;
  position: sticky;
  top: 0%;
  z-index: 2;
  transition: background 0.3s ease;
}
.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.navbar-toggler {
  margin-left: auto;
}
.navbar-nav .nav-link {
  color: var(--text);
  margin: auto 20px;
  font-size: 1rem;
}
.navbar-nav .nav-link:hover {
  color: var(--white);
}
@media (max-width: 991px) {
  .navbar-nav {
    align-items: start;
  }
}
.nav-links:hover {
  color: var(--white);
  border: 1px solid hsl(var(--base));
}

.navbar img {
  width: 150px;
  padding: 5px;
  height: auto;
}

.dropdown-menu {
  background: linear-gradient(to bottom, #212121 0%, #040404 100%);
  display: none;
  /* min-width: 400px; */
  min-width: 500px;
  position: absolute;
  flex-wrap: wrap;
  top: 100%;
  left: 0;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
  /* opacity: 0; */
  transform: translateY(5px);
  padding-bottom: 10px;
  padding-left: 20px;
  padding-top: 20px;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
}

.dropdown a {
  text-decoration: none;
}
.dropdown-menu:hover {
  background: linear-gradient(to bottom, #2c2c2c 0%, #1a1a1a 100%);
}
.dropdown-card {
  /* width: 50%; */

  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 8px;
  align-items: start;
  padding-block-end: 20px;
}
.dropdown-card img {
  width: 35px;
  height: 35px;
  /* padding-top: 10px; */
}

.dropdown-card-text strong {
  font-size: 18px;
  line-height: 0.8;
  font-weight: 500;
  color: grey;
}

.dropdown-card-text p {
  font-size: 11px;
  color: var(--text);
  line-height: 1.2;
  padding: 0;
  margin: 0;
  margin-top: 3px;
}
/* Theme Toggle Button */
.theme-toggle button {
  background: var(--grey);
  border: none;
  width: 52px;
  padding: 8px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.theme-toggle button i {
  color: gold;
  font-size: 16px;
}

.theme-toggle button:hover {
  background: #464646;
}

.nav-btn {
  color: var(--text);
  border: 1px solid var(--golden);
  font-size: 12px;
  margin-left: 12px;
}
.nav-btn:active {
  color: var(--white) !important;
  border: 1px solid var(--golden) !important;
  margin-left: 12px;
}
.nav-btn:hover {
  color: var(--white);
  border: 1px solid var(--golden);
  background: none;
}

/* Navbar Toggler Button */

.custom-toggler:hover {
  border-color: var(--golden);
}

/*<<<  HERO  >>>*/

.hero-row-one h1 {
  margin-bottom: 30px;
}
.hero-row-one h1 span {
  color: var(--golden);
}
.hero-row-one a {
  background: transparent;
  border: 2px solid white;
  border-radius: 30px;
  padding: 8px 35px;
  font-size: 1rem;
}
.hero-row-one a:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}

.hero-row-one a:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.hero-row-two {
  height: 100px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
  margin-top: 35px;
  margin-bottom: 10px;
}
.hero-data-col {
  border-right: 1px solid var(--grey);
}
.hero-data-col:last-child {
  border-right: none;
}

/*<<<  ABOUT  >>>*/
.about-row {
  justify-content: space-between;
}
.about-text,
.about-card {
  width: 48%;
}
.about-text h6 {
  color: var(--white);
}
.about-text p {
  color: var(--text);
}
.about-text button {
  background: transparent;
  border: 2px solid white;
  color: var(--white);
  border-radius: 30px;
  padding: 8px 35px;
  font-size: 1rem;

  display: block;
  margin-left: auto;
}
.about-text button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}

.about-text button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.about-card .card {
  background: #242424;
  border: 1px solid #3b3b3b;
}
.about-card-link {
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 5px auto;
  color: #4586ff;
}

/*<<<  CARDS  >>>*/
.cards-section {
  padding: 125px 0;
}
/* Dark theme cards (default) */
.cards-section .card {
  background: linear-gradient(to bottom, #212121 0%, #040404 100%);
  border-radius: 20px;
  border: 1px solid #212121;
  width: auto;
  max-height: 215px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
}
.cards-section .card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgb(71 68 68 / 36%);
}
.cards-section .card .card-body {
  position: relative;
  bottom: 75px;
}
.cards-section .card .card-body p {
  color: var(--text);
}
.cards-section .card .cards-image {
  background: linear-gradient(to bottom, #212121 0%, #040404 100%);
  padding: 25px;
  border-radius: 50%;
  position: relative;
  bottom: 75px;
  margin: auto;
  display: block;
  transition: background 0.3s ease;
}

.card-img-top {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
/*<<<  UPPER FOOTER  >>>*/

.upper-f-links a {
  text-decoration: none;
  font-size: 0.8rem;
  /* padding: 6px 0; */
  display: block;
}
.upper-f-icons img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.upper-f-icons p {
  font-size: 0.7rem;
  padding-top: 5px;
  color: var(--text);
}
/*<<<  MID FOOTER  >>>*/
.mid-footer h6 {
  color: #929292;
  margin-bottom: 1rem;
}
/*<<<  LOWER FOOTER  >>>*/
.lower-footer {
  background-color: var(--bg-color);
  color: #fff;
  padding: 20px 0;
}
.lower-f-text {
  border-top: 3px solid var(--grey);
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.lower-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}
.lower-footer .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  size: 15px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: var(--grey);
  color: var(--white);
}
.lower-footer .social-icons a:hover {
  background: #555;
}
.account-links {
  color: var(--golden);
  margin-left: 5px;
  transition: 0.3s ease-in-out;
  font-weight: 700;
}
.account-links:hover {
  color: var(--text);
}

.golden_text {
  color: var(--golden);
}

.navbar-toggler-icon {
  filter: invert(1) brightness(2);
}

.typing-text::after {
  content: "_"; /* Blinking cursor */
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/*<<<  About Page  >>>*/
.about-page-section {
  padding: 80px 0 300px 0;
}
.about-page-cards .card {
  background: linear-gradient(to bottom right, #1c1c1c 45%, #000000 80%);
  width: 320px;
  border-radius: 10px;
  border: 1px solid #464646;
  padding: 15px;
}
.about-page-cards .card:hover {
  background: linear-gradient(to bottom right, #000000 10%, #1c1c1c 100%);
  transition: 0.3s ease-in-out;
  border: 1px solid #555454;
}
.about-page-cards .card.active {
  border: 1px solid rgb(225, 170, 36, 0.7);
}
.about-page-cards .card img {
  width: 25px;
  height: 25px;
}
.about-page-cards .card .card-body {
  padding: 0%;
}
.about-page-cards .card strong {
  font-size: 1rem;
  color: #808080;
}
.tablink {
  text-decoration: none;
}
.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}

/*<<<  Company News Page  >>>*/
.news-page-section {
  padding: 150px 0 300px 0;
}
.news-page-cards {
  justify-content: space-between;
}
.news-page-cards .card {
  background: transparent;
}
.news-page-cards .card .card-body {
  padding: 20px 0;
}
.news-page-cards .card button {
  background: transparent;
  border: 2px solid white;
  color: var(--white);
  border-radius: 30px;
  padding: 4px 28px;
  font-size: 0.9rem;
  text-align: end;

  display: block;
  margin-left: auto;
}
.news-page-cards .card button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/
.contact-page-section {
  margin-top: 90px;
}
.contact-page-forms {
  margin-top: 30px;
}

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.contact-form button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.contact-form button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}

/*<<<  Company News Page  >>>*/
.news-page-section {
  padding: 150px 0 300px 0;
}
.news-page-cards {
  justify-content: space-between;
}
.news-page-cards .card {
  background: transparent;
}
.news-page-cards .card .card-body {
  padding: 20px 0;
}
.news-page-cards .card button {
  background: transparent;
  border: 2px solid white;
  color: var(--white);
  border-radius: 30px;
  padding: 4px 28px;
  font-size: 0.9rem;
  text-align: end;

  display: block;
  margin-left: auto;
}
.news-page-cards .card button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}
.contact-page-text .social-icons a:hover {
  background: #555;
  transition: 0.2s ease-in-out;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}

/*<<<  Company News Page  >>>*/
.news-page-section {
  padding: 150px 0 300px 0;
}
.news-page-cards {
  justify-content: space-between;
}
.news-page-cards .card {
  background: transparent;
}
.news-page-cards .card .card-body {
  padding: 20px 0;
}
.news-page-cards .card button {
  background: transparent;
  border: 2px solid white;
  color: var(--white);
  border-radius: 30px;
  padding: 4px 28px;
  font-size: 0.9rem;
  text-align: end;

  display: block;
  margin-left: auto;
}
.news-page-cards .card button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}

/*<<<  Company News Page  >>>*/
.news-page-section {
  padding: 150px 0 300px 0;
}
.news-page-cards {
  justify-content: space-between;
}
.news-page-cards .card {
  background: transparent;
}
.news-page-cards .card .card-body {
  padding: 20px 0;
}
.news-page-cards .card button {
  background: transparent;
  border: 2px solid white;
  color: var(--white);
  border-radius: 30px;
  padding: 4px 28px;
  font-size: 0.9rem;
  text-align: end;

  display: block;
  margin-left: auto;
}
.news-page-cards .card button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.contact-form button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.contact-form button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.contact-form button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.contact-form button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.contact-form button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.contact-form button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.contact-form button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.contact-form button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}
.invalid-feedback {
  margin-left: 10px;
}
.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.contact-form button:hover {
  border: 2px solid var(--golden);
  background: transparent;
  transition: 0.3s ease-in-out;
  color: var(--text);
}
.contact-form button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.form-select {
  cursor: pointer;
}

.form-select option {
  border: unset;
  background-color: #171717;
  color: var(--text);
}

.form-select option:hover {
  background-color: var(--grey) !important;
}
.form-select option:checked {
  background: var(--grey);
}

.about-page-cards .card p {
  font-size: 0.6rem;

  color: var(--text);
}
.about-page-tab-content p {
  text-align: left;
}
.news-page-cards .card button:active {
  border: 2px solid var(--golden) !important;
  background: transparent !important;
}
.news-page-card-img {
  background: var(--grey);
  border-radius: 12px;
}
.news-page2-card-img {
  background: var(--grey);
  border-radius: 12px;
}
/*<<<  Contact Us Page  >>>*/

.contact-page-text .social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-color);
}

.contact-page-form form .form-control,
.form-select {
  background-color: var(--bg-light);
  color: var(--text);
  border: none;
  padding: 12px 30px;
}
.contact-page-form form .form-control::placeholder,
.form-select::placeholder {
  color: var(--text);
}
.contact-page-form form .form-control:focus,
.form-select:focus {
  background: var(--bg-light);
  border: 1px solid rgb(225, 170, 36, 0.7);
  box-shadow: none;
}

.sign-up {
  font-size: 16px;
}
.form-label {
  color: #dfdfe1;
}

input[type="details"] {
  background-color: white;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="file"],
input[type="date"] {
  background-color: #1c1c1f;
  border: none;
  border-radius: 15px;
  border: 1px solid hsl(var(--white) / 0.14);
}

textarea {
  background-color: #1c1c1f !important;
  border: none !important;
}
textarea:focus {
  background-color: #1c1c1f !important;
  color: #fff !important;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="file"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="date"]:focus {
  background-color: #1c1c1f;
  color: #fff;
}

input[type="file"] {
  color: #fff;
}

input[type="text"]:not(:placeholder-shown),
input[type="password"]:not(:placeholder-shown),
input[type="number"]:not(:placeholder-shown),
input[type="tel"]:not(:placeholder-shown),
input[type="email"]:not(:placeholder-shown),
input[type="date"]:valid {
  color: #ffffff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
  background: #1c1c1f !important;
  color: #ffffff !important;
}

.form-control:focus {
  box-shadow: 0 0 0 0.1rem rgba(255, 227, 0, 0.9);
}

.filled {
  background-color: white !important;
  color: black;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.captcha-box {
  background: white;
  padding: 5px 10px;
  border-radius: 5px;
}
.captcha-img {
  max-height: 38px;
}
.login-btn {
  background: var(--golden);
  border-radius: 15px;
  font-weight: 500;
  padding: 12px;
  font-size: 16px;
  color: var(--bg-dark);
  margin-top: 2px;
}

.login-btn:hover {
  background: var(--golden);
  color: var(--white);
}
#login-form h6 {
  color: var(--white);
}
#login-form p {
  color: var(--white);
}
#login-form label {
  color: var(--white);
}
#register-form label {
  color: var(--white);
  margin-bottom: 5px;
}
.register-logo {
  max-width: 150px;
}
#register-form p {
  color: var(--white);
}
.form-check-input.custom-radio {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 2px solid var(--golden);
}
.form-check-input.custom-radio:checked {
  background-color: var(--golden);
  box-shadow: 0 0 0 2px var(--bg-color) inset;
}
.hero-section {
  background-color: #000000;
}
.fw-bold {
  color: var(--text);
}
.btn-designs {
  background-color: black;
  border-radius: 50px;
  padding: 10px 35px;
  border: 1px solid white;
}
.modal-header {
  border-bottom: 1px solid var(--golden);
}
.modal-footer {
  border-top: 1px solid var(--golden);
}
.modal-title {
  color: var(--text);
}
.btn-designs:hover {
  border: 1px solid var(--golden) !important;
}
.modal-body label {
  margin-bottom: 10px;
}

.modal-content {
  background: var(--bg-color);
}

.fx-page-section {
  padding: 100px 0 100px 0;
}
.fx-page-section p {
  font-size: 0.8rem;
}
.login-page-section {
  margin-top: 50px;
  margin-left: 10px
}
.about-page-sections {
  margin-top: 50px;
}
.user-info__avatars {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--grey);
  margin-right: 7px;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--grey);
}
.user-name {
  color: #ffff;
  font-weight: 600;
  font-size: 0.9rem;
}
.user-role {
  color: var(--golden);
  font-size: 0.75rem;
}
.chevron-icon {
  color: #ffff;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.user-info__profile {
  text-transform: capitalize;
}
.user-roles {
  color: var(--golden);
  font-size: 0.75rem;
  /* text-align: center;
  justify-content: center;
  align-content: center;
  display: block; */
  margin-top: 2px;
}
.fx-page-section h6 {
  margin-top: 15px;
}
.fx-page-section p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.fx-page-section ul {
  padding-left: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
.fx-page-section ul li {
  font-size: 0.8rem;
  color: var(--text);
  list-style: visiable;
  list-style-type: square;
  list-style-position: outside;
  list-style-image: none;
}
.balance-cards {
  background-color: #1a1d24;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}

.title {
  color: #9ca3af;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.balance {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.dropdown {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  margin-left: 8px;
  cursor: pointer;
}

.dropdown option {
  background-color: #1a1d24;
  color: #fff;
}

.sub-balance {
  font-size: 14px;
  color: #9ca3af;
}
/* ========== Market Table Layout ========== */

/* Base table styling */
.market-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: separate;
  border-spacing: 0;
}

.market-table thead th {
  color: var(--text);
  font-size: 14px;
  padding: 4px 0 10px 0;
  text-align: left;
  border-bottom: 1px solid var(--grey-light);
}

.market-table tbody tr {
  border-bottom: 1px solid var(--grey-light);
}

.market-table tbody tr:last-child {
  border-bottom: none;
}

.coin-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coin-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.coin-symbol {
  font-size: 14px;
}

.coin-name {
  color: var(--text);
  font-size: 14px;
}

.price-usd {
  font-size: 12px;
}

.price-inr {
  color: var(--grey-bright);
  font-size: 14px;
}

body.light-mode .sort-icon {
  color: var(--text);
}

.market-change {
  font-size: 14px;
  font-weight: 500;
}

.market-change.positive {
  color: #16c784;
}

.market-change.negative {
  color: #ea3943;
}

.trade-btn {
  color: var(--golden);
  font-size: 14px;
  text-decoration: underline;
}

.sort-icon {
  margin-left: 6px;
  font-size: 0.75rem;
  color: var(--grey-light);
}
.filter-tabs div {
  cursor: pointer;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color 0.3s ease;
}
.filter-tabs {
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}
.sort-icon {
  margin-left: 6px;
  font-size: 0.75rem;
  color: var(--grey-light);
}
.market-table td {
  color: var(--text);
  font-size: 12px;
  padding: 10px 0;
  vertical-align: middle;
  border-bottom: 1px solid var(--grey-light);
}

/* ===== Button Group Container ===== */
.market-header-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Time Filter Buttons ===== */
.btn-time-filter {
  width: 120px;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid var(--grey-light);
  background-color: var(--grey-light);
  color: var(--text);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-time-filter:hover {
  background-color: var(--grey);
  color: var(--text);
}

/* ===== Today Button Highlight ===== */
.btn-time-filter.active {
  background-color: var(--grey);
  color: var(--golden);
  /* golden text */
  border-color: var(--golden);
}

/* ===== View More Link Button ===== */
.btn-view-more {
  font-size: 0.85rem;
  padding: 6px 12px;
  color: var(--golden);
  text-decoration: none;
  border: none;
  background: transparent;
}

.btn-view-more:hover {
  text-decoration: underline;
  color: var(--golden);
}

/* ===== Filter Tabs Wrapper ===== */
.filter-tabs {
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

/* ===== Individual Tab Style ===== */
.filter-tabs div {
  cursor: pointer;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color 0.3s ease;
}

/* ===== Active Tab ===== */
.filter-tabs .active {
  color: var(--golden);
  text-decoration: underline;
}

/* ===== Hover Effect ===== */
.filter-tabs div:hover:not(.active) {
  color: var(--golden);
}

/*<<<  Responsive  >>>*/
@media (max-width: 1200px) {
  /*<<<  NAVBAR  >>>*/
  .navbar-nav .nav-link {
    margin: auto 16px;
    font-size: 1rem;
  }
  /*<<<  Company News Page  >>>*/
  .news-page-cards .card {
    width: 17rem !important;
  }
}
@media (max-width: 1024px) {
  /*<<<  NAVBAR  >>>*/
  .navbar-nav .nav-link {
    margin: auto 13px;
  }

  /* Tablets */
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.8rem;
  }
  h5 {
    font-size: 1.6rem;
  }
  h6 {
    font-size: 1.4rem;
  }
  p {
    font-size: 0.95rem;
  }
}
@media (max-width: 991px) {
  /*<<<  NAVBAR  >>>*/
  .nav-form {
    justify-content: start;
  }

  /*<<<  CARDS  >>>*/
  .cards-section .card {
    max-height: 250px;
  }

  .navbar-nav {
    align-items: start;
  }
  footer ul li,
  footer h6 {
    text-align: left;
  }
  /*<<<  ABOUT PAGE  >>>*/
  .about-page-section {
    padding: 50px 0 225px 0;
  }
  .about-page-cards .card {
    display: block;
    margin: auto;
  }
  .about-page-tab-content h4 {
    text-align: center;
  }
  /*<<<  Company News Page  >>>*/
  .news-page-section {
    padding: 150px 0 225px 0;
  }
  .news-page-section .row {
    gap: 30px;
  }
  .news-page-cards .card {
    width: 100% !important;
  }
  /*<<<  Contact Us Page  >>>*/

  .contact-page-section {
    padding: 150px 0 225px 0;
  }
  .contact-page-form h4 {
    text-align: center;
  }
  .dropdown-menu {
    min-width: 100%;
  }

  .about-page-section .container {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 18px;
  }

  /* .about-page-cards .card {
    width: 100%;
  } */
}
@media (max-width: 768px) {
  /* Mobile Devices */
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  h4 {
    font-size: 1.7rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.3rem;
  }
  p {
    font-size: 0.9rem;
  }

  /*<<<  Hero  >>>*/
  .hero-data-col {
    border-bottom: 1px solid black;
    border-right: none;
  }
  .hero-data-col:last-child {
    border-bottom: none;
  }
  .hero-row-one a {
    margin-bottom: 25px;
  }
  /*<<<  About  >>>*/
  .about-text,
  .about-card {
    width: 100%;
  }
  .about-text button {
    margin-bottom: 30px;
  }
  /*<<<  CARDS  >>>*/
  .cards-section .card {
    max-height: 180px;
    margin-bottom: 100px;
  }
  /*<<<  FOOTER  >>>*/
  .upper-f-icons {
    padding-top: 50px;
  }
  .lower-f-text {
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 0;
  }
  .lower-footer p {
    margin-bottom: 10px;
  }
  /*<<<  Company News Page  >>>*/
  .news-page-cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 70px;
  }
  .about-page-section .row {
    flex-direction: column;
  }
  /* .about-page-cards .card {
    width: 49%;
  } */
  .about-page-section .container .about-page-cards {
    /* flex-direction: row !important; */
    display: flex;
    width: 100%;
    flex-direction: row !important;
  }
  .login-img {
    display: none;
  }
  .register-logo {
    display: none;
  }
}


/* Default (desktop/tablet) - keep your existing flex layout */
.quick-actions .qa-item {
    flex: 0 0 auto; /* prevent shrinking */
}

/* Mobile view - force 3 items per row */
@media (max-width: 768px) {  
  .contact-page-section {
    margin-top: 0px;
}

      .contact-page-section {
        padding: 0px;
    }
  .user-mobile {
    display: block;
  }
    .quick-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px; /* adjust gap as needed */
    }

    .quick-actions .qa-item {
        flex: 0 0 calc(33.333% - 12px); /* exactly 3 per row */
        max-width: calc(33.333% - 12px);
        min-width: unset;  /* remove the fixed 124px */
        padding: 12px 6px; /* compact padding for mobile */
        box-sizing: border-box;
    }
    .user-details
    {
      display: none;
    }

    .balance-box {
    min-width: 277px;
    padding: 0px;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Screens */
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.4rem;
  }
  h5 {
    font-size: 1.3rem;
  }
  h6 {
    font-size: 1.1rem;
  }
  p {
    font-size: 0.85rem;
  }

  /*<<<  FOOTER  >>>*/
  .upper-f-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .bottom-footer__style .align-items-center {
    justify-content: center !important;
  }
  .mid-footer .text-desc {
    padding: 10px;
  }
  .mid-footer h6 {
    text-align: center;
  }
  #navbarSupportedContent .dropdown {
    margin-left: 0px;
  }
  #navbarSupportedContent .nav-item a {
    font-size: 12px;
    padding: 10px;
  }
  #navbarSupportedContent .dropdown-card {
    padding-left: 10px;
    padding-bottom: 5px;
  }
  .login-image {
    display: none;
  }
  .continue-google .btn {
    margin-top: 0px;
  }
  #login-form .continue-google .btn-design {
    padding: 8px 0px;
  }
  .about-page-cards .card {
    margin-left: 20px;
  }
  footer .upper-f-links .col-6.col-md-3:nth-child(3),
  footer .upper-f-links .col-6.col-md-3:nth-child(4) {
    margin-top: 20px;
  }
  .cards-section {
    padding: 0px;
  }
  .continue-google {
    display: none !important;
  }
 
  .wallet-order-list {
    display: none;
  }
  .avatar-wrapper {
    display: none;
  }
  .balance {
    font-size: 25px;
  }
  #balanceCurrency {
    font-size: 12px;
  }

  .style {
    display: none !important;
  }
  .user-details {
    padding: 20px 0px 0px 30px;
  }
  /* .alignment {
    margin-left: 246px !important;
  } */
   .dashboard-sidebar-filter__button
   {
    margin-right: 32%;
   }
  .register-align
{
  margin-top:0px;
}
.dashboard-body__bar
{
  display: none !important;
}
.quick-actions .qa-item {
        flex: 0 0 calc(33.333% - 12px); 
        max-width: calc(33.333% - 12px);
        min-width: 22px !important;
        padding: 12px 6px !important;
        box-sizing: border-box;
    }
}

