.brics-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

@media (max-width: 768px) {
    .brics-auth {
        position: static;
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
        /*width: 100%;*/
    }

    .brics-nav {
        width: 100%;
    }

    .brics-nav ul {
        flex-direction: column;
        align-items: center;
    }
}
.brics-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

@media (max-width: 991px) {
    .brics-nav .nav-link {
        text-align: center;
    }
}
/* ================= HEADER BASE ================= */
.brics-header {
    background: #000;
    border-bottom: 1px solid #222;
    padding: 10px 0;
}

.brics-logo img {
    max-height: 60px;
}

/* ================= TOGGLER (ORANGE) ================= */
.navbar-toggler {
    border: 2px solid #ff8c00;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,140,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================= DESKTOP MENU ================= */
.brics-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 16px;
}

.brics-nav .nav-link:hover {
    color: #ff8c00 !important;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
    background: #111;
    border: none;
    border-radius: 10px;
}

.dropdown-item {
    color: #ff8c00;
}

.dropdown-item:hover {
    background: rgba(255,140,0,0.1);
}

/* ================= AUTH BUTTONS ================= */
.brics-auth .btn {
    border-radius: 6px;
    font-size: 14px;
        background: orange !important;
}

/* ================= MOBILE DESIGN ================= */
@media (max-width: 991px) {

    .brics-nav {
        background: #0d0d0d;
        border-radius: 14px;
        margin-top: 12px;
        padding: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    }

    .brics-nav .nav-link {
        text-align: center;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .brics-nav .dropdown-menu {
        background: #1a1a1a;
        margin-left: 0;
        box-shadow: none;
    }

    .brics-auth-mobile .btn {
        width: 60%;
        margin-bottom: 10px;
        padding: 12px;
        font-size: 15px;
        justify-content:center;
    }
}



 /*Start Now*/
 .Start-1{
     background: url(../images/intro-banner.png) no-repeat right center / contain, linear-gradient(90deg, #01bc8d 0%, #00857c 154.3%);
     padding:20px;
     color:white;
    
     align-items:center;
     border-radius:30px;
 }
 
 .heading-1 {
  font-size: 2.5rem; 
  line-height: 1.2;
  max-width: 90%;
  color:white !important;
  font-weight:600;
}

/* Small-mobile devices (phones) */
@media (max-width: 480px) {
  .heading-1 {
    font-size: 1.8rem;
  }
}

/* Medium devices (tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  .heading-1 {
    font-size: 2.2rem;
  }
}

/* Large devices (laptops / desktops) */
@media (min-width: 769px) {
  .heading-1 {
    font-size: 2.8rem;
  }
}

 /* CSS */
.btn-container {
  display: flex;
  justify-content: center;   
  align-items: center;      

  flex-direction: column;
  width: 100%;
 
  padding: 20px 0;
}

.btn-1 {
  background: linear-gradient(135deg, #4CAF50, #2E7D32); 
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-1:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-1:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.5);
}
/*new card*/


.about-trust {
  background: #ffffff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  color: #0a0a2a;
}

.trust-heading h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #0a0a2a;
  margin-bottom: 5px;
  line-height: 1.4;
}

.trust-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-card {
  flex: 1 1 280px;
  max-width: 300px;
}

.trust-card img {
 
  min-width: 60%;
  max-width: 60%;
  min-height: 100%;
  max-height: 100%;
  margin-bottom: -8px;
}

.trust-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a0a2a;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Hover effect */
.trust-card:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* ðŸ“± Responsive Design */
@media (max-width: 768px) {
  .about-trust {
    padding: 60px 15px;
  }

  .trust-heading h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .trust-cards {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

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

  .trust-card h3 {
    font-size: 1.1rem;
  }

  .trust-card p {
    font-size: 0.9rem;
  }
}

/*slider */
.aibot {
  /*background-color: #0b0f2e;*/
  color: #ffffff;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.aibot-content {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.aibot-text {
  flex: 1 1 500px;
}

.aibot-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}

.aibot-text p {
  font-size: 1.1rem;
  color: #d1d1e0;
  margin-bottom: 30px;
}

.aibot-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.aibot-btn-primary {
  background-color: #00c2d1;
  color: #fff;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.aibot-btn-primary:hover {
  background-color: #00a6b3;
}

.aibot-btn-video {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding:14px 28px;
  border-radius:26px;
  border:2px solid blue;
}

.aibot-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  margin-right: 10px;
  font-size: 0.9rem;
}

.aibot-duration {
  font-size: 0.85rem;
  color: #bbb;
  margin-left: 5px;
}

.aibot-image {
  flex: 1 1 500px;
  position: relative;
  text-align: center;
}

.aibot-phone {
   right: -19%;
  bottom: 83px;
  animation-delay: 2s;
  height: 119px;
  width: 119px;
}

.aibot-chart {
  position: absolute;
  top: -60px;
  right: 0;
  width: 400px;
  opacity: 0.9;
  border-radius: 10px;
  z-index: 1;
}

/* Floating Crypto Icons */
.aibot-icon {
  position: absolute;
  width: 60px;
  opacity: 0.9;
  animation: float 5s ease-in-out infinite;
}

.aibot-btc {
  top: 50px;
  left: 60%;
   height: 109px;
  width: 109px;
  animation-delay: 0s;
}

.aibot-eth {
 bottom: -118px;
  left: 35%;
  animation-delay: 2s;
  height: 113px;
  width: 105px;
  z-index: 1;

}

.aibot-xrp {
  right: -7%;
  bottom: -67px;
  animation-delay: 2s;
  height: 100px;
  width: 119px;
  z-index: 3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ðŸ“± Responsive */
@media (max-width: 992px) {
  .aibot-content {
    flex-direction: column;
    text-align: center;
  }

  .aibot-text h1 {
    font-size: 2.2rem;
    margin-top:100px;
  }

  .aibot-phone {
    width: 100px;
    margin-top: -65px;
  }

  .aibot-chart {
    position: relative;
    width: 100%;
    margin-top: 50px;
  }

  .aibot-icon {
    display: none; 
  }
}

@media (max-width: 600px) {
  .aibot {
    padding: 34px 15px;
  }

  .aibot-text p {
    font-size: 1rem;
  }

  .aibot-btn-primary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}


/*New Section*/
    .premium-card {
        background: #131313;
        padding: 28px;
        border-radius: 18px;
        border: 1px solid #1f1f1f;
        transition: 0.3s;
        min-height: 185px;
        position: relative;
    }

    .premium-card:hover {
        transform: translateY(-6px);
        border-color: #00e6b8;
        box-shadow: 0 0 25px rgba(0, 230, 184, 0.25);
    }

    .icon-box img {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    h2, h3 {
        /*color: #f8cd45;*/
        color: black;
          font-weight: 801;
          font-size: 27px;
          /*background: linear-gradient(180deg, black, #000000b2 100%);*/
          background: white;
            background-clip: border-box;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
    }

    /* Steps */
    .step-card {
        background: #131313;
        border-radius: 16px;
        padding: 30px;
        border: 1px solid #222;
        transition: .3s;
        background:linear-gradient(147deg,#0e0f3c 0%, #053646 100%);
        color:white;
    }

    .step-card:hover {
        transform: translateY(-5px);
        border-color: #00e6b8;
        box-shadow: 0 0 20px rgba(0, 230, 184, 0.18);
    }

    .step-number {
        background: #00e6b8;
        color: #000;
        font-weight: 800;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 20px;
        margin-bottom: 10px;
    }

/* Section */
.dxn-wallet-partners {
  padding: 60px 20px;
  /*background: #0c0e23;*/
  background-image: url('bg-dots.png');
  background-size: cover;
}

/* Main wrapper */
.dxn-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 25px;
}

/* Card Block */
.dxn-card-block {
  background:#081c36;
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

/* Title */
.dxn-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

/* Wallet List */
.dxn-wallet-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.dxn-wallet-item {
  text-align: center;
  width: 130px;
}

.dxn-wallet-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 8px;
}

.dxn-wallet-item p {
  color: #cfd2ff;
  font-size: 14px;
  margin-top: 0;
}

/* Partner Logos */
.dxn-partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.dxn-partner-logos img {
  height: 40px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(255,255,255,0.15);
}

/* Mobile Responsive */
@media (max-width: 480px) {

  .dxn-wrapper {
    grid-template-columns: 1fr;
  }

  .dxn-card-block {
    padding: 22px;
  }

  .dxn-title {
    font-size: 20px;
  }

  .dxn-wallet-item {
    width: 100px;
  }

  .dxn-wallet-item img {
    width: 60px;
    height: 60px;
  }

  .dxn-partner-logos img {
    height: 35px;
    border-radius: 8px;
  }
}

/* Section Background */
.dxn-feature-section {
  padding: 60px 20px;
  /*background: #080a1f;*/
  background-image: url('bg-lines.png');
  background-size: cover;
}

/* Wrapper Grid */
.dxn-feature-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
}
@media (min-width: 992px) {
  .dxn-feature-wrapper {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
    gap: 30px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .dxn-feature-wrapper {
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .dxn-feature-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* Feature Card */
.dxn-feature-card {
  background:#081c36;
  padding: 40px 25px;
  border-radius: 22px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: 0.3s ease-in-out;
}

/* Hover Effect */
.dxn-feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.22);
}

/* Icons */
.dxn-feature-icon {
  width: 160px;
  height: auto;
  margin-bottom: 18px;
  transition: 0.3s;
}

.dxn-feature-card:hover .dxn-feature-icon {
  transform: scale(1.08);
}

/* Heading */
.dxn-feature-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Text */
.dxn-feature-text {
  color: #cbd0ff;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

/* Mobile Responsive */
@media(max-width: 480px) {

  .dxn-feature-card {
    padding: 30px 20px;
  }

  .dxn-feature-icon {
    width: 65px;
  }

  .dxn-feature-title {
    font-size: 20px;
  }

  .dxn-feature-text {
    font-size: 14px;
  }
}


/*text start*/
/* SECTION */
.dxn-hero-section {
  position: relative;
  background: url('bg-green-tech.gif') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay */
.dxn-hero-overlay {
  position: absolute;
  inset: 0;
  /*background: #07091e;*/
  backdrop-filter: blur(2px);
}

/* Content Box */
.dxn-hero-content {
  position: relative;
  max-width: 1000px;
  margin: auto;
  z-index: 2;
}

/* Top Small Tag */
.dxn-hero-tag {
  color: #ffd447;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Main Heading */
.dxn-hero-title {
  color: #eaf0ff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Sub Description */
.dxn-hero-sub {
  color: #d0d6ff;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* __________ MOBILE RESPONSIVE __________ */
@media (max-width: 720px) {

  .dxn-hero-section {
    padding: 110px 15px 80px;
  }

  .dxn-hero-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .dxn-hero-sub {
    font-size: 15px;
  }

  .dxn-hero-tag {
    font-size: 13px;
  }
}

@media (max-width: 480px) {

  .dxn-hero-title {
    font-size: 26px;
    line-height: 1.35;
  }

  .dxn-hero-sub {
    font-size: 14px;
  }
}

/*text end*/


/**/
/* AIBOT SECTION MAIN STYLING */
.aibot {
  padding: 60px 20px;
  /*background: #0b0f1a;*/
  color: #fff;
}

.aibot-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* TEXT AREA */
.aibot-text {
  flex: 1 1 500px;
}

.aibot-text h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-top:40px;
}

.aibot-text p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* BUTTONS */
.aibot-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Primary Button */
.aibot-btn-primary {
  background: #4a00e0;
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.aibot-btn-primary:hover {
  background: #6c2eff;
}

/* Video Button */
.aibot-btn-video {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.aibot-btn-video:hover {
  background: rgba(255, 255, 255, 0.2);
}

.aibot-play-icon {
  font-size: 18px;
}

.aibot-duration {
  opacity: 0.7;
  font-size: 14px;
}

/* LEFT & RIGHT IMAGE BOX (if you enable images later) */
.aibot-image {
  flex: 1 1 500px;
  position: relative;
}

.aibot-image img {
  max-width: 100%;
  height: auto;
}


/* ============= RESPONSIVE DESIGN ============= */

/* Tablet */
@media (max-width: 992px) {
  .aibot-content {
    flex-direction: column;
    text-align: center;
  }

  .aibot-buttons {
    justify-content: center;
  }

  .aibot-text h3 {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .aibot-text h3 {
    font-size: 22px;
  }

  .aibot-btn-primary,
  .aibot-btn-video {
    width: 100%;
    justify-content: center;
  }
}


/*------------ Background */

.top-logo {
    height: 100px;
    width: auto;
}

.big-logo {
    height: 160px;
}


.slide {
    font-size: 50px;
    font-weight: 800;
    color: navy;
    text-align: center;
}

.span {
    /*background: linear-gradient(180deg, white, #fdbf07b3 100%);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-desc {
    color: white;
    font-size: 20px;
    font-weight: 500;
}


/* Background */
body {
    background-image: url('../img/mp2.gif');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
}

/* HEADER NAVBAR */
.header-nav {
    background: rgba(0, 0, 0, 0.35);
    padding: 10px 15px;
    border-radius: 12px;
    margin: 10px;
}

.top-logo {
    height: 70px;
    width: auto;
}

/* Login button mobile align fix */
.login-mobile {
    margin-right: 8px;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 40px 10px;
}

.big-logo {
    height: 160px;
    margin-bottom: 15px;
    margin-top: 67px;
}

.slide {
    font-size: 42px;
    font-weight: 800;
    color: white;
}

.span {
    background: linear-gradient(180deg, white, #fdbf07b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-desc {
    font-size: 18px;
    color: white;
    margin-top: 10px;
}

/* ABOUT SECTION */
.about {
    /*background: rgba(0, 0, 0, 0.3);*/
    margin-top: 40px;
}

.section-title {
    text-align: center;
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.aboutp {
    color: #ffc107;
    text-transform: uppercase;
}

/* MENU CENTER IN MOBILE */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        text-align: center;
        padding: 10px;
    }
}

/* MOBILE STYLING */
@media (max-width: 600px) {
    .slide {
        font-size: 28px;
    }
    .slide-desc {
        font-size: 14px;
        padding: 0 10px;
    }
    .top-logo {
        height: 55px;
    }
    .big-logo {
        height: 120px;
    }
}

.btn{
    -moz-user-select: none;
  background:white none repeat scroll 0 0;
  border: medium none;
  border-radius: 30px;
  color: black;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  /*font-weight: 700;*/
  letter-spacing: -0.42px;
  /*line-height: 1;*/
  margin-bottom: 0;
  padding: 18px 45px;
  text-align: center;
  text-transform: none;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
}


/* Yellow Bar Section */
.yellow-section {
    width: 100%;
    height: 90px; 
    background: linear-gradient(to bottom, #d39f00, #795708);
   
    display: flex;
    justify-content: center;
    align-items: center;
}

.yellow-section h2 {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
    .yellow-section {
        height: 100px;
        padding: 20px;
    }

    .yellow-section h2 {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .yellow-section {
        height: auto;
        padding: 15px;
    }

    .yellow-section h2 {
        font-size: 20px;
    }
}
/*footer start*/


/*faq start------------------------------*/
.dex-faq-section {
    padding: 60px 7%;
    color: white;
    background: url("bg.jpg") center/cover no-repeat;
}

.dex-faq-title {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 40px;
    color:navy;
}


.dex-faq-box .dex-faq-item {
    background: linear-gradient(135deg, #04121e, #030530);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}


.dex-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: orange;
}

.dex-faq-question h3 {
    font-size: 22px;
    font-weight: 700;
}

.dex-faq-icon {
    font-size: 26px;
    color: #ffcf3f;
}

.dex-faq-answer {
    margin-top: 10px;
    line-height: 25px;
    display: none;
}
.dex-faq-item.active .dex-faq-answer {
    display: block;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .dex-faq-title {
        font-size: 32px;
    }
    .dex-faq-question h3 {
        font-size: 18px;
    }
}

/*faq end----------------------------*/
/*---------------card start----------------------------*/
.egc-tokenomics-section {
    padding: 60px 0;
    color: #fff;
    /*background-image:url('../public/images/image_8.jpg');*/
}
.egc-tokenomics-section {
    background: black;
    padding: 60px 0;
    color: #fff;
    /*background-image: url('../images/image_8.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.egc-card {
    background:#00007a30;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

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

.card-img {
    width: 400px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto 20px auto;
}

.egc-title,
.egc-sub-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.egc-title { font-size: 32px; }
.egc-sub-title { font-size: 28px; }

.egc-list {
    list-style: none;
    padding: 0;
}

.egc-list li {
    display: flex;
    align-items: center;
    font-size: 17px;
    margin-bottom: 12px;
}

.egc-list li span {
    width: 32px;
    height: 32px;
    background: #ffc107;
    border-radius: 50%;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-weight: bold;
}


.token-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.token-box span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 8px;
}

.color-public { background: #c7db00; }
.color-eco { background: #d97e00; }
.color-liq { background: #ffeb3b; }
.color-advisor { background: #8bc34a; }
.color-team { background: #4dd0e1; }
.color-marketing { background: #673ab7; }
.color-project { background: #9e9e9e; }
.color-total { background: #aed581; }


@media (max-width: 768px) {
    .egc-card {
        margin-bottom: 25px;
    }
    .egc-list li {
    display: flex;
    align-items: center;
    font-size: 10px;
    margin-bottom: 12px;
}
}


@media (max-width: 480px) {

    .token-box {
        padding: 12px 18px;
        font-size: 11px;      
        border-radius: 12px;
        margin-bottom: 12px;
    }
.egc-list li {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 12px;
}
    .token-box span {
        width: 18px;           
        height: 18px;
        margin-right: 10px;
        opacity: 1 !important;  
        filter: brightness(1.4);
    }

  
    .egc-card {
        padding: 20px;
    }
}

@media (max-width: 360px) {

    .egc-card {
        padding: 18px;
        border-radius: 16px;
    }
.egc-list li {
    display: flex;
    align-items: center;
    font-size: 10px;
    margin-bottom: 12px;
}
    .token-box {
        padding: 10px 14px;
        font-size: 9px;
        border-radius: 10px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .token-box span {
        width: 20px;           
        height: 20px;
        margin-right: 10px;
        border-radius: 50%;
        opacity: 1 !important;
        filter: brightness(1.5);
    }

    .egc-title {
        font-size: 24px;   
    }

    .egc-sub-title {
        font-size: 20px;
    }
}


/*---------------card end----------------------------*/

/*----------roadmap start----------------*/
.roadmap-section {
    background: navy;
    padding: 70px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.roadmap-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #f7ba00;
}

.roadmap-line {
    position: relative;
    padding-left: 20px;
}

.roadmap-line:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: translateX(-50%);
}

.roadmap-item {
    width: 100%;
    display: flex;
    /*margin-bottom: 70px;*/
    position: relative;
}

.roadmap-item.left { justify-content: flex-start; }
.roadmap-item.right { justify-content: flex-end; }

.roadmap-content {
    width: 40%;
    background:linear-gradient(135deg, #04121e, #030530);
    /*background: rgba(255,255,255,0.05);*/
    border: 1px solid rgba(255,255,255,0.12);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.roadmap-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #00d8ff;
}

.roadmap-content ul {
    padding-left: 18px;
}

.roadmap-content ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.roadmap-dot {
    width: 25px;
    height: 25px;
    background: #f7ba00;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: calc(50% - 10px);
    border: 4px solid #0a0f1f;
}

@media(max-width: 992px) {
    .roadmap-content { width: 60%; }
}

@media(max-width: 768px) {

    .roadmap-line:before {
        left: 10px;
    }
    .roadmap-item {
        flex-direction: row;
        justify-content: flex-start !important;
        padding-left: 30px;
        margin-bottom: 20px;
    }

    .roadmap-content {
        width: 100%;
    }

    .roadmap-dot {
        left: 0px;
    }
}

/*-------------roadmap end---------------*/

/*======================ico=====================*/
 
.page-title .title {
    color: #fff;
    margin-bottom: 5px;
}
.page-title .desc {
    color: #e2e2e2;
}


/*.info-cards .cardBox,*/
/*.contractRow .cardBox {*/
/*    background: #053031;*/
/*    color:white;*/
/*    padding: 20px;*/
/*    border-radius: 12px;*/
/*    text-align: center;*/
/*    margin-bottom: 20px;*/
/*    transition: 0.3s;*/
/*    border: 1px solid rgba(255,255,255,0.1);*/
/*}*/
.cardBox:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Inputs row */
.coinInput {
    position: relative;
}
.coinContri {
    position: absolute;
    top: 7px;
    left: 10px;
}
.coinInput input {
    padding-left: 40px;
    height: 42px;
}

.buyBtn {
    height: 42px;
    font-size: 16px;
}

/* Contract Cards */
.contractRow .cardBox h6 a {
    color: #fff;
    font-size: 14px;
    word-break: break-all;
}

/* Responsive */
@media (max-width: 768px) {
    .info-cards .col-md-3 {
        margin-bottom: 15px;
    }

    .contractRow .col-md-4 {
        margin-bottom: 15px;
    }

    .buyBtn {
        margin-top: 10px;
    }
}
/* Unique card colors */
.info-cards .col-md-3:nth-child(1) .cardBox {
    background:#091c37;
}
.info-cards .col-md-3:nth-child(2) .cardBox {
    background:#091c37;
}
.info-cards .col-md-3:nth-child(3) .cardBox {
    background: #091c37;
}
.info-cards .col-md-3:nth-child(4) .cardBox {
    background: #091c37;
}

/* Contract cards colors */
.contractRow .col-md-4:nth-child(1) .cardBox {
    background:linear-gradient(135deg, #12e851, #35793f);
}
.contractRow .col-md-4:nth-child(2) .cardBox {
    background: linear-gradient(135deg, #c23616, #e84118);
}
.contractRow .col-md-4:nth-child(3) .cardBox {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}
/*.cardBox {*/
/*    border-radius: 18px;*/
/*    color: #fff;*/
/*    padding: 25px;*/
/*    text-align: center;*/
/*    box-shadow: 0 5px 18px rgba(0,0,0,0.25);*/
/*    transition: 0.3s ease;*/
/*}*/
.cardBox:hover {
    transform: translateY(-6px);
}
.cardBox h4 {
    font-size: 20px;
    font-weight: 600;
    color:white;
}
.cardBox p {
    opacity: 0.9;
    color: white;
}

.buyBtn {
    background: #00b894;
    border: none;
    border-radius: 50px;
    padding: 10px 25px !important;
    font-size: 16px;
    color: #fff;
    /*height: auto !important;*/
    transition: 0.3s;
    box-shadow: 0 4px 14px rgba(0,184,148,0.4);
    margin-top: -51px;
    text-align:center;
}
.buyBtn:hover {
    background: #019874;
    transform: translateY(-3px);
}
@media (max-width: 320px) {
    .cardBox {
        padding: 18px;
        border-radius: 14px;
    }
    .cardBox h4 {
        font-size: 16px;
    }
    .buyBtn {
        padding: 8px 15px !important;
        font-size: 14px;
    }
}
/*-----------------------------------------------------*/
.cardBox {
    /*background: #00007a30;*/
    background: #1c1323;
    border-radius: 14px;
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;         /* Equal Card Height */
    width: 100%;
}

.cardBox .left h4 {
    font-size: 18px;
    margin: 0;
}

.cardBox .left p {
    font-size: 14px;
    margin: 2px 0 0;
}

.cardBox .icn {
    font-size: 32px;
    opacity: 0.7;
}

/* Mobile 320px Fix: 2 Cards per Row */
@media (max-width: 767px) {
    .info-cards .col-6 {
        padding: 8px;
    }

    .cardBox {
        height: 120px;
        padding: 12px;
    }

    .cardBox .left h4 {
        font-size: 16px;
    }

    .cardBox .left p {
        font-size: 13px;
    }

    .cardBox .icn {
        font-size: 28px;
    }
}

/*copy*/

.contractBox {
    background:#081330;
    border-radius: 14px;
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    margin-bottom: 15px;
}

.contractBox .left h6 {
    margin: 0;
    font-size: 15px;
    word-break: break-all;
}

.contractBox .left p {
    margin: 5px 0 0;
    font-size: 13px;
    opacity: 0.8;
}

.contractBox a {
    color: #fff;
    text-decoration: none;
    word-break: break-all;
}

.contractBox i.fa-copy {
    margin-left: 5px;
    font-size: 14px;
}

.rightImg {
    width: 60px;
    height: 75px;
    margin-left: 10px;
}

/* Mobile 320px Fix */
@media (max-width: 767px) {
    .contractBox {
        min-height: 130px;
        padding: 12px;
    }

    .rightImg {
        width: 50px;
    }

    .contractBox .left h6 {
        font-size: 13px;
    }

    .contractBox .left p {
        font-size: 12px;
    }
}



/**/

.top-sellers {
  padding: 60px 40px;
  /*background: radial-gradient(circle at top, #0c1b3a, #02010a);*/
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.top-sellers__title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  color:black;
}

.top-sellers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.seller-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #ff8908, #f4790cdb);
  /*background: linear-gradient(135deg, #0d2a52, #081a33);*/
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.seller-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.seller-card__info h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.seller-card__info p {
  margin: 4px 0 0;
  font-size: 13px;
  color:white;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  .top-sellers {
    padding: 40px 20px;
  }

  .top-sellers__title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .top-sellers__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .seller-card img {
    width: 42px;
    height: 42px;
  }

  .seller-card__info h3 {
    font-size: 14px;
  }

  .seller-card__info p {
    font-size: 12px;
  }
}

.tokenbox{
    background: #081330;
  color: white;
  padding: 12px;
  border-radius: 16px;
  margin: 11px;
  margin-top: -4%;
}



.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#myTable {
    min-width: 900px; /* mobile ke liye important */
}


