@import url("https://fonts.cdnfonts.com/css/sf-pro-display");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "SF Pro Display", sans-serif;
  background-color: #161616;
  color: #ffffff;
  margin: 0px;
  font-size: 15px;
  line-height: 30px;
}

header {
  width: 100%;
  padding: 15px 50px;
  border-bottom: 1px solid #474747;
  position: fixed;
  background: #161616;
  display: flex;
  align-items: center;
  min-height: 100px;
  z-index: 10;
}

.header-icon img {
  width: 248px; /* adjust the width to your desired size */
  height: auto; /* maintain the aspect ratio */
}

header .head-body {
  /* position: relative; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin: auto;
}

header .head-body a {
  display: flex;
  align-items: center;
}

header .head-body .top-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

a.top-nav-li {
  all: unset;
}

nav .fa {
  padding: 15px;
}

a.bt-grad {
  text-decoration: none;
}

.gradient-header {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(to right, #9265e4, #ffffff, #ffffff, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  min-height: 42px;
  padding: 2px 0;
}

.bt-grad {
  background-image: linear-gradient(to right, #4a16ac 0%, #945bff 100%);
  padding: 5px 22px;
  text-align: center;
  transition: 0.5s;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.bt-grad:hover {
  background-image: linear-gradient(to right, #945bff 0%, #4a16ac 100%);
}

header .head-body .top-nav .top-nav-li {
  font-size: 16px;
  font-weight: 500;
  color: "#E0E0E0";
  margin: 0px;
  padding: 0px;
  cursor: pointer;
}

header .head-body .top-nav .top-nav-li:hover {
  color: #CFB5FF;
}

header img {
  width: 160px;
  height: 41px;
}

main {
  display: flex;
  max-width: 1500px;
  margin: auto;
  padding: 25px 0px;
}

nav {
  display: block;
  width: 450px;
  height: 100vh;
  position: fixed;
  margin-top: 135px;
  padding-left: 15px;
}

nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
nav ul li.menu-list {
  border-bottom: 1px solid #474747;
}
nav ul li .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  transition: all ease-out 250ms;
  cursor: pointer;
}

nav ul li .item div {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

nav ul li .item div p {
  margin: 0px;
}

nav li .item i {
  color: #ffffff;
}

nav li .item a {
  text-decoration: none;
  color: #ffffff;
  text-transform: capitalize;
}

nav li .item:hover a {
  color: #CFB5FF;
}

nav li .item:hover p {
  color: #CFB5FF;
}

nav li .child-item {
  padding: 0px;
  margin-left: 35px;
  margin-bottom: 20px;
  list-style: decimal;
}

nav li .child-item li {
  padding: 5px 5px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  transition: all ease-out 250ms;
  cursor: pointer;
}

nav li .child-item li a {
  text-decoration: none;
  color: #dadada;
}

nav li .child-item li a:hover {
  color: #CFB5FF;
}

.child-item {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
}

.child-item.d-block {
  max-height: 1000px;
  transition: max-height 0.6s ease-in;
}

.fa.rotate {
  transform: rotate(180deg);
}

.fa-chevron-down {
  transition: transform 0.3s ease;
}

.main-content {
  margin-left: 450px;
  margin-top: 85px;
  width: 100%;
  padding: 2rem;
}

section {
  margin: 0;
}

.active-parent {
  color: #CFB5FF !important;
}

.active-child {
  color: #CFB5FF !important;
}

.text-link {
  color: #2997ff !important;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

.mobile-dropdown {
  display: none;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #474747;
  color: #b4b4b4;
  padding: 0px 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 18px;
  transition: all ease-out 250ms;
  cursor: pointer;
  margin-top: 75px;
}

.mobile-dropdown i {
  font-size: 20px;
  padding: 5px;
}

.mobile-collapse-btn button {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
}

.mobile-nav-links {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mobile-nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 10px;
}

.mobile-nav-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #e0e0e0;
  padding: 10px;
  display: block;
  cursor: pointer;
}
.mobile-nav-links ul li a:hover {
  color: #CFB5FF;
}

.mobile-collapse-btn {
  display: none;
}

.mobile-collapse-btn button {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.content-table {
  overflow-x: auto;
}

table {
  border-radius: 5px;
  border-spacing: 0;
  border: 1px solid #444;
  border-collapse: inherit;
  background-color: #333333;
  margin: 70px 0px;
}

th,
td {
  border: 1px solid #444;
}

.table-thead {
  background-color: #d9d9d9;
  color: #161616;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
}

.table-thead p {
  margin: 5px 0px;
}

th,
td {
  padding: 15px;
  text-align: left;
}

th {
  font-weight: bold;
  color: #ffffff;
}

td ul {
  padding-left: 15px;
}

tr + tr th,
tr + tr td {
  border-top: 0;
}

th + th,
th + td,
td + th,
td + td {
  border-left: 0;
}

th:first-child,
td:first-child {
  border-left: 0;
}

th:last-child,
td:last-child {
  border-right: 0;
}

tr:first-child th,
tr:first-child td {
  border-top: 0;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.sub-footer {
  background: linear-gradient(to right, #4A16AC, #8D51FF, #B087FF);
  padding: 60px 20px;
  text-align: center;
  color: #FFF;
  /* z-index: 1000; */
  position: relative;
}

.sub-footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.sub-footer h2 {
  font-size: 52px;
  font-weight: 700;
  color: #FFF;
}

.sub-footer p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #FFF;
  line-height: 31px;
}

.app-store-button img {
  width: 180px; /* Adjust based on the actual size of your App Store button image */
  height: auto;
  transition: transform 0.3s ease;
}

.app-store-button img:hover {
  transform: scale(1.05);
}

.footer {
  background-color: #111111;
  padding: 0;
  color: #fff;
  /* z-index: 1000; */
  /* position: relative; */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  height: 100%;
  position: relative;
}

.footer-logo img {
  width: 250px; /* Adjust based on the logo size */
  height: auto;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 34px;
  margin-bottom: 30px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
  font-weight: 400;
  color: #d9d9d9;
  line-height: 23px;
}

.footer-column ul li a:hover {
  color: #CFB5FF; /* Hover color for links */
}

.language-dropdown {
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin-top: 1rem;
  display: inline-block;
  border-bottom: 1px solid;
  border-image-source: linear-gradient(to right, #4A16AC, #945BFF);
  border-image-slice: 1;
}

.language-dropdown select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 10px 30px 10px 10px;
  font-size: 16px;
  color: #FFF;
  cursor: pointer;
  position: relative;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.language-dropdown select::-ms-expand {
  display: none;
}

.language-dropdown .fa-chevron-down {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.3s ease;
  color: #FFF;
  font-size: 16px;
}

.language-dropdown select:focus {
  outline: none;
}

.language-dropdown select option {
  background-color: #F0F0F0;
  color: #4A16AC;
}

.language-dropdown .fa-chevron-down.rotated {
  transform: translateY(-50%) rotate(180deg);
}

#anchor {
  scroll-margin-top: 300px;
}

.copyright-text {
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  color: #666;
  border-top: 1px solid #666;
  width: 100%;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  z-index: 99999;
}

.scroll-to-top i {
  font-size: 18px;
}

.text-date {
  color: #737373;
}

.text-color {
  color: #d9d9d9;
}

.bold-text-color {
  color: #fff;
}

@media (max-width: 992px) {
  .mobile-collapse-btn {
    display: block;
  }
}
