@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #ffcc66;
    --secondary-color: #6610f2;
    --accent-color: #ffc107;
    --text-color: #212529;
    --muted-color: #6c757d;
    --bg-color: #f8f9fa;
    --white-color: #ffffff;
    --black-color: #000000;
    --card-bg: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --tg-border-1: #e5e5e5;

    --section-bg-color1: #ffffff;
    --section-bg-color2: #f7f7f7;

    --paragraph-color: #888888;

    --font-parkinsans: "Parkinsans", sans-serif;
    --font-poppins: "Poppins", sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

header.navbar {
    background-color: #191a1c;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler img {
    width: 35px;
}

header.navbar ul li a {
    color: var(--white-color);
    font-family: var(--font-parkinsans);
}

header.navbar ul li a:hover{
    color: var(--accent-color);
}

.langbtn {
    display: none;
}

/* Language Dropdown Styling */
.language-dropdown .btn {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.language-dropdown .btn:hover,
.language-dropdown .btn:focus {
    background-color: #f8f9fa;
    border-color: #ccc;
    color: #000;
}

.language-dropdown .lang-label {
    font-size: 0.95rem;
}

.language-dropdown .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
}

/* Dropdown Menu */
.language-dropdown .dropdown-menu {
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 160px;
    animation: dropdownFade 0.2s ease-in-out;
}

.language-dropdown .dropdown-item {
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 8px 12px;
    color: #333;
    transition: all 0.2s ease;
}

.language-dropdown .dropdown-item:hover {
    background-color: #f0f4ff;
    color: #0d6efd;
}

/* Flag Icons */
.language-dropdown img {
    border-radius: 4px;
    object-fit: cover;
}

/* Fade Animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .language-dropdown {
        order: 1;
        margin-right: auto;
    }

    .navbar-toggler {
        order: 2;
    }
}

.header-avatar {
    width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.dropdown-menu .dropdown-item{
    color: #000000;
}
.wllet-btn>a{
    color: var(--bg-color);
    font-family: var(--font-parkinsans);
    margin-right: 30px;
}

/* ==================== Hero Section ============= */
.hero {
    background: var(--section-bg-color1);
    color: var(--text-color);
    padding: 60px 0;
    background: var(--white-color) url(../images/hero_bg_shape.svg);
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 48px;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    font-family: var(--font-parkinsans);
    color: var(--black-color);
    margin-top: 0px;
    font-weight: 600;
    text-transform: unset;
}

.hero p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.03em;
    font-family: var(--font-poppins);
    color: var(--black-color);
}

.hero a {
    font-family: var(--font-parkinsans);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black-color);
    font-family: var(--font-parkinsans);
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -.1px;
    line-height: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: #000000;
    font-family: var(--font-parkinsans);
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -.1px;
    line-height: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    background: #3b3b3b;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.mobilescreen {
    width: 300px;
}


/* =================== Features ============= */

.features {
    padding: 80px 0;
    background: var(--section-bg-color1);
}

.section__title {
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #fbfbfb 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 40px 40px 40px 28px;
    gap: 28px;
    height: 100%;
}

.feature-card img {
    width: 180px;
}

.features__content h4 {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: var(--black-color);
    font-family: var(--font-parkinsans);
}

.features__content p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.03em;
    font-family: var(--font-poppins);
    color: var(--black-color);
}

.sectionlabel {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    font-family: var(--font-poppins);
    line-height: 1;
    color: var(--primary-color);
    border: 1px solid var(--tg-border-1);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    padding: 6px 10px;
    margin-bottom: 20px;
}

.title {
    font-size: 48px;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    font-family: var(--font-parkinsans);
    color: var(--black-color);
    margin-top: 0px;
    font-weight: 600;
    text-transform: unset;
}


/* ================ how it works? ============== */
.work__area {
    position: relative;
    padding: 120px 0;
    background: var(--section-bg-color2);
    z-index: 1;
}

.section__title .sub-title {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    font-family: var(--font-poppins);
    line-height: 1;
    color: var(--primary-color);
    border: 1px solid var(--tg-border-1);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    padding: 6px 10px;
    margin-bottom: 20px;
}

.section__title .title {
    font-size: 48px;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

.section__title .title span {
    color: var(--muted-color);
}

.work__item-wrap {
    position: relative;
    z-index: 1;
}

.work__img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.alltuchtopdown {
    -webkit-animation: alltuchtopdown 5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}

@keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

@-webkit-keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

.work__item-wrap .row>*:first-child {
    margin-bottom: 60px;
}

.work__item {
    position: relative;
    padding: 60px 0 0 40px;
    width: 60%;
    margin-bottom: 100px;
}

.work__item .number {
    font-size: 120px;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    opacity: 0.05;
    line-height: 0.8;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--black-color);
    font-family: var(--font-parkinsans);
    font-weight: 600;
}

.work__item .title {
    margin-bottom: 16px;
    font-size: 24px;
}

.work__item .title span {
    color: var(--muted-color);
}

.work__item p {
    margin-bottom: 0;
    font-size: 20px;
    color: var(--paragraph-color);
    font-family: var(--font-parkinsans);
}

.work__item-right {
    text-align: right;
    padding: 60px 40px 0 0;
    margin-left: auto;
}

.work__item-right .number {
    left: auto;
    right: 0;
}

.work__shape {
    pointer-events: none;
}

.work__shape img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5%;
    z-index: -1;
}



/* ======== Exchange avalable ============== */
.exchange__area {
    padding-bottom: 120px;
    background: var(--section-bg-color2);
}

.exchange__inner-wrap {
    background: linear-gradient(140deg, #dfdfdf 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 50px 50px 50px 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.exchange__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 50%;
}

.exchange__content .icon {
    width: 101px;
    flex: 0 0 auto;
}

.exchange__content .title {
    margin-bottom: 16px;
    font-size: 24px;
}

.exchange__content .title span {
    color: var(--black-color);
}

.exchange__content p {
    margin-bottom: 0;
    font-family: var(--font-parkinsans);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--paragraph-color);
    margin-bottom: 15px;
}

.exchange__icons .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.exchange__icons .list-wrap li:first-child {
    margin-left: 0;
}

.exchange__icons .list-wrap li {
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #d5d5d5 0%, rgba(21, 21, 21, 0) 100%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid var(--tg-border-1);
    margin-left: -10px;
}


/* ================= crypto-area =============== */
.crypto__area {
    position: relative;
    z-index: 1;
    background: var(--section-bg-color1);
    overflow: hidden;
    padding: 120px 0;
}

.crypto__item {
    background: linear-gradient(140deg, #ebebeb 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    padding: 50px 30px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    height: 100%;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.crypto__icon {
    margin-bottom: 50px;
    display: inline-block;
}

.crypto__icon img {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.crypto__content .title {
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.crypto__content .title span {
    display: block;
    color: var(--muted-color);
}

.tg-btn {
    user-select: none;
    -moz-user-select: none;
    background: var(--tg-primary-color) none repeat scroll 0 0;
    border: none;
    color: var(--tg-color-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-parkinsans);
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 20px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -o-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px;
    white-space: nowrap;
    overflow: hidden;
    outline: none;
    text-decoration: none;
}

.tg-btn-two {
    border: 1px solid var(--tg-border-1);
    background: transparent;
    color: var(--black-color);
    padding: 17px 20px;
}

.crypto__shape {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: -1;
}

/* ================= roadmap-area =============== */
.roadmap__area {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 120px 0;
}

.roadmap__item-wrap {
    position: relative;
    z-index: 1;
}

.gutter-y-40 {
    --bs-gutter-y: 40px;
}

.roadmap__item-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 85px;
    width: 100%;
    height: 6px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    z-index: -1;
}

.roadmap__item {
    text-align: center;
}

.roadmap__icon {
    min-height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 55px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.roadmap__content .title {
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--primary-color);
}

.roadmap__content p {
    font-size: 20px;
    width: 90%;
    margin: 0 auto;
    font-family: var(--font-parkinsans);
    line-height: 1.5;
    font-weight: 400;
    color: var(--paragraph-color);
}

.roadmap__shape {
    position: absolute;
    right: 15%;
    top: -21%;
    z-index: -2;
}


/* ================ User dashboard ============== */
/* === Modern Light Crypto Dashboard === */
.crypto-dashboard {
    background-color: #fafafa;
    min-height: 100vh;
    font-family: 'Inter', 'Poppins', sans-serif;
    color: #222;
}

/* Profile Section */
.profile-card {
    border: 1px solid #eee;
    border-radius: 16px;
    background-color: #fff;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.badge {
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

/* Asset Card */
.asset-card {
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-light {
    background: #f1f1f1;
}

/* Settings Card */
.settings-card {
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
}

.settings-card .btn-outline-secondary {
    border-radius: 8px;
    padding: 4px 16px;
    font-weight: 500;
}

/* Recommended */
.recommended-section {
    margin-top: 2rem;
}

.recommend-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.recommend-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.recommend-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ================= KYC page ================== */
.kyc-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.kyc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.kyc-card.active {
  background: #f2efff;
  border-color: #c9b6ff;
}

.kyc-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Button styles */
.kyc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.kyc-btn.btn-primary {
  background: #5c3bff;
  color: #fff;
  text-decoration: none;
  border: none;
}

.kyc-btn.btn-primary:hover {
  background: #4725ff;
}

.kyc-btn.disabled {
  background: #f5f5f5;
  color: #b3b3b3;
  cursor: not-allowed;
}

.assets-overview h2 {
  font-size: 28px;
}

.card {
  transition: all 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.table > :not(caption) > * > * {
  vertical-align: middle;
}

.table thead th {
  font-weight: 600;
  color: #444;
  border-bottom-width: 1px;
}

.table tbody tr:hover {
  background: #fafafa;
}

.btn-outline-primary {
  border-radius: 10px;
}

.btn-outline-secondary {
  border-radius: 10px;
}
.deposit-section h2 {
  font-size: 28px;
}

.step-number {
  position: absolute;
  left: -40px;
  top: 4px;
  background: #000;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  font-weight: 600;
}

.deposit-input {
  background: #f5f5f5 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 12px 16px;
  font-size: 15px;
  color: #222;
}

.deposit-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #5c3bff30;
}

.deposit-box {
  background: #f7f7f7;
  border-radius: 12px;
}

.file-drop-zone {
  background: #f5f5f5;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-drop-zone:hover {
  background: #efefef;
}

.browse-text {
  color: #5c3bff;
  text-decoration: underline;
  cursor: pointer;
}

.card {
  border-radius: 14px;
}
.order-list-section h2 {
  font-size: 28px;
}

.filter-select {
  width: 150px;
  border-radius: 10px;
  background: #f5f5f5;
  border: none;
  font-size: 14px;
  color: #333;
  padding: 6px 10px;
}

.table {
  font-size: 15px;
}

.table thead th {
  font-weight: 600;
  color: #555;
  background-color: #fafafa;
}

.table tbody tr:hover {
  background-color: #f9f9f9;
  transition: background-color 0.2s ease;
}

.badge {
  font-size: 13px;
  border-radius: 10px;
}



/* ================= Footer ===================== */
.footer__area {
    position: relative;
    z-index: 1;
    background: var(--section-bg-color2);
}

.footer__top {
    padding: 120px 0;
}

.footer__content {
    text-align: center;
}

.footer__logo {
    margin-bottom: 80px;
}

.footer__content .sub-title {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1;
    color: var(--primary-color);
    border: 1px solid var(--tg-border-1);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    padding: 6px 10px;
    margin-bottom: 20px;
}

.footer__content .title {
    margin-bottom: 50px;
    font-size: 64px;
    font-family: var(--font-parkinsans);
    color: var(--black-color);
    font-weight: 600;
    line-height: 1.2;
}

.footer__content .team__social-wrap {
    justify-content: center;
}

.team__social-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px 30px;
    flex-wrap: wrap;
}

.list-wrap {
    margin: 0px;
    padding: 0px;
}

.team__social-wrap .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-wrap li {
    list-style: none;
}

.team__social-wrap .list-wrap li a {
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: block;
}

.team__social-wrap .list-wrap li a .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer__bottom {
    border-top: 1px solid var(--tg-border-1);
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
}

.copyright-text {
    text-align: center;
}

.footer__bottom ul {
    display: flex;
    margin: 0;
    gap: 30px;
}

.footer__bottom ul li {
    list-style: none;
}

.footer__bottom ul li a {
    text-decoration: none;
    font-size: 16px;
    width: 90%;
    margin: 0 auto;
    font-family: var(--font-parkinsans);
    line-height: 1.5;
    font-weight: 400;
    color: var(--paragraph-color);
}

.copyright-text p {
    margin-bottom: 0;
    font-size: 14px;
    margin: 0 auto;
    font-family: var(--font-parkinsans);
    line-height: 1.5;
    font-weight: 400;
    color: var(--paragraph-color);
}

.copyright-text p a {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
}

.footer__shape img {
    position: absolute;
    z-index: -1;
}

.footer__shape img:nth-child(1) {
    right: 8%;
    top: 16%;
}

.footer__shape img:nth-child(2) {
    bottom: 16%;
    left: 11%;
}







/* =============== responsive ============== */
@media (max-width: 1799.98px) {
    .footer__shape img:nth-child(1) {
        right: 4%;
        top: 8%;
    }
}

@media (max-width: 1399.98px) {
    .footer__shape img:nth-child(1) {
        width: 180px;
    }

    .footer__shape img:nth-child(2) {
        left: 6%;
        width: 170px;
    }
}

@media (max-width: 1199.98px) {
    .section__title .title {
        font-size: 42px;
    }

    .work__item {
        width: 80%;
        padding: 40px 0 0 30px;
    }

    .work__item .number {
        font-size: 100px;
    }

    .work__item-right {
        padding: 40px 30px 0 0;
    }

    .exchange__inner-wrap {
        padding: 40px 25px 40px 25px;
    }

    .exchange__content {
        gap: 15px;
    }

    .footer__content .title {
        font-size: 54px;
    }

    .footer__shape img:nth-child(1) {
        width: 140px;
    }

    .footer__shape img:nth-child(2) {
        width: 130px;
    }
}

@media (max-width: 991.98px) {
    .work__img {
        position: initial;
        transform: translate(0);
        text-align: center;
        margin-bottom: 50px;
    }

    .work__img img {
        width: 400px;
    }

    .work__item {
        width: 100%;
        margin-bottom: 60px;
        padding: 25px 0 0 30px;
    }

    .work__item .number {
        font-size: 80px;
    }

    .work__item-right {
        text-align: left;
        margin-right: auto;
        padding: 25px 0 0 30px;
    }

    .work__item-right .number {
        left: 0;
        right: auto;
    }

    .exchange__inner-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .exchange__content {
        width: 100%;
    }

    .work__shape img {
        width: 100%;
    }

    .ctabtn {
        display: none !important;
    }

    .footer__bottom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .copyright-text {
        margin-bottom: 20px;
    }

    .langbtn {
        display: flex;
        align-items: center;
    }

}

@media (max-width: 767.98px) {
    .section__title .title {
        font-size: 35px;
    }

    .work__img img {
        width: 90%;
    }

    .exchange__content {
        flex-wrap: wrap;
        gap: 25px;
    }

    .exchange__icons .list-wrap li {
        width: 75px;
        height: 75px;
    }

    .hero .heroimg {
        order: 1;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero .content {
        order: 2;
        text-align: center;
    }

    .mobilescreen {
        width: 200px;
    }

    .hero h1 {
        text-align: center;
        font-size: 35px;
    }

    .hero p {
        text-align: center;
        font-size: 17px;
    }

    .work__area,
    .crypto__area,
    .roadmap__area {
        padding: 60px 0;
    }

    .exchange__area {
        padding-bottom: 60px;
    }

    .footer__content .title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .footer__shape img:nth-child(1) {
        width: 80px;
        top: 4%;
    }

    .footer__shape img:nth-child(2) {
        width: 70px;
        bottom: 12%;
    }

    .footer__bottom ul {
        gap: 10px;
    }

    .footer__bottom ul li a {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .footer__bottom ul {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}
