:root {
  --primary-color:   #010427;
  --secondary-color:   #4cd8c6;
  --white:      #ffffff;
  --black:      #000000;
  --tertiary:   #b975e4;
  --color-one:  #34f7c5;
}

body {
  overflow-x: hidden;
  position: relative;
}


.animate-pulse {
  -webkit-animation: pulse 2s infinite ease-in-out;
          animation: pulse 2s infinite ease-in-out;
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@-webkit-keyframes bg-pan {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes bg-pan {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.btn-start {
    background: linear-gradient(135deg, var(--color-one), var(--secondary-color));
    color: var(--color-prymary);
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(52, 247, 197, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    display: inline-block;
    user-select: none;
    text-decoration: none;
}

.btn-start:hover {
    background: linear-gradient(135deg, var(--tertiary), var(--secondary-color));
    box-shadow: 0 8px 16px rgba(185, 117, 228, 0.5);
    transform: translateY(-3px);
    outline: none;
}



.btn-wow {
  position: relative;
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  background: -webkit-gradient(linear, right top, left top, from(#f63bf3), color-stop(#34f7c5), to(#f63bf3));
  background: linear-gradient(270deg, #f63bf3, #34f7c5, #f63bf3);
  background-size: 300% 100%;
  border: none;
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 0 0 15px rgba(246, 59, 243, 0.4);
          box-shadow: 0 0 15px rgba(246, 59, 243, 0.4);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn-wow:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 25px rgba(52, 247, 197, 0.6);
          box-shadow: 0 0 25px rgba(52, 247, 197, 0.6);
  -webkit-animation: bg-pan 6s ease infinite;
          animation: bg-pan 6s ease infinite;
}
.btn-wow:focus {
  outline: none;
  -webkit-box-shadow: 0 0 30px rgba(246, 59, 243, 0.8);
          box-shadow: 0 0 30px rgba(246, 59, 243, 0.8);
}

.btn-gradient {
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary-color)), color-stop(var(--tertiary)), to(#34f7c5));
  background: linear-gradient(to right, var(--secondary-color), var(--tertiary), #34f7c5);
  color: var(--white);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-size: 200%;
  background-position: left;
}
.btn-gradient:hover {
  background-position: right;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.text-gradient {
  background: -webkit-gradient(linear, right top, left top, from(var(--tertiary)), color-stop(var(--color-one)), to(var(--tertiary)));
  background: linear-gradient(270deg, var(--tertiary), var(--color-one), var(--tertiary));
  background-size: 600% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
  -webkit-animation: gradient-move 10s ease infinite;
          animation: gradient-move 10s ease infinite;
}

@-webkit-keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

#connectWallet {
  background-color: transparent;
  color: var(--white); /* use your :root variable */
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: border 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Border animation on hover */
#connectWallet::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-one);
  z-index: -1;
  transition: left 0.4s ease;
}

/* On hover */
#connectWallet:hover::before {
  left: 0;
}

#connectWallet:hover {
  color: var(--primary);
  border-color: var(--color-one);
}

/* Ensure text stays above the ::before */
#connectWallet {
  z-index: 1;
}

#connectWallet span {
  position: relative;
  z-index: 2;
}


/* Animated Button */
.animated-btn {
  position: relative;
  padding: 12px 28px;
  background-color: var(--primary-color);;
  color: var(--white);
  font-weight: 600;
  border: 2px solid var(--secondary-color);
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  -webkit-animation: borderFadeIn 1s ease-out;
          animation: borderFadeIn 1s ease-out;
}
@-webkit-keyframes borderFadeIn {
  from {
    border-color: transparent;
    opacity: 0;
  }
  to {
    border-color: var(--secondary-color);
    opacity: 1;
  }
}
@keyframes borderFadeIn {
  from {
    border-color: transparent;
    opacity: 0;
  }
  to {
    border-color: var(--secondary-color);
    opacity: 1;
  }
}



/* General Navbar Styling */
.navbar {
    background-color: var(--black);
    padding: 1rem 2rem;
}

/* Dropdown Toggle */
.navbar .dropdown-toggle {
    color: var(--white); /* $white */
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.4rem;
}

/* Hover effect for Dropdown Toggle */
.navbar .dropdown-toggle:hover {
    color: var(--secondary-color); /* $secondary */
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--primary-color);; /* $primary */
    border: 2px solid var(--secondary-color); /* $secondary */
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    transition: all 0.3s ease-in-out;
}

/* Dropdown Items */
.dropdown-item {
    color: var(--white); /* $white */
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effects for Items */
.dropdown-item:hover {
    background-color: #34f7c5; /* $color_one */
    color: var(--primary-color); /* contrast */
    font-weight: bold;
}

/* Optional: Active State */
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--tertiary); /* $tertiary */
    color: var(--white);
}

/* Rounded Arrow Styling */
.navbar .dropdown-toggle::after {
    border-top-color: var(--white); /* Arrow color */
}


.hero-part-1 {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* overflow-x: hidden; */
    overflow: hidden;
}

.hero-part-1 .overlay {
    padding: 0px;
    margin: 0px;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-part-1 .hero-badge img {
  width: 25px;
}

.hero-part-1 .hero-content h1{
    color: var(--secondary-color);
}

/* .hero-part-1 .logo img{
    animation: floatImage 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    will-change: transform;
}
@keyframes floatImage {
  0% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
  50% {
    -webkit-transform: translateY(-12px) scale(1.02);
            transform: translateY(-12px) scale(1.02);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
} */




.hero_logo {
    animation: rotateing 30s linear infinite ;
    overflow: hidden;
}

@keyframes rotateing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



.hero_logo.rotated {
    transition: transform 0.2s ease;
    transform-style: preserve-3d;
    perspective: 800px;
    transform: rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
}

.about {
  background: var(--primary-color);
}


.about_section_2 {
    background: linear-gradient(to bottom, black, #000322);
}


.ecosystem {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}

.ecosystem .overlay {
    background-color: rgba(1, 4, 39, 0.2);
}

.ecosystem .container .ecosystem-cards .ecosystem-card {
  border: 1px solid var(--color-one);
  border-radius: 8px;
  overflow: hidden;
  height: 500px;
  background-color: #1f1f4f;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.ecosystem .container .ecosystem-cards .ecosystem-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 8px 20px rgba(52, 247, 197, 0.2);
          box-shadow: 0 8px 20px rgba(52, 247, 197, 0.2);
}
.ecosystem .container .ecosystem-cards .ecosystem-card:hover .img-container img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.ecosystem .container .ecosystem-cards .ecosystem-card:hover .card-text p {
  color: #000000;
}
.ecosystem .container .ecosystem-cards .ecosystem-card .img-container {
  height: 220px;
  overflow: hidden;
  border-radius: 6px;
}
.ecosystem .container .ecosystem-cards .ecosystem-card .img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.ecosystem .container .ecosystem-cards .ecosystem-card .card-text {
  text-align: center;
  background: var(--tertiary);
}
.ecosystem .container .ecosystem-cards .ecosystem-card .card-text p {
  font-size: 28px;
  margin-bottom: 0;
  color: var(--white);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/*** Roadmap ***/
.roadmap {
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}

.roadmap .overlay {
    background-color: rgba(1, 4, 39, 0.6);
}

.roadmap .title h1 {
  background: -webkit-gradient(linear, right top, left top, from(#f63bf3), color-stop(#34f7c5), to(#f63bf3));
  background: linear-gradient(270deg, #f63bf3, #34f7c5, #f63bf3);
  background-size: 600% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
}
.roadmap .title p {
  color: var(--white);
}
.roadmap .roadmap-carousel {
  position: relative;
}
.roadmap .roadmap-carousel::before {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  top: 20px;
  left: 0;
  border-top: 2px dashed var(--tertiary);
}
.roadmap .roadmap-carousel .roadmap-item {
  position: relative;
  padding-top: 150px;
  text-align: center;
  color: var(--white);
}
.roadmap .roadmap-carousel .roadmap-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 115px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-right: 2px dashed #b975e4;
}
.roadmap .roadmap-carousel .roadmap-item::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 111px;
  left: 50%;
  margin-left: -7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #b975e4;
}
.roadmap .roadmap-carousel .roadmap-item .roadmap-point {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 6px;
  left: 50%;
  margin-left: -15px;
  background: #34f7c5;
  border: 2px solid var(--secondary-color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.roadmap .roadmap-carousel .roadmap-item .roadmap-point span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
}

#partnership {
  background-color: #010f22;
}
#partnership .partner-logo {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#partnership .partner-logo:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#team {
  background-color: var(--primary-color);
  width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}
#team .overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Core Slide Style */
#team  .team-members .members-slide.rotated {
  width: 250px;
  max-width: 250px;
  height: 350px;
  margin: 10px;
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
  will-change: transform;
}
#team  .team-card img.team-logo {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
}
#team .team-card .card-body {
  margin-top: 12px;
}

#team .team-card h5 {
  color: var(--white);
}

#team .team-card p {
  color: var(--secondary-color);
}

#team .team-card .card-description {
  color: var(--white);
}

.team-members .members-slide.rotated:hover .card-body {
  transform: translateZ(30px);
  transition: transform 0.3s ease;
}


.faq-section {
    /* background: var(--primary-color); */
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}
.faq-section .overlay{
    background-color: rgba(1, 4, 39, 0.6);
}
.faq-section P {
  color: var(--white);
}
.faq-section .faq-section .faq-container {
  max-width: 1000px;
  margin: auto;
}
.faq-section .faq-section .faq-container .faq-item {
  background-color: var(--black);
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.faq-section .faq-section .faq-container .faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 1rem 2rem;
}
.faq-section .faq-section .faq-question {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 2rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.faq-section .faq-section .faq-question:hover {
  background-color: #0d1b2a;
}
.faq-section .faq-section .faq-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.faq-section .faq-section .faq-number {
  width: 80px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--secondary-color);
}
.faq-section .faq-section .faq-title {
  font-size: 1rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary-color)), color-stop(#b975e4), to(#34f7c5));
  background: linear-gradient(to right, var(--secondary-color), #b975e4, #34f7c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-section .faq-section .faq-icon {
  font-size: 1.5rem;
  color: #34f7c5;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.faq-section .faq-section .faq-item.active .faq-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-section .faq-section .faq-answer {
  color: #cacaca;
  font-size: 0.95rem;
  padding: 0 2rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.tocanomix {
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}
.tocanomix .overlay {
    background-color: rgba(1, 4, 39, 0.6);
}
.tocanomix #chartContainer {
  position: relative;
  width: 300px;
  height: 300px;
}
.tocanomix #chartContainer canvas {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.tocanomix #chartContainer canvas:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.tocanomix #chartContainer #centerText {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-family: sans-serif;
}
.tocanomix #chartContainer #centerText h2 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#ff00cc), to(#3333ff));
  background: linear-gradient(to right, #ff00cc, #3333ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tocanomix #chartContainer #centerText p {
  margin: 0;
  font-size: 16px;
  color: var(--secondary-color);
}
.tocanomix .swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tocanomix .swiper .tocan-swiper-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.tocanomix .swiper .tocan-swiper-container .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tocanomix .swiper .tocan-swiper-container .swiper-slide {
  width: 90%;
  height: 100px;
  color: var(--white);
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  background: var(--primary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
}
.tocanomix .swiper .tocan-swiper-container .swiper-slide p {
  margin: 0;
  font-size: 16px;
}
.tocanomix .swiper .tocan-swiper-container .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.tocanomix .swiper .tocan-swiper-container .swiper-button-prev,
.tocanomix .swiper .tocan-swiper-container .swiper-button-next {
  width: 30px;
  height: 30px;
  background: rgba(66, 133, 244, 0.15);
  color: #4285f4;
  border: 2px solid rgba(66, 133, 244, 0.4);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
.tocanomix .swiper .tocan-swiper-container .swiper-button-prev::after,
.tocanomix .swiper .tocan-swiper-container .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
.tocanomix .swiper .tocan-swiper-container .swiper-button-prev:hover,
.tocanomix .swiper .tocan-swiper-container .swiper-button-next:hover {
  background: var(--secondary-color);
  color: white;
  -webkit-transform: translateX(-50%) scale(1.1);
          transform: translateX(-50%) scale(1.1);
  -webkit-box-shadow: 0 8px 20px rgba(66, 133, 244, 0.35);
          box-shadow: 0 8px 20px rgba(66, 133, 244, 0.35);
  border-color: transparent;
}
.tocanomix .swiper .tocan-swiper-container .swiper-button-prev {
  top: 30px;
}
.tocanomix .swiper .tocan-swiper-container .swiper-button-next {
  bottom: 30px;
  top: auto;
}

.contant {
  background: var(--primary-color);
}

#dashboardTabs .nav-item {
    margin-right: 20px;
}
#dashboardTabs .nav-link {
    color: var(--white); /* White text */
    font-weight: 600; /* Bold font */
    font-size: 1.1rem; /* Slightly larger font size */
    padding: 12px 24px; /* Increased padding for better spacing */
    border-radius: 10px; /* More rounded corners */
    text-align: center; /* Center the text within the link */
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
    text-decoration: none; /* Remove underline */
    background-color: transparent; /* Default transparent background */
    position: relative; /* To enable positioning for pseudo-elements */
}

#dashboardTabs .nav-link:hover {
    color: var(--white); /* Keep text white on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Subtle shadow on hover */
}

#dashboardTabs .nav-link.active {
    background-color: #f63bf3; /* Purple background when active */
    color: var(--white); /* White text when active */
    box-shadow: 0 4px 10px rgba(246, 59, 243, 0.6); /* Purple shadow for active state */
    transform: scale(1.05); /* Slight scaling effect for active link */
}

#dashboardTabs .nav-link::after {
    content: ""; /* Empty content for the underline */
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #34f7c5; /* Light green underline */
    transition: all 0.3s ease-in-out; /* Smooth underline transition */
    transform: translateX(-50%); /* Center the underline */
}

#dashboardTabs .nav-link:hover::after {
    width: 100%; /* Full width on hover */
}

#dashboardTabs .nav-link.active::after {
    width: 100%;
    background-color: #f63bf3; /* Purple underline on active state */
}


.tab_contanet {
  background: var(--primary-color);
}


.tab_contanet #dashboardTabContent #dashboard.active.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.tab_contanet #dashboardTabContent #dashboard .image-banner {
  border-radius: 12px;
}
.tab_contanet #dashboardTabContent #dashboard .image-banner img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  max-width: 100%;
  height: 25vh;
  width: 100%;
}
.tab_contanet #dashboardTabContent #dashboard .row .card {
  border: 1px solid #f63bf3;
  background-color: var(--primary-color);;
  border-radius: 10px;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.tab_contanet #dashboardTabContent #dashboard .row .card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(8, 148, 129, 0.4);
          box-shadow: 0 10px 25px rgba(8, 148, 129, 0.4);
}
.tab_contanet #dashboardTabContent #dashboard .row .card h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.tab_contanet #dashboardTabContent #dashboard .row .card h5::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  margin-top: 0.5rem;
}
.tab_contanet #dashboardTabContent #dashboard .row .card .card-text p {
  font-size: 14px;
  color: white;
}
.tab_contanet #dashboardTabContent #dashboard .row .card .card-text p strong {
  font-size: 18px;
}

@-webkit-keyframes fadeSlideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* node page */
.node {
  background: var(--primary-color);
  width: 100%;
  height: 100%;
}
.node .card {
  color: var(--white);
  border: 1px solid var(--secondary-color);
  border-radius: 12px;
}
.node .card .card-body .card-top {
  text-align: center;
}
.node .card .card-body .nft-3d-container {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.node .card .card-body .card-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.node .card .card-body .card-img img {
  width: 250px;
}
.node .card .card-body .node-buy-wrapper .counter-box {
  background-color: #1f3552;
  border-radius: 4px;
}
.node .card .card-body .node-buy-wrapper .counter-box .counter-btn {
  width: 50px;
  height: 50px;
  background-color: #f63bf3;
  border-radius: 4px;
}
.node .card .card-body .node-buy-wrapper .counter-box .counter-btn .icon {
  font-size: 20px;
}
.node .card .card-body .node-buy-wrapper .counter-box .counter-text {
  min-width: 80px;
  font-size: 14px;
}
.node .card .card-body .node-buy-wrapper .buy-btn {
  height: 51px;
  border-radius: 6px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f63bf3), to(#8e44ad));
  background-image: linear-gradient(to right, #f63bf3, #8e44ad);
  background-position: 93.0667% 0%;
}

.custom-footer {
  /* background: linear-gradient(180deg, var(--primary-color), var(--secondary-color)); */
  color: var(--white);
}

.custom-footer a {
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.custom-footer a:hover {
  color: var(--secondary-color);
}

.custom-footer .social-icons a {
  display: inline-block;
  margin: 0 8px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.custom-footer .social-icons i {
  font-size: 22px;
  color: var(--white);
}

.custom-footer .social-icons a:hover {
  background-color: var(--white);
  transform: scale(1.1);
}

.custom-footer .social-icons a:hover i {
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .custom-footer .social-icons {
    margin-top: 15px;
  }
}

.user-node-list .node-card {
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
}
.user-node-list .node-card .node-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.user-node-list .node-card .node-image-wrapper .node-details .title{
    position: absolute;
    top: 0;
    left: 0;
    color: var(--secondary-color);
    padding: 5px 10px; ;
    text-align: center;
}


.user-node-list .node-card .node-image-wrapper .node-details .details_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px;
    text-align: center;
    border-radius: 0 0 12px 12px
}





/*==========================
    Modal Styling
===========================*/
.custom-modal {
  background: rgba(1, 4, 39, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(76, 216, 198, 0.2);
  color: var(--white);
}

/* Cards */
.node-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 30px 20px;
  color: var(--white);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(76, 216, 198, 0.2);
  transition: 0.4s ease;
  position: relative;
}

.node-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 12px rgba(76, 216, 198, 0.5);
}

/* Featured */
.node-card.featured {
  border: 1px solid var(--tertiary);
  box-shadow: 0 0 16px rgba(185, 117, 228, 0.6);
}

.node-card .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(45deg, var(--secondary-color), var(--tertiary));
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
}

/* Price */
.node-card h2 {
  font-size: 42px;
  margin: 15px 0;
  background: linear-gradient(45deg, var(--color-one), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button */
.btn-glow {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(45deg, var(--secondary-color), var(--tertiary));
  border: none;
  transition: 0.3s;
}

.btn-glow:hover {
  box-shadow: 0 0 8px var(--secondary-color);
  transform: scale(1.02);
}

/* Title */
.modal-title {
  background: linear-gradient(45deg, var(--secondary-color), var(--tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}






