/* ==========================================================
   MINI TABLE OF CONTENTS
   1. Global tokens / variables
   2. Resets / Base
   3. Utilities / Helpers
   4. Layout (containers / wrappers)
   5. Components (buttons, forms, nav, cards, modals...)
   6. Page-specific sections (home, dashboard, deposit, support...)
   ========================================================== */

/* ==========================================================
   1) GLOBAL TOKENS / VARIABLES
   ========================================================== */

:root {
  --container: 1200px;
  --gutter: 15px;
  --brand-blue: #0464a7;
  --brand-blue-strong: #124c60;
  --accent-red: #ff003d;
  --muted: #6b7280;
  --text: #306374;
  --inverse: #fff;
}

/* ==========================================================
   2) RESETS / BASE
   (html, body, typography, forms)
   ========================================================== */

html {
  height: 100%;
  box-sizing: border-box;
  font-kerning: normal;
  -webkit-box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  -webkit-font-kerning: normal;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
  -webkit-box-sizing: inherit;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #306374;
  background: #ffffff;
}

p, table, td, th, h1, h2, h3, h4, h5, h6, ul, ol, li, span, a, button, input, select, textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}

a {
  color:#0464a7;
  text-decoration:none;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

.material-symbols-outlined {
  display: inline-block;
  width: 24px;
  height: 24px;
  white-space: nowrap;
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  direction: ltr;
  vertical-align: middle;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/*Forms*/
.main-form {
    margin: 0 auto;
}
.main-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 15px;
    margin-bottom: 3px;
}

.main-form .form-row1 {
    display: grid;
    grid-template-columns: 1fr;
}

.main-form .form-row3 {
	 grid-template-columns: 1fr 1fr 1fr;
}

.main-form .form-row4 {
	 grid-template-columns: 1fr 1fr 1fr 1fr;
}

.main-form .input-group {
    position: relative;
    flex: 1 1 280px;
    min-width: 200px;
	margin-bottom: 15px;
}


.main-form .form-row3 .input-group, .main-form .form-row4 .input-group{
	min-width:auto;
}

.main-form .input-group label {
    position: absolute;
    left: 12px;
    top: 23px;
    transform: translateY(-50%);
    background: white;
    padding: 0 7px;
    color: #6b7280;
    pointer-events: none;
    transition: transform .32s ease-out, top .32s ease-out, font-size .32s ease-out, color .32s ease-out, opacity .18s ease;
}

.main-form .input-group label.textarea {top:15%;}
.main-form .input-group input:focus + label,
.main-form .input-group input:not(:placeholder-shown) + label,
.main-form .input-group input.filled + label,
.main-form .input-group textarea:focus + label,
.main-form .input-group textarea:not(:placeholder-shown) + label,
.main-form .input-group textarea.filled + label 
 {
    top: -1px;
    left: 12px;
    color: #2563eb;
    opacity: 1;
}

.main-form input.invalid + label,
.main-form textarea.invalid + label,
select.invalid + label {
    color: #ef4444 !important;
}

.error-text {
    display: none;
    line-height: 16px;
    font-size: 14px;
    color: #ef4444;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
    visibility: hidden;
    text-align:right;
    padding-right:5px;
    position:absolute;
    right:0px;
}

.error-text[aria-hidden="false"],
.main-form input.invalid + label + .error-text,
.main-form textarea.invalid + label + .error-text,
.main-form select.invalid + .error-text {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    display:block;
}

.form-input, input[type="text"], input[type="password"], input[type="email"], select, textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 8px 8px;
    border-radius: 10px;
    border: 3px solid transparent;
    background-color: #fff;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(#cad8e1, #cad8e1);
    background-origin: padding-box, border-box;
    background-clip:    padding-box, border-box;
    outline: none;
    transition: all 0.2s ease-in-out;
        color: #406f7f;
}

.error-message {
  margin-bottom: 10px;
  color: #ef4444;
}

.warning-message {
  margin-bottom: 10px;
  color: #b45309;
}

.main-form select {
  padding:10px 8px;
}

input[type="text"]:-moz-read-only {
  background-color: #e5e7eb;
}

input[type="text"]:read-only {
  background-color: #e5e7eb;
}

.main-form .input-group input:focus,
.main-form .input-group select:focus,
.main-form .input-group textarea:focus {
  border-color: transparent;
  border: 3px solid transparent;
  background-image:
  -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)),
  -webkit-gradient(linear, left top, left bottom, from(#2563eb), to(#2563eb));
  background-image:
  -o-linear-gradient(#fff, #fff),
  -o-linear-gradient(#2563eb, #2563eb);
  background-image:
  linear-gradient(#fff, #fff),
  linear-gradient(#2563eb, #2563eb);
  background-origin: padding-box, border-box;
  background-clip:    padding-box, border-box;
  box-shadow: 0px 0px 4px #4498ef;
  border-color: #2563eb;
  -webkit-box-shadow: 0px 0px 4px #4498ef;
}

.main-form input.invalid,
.main-form input.invalid:focus,
.main-form textarea.invalid,
.main-form textarea.invalid:focus,
.main-form select.invalid {
  border: 3px solid transparent;
  border-color: #ef4444;
  background-image:
    -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)),
    -webkit-gradient(linear, left top, left bottom, from(#ef4444), to(#ef4444));
  background-image:
    -o-linear-gradient(#fff, #fff),
    -o-linear-gradient(#ef4444, #ef4444);
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#ef4444, #ef4444);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0px 0px 4px #ef4444;
  -webkit-box-shadow: 0px 0px 4px #ef4444;
}

/* Custom Checkbox */
.checkbox-wrapper {
  position:relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  cursor: pointer;
}

.checkbox-wrapper .error-text {
    position: absolute;
    top: 40px;
    left: 30px;
    right: auto;
}
/* Hide the default checkbox */
.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

/* Custom checkbox base style */
.custom-checkbox {
  width: 1.5rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: 2px solid #9ca3af;
  background-color: #ffffff;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state for the entire label */
.checkbox-wrapper:hover .custom-checkbox {
  border-color: #3b82f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Style the custom checkbox when the input is checked */
.checkbox-wrapper input[type="checkbox"]:checked ~ .custom-checkbox {
  border-color: #2563eb;
  background-color: #2563eb;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#3B82F6), to(#2563EB));
  background-image: -o-linear-gradient(top left, #3B82F6, #2563EB);
  background-image: linear-gradient(to bottom right, #3B82F6, #2563EB);
}

/* Style the checkmark (using a pseudo-element) */
.custom-checkbox::after {
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(0);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  content: '';
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: transform;
  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* Scale the checkmark up when checked */
.checkbox-wrapper input[type="checkbox"]:checked ~ .custom-checkbox::after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}

/* Add focus ring for accessibility */
.checkbox-wrapper input[type="checkbox"]:focus ~ .custom-checkbox {
  outline: none;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #3b82f6;
  -webkit-box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #3b82f6;
}

/* Text styling */
.checkbox-label-text {
  margin-left: 0.5rem;
  line-height: 1.25rem;
  transition-property: color;
  transition-duration: 200ms;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition-property: color;
  -o-transition-property: color;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
}

/* Hover state for the text */
.checkbox-wrapper:hover .checkbox-label-text {
  color: #111827;
}

/* Disabled state styling */
.checkbox-wrapper.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkbox-wrapper.disabled .custom-checkbox {
  border-color: #e5e7eb;
  background-color: #f3f4f6;
}

.checkbox-wrapper.disabled .custom-checkbox::after {
  display: none;
}

.checkbox-wrapper.disabled .checkbox-label-text {
  color: #9ca3af;
}

/* Custom radio container*/
.radio-container input {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
  border: 2px solid #ccc;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* On mouse-over, add a grey background */
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a color */
.radio-container input:checked ~ .checkmark {
  background-color: #2196F3;
  border-color: #2196F3;
}

/* Create the inner circle/dot */
.checkmark:after {
  position: absolute;
  display: none;
  content: "";
}

/* Show the inner circle when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the inner circle */
.radio-container .checkmark:after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.radio-container {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.captcha {
  position:relative;
}

.captcha-img {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10000;
}

.captcha-img img {
  width: auto;
  height: 38px;
}

.security-grid .radio-container {
  margin-right: 10px;
  padding-left: 25px;
}

.security-grid .checkmark {
  top:3px;
}

/* ==========================================================
   3) UTILITIES / HELPERS
   (small, frequently used helpers)
   ========================================================== */

/* spacing helpers */

.mb-50 {
  margin-bottom:50px;
}

.mb-20 {
  margin-bottom:20px;
}

.mb-10 {
  margin-bottom:10px;
}

.mb-2 {
  margin-bottom:2px;
}

.mt-10 {
  margin-top:10px;
}

.mt-25 {
  margin-top:25px;
}

.mt-20 {
  margin-top:20px;
}

.b-0 {
  border:0;
}

.p-0 {
  padding:0;
}

.mr-0 {
  margin-right:0;
}

.hidden {
  display:none;
}

.d-block {
  display:block;
}

.mt-0, .main-form .mt-0, .main-content .mt-0 {
  margin-top:0px;
}

.mb-0, .main-form .mb-0, .main-content .header.mb-0 {
  margin-bottom:0px!important;
}

.mb-5 {
	margin-bottom:5px;
}

.w-80 {
  width: 80px;
}

.w-100 {
  width: 100px;
}

.w-120 {
  width: 120px;
}

.w-130 {
  width: 130px;
}

.w-140 {
  width: 140px;
}

.w-160 {
  width: 160px;
}

.w-180 {
  width: 180px;
}

.w-185 {
  width: 185px;
}

.w-190 {
  width: 190px;
}

.w-200 {
  width: 200px;
}

.w-215 {
  width: 215px;
}

.w-220 {
  width: 220px;
}

.w-240 {
  width: 240px;
}

.w-260 {
  width: 260px;
}

.w-280 {
  width: 280px;
}

.w-300 {
  width: 300px;
}

.w-330 {
  width: 330px;
}

.w-400 {
  width: 400px;
}

.w-500 {
  width: 500px;
}

.w-540 {
  width: 540px;
}

.w-580 {
  width: 580px;
}

.w-full {
  width: 100%;
}

.g-10 {
  gap:10px;
}

.text-white {
  color:white;
}

.text-right {
  text-align:right;
}

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

.text-danger {
  color:#cf003d;
}

.letter-spacing-small {
	letter-spacing: -0.2px;
}


/*Dividers*/

.red-divider {
  height: 3px;
  margin-bottom: 10px;
  background: #c5d8e8;
  border-left: 47px solid #ff003d;
}

.divider {
  height: 3px;
  margin-top: 15px;
  margin-bottom:15px;
  background: #c5d8e8;
}

.divider-vertical {
  width:4px;
  background: #c5d8e8;
  border-top:20px solid #ff003d;
}

.divider-short {
  width:0px;
  height:51px;
  border-left:1px solid #3b7c9a;
  border-right: 1px solid #0a3444;
}

.alert, .error, .success {
  padding: 10px 15px;
  margin-bottom: 20px;
  background: #d4f4ff;
  border-radius: 6px;
  border: 1px solid #99ccdd;
  box-shadow: 0px 5px 10px #3859642e;
  -webkit-box-shadow: 0px 5px 10px #3859642e;
}

.error {
  padding-left: 42px;
  color: #bd5e74;
  border: 1px solid #ffc5d2;
  background: #fbe6e7 url(images/error.png) 10px 14px no-repeat;
}

.success {
  color:#3b6637;
  border: 1px solid #7dbf76;
  background: #eaf9e8;
}

.alert h3 {
  font-size: 20px;
  font-weight: 600;
}

.alert input[type="submit"] {
  padding: 2px 15px;
  display: inline-block;
  margin-top: 5px;
  color: #2196f3;
  background-color: #ffffff;
  border: 2px solid #2196f3;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}

.alert input[type="submit"]:hover {
  color:white;
  background-color: #138cec;
}

/* ==========================================================
   4. Layout (containers / wrappers / header / footer)
   ========================================================== */

.site-wrapper {
  max-width: var(--container);
  min-width: var(--container);
  margin: 0 auto;
}

.container {
  max-width: var(--container);
  min-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.full-width {
  position: relative;
  left: 50%;
  width: calc(100dvw - 15px);
  min-width: 1200px;
  max-width: none;
  padding: 0;
  transform: translateX(-50%);
  isolation: isolate;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap:10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
}

.sub-container {
  position: relative;
}

/*Header Top*/

.header-top {
  padding: 10px 0px 0px;
  color: #0464a7;
  background-color: #fff;
}

.header-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.header-top-left {
  margin: 0 1px;
  text-decoration: none;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.header-top-left a:hover {
  text-decoration: underline;
}

.header-top-middle {
  padding-right: 5px;
}

.seals-bottom {
  padding-top: 5px;
  text-align: center;
  border-top: 1px solid #9bb5bdb3;
}

.header-top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap:5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown2 img {
  width:30px;
  height:16px;
}

/* Styling for the dropdown button */
.dropdown-button {
  position: relative;
  padding: 2px 25px 2px 4px;
  color: #859fa8;
  text-align:left;
  border: 1px solid #cfd4d6;
  background-color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
}

/* The dropdown arrow itself */
.dropdown-button::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #859fa8;
  transform: translateY(-50%);
  content: '';
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* Arrow state when the dropdown is active */
.dropdown-active::after {
  border-top: none;
  border-bottom: 6px solid #859fa8;
  /* Flips the arrow to point upwards */;
}

/* Styling for the dropdown content (the links) */
.dropdown-content {
  z-index: 1;
  display: none;
  min-width: 140px;
  background-color: #ffffff;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border: 1px solid #cfd4d6;
  border-top: none;
  border-radius: 0 0 4px 4px;
  /* Initially hide the content */
  position: absolute;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  padding: 4px 5px;
  display: block;
  text-decoration: none;
  color: #859fa8;
}

.dropdown-content a:hover {
  background-color:#f1f7f8;
}

.header-main {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.header-main-logo-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
  width: 450px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.header-main-logo-section-acc {
	    width: 500px;
}


.header-main-logo-section .winvest-logo {
  margin-bottom: 5px;
  width: 450px;
  height: 120px;
}

.header-main-logo-section-acc .winvest-logo {
  margin-bottom: 5px;
  width: 500px;
  height: 133px;
}


.header-main-logo-section p {
  margin: 0;
  color: #555;
}

.header-main-trading-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 350px;
  overflow: hidden;
  opacity: 0.9;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}

.header-main-trading-data-acc {
	width:300px;
}

.header-main-trading-data a {
  text-align:center;
  font-size: 17px;
  font-weight:600;
}

.trading-row {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 90px 40px 150px 70px;
  padding: 5px 0px;
  line-height:1;
  border-bottom: 1px solid #eee;
  -ms-grid-columns: 1fr 0.4fr 1fr 0.8fr;
}

.trading-row:last-child {
  border-bottom: none;
}

.trading-row span {
  text-align: center;
}

.trading-row span.timing {
  text-align: center;
  font-weight:400;
  color:#79a0ae;
}

.trading-row span:first-child {
  color:#174f62;
}

.trading-row.header-row, .trading-row.header-row span, .trading-row.header-row span:first-child {
  font-weight: 400;
  color: #92b0bb;
  text-align:center;
}

.trading-row .buy {
  color: #28a745;
  font-weight: 600;
}

.trading-row .sell {
  color: #dc3545;
  font-weight: 600;
}

.profit-positive {
  color: #28a745;
  font-weight: 600;
}

.profit-negative {
  color: #dc3545;
  font-weight: 600;
}

.header-main-user-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
}

.user-auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  width: 330px;
  justify-content: space-between;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.call-us {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0px;
  width: 330px;
  overflow: hidden;
  text-align: center;
  background-color: #2196f3;
  border: 1px solid #2196f3;
  border-radius: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.user-page {
  width: 370px;
  padding-left: 15px;
}

.call-us .call-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 0;
  margin-right: 0px;
  height: 139px;
  width: 140px;
  border-radius: 0px 5px 5px 0px;
}

.call-us .call-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-top: 8px;
  padding-bottom: 9px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}

.call-us .call-text span {
  color: #fff;
}

.call-us .call-text strong {
  padding: 0px 5px;
  color: #ffffff;
}

.withdraw {
  justify-content:space-between;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
}

/* Footer Section */
.main-footer {
  padding: 30px 0 10px;
  background-color: #edf4f6;
  border-top: 3px solid #2196f3;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.exchangers-block {
  flex: 1;
  padding: 15px;
  text-align: center;
  background-color: #edf4f6;
  border: 1px solid #2196f3;
  border-radius: 6px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}

.exchangers-block .block-title {
  margin-top: -40px;
  margin-bottom: 10px;
  display: block;
  padding: 0px 0px 10px;
  padding-top: 15px;
  color: #185168;
  background: #edf4f6;
}

.exchanger-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.exchanger-logos img {
  width: 137px;
  height: 37px;
  -o-object-fit: contain;
  object-fit: contain;
}

.usa-exchangers {
  flex: 0 0 190px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 190px;
}

.bitcoin-block {
  flex: 1;
  padding: 15px;
  text-align: center;
  background-color: #edf4f6;
  border: 1px solid #2196f3;
  border-radius: 6px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}

.bitcoin-block .block-title {
  margin-top: -40px;
  margin-bottom: 10px;
  display: block;
  padding: 0px 10px 10px;
  padding-top: 15px;
  color: #185168;
  background: #edf4f6;
}

.bitcoin-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.bitcoin-icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  -ms-flex-negative: 0;
}

.bitcoin-content p {
  margin: 0;
  text-align: left;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #d4e1e8;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
}

.footer-logo img {
  margin-bottom: 5px;
  width: 207px;
  height: 61px;
}

.footer-logo span {
  color: #75a1b0;
}

.copyright {
  margin: 0;
  margin-left: -80px;
  color: #4d6067;
}

.footer-links a {
  margin-left: 10px;
  color: #4d6067;
  text-decoration: none;
}

.footer-links a:first-child {
  margin-left: 0;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Navigation Bar Styles */

.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  background-color: #124c60;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.main-nav ul li {
  margin: 0 2px;
}

.main-nav ul li a {
  position:relative;
  padding: 15px 8px 13px;
  white-space: nowrap;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #ffffff;
  border-bottom: 3px solid #ff003d;
  background-color: #b7193f;
}

.main-nav ul li a::after {
  height: 0;
  border-left: 6px solid transparent;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, bottom 0.3s ease;
  content: '';
  /* Required for pseudo-elements */
            position: absolute;
  /* Position the arrow relative to the link */
            bottom: -10px;
  /* Adjust this value to control arrow distance from link */
            left: 50%;
  /* Center the arrow horizontally */
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* Center the arrow horizontally */
  width: 0;
  /* Left side of the triangle */
            border-right: 6px solid transparent;
  /* Right side of the triangle */
            border-bottom: 6px solid #ff003d;
  /* Bottom side of the triangle, pointing up */
            opacity: 0;
  /* Initially hidden */
  -webkit-transition: opacity 0.3s ease, bottom 0.3s ease;
  -o-transition: opacity 0.3s ease, bottom 0.3s ease;
  /* Smooth transition for appearance and position */
            z-index: 10;
  /* Ensure arrow is above other elements if needed */;
}

.main-nav ul li a:hover::after {
  opacity: 1;
  /* Show the arrow on hover */
            bottom: 0px;
  /* Move the arrow slightly up on hover for a subtle effect */;
}

/* ==========================================================
   5. Components (buttons, cards, modals, tables ...)
   ========================================================== */

/*Buttons*/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  padding-left:10px;
  padding-right:10px;
  font: inherit;
  line-height: 42px;
  text-align: center;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
  border: 3px solid transparent;
  background: transparent;
  background:
  -webkit-gradient(linear,left top, left bottom,from(transparent),to(transparent)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(currentColor),to(currentColor)) border-box;
  background:
  -o-linear-gradient(transparent,transparent) padding-box,
  -o-linear-gradient(currentColor,currentColor) border-box;
  background:
  linear-gradient(transparent,transparent) padding-box,
  linear-gradient(currentColor,currentColor) border-box;
  background-clip: padding-box;
  transition:
  color            1.20s cubic-bezier(.16,1,.3,1),
  background-color 1.20s cubic-bezier(.16,1,.3,1),
  -webkit-box-shadow       1.40s cubic-bezier(.16,1,.3,1),
  -webkit-transform        .12s ease;
  transition:
  color            1.20s cubic-bezier(.16,1,.3,1),
  background-color 1.20s cubic-bezier(.16,1,.3,1),
  box-shadow       1.40s cubic-bezier(.16,1,.3,1),
  transform        .12s ease;
  transition:
  color            1.20s cubic-bezier(.16,1,.3,1),
  background-color 1.20s cubic-bezier(.16,1,.3,1),
  box-shadow       1.40s cubic-bezier(.16,1,.3,1),
  transform        .12s ease,
  -webkit-box-shadow       1.40s cubic-bezier(.16,1,.3,1),
  -webkit-transform        .12s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-sizing: border-box;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition:
  color            1.20s cubic-bezier(.16,1,.3,1),
  background-color 1.20s cubic-bezier(.16,1,.3,1),
  -webkit-box-shadow       1.40s cubic-bezier(.16,1,.3,1),
  -webkit-transform        .12s ease;
  -o-transition:
  color            1.20s cubic-bezier(.16,1,.3,1),
  background-color 1.20s cubic-bezier(.16,1,.3,1),
  box-shadow       1.40s cubic-bezier(.16,1,.3,1),
  transform        .12s ease;
}

.btn::before {
  transition: opacity 1.20s cubic-bezier(.16,1,.3,1);
  -webkit-transition: opacity 1.20s cubic-bezier(.16,1,.3,1);
  -o-transition: opacity 1.20s cubic-bezier(.16,1,.3,1);
}

.btn:hover {
  text-decoration: none;
}

.btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0,0,0,.12);
  -webkit-box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}

.btn:disabled, .btn[aria-disabled="true"] {
  opacity: .6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn img {
  display: inline-block;
}



@media (prefers-reduced-motion: reduce) {
.btn {
  transition: none;
  -webkit-transition: none;
  -o-transition: none;
}

}

.btn-outline-white {
  background:
  -webkit-gradient(linear,left top, left bottom,from(transparent),to(transparent)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#fff),to(#fff)) border-box;
  background:
  -o-linear-gradient(transparent,transparent) padding-box,
  -o-linear-gradient(#fff,#fff) border-box;
  background:
  linear-gradient(transparent,transparent) padding-box,
  linear-gradient(#fff,#fff) border-box;
}

.btn-outline-white:hover {
  color: #0464a7;
  background:
  -webkit-gradient(linear,left top, left bottom,from(#eff3f7),to(#eff3f7)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#eff3f7),to(#eff3f7)) border-box;
  background:
  -o-linear-gradient(#eff3f7,#eff3f7) padding-box,
  -o-linear-gradient(#eff3f7,#eff3f7) border-box;
  background:
  linear-gradient(#eff3f7,#eff3f7) padding-box,
  linear-gradient(#eff3f7,#eff3f7) border-box;
}

.btn-outline-white:focus-visible {
  box-shadow: 0 0 0 3px rgba(255,255,255,.35);
  -webkit-box-shadow: 0 0 0 3px rgba(255,255,255,.35);
}

.btn-blue {
  color: #fff;
  background:
  -webkit-gradient(linear,left top, left bottom,from(#0464a7),to(#0464a7)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#0464a7),to(#0464a7)) border-box;
  background:
  -o-linear-gradient(#0464a7,#0464a7) padding-box,
  -o-linear-gradient(#0464a7,#0464a7) border-box;
  background:
  linear-gradient(#0464a7,#0464a7) padding-box,
  linear-gradient(#0464a7,#0464a7) border-box;
}

.btn-blue:hover {
  color: #0464a7;
  background:
  -webkit-gradient(linear,left top, left bottom,from(#fff),to(#fff)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#0464a7),to(#0464a7)) border-box;
  background:
  -o-linear-gradient(#fff,#fff) padding-box,
  -o-linear-gradient(#0464a7,#0464a7) border-box;
  background:
  linear-gradient(#fff,#fff) padding-box,
  linear-gradient(#0464a7,#0464a7) border-box;
}

.btn-blue:focus-visible {
  box-shadow: 0 0 0 3px rgba(4,100,167,.28);
  -webkit-box-shadow: 0 0 0 3px rgba(4,100,167,.28);
}

.btn-blue-outline {
  color: #0464a7;
  background:
  -webkit-gradient(linear,left top, left bottom,from(#fff),to(#fff)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#0464a7),to(#0464a7)) border-box;
  background:
  -o-linear-gradient(#fff,#fff) padding-box,
  -o-linear-gradient(#0464a7,#0464a7) border-box;
  background:
  linear-gradient(#fff,#fff) padding-box,
  linear-gradient(#0464a7,#0464a7) border-box;
}

.btn-blue-outline:hover {
  color: #fff;
  background:
  -webkit-gradient(linear,left top, left bottom,from(#0464a7),to(#0464a7)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#0464a7),to(#0464a7)) border-box;
  background:
  -o-linear-gradient(#0464a7,#0464a7) padding-box,
  -o-linear-gradient(#0464a7,#0464a7) border-box;
  background:
  linear-gradient(#0464a7,#0464a7) padding-box,
  linear-gradient(#0464a7,#0464a7) border-box;
}

.btn-blue-outline:focus-visible {
  box-shadow: 0 0 0 3px rgba(4,100,167,.28);
  -webkit-box-shadow: 0 0 0 3px rgba(4,100,167,.28);
}

.btn-red {
  color: #fff;
  background:
  -webkit-gradient(linear,left top, left bottom,from(#cf003d),to(#cf003d)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#cf003d),to(#cf003d)) border-box;
  background:
  -o-linear-gradient(#cf003d,#cf003d) padding-box,
  -o-linear-gradient(#cf003d,#cf003d) border-box;
  background:
  linear-gradient(#cf003d,#cf003d) padding-box,
  linear-gradient(#cf003d,#cf003d) border-box;
}

.btn-red:hover {
  color: #cf003d;
  background:
  -webkit-gradient(linear,left top, left bottom,from(#fff),to(#fff)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#cf003d),to(#cf003d)) border-box;
  background:
  -o-linear-gradient(#fff,#fff) padding-box,
  -o-linear-gradient(#cf003d,#cf003d) border-box;
  background:
  linear-gradient(#fff,#fff) padding-box,
  linear-gradient(#cf003d,#cf003d) border-box;
}

.btn-red:focus-visible {
  box-shadow: 0 0 0 3px rgba(207,0,61,.28);
  -webkit-box-shadow: 0 0 0 3px rgba(207,0,61,.28);
}

.btn-red-outline {
  color: #cf003d;
  background:
  -webkit-gradient(linear,left top, left bottom,from(#fff),to(#fff)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#cf003d),to(#cf003d)) border-box;
  background:
  -o-linear-gradient(#fff,#fff) padding-box,
  -o-linear-gradient(#cf003d,#cf003d) border-box;
  background:
  linear-gradient(#fff,#fff) padding-box,
  linear-gradient(#cf003d,#cf003d) border-box;
}

.btn-red-outline:hover {
  color: #fff;
  background:
  -webkit-gradient(linear,left top, left bottom,from(#cf003d),to(#cf003d)) padding-box,
  -webkit-gradient(linear,left top, left bottom,from(#cf003d),to(#cf003d)) border-box;
  background:
  -o-linear-gradient(#cf003d,#cf003d) padding-box,
  -o-linear-gradient(#cf003d,#cf003d) border-box;
  background:
  linear-gradient(#cf003d,#cf003d) padding-box,
  linear-gradient(#cf003d,#cf003d) border-box;
}

.btn-red-outline:focus-visible {
  box-shadow: 0 0 0 3px rgba(207,0,61,.28);
  -webkit-box-shadow: 0 0 0 3px rgba(207,0,61,.28);
}



/* Modal Styles */
.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-top: 60px;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  margin: 5% auto;
  padding: 2px;
  width: 80%;
  max-width: 307px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  border: 1px solid #888;
  border-radius: 10px;
}

.modal-close {
  float: right;
  color: #aaa;
  font-size: 28px;
  font-weight: 700;
}

.modal-close:hover,
.modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.trade-table-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 790px;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.withdraw-table-wrapper {
  margin-left: 20px;
  margin-right: auto;
  width: 540px;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.table-title {
  margin-bottom: 0.2rem;
  margin-top: 0.3rem;
  color: #234664;
  text-align: center;
  font-size: 24px;
}

table {
  min-width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 0.5rem;
  background-color: #f1f7f8;
}

thead {
  background-color: #f1f7f8;
}

th {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  text-align: left;
  font-weight: 400;
  color: #124c60;
  letter-spacing: 0.05em;
}

/*Member area tables*/  

.dashboard-card th {
  padding: 0.5rem 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 700;
  color: #2196f3;
  text-align: left;
  background: white;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.dashboard-card td {
  padding: 0.5rem 0.5rem;
  white-space: normal;
  overflow: hidden;
  text-align: left;
  background: white;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.dashboard-card table {
  padding: 10px;
  box-shadow: 0 0px 5px #3840414d;
  background: white;
  border-radius: 0.2rem;
  border-collapse: collapse;
  -webkit-box-shadow: 0 0px 5px #3840414d;
}

.dashboard-card table input[type="text"], .dashboard-card table input[type="password"] {
  width: 100%;
}

.dashboard-card td.text-center, .dashboard-card th.text-center {
  text-align:center;
}


/* Corrected: Added style for font-bold-custom-th-normal if it's meant to be different from default th */
.font-bold-custom-th-normal {
  font-weight: 600;
  /* This was missing */;
}

tbody {
  background-color: #f1f7f8;
}

tbody tr:not(:first-child) {
  border-top: 1px solid #a0bfd5;
}

td {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  white-space: nowrap;
  color: #267a97;
}

.font-semibold {
  font-weight: 600;
}

.light-small-font {
  font-weight: 400;
  color: #4b5563;
}

.buy-sell-badge {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  padding: 1px;
  font-weight: 600;
  border-radius: 0px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.bg-green-100 {
  background-color: #0bba82;
}

.bg-Red {
  background-color: #ff003d;
}

.text-green-800 {
  color: #ffffff;
}

.bg-red-100 {
  background-color: #ff003d;
}

.text-red-800 {
  color: #ffffff;
}

.text-red-400 {
  color: #991b1b;
}

/* shared style for ALL "home" tables */
.home-table {
  position: relative;
  border-collapse: separate;
  border-spacing: 0 6px;
  background: transparent;
  table-layout: fixed;
}

.home-table th,
.home-table td {
  padding: 2px 0px;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  border: 1px solid #d1d5db;
  border-right: 0;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.home-table td:last-child {
  border-right: 1px solid #d1d5db;
}

.home-table td.light-small-font {
  font-weight: 400;
}

.home-table th {
  font-weight: 600;
  color: #fff;
  background: #2196f3;
  border: 1px solid #2196f3;
}

.home-table td.bold {
  font-weight: 700;
}

.home-table td:first-child,
.home-table th:first-child {
  border-left: 2px solid #2196f3;
}

.home-table .stat-label {
  position: absolute;
  right: 0;
  bottom: -16px;
}

.home-table td {
  color: #267a97;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.18);
}

.trade-table td.countup {
  font-size: 17px;
  font-weight: 500;
}

.withdraw-table td.countup {
  font-weight: 500;
}

.home-table img {
  width: 25px;
  height: 25px;
  margin-bottom: 2px;
  vertical-align: middle;
}

.home-table td.buy-sell-badge {
  color: #fff;
}

/* column widths for AI trade table only */
.trade-table { width: 790px; }
.trade-table th:nth-child(1) { width: 100px; }
.trade-table th:nth-child(2) { width: 60px; }
.trade-table th:nth-child(3) { width: 205px; }
.trade-table th:nth-child(4) { width: 90px; }
.trade-table th:nth-child(5) { width: 90px; }
.trade-table th:nth-child(6) { width: 110px; }
.trade-table th:nth-child(7) { width: 45px; }
.trade-table th:nth-child(8) { width: 90px; }

/* column widths for withdrawal table only */
.withdraw-table { width: 540px; }
.withdraw-table th:nth-child(1) { width: 120px; }
.withdraw-table th:nth-child(2) { width: 55px; }
.withdraw-table th:nth-child(3) { width: 240px; }
.withdraw-table th:nth-child(4) { width: 125px; }


/* ==========================================================
   6) Page-specific sections 
   ========================================================== */

/*Homepage*/

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom:20px;
  background: #eff3f7 url(images/banner-bg.png) center bottom no-repeat;
  background-size: auto 630px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.hero-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom:20px;
  background: #eff3f7 url(images/banner-bg2.png) center top no-repeat;
  background-size: cover;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.main-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: #eff3f7 url(images/plan-bg.png) center no-repeat;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(56, 64, 65, 0.29);
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-shadow: 0 0 15px rgba(56, 64, 65, 0.29);
}

.hero-top-content {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  /* New wrapper for hero-left and hero-content-right */
display: -webkit-box;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.hero-left {
  width: 555px;
  flex-shrink: 0;
  padding: 10px;
  padding-bottom: 30px;
  background: white;
  border-radius: 6px 0px 0px 6px;
  -ms-flex-negative: 0;
}

.hero-content-right {
  flex-grow: 1;
  width: calc(100% - 470px - 10px);
  padding-left: 0px;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}

.hero-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 5px;
  -ms-flex-wrap: wrap;
}

.hero-features ul {
  padding: 0;
  margin: 0 2px 5px 2px;
  list-style: none;
}

.hero-features ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 3px 0px;
  font-weight: 400;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.hero-features ul li img {
  margin-right: 5px;
  width: 25px;
  height: auto;
}

.hero-title {
  margin: 0px auto;
  margin-left: 12px;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 88px;
  color: #37758b;
  font-weight: 600;
  letter-spacing: -1px;
  text-shadow: 1px 1px 5px #00000059;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.hero-title .profit-red {
  display: block;
  margin: 0px 8px;
  color: #ff003d;
  font-weight: 700;
  font-size: 100px;
}

.hero-info-banner {
  padding: 5px 15px;
  width: auto;
  margin-bottom: 0px;
  margin-top: -31px;
  margin-left: 20px;
  color: #fff;
  background-color: #2196f3;
  border-radius: 5px 5px 0px 0px;
}

.hero-info-banner p {
  margin: 0;
  color: #fff;
}

.hero-woman-img {
  display: none;
}

/* Daily Profit Box Styles */
.vip-plan {
  text-align: left;
  /* Align content to the left */
    margin-top: 0px;
  /* No extra top margin as it's already spaced by banner's margin-bottom */;
}

.daily-profit-box {
  padding: 20px;
  width: 687px;
  margin-left: 0;
  margin-right: auto;
  margin-top: 20px;
  background-color: #ffffff70;
  border-radius: 8px;
  box-shadow: 0 0px 15px #3840414d;
  -webkit-box-shadow: 0 0px 15px #3840414d;
}

.daily-profit-header {
  padding: 15px 15px;
  margin: -20px -20px 5px -20px;
  padding-bottom: 0px;
  color: #37758b;
  font-size: 42px;
  text-align: center;
  font-weight:600;
  border-radius: 8px 8px 0 0;
}

.daily-profit-header b {
  font-weight:700;
  color:#ef003d;
}

.daily-profit-header span {
  font-weight:700;
}

.daily-profit-details {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 0px;
  margin-bottom: 10px;
  text-align: center;
  -ms-grid-columns: 1fr 0px 1fr 0px 1fr 0px 1fr;
}

.daily-profit-details .detail-item {
  flex-direction: row;
  align-items: center;
  color: #6b858e;
  text-align: center;
  border-right:1px solid #919d9f;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.daily-profit-details .detail-item:last-child {
  width: 170px;
  border-right:0px;
}

.daily-profit-details .detail-item:nth-child(1) {
  width: 160px;
}

.daily-profit-details .detail-item:nth-child(2) {
  width: 180px;
}

.daily-profit-details .detail-item:nth-child(3) {
  width: 130px;
}

.daily-profit-details .detail-item strong {
  color: #2196f3;
}

.daily-profit-calculation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px 10px;
  padding: 8px 10px;
  margin-bottom: 10px;
  justify-content: center;
  background: #2196f3;
  border-radius: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.about-us-content .daily-profit-calculation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px 6px;
  padding: 8px 6px;
  margin-bottom: 10px;
  justify-content: center;
  background: #2196f3;
  border-radius: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.daily-profit-calculation .calc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #ffffff;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.daily-profit-calculation .calc-row img {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

.daily-profit-calculation .calc-row strong {
  margin-left: 5px;
  color: #ffffff;
  font-weight: 400;
}

.investment-form {
  position:relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.investment-form .button {
  position: absolute;
  right: 0px;
  top: -176px;
}

.investment-form .button .btn {
  border-radius: 10px 10px 0px 0px;
}

.investment-form label {
  display: block;
  margin-bottom: 0px;
  margin-top: 8px;
  color: #124c60;
}

.investment-form .input-group {
  margin-bottom: 10px;
  overflow: hidden;
  width: 230px;
}

.summary-item span.usd, .dashboard-card span.usd {
  position: absolute;
  right: 3px;
  top: 3px;
  padding: 0.48rem 0.48rem;
  margin-bottom: 0px;
  width: 56px;
  height: 43px;
  color: white;
  text-align: center;
  background: #2196f3;
  border-radius: 0px 6px 6px 0px;
  border: 1px solid #2196f3;
}

.dashboard-card .amount-input input[type="text"] {
  border-left:0px;
  border-radius:0px 4px 4px 0px;
}

.item-bigger {
  width: 190px;
}

.bigger-first {
  width: 220px;
  background: #396493;
}

.amount-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 194px;
}

.summary-item label, .summary-item span {
  margin-bottom:5px;
}

.date-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
  flex-grow:1;
  color: #6499ab;
  border-top: 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-flex:1;
  -ms-flex-positive:1;
}

.date-info span {
  color: #406f7f;
}

.date-info img {
  margin-right: 2px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.about-us-content .amount-input {
  width: 177px;
}

.profit-summary {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 10px;
  align-items: stretch;
  color: #fff;
  background-color: #124c60;
  border-radius: 8px;
  -ms-grid-columns: (1fr)[3];
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
}

.profit-summary .summary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding: 10px;
  text-align: left;
  line-height: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}

.about-us-content .profit-summary .summary-item {
  width: 200px;
}

.calc-title {
  font-size: 40px;
  font-weight: 600;
}

.calc-title span {
  font-weight:700;
  color: #cf003d;
}

.profit-summary .summary-item.blue {
  background: #3872b8;
  border-radius: 0px 8px 8px 0px;
}

.profit-summary .summary-item.blue-dark {
  width: 145px;
  background: #286597;
}

.hero .profit-summary .summary-item:nth-child(2), .hero .profit-summary .summary-item:nth-child(3) {
  padding-top: 10px;
}

.profit-summary .summary-item.blue-darker {
  width: 140px;
}

.profit-summary .summary-item span {
  color: #ffffff;
}

.profit-summary .summary-item span.usd {
  left: 3px;
  height: 37px;
  padding-top: 10px;
  border-radius: 7px 0px 0px 7px;
  background: #124c60;
  border: 0px;
}

.profit-summary .bigger-first span.usd {
  background:#396493;
}

.profit-summary .blue span.usd {
  background: #3872b8;
}

.profit-summary .summary-item input[type="text"] {
  padding-left:62px;
  font-weight: 700;
}

.profit-summary .summary-item strong {
  padding-top: 10px;
  color: #fff;
}

.profit-summary .calculate-profit-large {
  padding: 10px 25px;
  color: #fff;
  font-weight: 400;
  background-color:transparent;
  border: 2px solid white;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}

.profit-summary .calculate-profit-large:hover {
  background-color: #cc0033;
}

.disclaimer p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0px;
  margin-top: 5px;
  color: #6b858e;
  font-weight:400;
  -webkit-box-align: start;
  -ms-flex-align: start;
}

.disclaimer p img {
  margin-right: 6px;
  margin-top: 0px;
  width: 24px;
  height: 24px;
}

/* Trust Badges Section */
.trust-badges-section {
  padding: 15px 0;
  text-align: center;
  background-color: #f1f7f8;
  border-top: 1px solid #b7d7e3;
  border-bottom: 1px solid #b7d7e3;
}

.trust-badges-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  /* Center the logos horizontally */
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  /* Allow wrapping if many logos */
    gap: 8px;
  /* Space between logos */;
}

.trust-badge {
  width: auto;
  height: 66px;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

.trust-badge:hover {
  opacity: 0.8;
  /* Full color on hover */;
}

.trust-badges-bottom {
  z-index: 10000;
  position: relative;
  margin-bottom: -61px;
  text-align: center;
}

.trust-badges-bottom span {
  padding: 10px 15px;
  display: inline-block;
  margin-bottom:20px;
  border: 1px solid #b7d7e3;
  border-top: 0px;
  background-color: #f1f7f8;
  border-radius: 0px 0px 4px 4px;
}

/* About Us Section */
.about-us-section {
  padding: 60px 0;
  background: #ffffff url(images/about-bg.jpg) center top no-repeat;
  background-size: cover;
}

.about-us-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  /* Space before stats */;
}

.about-us-content {
  flex: 1;
  padding-right: 10px;
  width: 610px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}

.about-us-title {
  margin-bottom: 5px;
  margin-top: 0px;
  font-size: 36px;
}

.about-us-title span {
  color:#ff003d;
}

.about-us-text {
  margin-top: 5px;
  margin-bottom: 10px;
}

.about-us-video {
  padding-top: 60px;
}

.about-us-video .video-placeholder {
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.5);
}

.about-us-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-evenly;
  padding: 15px 0px 20px;
  background: #fff url(images/statistics-bg.png) center;
  border-radius: 8px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
  border-top: 4px solid #fe0843;
  -webkit-box-pack: justify;
  -ms-flex-pack: distribute;
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
}

.about-us-stats .stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.about-us-stats .stat-item strong {
  margin-bottom: 5px;
  font-size: 26px;
  color: #2196f3;
  font-weight: 600;
}

.stat-label {
  grid-column: 1 / -1;
  margin-top: -10px;
  margin-bottom: 0px;
  margin-right: 20px;
  text-align: right;
  font-weight: 400;
}

.stat-label-withdraw {
    z-index: 100000;
    position: relative;
    grid-column: 1 / -1;
    margin-top: -10px;
    margin-bottom: 0px;
    margin-right: 0px;
    text-align: right;
    font-weight: 400;
}

.stat-label  span {
  padding: 5px 8px;
  border: 1px solid #b7d7e3;
  background-color: #f1f7f8;
  border-radius:4px;
}

/*Social Icons*/

.social-networks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding-left: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}

.social-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
}

.social-row-account {
	display:block;
}

.social-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 20px;
  width: 420px;
  color: #0464a7;
  border: 1px solid #0464a7;
  border-radius: 3px;
  transition: all 0.5s;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.social-item:hover {
  color:white;
  background:#0464a7;
}

.social-row-account .social-item {
    border-radius: 0px 36px 36px 0px;
    width: 275px;
}

.social-item font {
  font-size: 17px;
}

.social-item:last-child {
  margin-bottom: 0;
}

.facebook {
  color: white;
  background: #3b5998;
  border-radius: 0px;
  border: 0px;
}

.facebook:hover {
  background:#2a498b;
}

.social-img {
  left: -25px;
  position: absolute;
  display: inline-block;
  padding: 5px;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  border: 1px solid white;
  border-radius: 100%;
  background: #3b5998;
}

.thumbnail-tv {
  background: #00aced;
}

.thumbnail-inst {
  background: #e83910;
}

.thumbnail-yt {
  background: #ff0000;
}

.social-img img {
  width:24px;
  height:24px;
  text-align:center;
  line-height:48px;
}

.twitter {
  color: white;
  background: #00aced;
  border-radius: 0px;
  border: 0px;
}

.twitter:hover {
  background:#05a0da;
}

.instagram {
  color: white;
  background: #e83910;
  border-radius: 0px;
  border: 0px;
}

.instagram:hover {
  background:#ec5431;
}

.youtube {
  color: white;
  background: #ff0000;
  border-radius: 0px 36px 36px 0px;
  border: 0px;
}

.youtube:hover {
  background:#ff0000;
}

.ai-trading {
  margin-top:10px;
}

.ai-trading .about-us-content {
  flex: 1;
  padding-right: 00px;
  padding-left: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}

.investment-plan {
  padding-top: 17px;
  padding-bottom: 30px;
  border-top: 10px solid #2196f3;
  background: #ffffff url(images/about-bg.png) center top no-repeat;
  background-size: cover;
}

.copropate-text {
  position: relative;
  padding: 10px 10px 20px 15px;
  margin-left: 20px;
  margin-right: -10px;
  color: white;
  background: #124c60;
  border-radius: 4px 0px 0px 4px;
}

.copropate-text .stat-label {
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.copropate-text .stat-label span {
  padding: 3px 8px;
  color: #124c60;
  border: 1px solid #b7d7e3;
  background-color: #f1f7f8;
  border-radius: 4px 4px 0px 0px;
  border-bottom: 0px;
}

.copropate-text p {
  margin-top:0px;
  margin-bottom:0px;
  text-align:left;
}

.corporation-seals .stat-item {
  padding:0px 10px;
}

.corporation-seals .stat-item img {
  margin-top: 10px;
  height: 75px;
  width: auto;
}

.corporation-seals {
  position:relative;
  margin-bottom: 20px;
  margin-top: -80px;
  padding: 10px 0px;
  border-top: 0px;
  background: white;
}

.corporation-seals .stat-label {
  position: absolute;
  bottom: 2px;
  left: 35px;
  margin-top: -10px;
  margin-bottom: 0px;
  margin-right: 20px;
  text-align: right;
  font-weight: 400;
}

.about-us-container .date-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  width: 440px;
  color: #6499ab;
  border-top: 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.about-us-container .date-info div.contract-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-us-container .investment-form label {
  margin-top: 0px;
  text-align: left;
}

.blue-darker {
  background:#126cb3;
}

.calculator-summary {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-columns: (1fr)[4];
}

.calculator-summary .summary-item strong {
  margin-top: 5px;
  padding-top: 0px;
  color: #fff;
}

/* Stats Bar Section */
.stats-bar-section {
  background-color: #ffffff;
  /* Light background to match the overall page */
    padding: 10px 0 20px;
  /* Adjust padding as needed */
  text-align: center;
}

.stats-bar-inner {
  position: relative;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top:-30px;
  background-color: #126cb3;
  /* Blue background for the bar */
    border-top: 4px solid #fe0843;
  /* Red top border */
  border-radius: 6px;
  -ms-flex-pack: distribute;
  /* Distribute items evenly */
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.stat-item-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  padding: 10px 10px;
  width: 19%;
  justify-content: space-between;
  color: #fff;
  text-align: left;
  border: 1px solid #ffffff8f;
  border-radius: 4px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.stat-item-bar img {
  width: 40px;
  margin-bottom: 0px;
  filter: brightness(0) invert(1);
  /* Adjust icon size */
  height: 40px;
  -webkit-filter: brightness(0) invert(1);
  /* Makes the placeholder icons white */;
}

.stat-item-bar strong {
  margin-bottom: 2px;
  display: block;
}

.stat-item-bar span {
  margin-right: 10px;
  font-weight: 400;
  line-height: 1.2;
}

/* Video Testimonials Section */
.video-testimonials-section {
  text-align: center;
  background-color: #ffffff;
  /* Light background from image */
  padding: 0px 0 30px;
}

.video-testimonials-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.video-testimonials-title {
  margin: 0;
  font-size: 30px;
  color: #124c60;
}

.video-testimonials-title span {
  color:#ff003d;
}

.video-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  /* 4 columns */
    gap: 20px;
  /* Space between videos */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  /* Center the grid */;
}

.video-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
}

/* Legal Share Certificate Section */
.legal-certificate-section {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background: #2196f3 url(images/bg-certificate.png) center no-repeat;
  background-size: cover;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.legal-certificate-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  /* Space between image and text */;
}

.certificate-image {
  flex-shrink: 0;
  width: 90px;
  height: auto;
  border: 5px solid white;
  border-radius: 4px;
  -ms-flex-negative: 0;
  vertical-align: middle;
}

.legal-certificate-content p {
  margin: 0;
  text-align: left;
}

/* Success Stories Section */
.success-stories-section {
  position: relative;
  overflow: hidden;
  background-color: #eff3f7;
  /* Light blue background from image */
  padding: 15px 0;
  /* Hide overflowing cards */;
}

.success-stories-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.success-stories-title {
  margin: 0;
  font-size: 30px;
  color: #124c60;
}

.success-stories-title span {
  color: #ff003d;
  /* Red color for "Success Stories" */;
}

.slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  /* Corrected typo here */
  gap: 13px;
}

.story-card {
  flex: 0 0 calc(33.3% - 8.75px);
  max-width: calc(33.3% - 8.75px);
  padding: 20px;
  margin-bottom: 5px;
  text-align: left;
  background-color: #fff;
  box-shadow: 0 2px 6px #00000024, 0 1px 2px #00000014, 0 0 1px #0000000f, 0 0 #0000000a;
  border-radius: 12px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33.3% - 8.75px);
  -webkit-box-shadow: 0 2px 6px #00000024, 0 1px 2px #00000014, 0 0 1px #0000000f, 0 0 #0000000a;
}

.intro-text, .summary-text {
  padding: 0px 25px;
  margin-bottom: 1.5rem;
}

.intro-text p, .summary-text p {
  margin: 0;
}

.footer-text {
  margin-top: 40px;
  text-align: center;
  color: #7f8c8d;
}

/* Reviews */
.reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 920px;
  -ms-flex-wrap: wrap;
}

.review-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.avatar {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.review-name {
  font-weight: 700;
  text-align: left;
}

.stars {
  color: #00b67a;
  float: left;
  text-align: left;
}

.review-content {
  line-height: 1.55;
  color: #333;
  text-align: left;
  margin: 0;
  padding: 0;
  white-space: pre-line;
  word-break: break-word;
}

.see-more {
  color: #007bff;
  cursor: pointer;
}

/* Slider */
.start {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 10px 6px;
}

.card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.flag-icon {
  width: 55px;
  height: 41px;
  margin-right: 10px;
}

.investor-name {
  margin-right: auto;
  font-weight: 600;
  color: #124c60;
  /* Pushes time-ago to the right */;
}

.time-ago {
  display: block;
  color: #75a1b0;
  font-weight: 400;
}

.card-rating {
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.card-rating b {
  color: #0078cf;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.star {
  margin-right: 2px;
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url(images/star-full.png) no-repeat;
  background-size: 100%;
}

.star.half-filled {
  background:url(images/star-empty.png) no-repeat;
  background-size: 100%;
}

.user-id {
  margin-left: auto;
  color:#205973;
  font-weight: 400;
  /* Pushes user ID to the right */;
}

.user-id b {
  color: #2196f3;
  letter-spacing: normal;
}

.testimonial-title {
  font-weight: 700;
  text-align: left;
  color: #2196f3;
}

.testimonial-text {
  margin-bottom: 0px;
  color: #2d4852;
}

.testimonial-footer {
    border-top: 1px dashed #818c95;
    margin-top: 5px;
    padding-top: 5px;
    display: block;
    font-weight: 400;
    text-align: right;
}

.testimonial-footer p span { 
	font-weight: 700;
    color: #2196f3;
    font-size: 20px;
}

.testimonial-text .read-more {
  color: #2196f3;
  text-decoration: none;
}

.testimonial-text .read-more:hover {
  text-decoration: underline;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  border: none;
  background:transparent;
  transform: translateY(-50%);
  transition: background-color 0.3s ease, opacity 0.3s ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  cursor: pointer;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  -o-transition: background-color 0.3s ease, opacity 0.3s ease;
}

.slider-arrow:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.slider-arrow  img {
  width: 60px;
  height:32px;
}

.left-arrow {
  left: 15%;
}

.right-arrow {
  right: 15%;
}

/* Company News Section */
.company-news-section {
  padding: 10px 5px 15px;
  background: #edf4f6 url(images/news-bg.png) center top no-repeat;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  background-size: cover;
}

.company-news-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.company-news-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #124c60;
  /* Red color for title */
  margin: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.company-news-title b {
  color: #ff003d;
}

.company-news-title .news-icon {
  width: 32px;
  height: 31px;
  margin-right: 10px;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.news-text {
  flex-grow: 1;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}

.news-text strong {
  color: #124c60;
  /* Darker blue for news title */
  font-weight: 600;
}

.news-text .read-more {
  color: #124c60;
  text-decoration: underline;
}

.news-text .read-more:hover {
  text-decoration: underline;
}

.news-date {
  padding: 5px 10px;
  white-space: nowrap;
  margin-top:10px;
  color: #fff;
  background-color: #2196f3;
  border-radius: 4px;
  /* Prevent date from wrapping */
  margin-left: 20px;
}

/* Token and Referral Section */
.token-referral-section {
  background-color: #eff3f7;
  /* Light blue background for the section */
  padding: 20px 0;
}

.token-referral-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /* White background for the inner content block */
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  /* Subtle shadow */
  padding: 20px;
}

.referral-program-block {
  flex: 0 0 48%;
  padding-right: 10px;
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
}

.token-launch-block {
  position: relative;
  flex: 1;
  padding-left: 10px;
  background: url('images/token-pattern.png') center center no-repeat;
  background-size: 265px auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}

.section-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  text-align: left;
}

.referral-title-main {
  color: #124c60;
  /* Dark blue for referral title */;
}

.referral-title-main .red-text {
  color: #ff003d;
  /* Red color for "Multi-Level" */;
}

.token-launch-title-main {
  color: #124c60;
  text-align: left;
  font-size: 32px;
}

.token-launch-title-main span {
  color: #ff003d;
  /* Red for "Winvest Token" */;
}

.referral-diagram {
  position: relative;
  margin-bottom: 10px;
  padding: 0px 10px;
  padding-top: 10px;
  margin-top: 20px;
  background-color: #ffffff;
  border: 1px solid #2196f3;
  border-radius: 6px;
}

.referral-diagram img {
  height: 332px;
  display: block;
  margin: 0 auto;
  width: 530px;
}

.referral-diagram h3.title1 {
  position: absolute;
  top: -22px;
  left: 20px;
}

.referral-diagram h3.title2 {
  position: absolute;
  top: -22px;
  right: 20px;
}

.program-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  gap: 10px;
  -ms-flex-pack: distribute;
}

.program-details-wrapper {

}

.program-detail-card {
  padding: 10px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-align: left;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #2196f3;
  border-radius: 6px;
}

.referral-illustration h3 {
  margin-top: 0;
  margin-bottom: -15px;
  display: inline-block;
  padding: 10px 10px 10px;
  padding-top: 5px;
  color: #124c60;
  font-weight: 400;
  background: white;
}

.referral-illustration h3 b {
  color:#ff003d;
  font-weight: 400;
}

.program-detail-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.program-detail-card ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.program-detail-card ul li:last-child {
  margin-bottom: 0;
}

.program-detail-card ul li .user-icon {
  margin-right: 8px;
}

.user-icon.blue-user {
  color: #2196f3;
  /* Blue color for user icon */;
}

.user-icon.red-user {
  color: #ff003d;
  /* Red color for user icon */;
}

.program-detail-card ul li .percentage {
  font-weight: 700;
  /* Bold */
    color: #ff003d;
  /* Red for percentages */
    margin-left: auto;
  /* Push percentage to the right */
    font-size: 20px;
  /* Larger font size for percentage */;
}

.token-launch-block p {
  position: relative;
  margin-bottom: 15px;
  /* Ensure text is above pseudo-element */
  z-index: 1;
}

/* Security Features Section */
.security-features-section {
  padding: 10px 0;
  text-align: center;
  background: #124c60 url('images/security-bg-pattern.png') center top repeat;
  background-size: auto;
}

.security-features-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  -ms-flex-pack: distribute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
}

.feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  align-items: start;
  color: #fff;
  font-weight: 400;
  text-align: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
}

.feature-item img {
  margin: 4px 6px 0px 4px;
  height: 34px;
  width: 34px;
}

.feature-item span b {
  display:block;
  font-size: 28px;
}

/* How It Works Section */
.how-it-works-section {
  padding: 15px 0;
  background-color: #ffffff;
}

.how-it-works-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.how-it-works-title {
  margin: 0;
  font-size: 36px;
  color: #124c60;
}

.how-it-works-title b {
  color:#ff003d;
}

.how-it-works-title .blue-text {
  color: #083646;
  font-size: 22px;
  font-weight: 400;
}

.how-it-works-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.work-card {
  flex: 1;
  padding-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  /* Ensures image corners are rounded with border-radius */;
}

.work-card .card-image-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.work-card img {
  width: 100%;
  height: 351px;
  border-radius: 8px 8px 0 0;
}

.work-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0 15px;
  font-size: 28px;
  color: #124c60;
  font-weight: 600;
}

.work-card p {
  padding: 0 5px;
  /* Add horizontal padding to paragraph */;
}

.card-text {
  position: relative;
  padding: 20px;
  margin-top: -135px;
  margin-left: 22px;
  margin-right: 22px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-container {
  position: relative;
  width: 592px;
  padding-bottom: 56.25%;
  overflow: hidden;
  background-color: #564f4f;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 62%), 0 4px 6px -2px rgb(0 0 0 / 62%);
  -webkit-box-shadow: 0 10px 15px -3px rgb(0 0 0 / 62%), 0 4px 6px -2px rgb(0 0 0 / 62%);
  cursor: pointer;
}

.video-item  .video-container {
  position: relative;
  width: 280px;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 62%), 0 4px 6px -2px rgb(0 0 0 / 62%);
  /* Max width for the video player */
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio (height / width = 9 / 16 = 0.5625) */
  background-color: #000;
  /* Rounded corners */
  overflow: hidden;
  /* Ensures content respects border-radius */
  -webkit-box-shadow: 0 10px 15px -3px rgb(0 0 0 / 62%), 0 4px 6px -2px rgb(0 0 0 / 62%);
  cursor: pointer;
}

.video-container img.thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  -o-object-fit: cover;
  object-fit: cover;
  /* Cover the container without distortion */
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

.video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 60px;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /* Size of the play button */
  height: 60px;
  /* Semi-transparent white background */
            border-radius: 50%;
  /* Circular shape */
  display: -webkit-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  /* Ensure it's above the thumbnail */;
}

.video-container .play-button svg {
    width: 24px;
    height: 24px;
    transform: translateX(2px);
    fill: #000;
    -webkit-transform: translateX(2px);
    -ms-transform: translateX(2px);
    margin-top: 5px;
    margin-right: 5px;
}

.video-container .play-button:hover {
  background-color: rgba(255, 255, 255, 1);
  /* Slightly more opaque on hover */;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  border: none;
  /* Initially hidden */;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.video-container {
  max-width: 90%;
  /* Adjust max-width for smaller screens */;
}

}

/*Informational Pages*/

.info-page {
  padding:1.5rem 0px;
  background:#f6f6f6 url(images/anti-spam-bg.png) center top no-repeat;
}

.investment-page {
  background: #ffffff url(images/investment-bg.png) center top no-repeat;
}

.info-page .hero-title {
  display:block;
  margin: 0px auto;
  margin-left: 5px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 15px;
  font-size: 64px;
  color: #37758b;
  font-weight: 400;
  letter-spacing: -1px;
}

.info-page .hero-title .profit-red {
  display: inline;
  margin: 0px;
  color: #ff003d;
  font-weight: 600;
  font-size: 64px;
}

.info-page h2 {
  margin-bottom: 5px;
  margin-top: 0px;
  font-size: 36px;
}

.info-page h3 {
  margin-bottom: 5px;
  margin-top: 0px;
  font-size: 24px;
  font-weight: 600;
}

.info-page .hero-title img {
  margin-top:10px;
}

.intro-text h1 {
  font-size:24px;
  font-weight:600;
}

.info-inner {
  z-index: 1000;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background: #ffffffb8;
  border-radius: 6px;
  box-shadow: 0 0 15px rgb(56 64 65 / 35%);
  -webkit-box-shadow: 0 0 15px rgb(56 64 65 / 35%);
}

.antispam-icon {
  position: absolute;
  top: -30px;
  right: 0px;
  z-index: 0;
  width: 280px;
  height: 296px;
  background: url(images/antispam.png) center top no-repeat;
  background-size: 90%;
}

.get-started-button {
  position: absolute;
  top: 10px;
  right: 15px;
}

.privacy-icon {
  top:-10px;
  background: url(images/privacy.png) center top no-repeat;
  background-size: 90%;
}

.news-icon {
  top:-10px;
  background: url(images/news-page.png) center top no-repeat;
  background-size: 90%;
}

.terms-icon {
  top:-30px;
  background: url(images/terms.png) center top no-repeat;
  background-size: 90%;
}

.faq-icon {
  top: -10px;
  background: url(images/faq-icon.png) center top no-repeat;
  background-size: 80%;
}

.aff-icon {
  top: 0px;
  background: url(images/aff-icon.png) center top no-repeat;
}

.investment-icon {
  top:-10px;
  background: url(images/investment2.png) center top no-repeat;
  background-size: 90%;
}

.antispam-icon img {
  max-width: 100%;
}

.info-page  ul {
  padding-left: 20px;
  list-style-type: disc;
}

.info-page li {
  margin-bottom: 10px;
}

.info-page p {
  margin-bottom:10px;
}

.card {
  z-index: 1000;
  position: relative;
  padding: 15px 20px 5px 20px;
  background: #ffffffb8;
  border-radius: 6px;
  box-shadow: 0 0 15px rgb(56 64 65 / 35%);
  -webkit-box-shadow: 0 0 15px rgb(56 64 65 / 35%);
}

.card-flex {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
    -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
}

.review-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive cards (keep original breakpoints & intent) */
@media (min-width: 300px) {
  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 600px) {
  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 900px) {
  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*Investment Plan*/

.profits-icon {
  padding-left: 20px;
}

.icon-right {
  padding-right:0px;
  padding-left:20px;
}

.profits-icon img {
  width: 450px;
  height: 354px;
  border-radius: 16px;
}

.investment-page2 {
  overflow: hidden;
  padding: 3rem 0px;
  background: #081928 url(images/invest-bg.png) center top no-repeat;
  background-size: cover;
}

.investment-page2 .profits-text, .investment-page3 .profits-text {
  padding: 20px;
  width: 650px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 0 15px rgb(56 64 65 / 35%);
  -webkit-box-shadow: 0 0 15px rgb(56 64 65 / 35%);
}

.info-page .profits-text h2 {
  font-size:30px;
}

.info-page .profits-text h2 span {
  color: #ff003d;
}

.investment-page3 .profits-text {
  width:100%;
}

/*Referral Program*/

.investment-page3 {
  overflow: hidden;
  padding: 3rem 0px;
  background: #081928 url(images/aff-bg.jpg) center top no-repeat;
  background-size: cover;
}

.aff-scheme img {
  width: 330px;
  margin-right: 20px;
  height: 285px;
  border-radius: 16px;
}

/* Tiers */
.tiers {
  padding: 8px 0px 36px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  -ms-grid-columns: 1fr 18px 1fr 18px 1fr;
}

.global-box {
  padding: 15px;
  margin-bottom: 10px;
  background-color: #e6f7ff;
  border-radius: 10px;
}

.info-page .global-box h3 {
  font-size:20px;
}

.tier {
  position: relative;
  padding: 15px;
  min-height: 160px;
  background: #ffffffb8;
  border-radius: 6px;
  box-shadow: 0 0 15px rgb(56 64 65 / 35%);
  -webkit-box-shadow: 0 0 15px rgb(56 64 65 / 35%);
}

.tier h3 {
  margin: 0 0 6px;
  font-size: 24px;
  color: #124c60;
}

.tier h3 b {
  font-weight:600;
  color: #ff003d;
}

.pct {
  width: 65px;
  height:65px;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 60px;
  background:#2196f3;
  border-radius: 10px;
}

.pct span {
  display: inline-block;
  margin-right: -5px;
  font-size: 24px;
}

.tier-top {
  padding: 10px 10px;
  margin-bottom: 20px;
  justify-content: space-between;
  background-color: #e6f7ff;
  border-radius: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.tier-top p {
  margin-top: 15px;
  text-align: left;
  font-size: 20px;
}

.tier-top p b {
  color: #ff003d;
  font-weight: 600;
}

.legal-card {
  padding: 15px;
  width: 400px;
  min-height: 440px;
  background: #ffffffb8;
  border-radius: 6px;
  box-shadow: 0 0 15px rgb(56 64 65 / 35%);
  -webkit-box-shadow: 0 0 15px rgb(56 64 65 / 35%);
}

.legal-bottom {
  padding: 2rem 0px;
  background: #ffffff url(images/about-bg.png) center top no-repeat;
  background-size: cover;
}

.legal-card h2 {
  margin-bottom:10px;
  font-size:24px;
}

.legal-card .card-header {
  justify-content: space-between;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.start-icon img {
  width: 500px;
  height: 295px;
  border-radius: 16px;
}

.reps-icon img {
  width: 350px;
  height: 340px;
  border-radius: 16px;
}

/*Video Testimonials*/

.testimonials-page .video-item .video-container {
	width:540px;
	border-radius: 2rem;
}

.testimonials-page .video-container .play-button svg {
    width: 32px;
    height: 32px;
    transform: translateX(2px);
    fill: #bb1010;
    -webkit-transform: translateX(2px);
    -ms-transform: translateX(2px);
    margin-top: 10px;
    margin-right: 5px;
}

.testimonials-page .dashboard-grid {
	gap:20px;
}

/*Representatives Program*/

  .info-page .profits-text h2 span.material-symbols-outlined {
  display: inline-block;
  width: 48px;
  height: 48px;
  white-space: nowrap;
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  direction: ltr;
  vertical-align: middle;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.investment-page4 {
  overflow: hidden;
  padding: 3rem 0px;
  background: #081928 url(images/representative2.png) center top no-repeat;
  background-size: cover;
}

.corporate-info {
  overflow: hidden;
  padding: 2rem 0px;
  background: #f9f9f9 url(images/corporate-bg.png) center top no-repeat;
  background-size: cover;
}

/* Bank Grade Security */
 
.security-bg {
  overflow: hidden;
  padding: 3rem 0px;
  background: #06213c url(images/security-bg.png) center top no-repeat;
  background-size: cover;
}

.bg-dark .hero-title {
  padding-top: 0px;
  margin-left: 0px;
  color: white;
}

.bg-dark .intro-text {
  padding: 0px 5px;
  color:white;
}

.bg-dark .card {
  margin-bottom: 15px;
  background: white;
}

.security-info .trust-badge {
	margin-right: 4px;
}

.security-info .logos {
  padding-bottom:5px;
  margin-bottom:10px;
  border-bottom:2px solid #e9eef1;
}

.security-info .logos:last-child {
  margin-left:10px;
}

.security-wide .logos {
  margin-right: 20px;
  padding-right: 10px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
  border-right: 2px solid #e9eef1;
}

.corporation-security {
  margin-top:20px;
}

.security-bg .flex-container {
  gap: 0px 12px;
}

.sub-certificate .certificate-image {
  width: 180px;
}

.sub-certificate {
  background: #2196f3 url(images/bg-certificate.png) left center no-repeat;
  background-size:cover;
}

.corporate-top .stat-item {
  margin: 0px 4px;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
  background: white;
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
}

/*FAQ*/

  /* Outer accordion (sections) */
  .sections {
  display:block;
  margin-top:18px;
}

.big-list  .section {
  margin-bottom:1px;
  overflow:hidden;
  border-radius:6px;
  border:1px solid rgba(3,7,18,0.06);
}

/* header with big number and title on gradient background */
  .big-list .section-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 16px;
  color: #fff;
  background:#051f42 url(images/faq-bg.png) center top no-repeat;
  background-size:cover;
  transition: background .24s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background .24s ease;
  -o-transition: background .24s ease;
}

.big-list .section1, .section.open .section1 {
  background-position: 0 -180px;
}

.big-list .section2, .section.open .section2 {
  background-position: 0 -260px;
}

.big-list .section3, .section.open .section3 {
  background-position: 0 -340px;
}

.big-list .section4, .section.open .section4 {
  background-position: 0 -420px;
}

.big-list .section5, .section.open .section5 {
  background-position: 0 -500px;
}

.big-list .section6, .section.open .section6 {
  background-position: 0 -580px;
}

.big-list .section7, .section.open .section7 {
  background-position: 0 -650px;
}

.big-list .section8, .section.open .section8 {
  background-position: 0 -730px;
}

.big-list .section-header .num {
  width:60px;
  flex:0 0 44px;
  padding:6px;
  font-size:28px;
  font-weight:700;
  text-align:center;
  background:rgba(255,255,255,0.06);
  border-radius:6px;
  -webkit-box-flex:0;
  -ms-flex:0 0 44px;
}

.big-list  .section-header h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.6px;
  font-weight: 600;
}

/* allow some sections to show an image on the right (like the airplane) */
  .big-list  .section-header.bg-image {
  background-repeat:no-repeat;
  background-size:contain;
  background-position:right center;
}

/* inner area holding accordion content (collapsible) */
  /* We'll animate max-height, opacity and padding for smooth opens */
  .big-list  .section-body {
  padding:0 18px;
  padding-top: 20px;
  max-height:0;
  overflow:hidden;
  background:#fff;
  border-top:1px solid rgba(3,7,18,0.06);
  opacity:0;
  transition:max-height .52s cubic-bezier(.2,.8,.2,1),opacity .36s ease,padding .48s cubic-bezier(.2,.8,.2,1);
  -webkit-transition:max-height .52s cubic-bezier(.2,.8,.2,1),opacity .36s ease,padding .48s cubic-bezier(.2,.8,.2,1);
  -o-transition:max-height .52s cubic-bezier(.2,.8,.2,1),opacity .36s ease,padding .48s cubic-bezier(.2,.8,.2,1);
}

/* inner accordion inside each section */
  .qa-list {
  display:block;
}

.qa {
  padding:12px 14px;
  margin-bottom:10px;
  overflow:hidden;
  background:#f1f7fb;
  border-radius:8px;
}

.info-page .qa-list article {
  padding:12px;
}

.qa-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #0464a7;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  cursor: pointer;
}

.qa-header .q {
  font-weight:600;
}

.qa-header .toggle {
  width:36px;
  height:36px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#2563eb;
  border-radius:8px;
  background:transparent;
  border:1px solid rgba(11,23,33,0.06);
  transition:-webkit-transform .28s cubic-bezier(.2,.8,.2,1);
  transition:transform .28s cubic-bezier(.2,.8,.2,1);
  transition:transform .28s cubic-bezier(.2,.8,.2,1), -webkit-transform .28s cubic-bezier(.2,.8,.2,1);
  -webkit-box-align:center;
  -ms-flex-align:center;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  -webkit-transition:-webkit-transform .28s cubic-bezier(.2,.8,.2,1);
  -o-transition:transform .28s cubic-bezier(.2,.8,.2,1);
}

/* QA body: animate max-height and opacity */
  .qa-body {
  max-height:0;
  overflow:hidden;
  padding-top:0;
  opacity:0;
  transition:max-height .48s cubic-bezier(.2,.8,.2,1),opacity .36s ease;
  -webkit-transition:max-height .48s cubic-bezier(.2,.8,.2,1),opacity .36s ease;
  -o-transition:max-height .48s cubic-bezier(.2,.8,.2,1),opacity .36s ease;
}

.qa-body.open {
  padding-top:12px;
  opacity:1;
}

.qa.open {
  background:#f7fbff;
}

.qa.open .toggle {
  color:#fff;
  background:#2563eb;
  border-color:transparent;
  transform:rotate(180deg);
  -webkit-transform:rotate(180deg);
  -ms-transform:rotate(180deg);
}

/* content inside answers */
  .answer {
  line-height:1.5;
}

/* visual tweaks to emulate screenshots */
  .section-header h2 small {
  display:block;
  font-weight:400;
  opacity:0.85;
}

/* responsive layout for two-column top-of-page look */
  @media (max-width:880px) {
.section-header {
  padding:18px;
}

.section-header .num {
  width:48px;
}

}

/* helper - big left number column style (used on big image blocks) */
  .big-list .section-header {
  padding-left:26px;
  padding-right:26px;
}

.big-list .section-header .num {
  width: 44px;
  height: 44px;
  font-size: 20px;
  border-radius: 50%;
  background: #ff003d;
}

/* small footer link */
  .faq-footer {
  margin-top:18px;
  text-align:right;
  color:#6b7280;
}

/*Getting Started Page*/

  .onboarding-section {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  -ms-grid-columns: 1fr;
}

.step-card {
  position: relative;
  padding: 2rem 2.5rem;
  background: #fff;
  border-left: 6px solid #ff003d;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 28px;
  color: #1a237e;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.step-card h3 .material-icons {
  margin-right: 15px;
  font-size: 40px;
  color: #3f51b5;
}

.step-card p {
  margin: 1rem 0;
  line-height: 1.6;
  color: #555;
}

.step-card ul, .step-card ol {
  padding-left: 25px;
  margin: 1rem 0;
  line-height: 1.6;
  color: #555;
}

.step-card li {
  margin-bottom: 0.5rem;
}

.step-card strong {
  color: #0464a7;
  font-weight: 600;
}

.section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

/*Support Page*/

/* ===== Panels / Cards ===== */
  .support .grid-2 {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 15px;
  -ms-grid-columns: 1.2fr 15px 1fr;
}

.support .grid-3 {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
}

.support .support-card {
  z-index: 10000;
  position: relative;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0px 15px #3840414d;
  -webkit-box-shadow: 0 0px 15px #3840414d;
}

.support .support-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.support .support-card h3 {
  margin: 12px 0 8px;
}

.support .muted {
  color: #6b7280;
}

/* ===== Company Info ===== */
  .support .info-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding:10px;
  background: #ecedec url(images/company-bg.png) center top no-repeat;
  border-radius: 10px;
  -ms-grid-columns: 1fr 12px 1fr;
}

.support .info-item {
  padding: 10px 15px;
  border: 0px;
  border-radius: 8px;
  background: #ffffffcc;
  box-shadow: 0 2px 6px #00000024, 0 1px 2px #00000014, 0 0 1px #0000000f, 0 0 #0000000a;
  -webkit-box-shadow: 0 2px 6px #00000024, 0 1px 2px #00000014, 0 0 1px #0000000f, 0 0 #0000000a;
}

.support .info-label {
  display: block;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support .info-value {
  margin-top: 2px;
}

.support .clickable {
  cursor: pointer;
}

/* ===== Callouts ===== */
  .support .callout {
  padding: 12px 12px 12px 14px;
  border-left: 4px solid #2563eb;
  background: #eef2ff;
  border-radius: 8px;
}

/* ===== Accordion ===== */
  .support .accordion {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
}

.support .acc-item + .acc-item {
  border-top: 1px solid #e5e7eb;
}

.support .acc-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-weight: 600;
  background: #f9fafb;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.support .acc-header:hover {
  background: #f3f4f6;
}

.support .acc-icon {
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
}

.support .acc-content {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.35s ease;
  -webkit-transition: max-height 0.35s ease;
  -o-transition: max-height 0.35s ease;
}

.support .acc-content-inner {
  padding: 0 16px 16px;
}

.support .acc-item.open .acc-icon {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}

.support .acc-item.open .acc-content {
  max-height: 800px;
}

/* ===== Layout: Form + Help ===== */
  .support .layout {
  grid-template-columns: 620px 1fr;
  gap: 20px;
  -ms-grid-columns: 620px 20px 1fr;
}

/* ===== Form ===== */
  .support form .row {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  -ms-grid-columns: 1fr 12px 1fr;
}

.support form .row-1 {
  display: block;
}

.support .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.actions button {
  margin-top:-20px;
}

/* ===== Help Panel ===== */
  .support .help-panel {
  position: sticky;
  top: 16px;
}

.support .help-tabs {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
  -ms-grid-columns: 1fr 8px 1fr;
}

.support .help-tab {
  padding: 10px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  cursor: pointer;
}

.support .help-tab.active {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.support .help-box {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
}

.support .help-box h3 {
  margin: 0 0 8px;
}

.support .help-list {
  margin: 0;
  padding-left: 10px;
}

.support .help-list li {
  margin: 6px 0;
  background-size:18px auto;
  list-style: none;
}

/* ===== Footer ===== */
  .support footer {
  margin-top: 36px;
  color: #6b7280;
  text-align: center;
}

/*Login Page*/

.login-bg2 {
    overflow: hidden;
    padding: 3rem 0px;
    background: #dee6e8 url(images/login-bg.png) center no-repeat;
    background-size: 100%;
}

.login-title {
  margin-bottom:2rem;
}

.login-title h1 {
  color: #37758b;
  font-size: 40px;
  font-weight:600;
}

.login-container {
  width: 100%;
  max-width: 600px;
  padding:20px;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.title {
  padding: 1rem;
  margin: -20px -20px 28px;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  background: #ff003d;
}

.login-footer {
  padding: 15px 15px;
  margin-top: 10px;
  text-align: center;
  border-top: 1px solid #37758b42;
}

.create-account-text {
  margin-top: 10px;
}

/* Signup Page */
 
 
.signup-bg2 {
  padding: 3rem 0px 5rem;
  background: #20303d url(images/signup-bg.png) center bottom no-repeat;
  background-size:cover;
}

@media {
  .signup-bg2 {
    background-size: 2400px auto;
  }
}

.report {
	background: #20303d url(images/signup-bg.png) center no-repeat;
	    background-size: cover;
}

.acc-type {
  justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
}

.acc-type  .radio-container {
  margin-left:5px;
  padding-left:25px;
  margin-right:10px;
}

.acc-type .checkmark {
  top:3px;
}

.signup-bg2 .login-title {
  width:780px;
  color:white;
}

.signup-bg2 .login-title h1 {
  color:white;
}

.login-bg3, .calculator-bg {
  overflow: hidden;
  padding: 3rem 0px;
  background: #bcc5cc url(images/calculator-bg.png) center center no-repeat;
  background-size: 100%;
}

.signup-bg2-padding-big {
  padding: 7rem 0px 8rem;
}

.signup-bg2 .card-header, .faq-content .card-header {
  font-size:24px;
}

.signup-bg2 p {
  margin-bottom:15px;
}

.signup-bg2 .login-container {
  max-width:780px;
}

.become-bg .login-container {
    max-width: 800px;
}

.signup-bg2 .form-container {
  padding: 0.5rem;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 0px;
  -webkit-box-sizing: border-box;
}

.signup-bg2  h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: #1a237e;
  font-size: 28px;
}

/*Loading Page*/

 .loading-message {
  padding-top:3rem;
  text-align:center;
}

.loading-message h2 {
  margin-bottom:10px;
  font-size:24px;
  font-weight:600;
}

.loading-message h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.loader-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.text-red {
  color:#ff6a7f;
}

.loader-square {
  width: 20px;
  height: 20px;
  background-color: #ff6a7f;
  opacity: 0.3;
  animation: loading-wave 1.2s infinite ease-in-out;
  /* Start with low opacity */
            border-radius: 2px;
  /* Slight rounding for the corners */
    -webkit-animation: loading-wave 1.2s infinite ease-in-out;
  /* Apply the animation */;
}

@-webkit-keyframes loading-wave {
0%, 100% {
  opacity: 0.3;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}

50% {
  opacity: 1;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

}

@keyframes loading-wave {
0%, 100% {
  opacity: 0.3;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}

50% {
  opacity: 1;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

}

.loader-square:nth-child(1) {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

.loader-square:nth-child(2) {
  animation-delay: 0.15s;
  -webkit-animation-delay: 0.15s;
}

.loader-square:nth-child(3) {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

.loader-square:nth-child(4) {
  animation-delay: 0.45s;
  -webkit-animation-delay: 0.45s;
}

.loader-square:nth-child(5) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

.loader-square:nth-child(6) {
  animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
}

.loader-square:nth-child(7) {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}

/*Dashboard*/

  .account-background {
  padding: 2rem 0px;
  background:  #e2e9ec url(images/account-bg.png) left center no-repeat;
  background-size: cover;
}

.sidebar-menu-item  .material-symbols-outlined {
  margin-right:10px;
  color:#1f99c3;
  font-size:24px;
}

.account-top {
  padding:2rem 0px;
  background: #009ab6 url(images/account-top.png) left center no-repeat;
  background-size:cover;
}

.member-info {
  margin-top:10px;
}

.user-info {
  padding-left:20px;
  color:white;
}

.user-info h2 {
  margin-bottom:10px;
  font-size:24px;
}

.deposit {
  padding: 2px;
  padding-left: 10px;
  border: 2px solid white;
  border-radius: 4px;
}

.deposit p {
  padding: 10px;
  display: inline-block;
  margin-left: 10px;
  color: #124c60;
  font-weight: 600;
  text-align: right;
  background: white;
  border-radius: 0px 3px 3px 0px;
}

/* Referral Program Section */
  .referral-section {
  padding: 10px;
  width: 475px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #ffffff;
}

.referral-section .stat-label {
  grid-column: 1 / -1;
  margin-top: 0px;
  margin-bottom: 0px;
  margin: 0px auto;
  text-align: center;
  font-weight: 400;
}

.referral-section .seal {
  display:inline-block;
  padding:0px 5px;
}

.referral-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.account-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Sidebar Styles */
  .sidebar {
  width: 280px;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  border-right: 1px solid #e5e5e5;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}

.sidebar-logo {
  margin-bottom: 30px;
  text-align: center;
}

.sidebar-logo img {
  height: 40px;
}

.sidebar-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  transition: background-color 0.2s, color 0.2s;
  -webkit-box-align: center;
  -ms-flex-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.2s, color 0.2s;
  -o-transition: background-color 0.2s, color 0.2s;
}

.sidebar-menu-item a {
  padding: 15px 25px;
  border-left: 5px solid #f0f4f8;
  cursor: pointer;
}

.sidebar-menu-item:hover,
  .sidebar-menu-item.active {
  color: #008cba;
  background-color: #e6f7ff;
}

.sidebar-menu-item.active a {
  border-left: 5px solid #008cba;
}

.sidebar-menu-icon {
  margin-right: 15px;
  font-size: 20px;
}

/* Main Content Styles */
  .main-content {
  flex-grow: 1;
  padding: 20px;
  width: 800px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}

/* Header Section */
  .main-content .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.main-content .header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 15px 15px;
  flex: 1;
  margin: 0 10px 5px;
  justify-content: space-between;
  background-color: #e6f7ff;
  border-radius: 10px;
  box-shadow: 0px 5px 5px #3859642e;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-shadow: 0px 5px 5px #3859642e;
}

.main-content .header-item:first-child {
  margin-left: 0;
}

.main-content .header-item:last-child {
  margin-right: 0;
}

.main-content .header-icon, .global-box .header-icon {
  margin-right: 0px;
  padding: 0px;
  width: 54px;
  height: 54px;
  display: block;
  padding-top: 3px;
  font-size: 30px;
  color: white;
  text-align: center;
  background: #2196f3;
  border-radius: 10px;
}

.main-content .header-icon .material-symbols-outlined {
  width: auto;
  height: auto;
  font-size: 30px;
}

.message {
  width:900px;
}

.main-content .header-text {
  font-weight: 600;
  color:#008cba;
}

/* Dashboard Grid */
	
	
.alert-block span {
  margin-top: 10px;
  margin-left: 0px;
  display: block;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 48px;
}

.dashboard-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  -ms-grid-columns: 1fr 20px 1fr;
}

.dashboard-card {
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f8fbfd;
  border-radius: 10px;
  border: 1px solid #cad8e1;
  box-shadow: 0px 5px 8px #38596438;
  -webkit-box-shadow: 0px 5px 8px #38596438;
}

.dashboard-card .card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.dashboard-card .card-header-icon {
  margin-right: 10px;
  font-size: 28px;
  color: #008cba;
}

.dashboard-card .card-title {
  font-weight: 600;
}

.dashboard-card .card-value {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: #2196f3;
  text-align: center;
}

.dashboard-card .card-footer {
  margin-top: 15px;
  gap: 10px;
}

.dashboard-card .card-footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  padding: 6px 10px;
  background: white;
  border: 1px solid #c5d8e8;
  border-radius: 6px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.withdraw-card .card-footer-item {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 8px;
  margin-bottom: 12px;
  color: #406f7f;
  border-radius: 10px;
  border: 3px solid transparent;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)), -webkit-gradient(linear, left top, left bottom, from(#cad8e1), to(#cad8e1));
  background-image: -o-linear-gradient(#fff, #fff), -o-linear-gradient(#cad8e1, #cad8e1);
  background-image: linear-gradient(#fff, #fff), linear-gradient(#cad8e1, #cad8e1);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  outline: none;
  transition: all 0.2s ease-in-out;
  -webkit-box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.cert-section {
  margin-top: 10px;
  padding: 15px;
  background-color: #f8fbfd;
  border-radius: 10px;
  border: 1px solid #cad8e1;
  box-shadow: 0px 5px 8px #38596438;
  -webkit-box-shadow: 0px 5px 8px #38596438;
}

.cert-section h2 {
  font-size:24px;
}

/*Member ares sub pages*/  
  
.security-grid .dashboard-card {
  max-height:210px;
}

.card-footer label {
  display:block;
}

/*Table top filtres codes*/
  
.transaction-date select {
  width:auto;
}

.transaction-date .time-select select {
  width: 145px;
}

.main-form .time-select {
  min-width: 100px;
}

.transaction-type {
  margin-bottom:10px;
}

.transaction-type select {
  width:49%;
}

.transaction-date p {
  margin-top:10px;
}

.transaction-date input[type="submit"] {
  padding: 5px 15px;
  margin-top: 12px;
  line-height: 28px;
}

/*Tables pagination*/  

  .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 20px 0;
  justify-content: center;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.page-item {
  margin: 0 5px;
}

.page-link {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  background-color: #f0f0f0;
  transition: background-color 0.3s, color 0.3s;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
}

.page-link:hover,
  .page-link:focus {
  color: #000;
  background-color: #ddd;
}

.page-item.active .page-link {
  color: #fff;
  background-color: #2196f3;
  cursor: default;
  pointer-events: none;
}

.page-item.disabled .page-link {
  color: #aaa;
  background-color: #f9f9f9;
  cursor: not-allowed;
}

.page-item.disabled .page-link:hover {
  background-color: #f9f9f9;
}

        nav.pagination a.active {
            background-color: #333;
            color: #fff;
            font-weight: bold;
        }
        nav.pagination span.disabled {
            color: #aaa;
            border-color: #eee;
        }

.plan-title {
  margin-bottom:15px;
  font-size:24px;
}

.plan-description h3 {
  font-size:24px;
  font-weight:600;
}

.payment-form i {
  display: block;
  margin: 6px auto 0px;
  max-width: 450px;
  padding: 6px;
  font-style: normal;
  font-weight: 600;
  border: 1px solid #1f99c3;
  border-radius: 4px;
  background: #dff7ff;
}

/*calculator-codes */
    
.calc-width {
  max-width: 840px;
}

.calculator-table td {
  padding:6px;
}

.calculator-block p {
  margin-top:5px;
}

/* Marketing Tools*/
.tabs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}

.tab-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.tab {
  padding: 12px 20px;
  white-space: nowrap;
  background-color: #e0e0e0;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.tab:hover {
  background-color: #ccc;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
}

.aff-tabs .tab {
  width: 110px;
  padding: 6px 5px;
}

.tab.active {
  color: #cf003d;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Content Area */
  .content-container {
  padding: 2rem;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f7f7f7;
  border-radius: 8px;
  /* Initially hidden */
    -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.content-container.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner-info {
  margin-bottom: 1.5rem;
}

.banner-info h2 {
  margin: 0 0 0.5rem;
  font-size: 28px;
  font-weight: 600;
}

.banner-info p {
  margin: 0;
  color: #555;
}

.banner-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.banner-code-block {
  width: 100%;
  padding: 1rem;
  overflow-x: auto;
  text-align: left;
  background-color: #e9ecef;
  border: 1px solid #dee2e6;
  border-radius: 8px;
}

.banner-code-block code {
  font-family: 'Courier New', Courier, monospace;
  color: #495057;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.tab-button {
  position:relative;
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  border: none;
  background-color: transparent;
  border-radius: 0px;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
  -webkit-transition: background-color 0.2s, color 0.2s;
  -o-transition: background-color 0.2s, color 0.2s;
}

.tab-button:hover {
  background-color: #e0e6ed;
}

.tab-button.active {
  color: #ffffff;
  border-right: 3px solid #ff003d;
  background-color: #b7193f;
}

.tab-button.active::after {
  position: absolute;
  right: -6px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ff003d;
  transform: translateY(-50%) translateX(5px);
  transition: border-left-color 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, border-left-color 0.2s;
  transition: transform 0.2s, border-left-color 0.2s, -webkit-transform 0.2s;
  content: '';
  -webkit-transform: translateY(-50%) translateX(5px);
  -ms-transform: translateY(-50%) translateX(5px);
  -webkit-transition: border-left-color 0.2s, -webkit-transform 0.2s;
  -o-transition: transform 0.2s, border-left-color 0.2s;
}

/*Deposit Confirm*/

  .button .btn-red {
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 0px 0px 10px 10px;
}

.copy-block {
  position:relative;
  margin:0px auto;
}

.copy-block span.usd {
  width:auto;
  cursor:pointer;
}

.bitcoin_form {
  display:none;
}

.payment-amount {
  margin:10px 0px;
}

.payment-amount b {
  font-weight:700;
  color:#2196f3;
}

#placeforstatus {
  padding: 10px 15px;
  margin-bottom: 20px;
  background: #d4f4ff;
  border-radius: 6px;
  border: 1px solid #99ccdd;
  box-shadow: 0px 5px 10px #3859642e;
  -webkit-box-shadow: 0px 5px 10px #3859642e;
}

.qr-code {
  padding: 20px;
  margin-top: 48px;
  margin-right: 0px;
  border: 1px solid #cad8e1;
  border-radius: 6px;
}

.info-page article h2 {
  font-size:24px;
  font-weight:700;
}

.info-page   time {
  display: block;
  margin-bottom: 10px;
  color: #0464a7;
}

.info-page  nav.pagination {
  margin-top: 20px;
}

.info-page  nav.pagination a, .info-page  nav.pagination span.disabled {
  padding: 10px 15px;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 5px;
  background-color: #f0f0f0;
  transition: background-color 0.3s, color 0.3s;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
}

.info-page  nav.pagination a.active {
  color: #fff;
  font-weight: bold;
  background-color: #2196f3;
}

.info-page   nav.pagination a.disabled {
  color: #aaa;
  border-color: #eee;
  pointer-events: none;
}

.padding-big {
  padding: 7rem 0px;
}

.forgot-bg {
background: #f3f5f6 url(images/forgot-bg.png) center top no-repeat;
    background-size: cover;
    padding: 5rem 0px;
}

/* Text and heading styles */
  .subtitle {
  margin-bottom: 2rem;
  text-align: center;
  color: #6b7280;
}

/* --- Form elements container --- */
  .form-fields-container {
  max-width: 530px;
  margin: 0 auto;
}

.form-fields-container .flex-container {
  gap:10px;
}

/*Global Representatives*/


.representative-bg {
  overflow: hidden;
  padding: 1rem 0px;
  background: #06213c url(images/grep-bg.png) center top no-repeat;
  background-size: cover;
}

.representatives-card table th, .representatives-card table td {
  text-align: center;
padding: 0.5rem 0.1rem;
}

.representatives-card {
    background: -webkit-gradient(linear, left top, left bottom, from(#0464a7), to(#0464a7)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#0464a7), to(#0464a7)) border-box;
    background: -o-linear-gradient(#0464a7, #0464a7) padding-box, -o-linear-gradient(#0464a7, #0464a7) border-box;
    background: linear-gradient(#0464a7, #0464a7) padding-box, linear-gradient(#0464a7, #0464a7) border-box;
    border: 0px !important;
    box-shadow: none !important;
    padding: 0px;
    margin-bottom: 0px;
}

.representatives-card table {
    text-align: center;
    box-shadow: none;
    background: white;
    -webkit-box-shadow: none;
    border-radius:10px;
}

.representative-bg p a {
  color: #33a6f7;
}

.indexcontainer .country-box {
  margin-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 1200px;
  color: #ffffff;
	background: #051d36b3;
  border-radius: 0.375rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  border: 1px solid #ecebea;
  transition: all 0.2s ease-in-out;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.indexcontainer .country-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  font-size: 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  cursor: pointer;
}

.indexcontainer .rep-details {
    display: none;
    padding: 0 0.5rem 0.5rem 0.5rem;
    color: #333;
}
.referral-block {
    width: 530px;
    margin: 0px;
}

.referral-block .form-input {
	border:0px;
	padding:0px;
}
