* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: white;
}
.body-container {
  background: linear-gradient(
    90deg,
    rgba(0, 27, 61, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  margin: 0px !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.logo {
  max-height: 40px; /* Adjust height as needed */
  width: auto;
}
/* Home Section */
.home {
  height: 90vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.home h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards, slideIn 1.5s ease-out forwards 1s;
}

.home p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards, slideIn 2.5s ease-out forwards 1.3s;
}

.home .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgb(0 27 61);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.home .btn:hover {
  background-color: rgb(1 14 31);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Smooth Shine Effect */
.home-content::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -100%;
  width: 200%;
  height: 150%;
  background: rgb(0 27 61 / 44%);
  animation: shine 1.5s ease-in-out infinite;
  pointer-events: none;
}

/* Fade In and Slide In Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.first-section {
  margin-top: 150px;
}
.section-container {
  width: 100%;
  min-height: 90vh;
  background-color: transparent;
  padding: 0.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-container {
  z-index: 10000;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background-color: rgb(1 14 31);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 25px;
  width: 30px;
}

.hamburger-menu .bar {
  background: white;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s;
}
.sticky-header {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  background-color: transparent;
}
.header-ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-li {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin: 0 10px;
}
.header-li > a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
html {
  scroll-behavior: smooth;
}
/*************** pricing section**********/
.pricing-container {
  width: 100%;
  overflow: auto;
  padding: 10px;
  border-radius: 5px;
  background: rgb(14 45 85 / 20%);
}
.pricing-table {
  border-collapse: collapse;
}
.pricing-table th {
  border-right: 1px solid rgb(35 51 69);
  padding: 5px;
  color: #6bb1cbc7;
}
.pricing-table tr td {
  padding: 14px;
  color: white;
  border-right: 1px solid rgb(35 51 69);
}
.title-section {
  text-align: center;
  font-size: 100px;
  color: #6bb1cb54;
}
/************** partnaers section*****************/
.partners-container {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
  width: 100%;
  gap: 20px;
  border: 1px solid white;
  border-left: none;
  border-right: none;
  padding: 37px 0px;
}
.partners-wrapper {
  min-width: 100%;
  position: relative;
  animation: scrollPartnerLeft 20s linear infinite;
  gap: 20px;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
}
.partners-container:hover .partners-wrapper {
  animation-play-state: paused;
}
@keyframes scrollPartnerLeft {
  to {
    transform: translateX(calc(-100% - 20px));
  }
}
.partner-item {
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
/************** cards section *************/
.cards-container {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}
.card-item {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: start;
  flex-direction: column;
  flex-wrap: wrap;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px;
  background: #00234747;
  border-radius: 5px;
  align-items: center;
}
/*********************** footer**************/
.footer {
  width: 100%;
  position: relative;
  background: linear-gradient(53deg, rgb(0 27 61) 0%, rgba(0, 0, 0, 1) 100%);
}
.card-item-title {
  margin-bottom: 12px;
  font-weight: 600;
  color: #6bb1cbc7;
}
.card-item-description {
  font-size: 0.9rem;
}
.footer-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
.footer-logo {
  display: flex;
  flex-direction: column;
}
.footer .col {
  height: 100%;
  display: flex;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 10px;
  flex-direction: column;
  justify-content: start;
}
.footer .col h1 {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 17px;
  line-height: 40px;
  padding: 20px 0px 5px 0px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.footer .col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer .col ul li {
  color: #999999;
  font-size: 14px;
  font-family: inherit;
  font-weight: bold;
  padding: 10px 0px 10px 0px;
  cursor: pointer;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
}
.social ul li {
  display: inline-block;
  padding-right: 5px !important;
}

@media (min-width: 1200px) {
  .section-container {
    max-width: 1140px;
  }
  .card-item {
    width: 23% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.99px) {
  .section-container {
    max-width: 960px;
  }
  .card-item {
    width: 45% !important;
  }
}
@media (min-width: 768px) and (max-width: 991.99px) {
  .section-container {
    max-width: 720px;
  }
  .card-item {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  .section-container {
    max-width: 720px;
  }
  .card-item {
    width: 100% !important;
  }
  .header-ul {
    display: none;
    flex-direction: column;
    background-color: rgb(0 16 36);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
  }
  .header-ul.active {
    display: flex;
  }
  .header-ul li {
    margin: 10px 0;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .title-section {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
.feature-icon {
  width: 210px;
  height: 50px;
  margin: 15px 10px;
}

.card-item {
  width: 302px;
  height: 299px;
  margin: 10px;
  float: left;
}

.coins-container {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
  width: 70%;
  gap: 20px;
  border: 1px solid rgb(0 27 61);
  border-left: none;
  border-right: none;
  padding: 10px 0px;
  margin-top: -75px;
}
.coins-container:hover .partners-wrapper {
  animation-play-state: paused;
}
.coins-wrapper {
  min-width: 100%;
  position: relative;
  animation: scrollPartnerLeft 7s linear infinite;
  gap: 20px;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
}
