    body {
      font-family: 'Inter', sans-serif;
      background: radial-gradient(circle at left, #3b1b2f 0%, #0b0b12 45%, #000 100%);
      color: #fff;
    }



    .navbar a {
      color: #ccc !important;
      margin-right: 20px;
      font-size: 14px;
    }

    .navbar a:hover {
      color: #fff !important;
    }

    /* Hero */
 .hero {
    padding: 60px 0 120px;
}

    .badge-small {
      font-size: 12px;
      color: #aaa;
      margin-bottom: 15px;
      display: inline-block;
    }

    .hero h1 {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .hero p {
      color: #aaa;
      max-width: 480px;
      margin-top: 15px;
    }

    
    /* Card Mockups */
    .card-stack {
      position: relative;
    }

    .crypto-card {
      width: 280px;
      height: 180px;
      border-radius: 18px;
      padding: 20px;
      color: #fff;
      position: absolute;
      box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    }

    .card-top {
      background: linear-gradient(135deg, #ff6a6a, #ffb36a);
      top: 0;
      right: 0;
      z-index: 2;
    }

    .card-bottom {
      background: linear-gradient(135deg, #6a7bff, #6af0ff);
      top: 70px;
      right: 40px;
      z-index: 1;
    }

    .crypto-card small {
      opacity: 0.8;
    }

    /* Features */
    .features {
      padding: 80px 0;
      text-align: center;
    }

    .feature-box {
      background: rgba(255,255,255,0.03);
      border-radius: 16px;
      padding: 30px;
      height: 100%;
    }

    .feature-box h6 {
      margin-top: 15px;
      font-weight: 600;
    }

    .feature-box p {
      color: #aaa;
      font-size: 14px;
      margin-top: 10px;
    }

    @media (max-width: 992px) {
      .card-stack {
        margin-top: 60px;
        height: 300px;
      }
    }


    .rotating-logo {
  width: 40px;              /* size adjust kar lo */
  animation: spin 6s linear infinite;
}
.rotating-logo {
  width: 50px;
  animation: spinPulse 6s linear infinite;
  transform-origin: center center;
}

@keyframes spinPulse {
  0% {
    transform: rotateY(0deg) scale(1);
  }
  25% {
    transform: rotateY(90deg) scale(1.1);
  }
  50% {
    transform: rotateY(180deg) scale(1);
  }
  75% {
    transform: rotateY(270deg) scale(1.1);
  }
  100% {
    transform: rotateY(360deg) scale(1);
  }
}


/* Navbar container */
.navbar {
  padding: 0px;
  background: linear-gradient(180deg, rgb(1 38 108 / 90%) 0, rgb(14 88 141) 100%);
  
  z-index: 1000;
}

/* Navbar links */
.navbar-nav .nav-link {
  position: relative;
  color: #00f2ff  !important;
  font-weight: 500;
  margin-right: 25px;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* Neon hover + glow */
.navbar-nav .nav-link:hover{
  color: #00f2ff !important;
  /*text-shadow: 0 0 10px #edc86e, 0 0 20px #edc86e, 0 0 30px #edc86e;*/
}
.active_page{
   color: #00f2ff !important;
  /*text-shadow: 0 0 10px #edc86e, 0 0 20px #edc86e, 0 0 30px #edc86e;*/


}
/* Active page styling like hover effect */
.active_page {
  color: #3293f7 !important; /* neon cyan */
  /*text-shadow: 0 0 10px #edc86e, 0 0 20px #edc86e, 0 0 30px #edc86e;*/
  position: relative; /* underline ke liye zaruri */
}

/* Permanent gradient underline for active page */
/*.active_page::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 100%;      */
/*  height: 2px;*/
/*  left: 0;*/
/*  bottom: -5px;      */
/*  background: linear-gradient(90deg, #3b82f6, #00f2ff);*/
/*  border-radius: 2px;*/
/*}*/

/* Active / current link */
.navbar-nav .nav-link.active {
  color: #00f2ff  !important;
  text-shadow: 0 0 8px #ff6a6a, 0 0 15px #ff6a6a;
}

/* Underline animation */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: linear-gradient(90deg, #3b82f6, #00f2ff);
  transition: 0.3s;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Responsive spacing */
@media (max-width: 992px) {
  .navbar-nav .nav-link {
    margin: 10px 0;
  }
}


/* button css */

/* Base button style */
.btn-gradient {
  padding: 12px 30px;
  border-radius: 50px;
  background-color: linear-gradient(90deg, #3b82f6, #00f2ff); /* starting color */
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
/*.btn-gradient::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: -50%;*/
/*  left: -50%;*/
/*  width: 200%;*/
/*  height: 200%;*/
/*  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);*/
/*  opacity: 0.6;*/
/*  border-radius: 50%;*/
/*  pointer-events: none;*/
/*  animation: pulseGlow 3s infinite;*/
/*}*/

/* Color animation */
@keyframes colorPulse {
  0% {
    background-color: #000;
    color: #fff;
    box-shadow: 0 0 10px #fff;
  }
  50% {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px #fff;
  }
  100% {
    background-color: #000;
    color: #fff;
    box-shadow: 0 0 10px #fff;
  }
}

/* Glow pulse */
@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

/* Optional: hover effect for faster pulse */
.btn-gradient:hover {
  animation-duration: 1.5s;
}

/* //here section for css */

/* ===== HERO SECTION ===== */
.hero {
    color: #fff;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at left, #76a5c526 0%, #1f2c2e7a ), url(bg1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Seamless continuous animation */



/* Animate ONLY the 55% value */
@keyframes gradientMove {
  from {
    --dark-stop: 30%;
  }
  to {
    --dark-stop: 55%;
  }
}


/* Sub badge */
.badge-small {
  color: #d4af37; /* gold */
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

/* Headings */
.hero h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 .text {
  background: linear-gradient(90deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero p {
  margin-top: 15px;
  color: #bbb;
  max-width: 460px;
  font-size: 15px;
}

/* ===== BUTTON ===== */
.btn-gradient {
    margin-top: 30px;
    padding: 14px 20px;
    border-radius: 50px;
    background: linear-gradient(2deg, #04a763, #4c441bba);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* Button animation */
@keyframes goldPulse {
  0% {
    background: #000;
    color: #d4af37;
    box-shadow: 0 0 10px rgba(212,175,55,0.3);
  }
  50% {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 30px rgba(212,175,55,0.8);
  }
  100% {
    background: #000;
    color: #d4af37;
    box-shadow: 0 0 10px rgba(212,175,55,0.3);
  }
}

/* ===== CARD STACK ===== */
.card-stack {
  position: relative;
  height: 280px;
}

/* Crypto card base */
.crypto-card {
  width: 290px;
  height: 180px;
  border-radius: 18px;
  padding: 20px;
  position: absolute;
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

/* Top card */
.card-top {
  background: linear-gradient(135deg, #000, #1a1a1a);
  top: 0;
  right: 0;
  z-index: 2;
}

/* Bottom card */
.card-bottom {
  background: linear-gradient(135deg, #1a1a1a, #000);
  top: 70px;
  right: 50px;
  z-index: 1;
  opacity: 0.85;
}

/* Card text */
.crypto-card small {
  color: #d4af37;
  letter-spacing: 1px;
}

.crypto-card h5 {
  margin-top: 10px;
  letter-spacing: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .card-stack {
    margin-top: 60px;
  }
}










/* ===== FEATURES SECTION ===== */
.features {
    padding: 65px 0;
    background: linear-gradient(180deg, #0a0f28 0%, #00537a 100%);
    color: #fff;
    position: relative;
}

/* Section title */
.features h3 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  background: linear-gradient(90deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Feature box */
.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 25px rgba(212,175,55,0.35),
    0 0 60px rgba(212,175,55,0.15);
  border-color: #d4af37;
}

/* Gold glow on hover */
.feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 0 25px rgba(212,175,55,0.35),
    0 0 60px rgba(212,175,55,0.15);
  border-color: #d4af37;
}

/* Shine effect */
.feature-box::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-box:hover::before {
  opacity: 1;
}

/* Feature title */
.feature-box h6 {
  font-size: 18px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Feature text */
.feature-box p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .features h3 {
    font-size: 2rem;
  }
}

  


/* ===== BLOCKCHAIN SECTION ===== */


/* Section tag */
.section-tag {
  display: inline-block;
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Heading */
.blockchain h2 {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.section-desc {
  max-width: 650px;
  margin: 15px auto 0;
  color: #bbb;
  font-size: 15px;
}

/* Chain boxes */
.chain-box {
    background: rgb(0 0 0 / 70%);
    border: 1px solid rgb(0 0 0 / 25%);
    border-radius: 18px;
    padding: 35px 30px;
    height: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow:
    0 0 30px rgba(212,175,55,0.35),
    0 0 70px rgba(212,175,55,0.15);
  border-color: #d4af37;
}

/* Hover effect */
.chain-box:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 30px rgba(212,175,55,0.35),
    0 0 70px rgba(212,175,55,0.15);
  border-color: #d4af37;
}

/* Box title */
.chain-box h5 {
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Box text */
.chain-box p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
}

/* Stats */
.stats-row h3 {
  color: #d4af37;
  font-weight: 700;
  font-size: 2.2rem;
}

.stats-row p {
  color: #aaa;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .blockchain h2 {
    font-size: 2.1rem;
  }
}



/* ===== ON-CHAIN SECTION ===== */
.onchain-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0f28 0%, #00537a 100%);
    color: #fff;
}

/* Headings */
.onchain-section h2 {
  font-size: 2.7rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 650px;
  margin: 10px auto 0;
  color: #aaa;
  font-size: 15px;
}

/* Card */
.onchain-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.onchain-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 0 40px rgba(212,175,55,0.25);
}

/* Card head */
.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-head i {
  font-size: 26px;
  color: #d4af37;
}

.card-head h6 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Hash text */
.hash {
  font-family: monospace;
  font-size: 14px;
  color: #5ef2ff;
  word-break: break-all;
}

.hash.red {
  color: #ff6a6a;
}

/* Private key blur */
.hash.blur {
  filter: blur(6px);
  user-select: none;
}

/* Buttons */
.card-actions {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.copy-btn {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid #d4af37;
  border-radius: 30px;
  color: #d4af37;
  font-size: 13px;
}

.scan-btn {
  padding: 8px 18px;
  background: #d4af37;
  border-radius: 30px;
  color: #000;
  font-size: 13px;
  text-decoration: none;
}

/* Secure text */
.secure-text {
  color: #d4af37;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .onchain-section h2 {
    font-size: 2.1rem;
  }
}


.blockchain {
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(180deg, #0a0f28 0%, #00537a 100%);
}

/* Seamless continuous animation */
@keyframes gradientFlow {
  0% {
    --dark-stop: 100%;
  }
  25% {
    --dark-stop: 50%;
  }
  50% {
    --dark-stop: 30%;
  }
  25% {
    --dark-stop: 50%;
  }
  100% {
    --dark-stop: 10%;
  }
}


/* Section with background image */
.bsc-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1605296867304-46d5465a13f1?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay for readability */
.bsc-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 0;
}

.bsc-section .container {
    position: relative;
    z-index: 1;
}

.bsc-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFD700; /* golden */
}

/* Responsive typography */
@media (max-width: 992px) {
    .bsc-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .bsc-title {
        font-size: 2rem;
    }
    .bsc-description {
        font-size: 1rem;
    }
}

/* Description text */
.bsc-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
}

/* Image styling */
.bsc-img {
    max-width: 50%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}
.bsc-img:hover {
    transform: scale(1.05);
}

/* Golden button */
.btn-golden {
    background-color: #FFD700;
    color: #000;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}
.btn-golden:hover {
    background-color: #e6c200;
    color: #000;
}


/* Section with background image */
.decentralized-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1616627897087-0b138d31b7f7?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay for readability */
.decentralized-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0f28 0%, #00537a 100%);
    z-index: 0;
}

/* Container content above overlay */
.decentralized-section .container {
    position: relative;
    z-index: 1;
}

/* Title styling */
.decentralized-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700; /* golden */
    text-transform: uppercase;
}

/* Responsive title */
@media (max-width: 992px) {
    .decentralized-title {
        font-size: 2.5rem;
    }
}
@media (max-width: 576px) {
    .decentralized-title {
        font-size: 2rem;
    }
}

/* Description styling */
.decentralized-description {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Button styling */
.btn-golden {
    background-color: #FFD700;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 0.75rem 2rem;
    transition: 0.3s;
}

.btn-golden:hover {
    background-color: #e6c200;
    color: #000;
}


/* .crypto-footer {
  background: radial-gradient(circle at top, #1a1f36, #0b0f1a);
  color: #b5b8c5;
  font-family: 'Inter', sans-serif;
} */

.footer-logo {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-text {
  font-size: 14px;
  max-width: 300px;
}

.footer-title {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #b5b8c5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #6cf2c2;
}

.social-links a {
  font-size: 20px;
  margin-right: 15px;
  color: #b5b8c5;
  transition: 0.3s;
}

.social-links a:hover {
  color: #6cf2c2;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
}

.crypto-footer {
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;

  background-image:
   radial-gradient(circle at left, #76a5c526 0%, #1f2c2e7a ), url(bg2.png);

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}







.about-section {
    background: linear-gradient(180deg, #0a0f28 0%, #00537a 100%);
    color: #000000;
}
.about-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(108, 242, 194, 0.1);
  color: #6cf2c2;
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.about-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-title span {
  color: #6cf2c2;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
}

.about-feature {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 14px;
  height: 100%;
  transition: 0.3s;
}

.about-feature i {
  font-size: 26px;
  color: #6cf2c2;
  margin-bottom: 10px;
  display: inline-block;
}

.about-feature h6 {
  color: #ffffff;
  margin-bottom: 5px;
}

.about-feature p {
  font-size: 13px;
  margin: 0;
}

.about-feature:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.about-img img {
  box-shadow: 0 0 60px rgba(108, 242, 194, 0.25);
}

.how-work-section {
    background: linear-gradient(180deg, #0a0f28 0%, #00537a 100%);
    color: #cfd3ec;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(108, 242, 194, 0.1);
  color: #6cf2c2;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.section-title {
  color: #ffffff;
  font-weight: 700;
}

.section-title span {
  color: #6cf2c2;
}

.section-subtitle {
  font-size: 14px;
  max-width: 520px;
  margin: auto;
}

.work-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  transition: 0.4s;
}

.work-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.08);
}

.work-icon {
  width: 70px;
  height: 70px;
  background: rgba(108, 242, 194, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.work-icon i {
  font-size: 30px;
  color: #6cf2c2;
}

.work-card h5 {
  color: #ffffff;
  margin-bottom: 8px;
}

.work-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 38px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
}


.pricing-section {
  background: radial-gradient(circle at top, #111, #000);
  color: #d1c07a;
}

.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(209,192,122,0.12);
  color: #d1c07a;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.pricing-title {
  color: #ffffff;
  font-weight: 700;
}

.pricing-title span {
  color: #d1c07a;
}

.pricing-subtitle {
  font-size: 14px;
  max-width: 520px;
  margin: auto;
  color: #aaa;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(209,192,122,0.2);
  padding: 35px 25px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: 0.4s;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 40px rgba(209,192,122,0.25);
}

.pricing-card h5 {
  color: #ffffff;
  margin-bottom: 10px;
}

.pricing-card h3 {
  font-size: 40px;
  color: #d1c07a;
  margin-bottom: 20px;
}

.pricing-card h3 span {
  font-size: 14px;
  color: #aaa;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.pricing-card ul li i {
  color: #d1c07a;
  margin-right: 8px;
}

.pricing-card ul li.disable {
  color: #666;
}

.pricing-btn {
  border: 1px solid #d1c07a;
  color: #d1c07a;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.pricing-btn:hover {
  background: #d1c07a;
  color: #000;
}

.pricing-btn.gold {
  background: #d1c07a;
  color: #000;
}

.popular {
  border-color: #d1c07a;
  box-shadow: 0 0 45px rgba(209,192,122,0.35);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #d1c07a;
  color: #000;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
}


.go-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #000;
  border: 1px solid #d1c07a;
  color: #d1c07a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
}

.go-top-btn:hover {
  background: #d1c07a;
  color: #000;
  box-shadow: 0 0 20px rgba(209,192,122,0.6);
}

.go-top-btn.show {
  opacity: 1;
  visibility: visible;
}
