* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%; 
}

body {
  width: 100%;
  height: 2000px; 
  background-color: #020c19;
  font-family: 'Noto Sans', sans-serif;
  overflow-x: hidden;
  position: relative; 
}

#canvas {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-icon {
  display: none;
  position: fixed;
  top: 15px;
  left: 30px;
  height: 35px;
  z-index: 1000;
}

.navbar {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0px;
  height: 120px;
  width: 100%;
  padding-top: 10px;
  justify-content: center;
  align-items: center;
  background: rgba(43, 45, 64, 0.8);
  border-radius: 0px 0px 20px 20px;
  outline:0.08em solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar-brand {
  width: 100%;
  justify-content: flex-start;
  padding: 10px 20px;
  align-items: left;
  height: 60px;
}

.logo-text {
  height: 20px;
}

.navbar-language {
  width: 100%;
  justify-content: flex-end;
  padding: 10px 20px;
  align-items: right;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
}

.language-dropdown {
  top:14px;
  right: 20px;
  position: fixed;
  z-index: 1001;
}

.dropdown-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #bfd7f2;
  padding: 0px 8px;
  width: 110px;
  height: 34px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-button.active {
  background: rgba(255, 255, 255, 0.15);
}

.dropdown-button .dropdown-arrow {
  transition: transform 0.3s ease;
  z-index: 1000;
}

.dropdown-button.active .dropdown-arrow {
  transform: rotate(180deg);
  z-index: 1000;
}

.dropdown-content {
  display: none;
  position: absolute;
  width: 80px;
  top: calc(100% + 4px);
  min-width: 100%;
  background: rgba(2, 12, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.dropdown-content.show {
  display: block;
}

.dropdown-item {
  color: rgba(191, 215, 242, 0.5);
  text-decoration: none;
  padding: 4px 8px;
  display: block;
  transition: all 0.3s ease;
  font-size: 16px;
}

.dropdown-item:hover {
  color: #bfd7f2;
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-item.active {
  color: #bfd7f2;
}

.dropdown-item.active .dropdown-arrow {
  position: absolute;
  top: 12px;
  left: 38px;
  transform: rotate(180deg);
  z-index: 1000;
}

.navbar-deriv {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  height: 60px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: rgba(99, 102, 241, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.8) 0px 18px 36px -18px inset;
  border-radius: 0px 0px 20px 20px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.navbar-sign {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  height: 60px;
  gap: 20px;
  /*background: rgba(255, 255, 255, 0.1);
  box-shadow: rgba(99, 102, 241, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.8) 0px 18px 36px -18px inset;
  border-radius: 0px 0px 20px 20px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);*/
}

.navbar-text {
  display: flex;
  flex-direction: column;
  align-items: right;
  width: 30%;
}

.deriv-account {
  color: #bfd7f2;
  font-size: 14px;
}

.deriv-account.d {
  color: #fd4754; 
  font-size: 20px; 
  font-weight: normal;
  line-height: 1;
}

.navbar-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  align-items: right;
  width: 100%;
}

.btn {
  border-radius: 10px;
  border: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  width: auto;
  height: 40px;
  padding: 0px 20px;
}

.btn-in {
  background: #bfd7f2;
  color: rgb(30, 30, 30);
}

.btn-in:hover {
  background: rgb(230, 230, 230);
  color: black;
}

.btn-up {
  background: #6366F1;
  color: rgb(230, 230, 230);
}

.btn-up:hover {
  background: #4F46E5;
  color: white;
}

.sign {
  display: flex;
  position: fixed;
  justify-content: flex-end; 
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.sign-content {
  position: relative;
  display: flex;
	background-color: #020C19;
  opacity: 0.95;
	border-radius: 20px 0px 0px 20px;
  box-shadow: -14px 14px 28px rgba(0,0,0,0.25), -10px 10px 30px rgba(0,0,0,0.22);
	overflow: hidden;
	width: 400px;
  height: 100%;
  z-index: 1000;
  top: 0;
  right: 0px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(43, 45, 64, 0.8);
  padding: 10px;
  text-align: center;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-body {
  height: 100%;
  padding: 1rem;
  overflow: hidden;
  overflow-y: auto;
  text-align: left;
}

.modal-body h2 {
  display: inline-block;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
}

.modal-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: normal;
  opacity: 0.8;
  text-align: left;
}

.consent-checkboxes {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  text-align: left;
}

.consent-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(191, 215, 242, 0.1);
}

.consent-checkbox:last-child {
  border-bottom: none;
}

.consent-checkbox label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: normal;
  cursor: pointer;
  order: 1;
}

.consent-checkbox input[type='checkbox'] {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(191, 215, 242, 0.3);
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(199, 242, 191, 0.1);
  position: relative;
  transition: all 0.2s ease;
  order: 2;
  margin-left: 15px;
}

.consent-checkbox input[type='checkbox']:checked {
  background: #34d399;
  border-color: #34d399;
}

.consent-checkbox input[type='checkbox']:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.consent-checkbox input[type='checkbox']:disabled {
  border-color: rgba(199, 242, 191, 0.1);
  cursor: not-allowed;
}

.consent-checkbox .checkbox-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  padding-top: 10px;
}

.btn-cancel {
  padding: 12px 30px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(191, 215, 242, 0.5);
  color: #bfd7f2;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.btn-connect {
  padding: 12px 30px;
  border-radius: 10px;
  background: #fd4754;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.btn-connect:disabled {
  background: rgba(253, 71, 84, 0.4);
  cursor: not-allowed;
}

.btn-cancel:hover {
  background: rgba(191, 215, 242, 0.1);
}

.btn-connect:not(:disabled):hover {
  background: #e13e49;
}

.consent-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(191, 215, 242, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: normal;
}

.dropdownBalance {
  position: relative;
  overflow: hidden;
  height: 28px;
  width: 100px;
  padding-left: 7px;
  background: rgba(2, 12, 25, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.dropdownBalance.disabled {
  opacity: 0.3;
}

.dropdownBalance::before, .dropdownBalance::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L5%205L9%201%22%20stroke%3D%22rgba%28255%2C%20255%2C%20255%2C%200.2%29%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
  background-size: contain;
  background-repeat: no-repeat;
}

.dropdownBalance-select {
  position: relative;
  width: 109%;
  margin: 0;
  height: 28px;
  line-height: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(2, 12, 25, 0.1);
  background: rgba(0, 0, 0, 0) !important; /* "transparent" doesn't work with Opera */
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.dropdownBalance-select:focus {
  outline: none;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 140vh;
  overflow: hidden;
  z-index: 3;
  margin-top: -80px;
}

.slide {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-bg-1 {
  position: absolute;
  top: 160px;
  left: -60px;
  width: 200%;
  object-fit: cover;
  z-index: 1;
  transition: all 0.5s ease;
}

.slide-bg-2 {
  position: absolute;
  top: 80px;
  left: -320px;
  width: 250%;
  object-fit: cover;
  z-index: 1;
  transition: all 0.5s ease;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.slide-content.right {
  text-align: right;
  margin-right: 10px;
  transition: all 0.5s ease;
  margin-top: -100px;
}

.slide-content.left {
  text-align: left;
  margin-left: 10px;
  margin-top: -250px;
  transition: all 0.5s ease;
}

.slide-content h1 {
  display: inline-block;
  margin-bottom: -4px;
  margin-top: -4px;
}

.slide-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.slide-title.primary {
  color: #25c1ee;
}

.slide-title.gradient {
  color: white;
}

.slide-title.gradient.a {
  background: linear-gradient(45deg, #6369e9, #8a62e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.slide-title.gradient.b {
  background: linear-gradient(45deg, #8a62e8, #a95be8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.slide-title.gradient.c {
  background: linear-gradient(45deg, #a95be8, #c755e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.slide-subtitle {
  font-size: 13px;
  margin-top: -2px;
  width: 100%;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translateY(20px);
}

.slide-subtitle.b {
  padding-right: 80px;
}

.slide.active .slide-title {
  animation: fadeInDown 0.8s forwards;
}

.slide.active .slide-subtitle {
  animation: fadeInUp 0.8s 0.3s forwards;
}

/* Base features styles (mobile) */
.features-section {
  top:-250px;
  width: 100%;
  padding: 15px;
  position: relative;
  z-index: 5;
  transition: all 0.5s ease;
}

.features-top-left-item {
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 30px;
}

.features-top-left-item p {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #8B9BB4;
  line-height: 1.2;
  margin: 10px 0px;
}

.features-top-left-item-a {
  display: flex;
  align-items: flex-end;
}

.features-top-left-item-a-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.features-top-left-item-a-content {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  min-width: 0;
  margin-left: 15px;
  line-height: 1.1;
}

.features-top-left-item-a-content h2 {
  display: inline-block;
  font-size: 22px;
  padding-top: 8px;;
  font-weight: normal;
  color: white;
}

.features-top-left-item-a-content p {
  display: none;
  font-size: 16px;
  font-weight: 300;
  color: #8B9BB4;
  line-height: 1.2;
}

.features-top-right {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.floating-btc {
  position: absolute;
  transition: all 0.5s ease;
  width: 250px;
  left: 2%;
  top: 10%;
  opacity: 0.7;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.floating-usd {
  position: relative;
  transition: all 0.5s ease;
  z-index: 2;
  width: 250px;
  left: 7%;
  top: 0%;
  filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.4));
  -webkit-filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.4));
  -moz-filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.4)); 
}

.features-content-left,
.features-content-middle,
.features-content-right {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 3rem;
  width: 100%;
  padding-right: 0px;
}

.features-content-left {
  display: none;
}

.features-content-right{
  margin-top: 3rem;
}

.features-chart {
  top:-360px;
  left: 80px;
  position: relative;
  width: 300px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(-20px 10px 20px rgba(0, 0, 0, 0.6));
  -webkit-filter: drop-shadow(-20px 10px 20px rgba(0, 0, 0, 0.6));
  -moz-filter: drop-shadow(-20px 10px 20px rgba(0, 0, 0, 0.6));
  transform-style: preserve-3d;
  transform: rotateY(-30deg);
  object-fit: cover;
  transition: transform 0.1s ease-out;
}

.features-history {
  width: 360px;
  height: auto;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-content h2 {
  font-size: 18px;
  font-weight: normal;
  color: white;
  margin-bottom: 0;
}

.feature-content p {
  font-size: 16px;
  color: #8b9bb4;
  line-height: 1.4;
  font-weight: 300;
}

/* Base testimonials styles (mobile) */
.testimonials-section {
  top: -140px;
  padding: 60px 20px;
  background: #0B0F18;
  background: rgba(11, 15, 24, 0.9);
  /* background: radial-gradient(116.18% 118% at 80% 100%, rgba(99, 102, 241, 0.1) 0%, rgba(218, 70, 239, 0.05) 41.83%, rgba(241, 244, 253, 0.04) 82.52%);*/
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.testimonials-top {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-top h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: white;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px;
  padding: 0 12px;
}

.testimonial-slide {
  flex: 0 0 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 360px;
}

.testimonial-quote {
  position: relative;
  margin-bottom: 24px;
  background: #151821;
  border-radius: 10px;
  padding: 25px;
  padding-top: 40px;
  padding-bottom: 100px;
  height: 260px;
}

.quote-icon {
  position: absolute;
  top: -20px;;
  width: 44px;
  height: 44px;
  background: #6269E9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  filter: drop-shadow(0px 4px 10px rgba(98, 105, 233, 0.5));
  -webkit-filter: drop-shadow(0px 4px 10px rgba(98, 105, 233, 0.5));
  -moz-filter: drop-shadow(0px 4px 10px rgba(98, 105, 233, 0.5));
}

.testimonial-quote p {
  color: #B6B7BA;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.rating {
  position: relative;
  top:-80px;
  color: #FFB800;
  font-size: 20px;
  letter-spacing: 4px;
  margin: 16px 0;
  padding-left: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: -50px;
  margin-left: 30px;
}

.author-avatar {
    display: flex;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    position: relative;
    border: 3px solid #434471;
  }

.author-avatar img {
    position: absolute;
    width: 46px;
    height: auto;
    top: -9.6px;
}

.author-info {
  width: auto;
  height: auto;
  line-height: 0.8;
}

.author-info h3 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 400;
}

.author-info p {
  display: inline-block;
  color: #BFD7F2;
  font-size: 10px;
  font-weight: 300;
  opacity: 0.7;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.control-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #32343A;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #6269E9;
  color: white;
}

.control-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Base Partner section styles (mobile) */
.partner-section {
  top: 0px;
  padding: 0px 10px;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-header {
  padding-bottom: 25px;
}

.partner-header h2 {
  font-size: 27px;
  line-height: 1.2;
  color: white;
  margin-bottom: 5px;
}

.partner-header p {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(2, 0.1fr);
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.partner-card {
  background: rgba(64, 96, 121, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 30px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 144px;
  height: 160px;
  gap: 5px;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  background: rgba(64, 96, 121, 0.5);
}

.partner-card-icon {
  margin-top: 12px;
  margin-bottom: 5px;
}

.partner-card-icon img {
  height: 60px;
  width: auto;
}

.partner-card h3 {
  font-size: 13px;
  color: white;
  font-weight: 500;
  line-height: 1.2;
}

.partner-card p {
  font-size: 10px;
  color: white;
  line-height: 1.2;
  opacity: 0.5;
  font-weight: 300;
}

.partner-achievements {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.anniversary-logo {
  margin-top: 10px;
  height: 120px;
  object-fit: contain;
}

.awards-image {
  display: none;
  transition: all 0.3s ease;
}

/* Investment Overview Section */
.investment-overview {
  top: 100px;
  background: #0B0F18;
  background: rgba(11, 15, 24, 0.9);
  position: relative;
  width: 100%;
  padding: 2rem 0rem;
  color: #fff;
  overflow: hidden;
  z-index: 2;
}

.investment-overview-container {
  position: relative;
  margin: 0 auto;
  z-index: 10;
}

.investment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.investment-header {
  width: 100%;
}

.investment-header h2 {
  font-size: 1.3rem;
  font-weight: normal;
  background: linear-gradient(180deg, #3498db, #8a5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0.5rem 1rem;
  line-height: 1.2;
}

.investment-header p {
  font-size: 1.4rem;
  color: rgba(72, 86, 192, 0.9);
  margin: 0 1rem;
}

.investment-header img {
  position: absolute;
  top: 45px;
  right: 5%;
  transform: scaleX(-1);
  transition: all 0.3s ease;
}

.investment-graph {
  margin: 50px 0px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vector-line {
  position: absolute;
  left: -830px;
  width: 360%;
  height: auto;
  z-index: 2;
  transition: all 0.8s ease;
}

.currency-toggles {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.currency-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 130px;
  transition: all 0.3s ease;
}

.currency-toggle.active {
  transform: translateY(-5px);
  z-index: 6;
}

.currency-toggle.left {
  left: 45px;
}

.currency-toggle.right {
  right: 45px;
}

.currency-icon {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.currency-icon.off {
  opacity: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
  -webkit-filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
  -moz-filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

.currency-icon.on {
  position: absolute;
  top: 0px;
  opacity: 0;
}

.currency-status {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  position: absolute;
  top: 68%;
  left: 0;
  right: 0;
}

.currency-status.on {
  display: none;
}

.power-button {
  position: absolute;
  bottom: 1px;
  left: 56px;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.power-button.off {
  opacity: 1;
}

.power-button.on {
  opacity: 0;
}

.investment-footer {
  text-align: center;
  margin-top: 2rem;
}

.investment-footer.short h1,
.investment-footer.long h1 {
  font-weight: normal;
  font-size: 22px;
  background: linear-gradient(180deg, #E9BDF8, #80B5B1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.investment-footer.short h2,
.investment-footer.long h2 {
  font-weight: normal;
  font-size: 22px;
  background: linear-gradient(180deg, #BBB9D9, #47B08B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.investment-footer p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.investment-footer span {
  color: #4ade80;
  font-weight: 600;
}

.investment-footer.long{
  display: none;
}

.marquee {
  margin-top: 10px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: scroll 20s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.currency-item {
  display: inline-block;
  margin-right: 7rem;
  padding: 1rem 2rem;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
}


/* Base Pricing section styles (mobile) */
.pricing {
  position: relative;
  margin-top: 200px;
  z-index: 5;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.pricing-header h2 {
    font-size: 27px;
    line-height: 1.2;
    color: white;
    margin-bottom: 5px;
    margin: 40px 0;
    padding: 0 16px;
}

.pricing-cards {
  text-align: left;
  display: grid;
  place-items: center;
  max-width: 1600px;
}

.pricing-card {
  display: flex;
  background: rgba(30, 33, 42, 0.8);
  border: 1px solid rgba(48, 51, 58, 1);
  width: 90%;
  height: 140px;
  padding: 20px;
  transition: all 0.3s ease;
}

.pricing-card.Monthly {
  border-radius: 10px 10px 0 0;
}

.pricing-card.featured {
  background: #6366f1;
  /*transform: scale(1.2);*/
  border-radius: 10px;
  width: 95%;
  height: 180px;
  padding: 20px;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.8));
  -webkit-filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.8));
  -moz-filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.8)); 
}

.pricing-card.featured.frame {
  display: flex;
  border: 1px solid #757BEB;
  width: 100%;
  height: 100%;
  box-shadow: none;
  filter: none;
}

.pricing-card.Founders {
  border-radius: 0 0 10px 10px;
}

.pricing-card.Founders img {
  transform: scale(0.8);
  position: relative;
  top: 91px;
  left: 2%;
}

.pricing-info {
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.pricing-info h3 {
  color: white;
  opacity: 0.7;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: normal;
}

.pricing-info p {
  color: white;
  opacity: 0.4;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 300;
  width: 90%;
}

.pricing-card.featured .pricing-info h3,
.pricing-card.featured .pricing-info p {
  margin-left: 5%;
}

.pricing-price {
  display: block;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  right: 15%;
  text-align: right;
  line-height: 1;
}

.pricing-price .currency {
  color: white;
  font-size: 16px;
}

.pricing-price .amount {
  color: white;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  margin-left: 3px;
}

.pricing-price .amount-usd {
  color: white;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.6;
}

/* Base FAQ section styles (mobile) */
.faq-section {
  display: block;
  position: relative;
  margin-top: 400px;
  padding: 60px 5%;
  z-index: 5;
  background: #0B0F18;
  background: rgba(11, 15, 24, 0.9);
}

.faq-top {
  text-align: center;
  margin-bottom: 60px;
}

.faq-top h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: white;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 2px 20px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: normal;
  cursor: pointer;
  text-align: left;
  background-color: #20232A;
  border-radius: 10px 10px 0px 0px;
}

.faq-question span {
  width: 95%;
  padding-right: 10px;
}

.toggle-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #32343A;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border: 6px solid #32343A;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.faq-item.active .toggle-icon {
  background: #6269E9;
  border-color: #6269E9;
  color: white;
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #20232A;
  padding: 10px 25px 0 20px;
  border-radius: 0px 0px 10px 10px;
  font-weight: 300;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.faq-answer p {
  margin-top: 10px;
  color: #8B9BB4;
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
  hyphens: auto;
  margin-bottom: 16px;
}

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.faq-answer li {
  color: #8B9BB4;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.faq-answer li::before {
  content: "•";
  color: #6366F1;
  position: absolute;
  left: 0;
}

/* Base Contact section styles (mobile) */
.contact-section {
  padding: 80px 5%;
  position: relative;
  z-index: 5;
  margin-top: 50px;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.contact-left {
  text-align: center;
}

.contact-left h2 {
  font-size: 30px;
  color: white;
  margin-bottom: 20px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.contact-method {
  display: inline-flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-method-icon {
  display: block;
}

.contact-method svg {
  width: 20px;
  height: 20px;
  color: #6366F1;
  transition: all 0.3s ease;
}

.method-content h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
}

.method-content p {
  color: #8B9BB4;
  font-size: 16px;
  text-align: justify;
  hyphens: auto;
  margin-bottom: 12px;
}

.method-link {
  color: #6366F1;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.method-link:hover {
  text-decoration: underline;
}

.contact-buttons {
  display: grid;
  gap: 16px;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.contact-button svg {
  width: 20px;
  height: 20px;
}

.call-us {
  background: rgba(99, 102, 241, 0.1);
  color: #6366F1;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.call-us:hover {
  background: rgba(99, 102, 241, 0.15);
}

.chat-with-us {
  background: rgba(52, 211, 153, 0.1);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.chat-with-us:hover {
  background: rgba(52, 211, 153, 0.15);
}

.consultation-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.consultation-form h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group input.invalid {
  border-color: #FF4D4F;
}

.error-message {
  position: absolute;
  left: 0;
  padding-left: 5px;
  bottom: -18px;
  font-size: 12px;
  color: #FF4D4F;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #6366F1;
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group select::placeholder {
  color: #8B9BB4;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238B9BB4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #020C19;
  color: white;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #6366F1;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #4F46E5;
}

.submit-btn:disabled {
  background: rgba(99, 102, 241, 0.5);
  cursor: not-allowed;
}

/* Base Footer section styles (mobile) */
.footer {
  padding: 40px 5%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-deriv-legal {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-left {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-links {
  display: none;
  grid-template-columns: 1fr;
  gap: 15px;
  font-size: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #6366F1;
}

.footer-right {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  z-index: 2;
}

.footer-social {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

.social-link.disabled {
  pointer-events: none;
  opacity: 0.3;
}

.bottom-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #363940;
  border: none;
  bottom: 0;
  left: 0; 
}

.bottom-line-color {
  position: absolute;
  width: 130px;
  height: 3px; 
  background-color: #6269E9;
  border: none;
  bottom: 0; 
  left: 0; 
}

.gradient-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 1;
  position: absolute;
  top: 0px;
  left: 0px;
}

.gradient-1,
.gradient-3 {
  pointer-events: none;
  position: relative;
  height: 3000px;
  width: 3000px;
  top: 300px;
  left: -2200px;
  border-radius: 50%;
  opacity: 0.3;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #ff3cac 0%,
    #784ba0 50%,
    rgba(43, 134, 197, 0) 100%
  );
  transition: all 0.3s ease;
}

.gradient-2 {
  pointer-events: none;
  position: relative;
  height: 1800px;
  width: 3500px;
  top: -300px;
  left: -300px;
  border-radius: 50%;
  opacity: 0.5;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #066bae 0%,
    #02336f 50%,
    rgba(43, 134, 197, 0) 100%
  );
  transition: all 0.3s ease;
}

.gradient-3 {
  top: -800px;
}


@media (min-width: 500px) {
  .slide-bg-1 {
    top: 50px;
    width: 180%;
  }
  
  .slide-bg-2 {
    left: -460px;
    width: 200%;
  }

  .slide-content.right {
    top:70%;
  }

  .slide-content.left {
    top:40%;
  }
}

@media (min-width: 769px) {
  .bottom-line-color {
    width: 230px;
  }

  .logo-icon {
    display: block;
    left: 4%;
    top: 46px;
  }

  .navbar {
    flex-direction: row;
    top: 35px;
    height: 60px;
    width: 86%;
    padding-top: 0px;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 20px;
    background: rgba(43, 45, 64, 0.3);
  }
  
  .navbar-brand {
    padding: 20px;
    width: 200px;
  }

  .navbar-language {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .language-dropdown {
    position: relative;
    top:0px;
    right: 0px;
    margin-right: 0px;
  }

  .navbar-deriv {
    width: 480px;
    padding: 5px 20px;
    border-radius: 20px;
  }

  .navbar-sign {
    width: 300px;
    min-width: 300px;
    padding: 5px 20px 5px 0px;
    border-radius: 20px;
  }

  .navbar-text {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  
  .deriv-account.d {
    font-size: 24px; 
    font-weight: bold;
    line-height: normal;
  }
  
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .modal-content {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 550px;
    height: auto;
    max-width: 700px;
    min-height: 400px;
    overflow-y: auto;
  }

  .consent-buttons {
    justify-content: right;
  }

  .btn-cancel {
    min-width: 140px;
  }
  
  .btn-connect {
    min-width: 140px;
  }

  .slide-bg-1 {
    top: 50px;
    width: 170%;
  }
  
  .slide-bg-2 {
    top: 0px;
    left: -450px;
    width: 190%;
  }
  
  .slide-content.right {
    left: -3%;
    margin-top: 0px;
  }
  
  .slide-content.left {
    left: 3%;
    margin-top: -500px;
  }

  .slide-title {
    font-size: 36px;
    line-height: 1.4;
  }

  .slide-subtitle {
    font-size: 16px;
    margin-top: 5px;
  }

  .features-section {
    top: -100px;
    width: 80%;
    margin: 0 10%;
  }
  
  .features-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .features-top-left-item p {
    display: none;
  }
  
  .features-top-left-item-a {
    align-items: center;
  }

  .features-top-left-item-a-content p {
    display: block;
  }
  
  .features-top-right {
    margin-top: 0px;
  }

  .features-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
  }

  .floating-btc {
    left: 2%;
  }

  .features-content-middle,
  .features-content-right {
    margin-top: 0;
  }

  .feature-item {
    height: 120px;
  }

  .testimonials-section {
    top: -40px;
  }

  .testimonials-top h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .testimonial-slide {
    flex: 0 0 calc(50% - 12px);
  }

  .partner-section {
    top: 160px;
  }

  .partner-header h2 {
    font-size: 30px;
    line-height: 1.4;
  }
  
  .partner-header p {
    font-size: 16px;
  }

  .partner-cards {
    grid-template-columns: repeat(4, 0fr);
    gap: 20px;
  }

  .partner-card {
    width: 160px;
    height: 180px;
  }

  .partner-card-icon {
    margin-top: 15px;
    margin-bottom: -20px;
  }

  .partner-card-icon img {
    height: 70%;
    width: auto;
  }

  .partner-card h3 {
    font-size: 14px;
    margin-top: 10px;
  }

  .partner-card p {
    margin-top: 6px;
  }

  .partner-achievements {
    flex-direction: row;
    gap: 0px;
  }

  .partner-achievements-b {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-top: 20px;
  }

  .awards-image {
    display: inline-flex;
    height: 55px;
    width: auto;
  }

  .investment-overview {
    top: 300px;
  }

  .investment-overview-container {
    margin-top: 60px;
    height: 360px;
  }

  .investment-content {
    align-items: flex-start; 
    text-align: left;
  }

  .investment-header h2 {
    margin: 0 5%;
    font-size: 1.2rem;
  }

  .investment-header p {
    margin: 0 5%;
    font-size: 1.05rem;
  }
  
  .investment-header img {
    top: -25px;
    right: 25%;
  }
  
  .investment-graph {
    margin: 0px;
    top: -100px;
    height: 250px;
  }
  
  .vector-line {
    left: 5%;
    width: 90%;
  }

  .currency-toggles {
    left: 54%;
    top: -120px
  }

  .investment-footer {
    position: relative;
    top: -320px;
  }

  .investment-footer.short{
    display: none;
  }

  .investment-footer.long{
    padding-left: 5%;
    display: block;
    text-align: left;
    width: 57%;
  }

  .investment-footer.long h1 {
    font-size: 17px;
  }

  .investment-footer.long h2 {
    font-size: 21px;
  }

  .pricing {
    margin-top: 450px;
    display: grid;
    place-items: center;
  }

  .pricing-header h2 {
    margin-bottom: 0px;
}

  .pricing-cards {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 20px 60px;
    height: 350px;
  }

  .pricing-card {
    width: 100%;
    gap: 0px;
    display: block;
    height: 250px;
  }

  .pricing-card.Monthly {
    border-radius: 20px 0 0 20px;
  }

  .pricing-card.Monthly:hover {
    transform: translateX(-10px);
  }

  .pricing-card.featured {
    width: 105%;
    z-index: 6;
    height: 300px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-3px);
  }

  .pricing-card.featured.frame {
    display: block;
    align-items: center;
    justify-content: center;
  }

  .pricing-card.Founders {
    border-radius: 0 20px 20px 0;
  }

  .pricing-card.Founders:hover {
    transform: translateX(10px);
  }

  .pricing-card.Founders img {
    transform: scale(0.5);
    position: relative;
    top: -36px;
    left: 35%;
  }

  .pricing-info {
    display: grid;
    place-items: center;
  }

  .pricing-info h3 {
    opacity: 0.9;
    font-size: 26px;
  }

  .pricing-info p {
    opacity: 0.6;
    font-weight: 300;
    height: 80px;
  }

  .pricing-card.featured .pricing-info p {
    margin-left: 0;
  }

  .pricing-card.featured .pricing-info h3 {
    margin-left: 0;
  }

  .pricing-price {
    align-items: flex-start;
    justify-content: center;
    position: relative;
    right: 0;
    margin-top: 0px;
    text-align: center;
    line-height: 1.2;
  }

  .pricing-price .amount {
    margin-bottom: 0px;
  }

  .pricing-card.featured.frame .pricing-price .amount {
    margin-bottom: 0px;
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
  }

  .contact-left {
    text-align: left;
  }

  .consultation-form {
    text-align: left;
  }

  .contact-buttons {
    display: flex;
    gap: 16px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-left {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-right {
    justify-content: flex-end;
  }

  .footer-social {
    justify-content: flex-end;
  }

  .footer-deriv-legal {
    justify-content: flex-start;
    text-align: left;
  }

  .gradient-1 {
    height: 1800px;
    width: 1800px;
    top: 1300px;
    left: -1100px;
  }

  .gradient-2 {
    height: 1500px;
    width: 3000px;
    top: 900px;
    left: -400px;
  }

  .gradient-3 {
    top: 600px;
  }
}

@media (min-width: 1000px) {
  .slide-bg-1 {
    top: 0px;
    width: 150%;
  }
  
  .slide-bg-2 {
    left: -400px;
    width: 150%;
  }
  .features-section {
    top: -200px;
  }
  .slide-content.right {
    left: -3%;
    margin-top: -300px;
  }
}

@media (min-width: 1200px) {
  .slide-bg-1 {
    top: 0px;
    width: 120%;
  }
  
  .slide-bg-2 {
    top: 0px;
    left: -200px;
    width: 120%;
  }

  .slide-content.right {
    padding-right: 3vw;
  }
  
  .slide-content.left {
    padding-left: 8vw;
  }

  .features-section {
    top: -240px;
    width: 80%;
    margin: 0 10%;
  }
  
  .features-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .features-top-left-item p {
    display: none;
  }
  
  .features-top-left-item-a {
    align-items: center;
  }
  
  .features-top-left-item-a-content p {
    display: block;
  }
  
  .features-top-right {
    margin-top: 0px;
  }

  .features-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    position: relative;
  }

  .floating-btc {
    left: 20%;
  }

  .features-content-left,
  .features-content-middle,
  .features-content-right {
    display: flex;
    margin-top: 0;
  }

  .testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
  }
  
  .testimonials-container {
    padding: 0 24px;
  }

  .partner-cards {
    margin-top: 20px;
    gap: 50px;
  }

  .partner-card {
    border-radius: 40px;
    padding: 20px;
    width: 260px;
    height: 300px;
  }

  .partner-card-icon {
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .partner-card-icon img {
    height: 100%;
    width: auto;
  }

  .partner-card h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .partner-card p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: normal;
  }

  .partner-achievements {
    gap: 50px;
    margin-top: 30px;
  }

  .partner-achievements-b {
    gap: 80px;
  }

  .awards-image {
    height: 100%;
  }

  .investment-header h2,
  .investment-header p {
    font-size: 1.5rem;
    margin: 0 12%;
  }

  .investment-header img {
    right: 35%;
  }
  
  .investment-graph {
    top: -110px;
  }

  .vector-line {
    left: 12%;
    width: 75%;
  }

  .currency-toggle.left {
    left: -25px;
  }
  
  .currency-toggle.right {
    right: -25px;
  }

  .investment-footer.long{
    padding-left: 12%;
    width: 52%;
  }

  .investment-footer.long h1 {
    font-size: 22px;
  }

  .investment-footer.long h2 {
    font-size: 27px;
  }

  .contact-left h2 {
    font-size: 42px;
  }

  .gradient-1 {
    width: 5000px;
    left: -3000px;
    top: 1500px;
  }

  .gradient-2 {
    width: 5000px;
  }

  .gradient-3 {
    width: 3500px;
    left: -2600px;
  }
}

@media (min-width: 1400px) {
  .slide-bg-1 {
    top: 0px;
    width: 100%;
  }
  
  .slide-bg-2 {
    top: 0px;
    left: 0px;
    width: 100%;
  }

  .slide-content.right {
    padding-right: 3vw;
    margin-top: -200px;
  }
  
  .slide-content.left {
    padding-left: 8vw;
  }

  .features-section {
    top: -100px;
  }

  .investment-overview-container {
    height: 340px;
  }

  .investment-header h2,
  .investment-header p {
    font-size: 1.7rem;
  }

  .investment-header img {
    right: 45%;
  }
  
  .investment-graph {
    top: -140px;
    height: 200px;
  }

  .currency-toggles {
    left: 65%;
  }

  .currency-toggle.left {
    left: -45px;
  }
  
  .currency-toggle.right {
    right: -45px;
  }

  .investment-footer.long{
    width: 49%;
  }

  .investment-footer.long h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .investment-footer.long h2 {
    font-size: 30px;
    line-height: 2;
  }
}

@media (min-width: 1800px) {
  .slide-bg-1 {
    top: -100px;
    width: 100%;
  }
  
  .slide-bg-2 {
    top: -100px;
    left: 0px;
    width: 100%;
  }
}

@media (max-height: 600px) {
  .slide-content.left {
    top:40%;
  }

  .slide-content.right {
    top:60%;
  }
}

@media (max-width: 768px) {
  .vector-line {
    left: -380px;
    width: 150%;
  }
  .floating-btc {
    left: 30%;
  }
}

@media (max-width: 600px) {
  .vector-line {
    left: -560px;
    width: 200%;
  }
  .floating-btc {
    left: 20%;
  }
}

@media (max-width: 500px) {
  .vector-line {
    left: -460px;
    width: 200%;
  }
  
  .floating-btc {
    left: 10%;
  }
}

@media (max-width: 400px) {
  .vector-line {
    left: -830px;
    width: 360%;
  }

  .floating-btc {
    left: 2%;
  }
}