:root {
  --primary: #FFE8D5;
  --primary-light: #caf8ca;
  --light-blue: #F6F7F8;
  --dark: #000000;
  --light: #edf7fd;
  --green: #caf8ca;
  --secondary: #fdf0d8;
  --success: #05803a;
  --lightTheme: #EDEDFD;
  --darkTheme: #030326;
  --darkShadeI: #05054c;
  --navbarHeight: 80px;
}
body {
  background-color: var(--darkTheme);
  color: var(--lightTheme);
  font-family: 'Archivo-Regular';
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'ClashDisplay-Semibold';
}
.bg-gradient {
  background: rgb(29,59,157);
  background: -moz-linear-gradient(38deg, rgba(29,59,157,0.5) 0%, rgba(14,31,89,0.7) 100%);
  background: -webkit-linear-gradient(38deg, rgba(29,59,157,0.5) 0%, rgba(14,31,89,0.7) 100%);
  background: linear-gradient(38deg, rgba(29,59,157,0.5) 0%, rgba(14,31,89,0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1d3b9d",endColorstr="#0e1f59",GradientType=1);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-dark-theme {
  background-color: var(--darkTheme);
}
.bg-light-theme {
  background-color: var(--lightTheme);
}
.bg-green {
  background-color: var(--green);
}
.bg-success {
  background-color: var(--success);
}
.bg-opacity {
  background-color: rgba(0, 0, 0, 0.1);
}
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-dark-theme {
  color: var(--darkTheme);
}
.text-light-theme {
  color: var(--lightTheme);
}
.text-green {
  color: var(--green);
}
.text-success {
  color: var(--success);
}
.ctsh-navbar {
  height: var(--navbarHeight);
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(29, 59, 157, 0.1);
  -webkit-backdrop-filter: blur(16px);
  -o-backdrop-filter: blur(16px);
  -moz-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.ctsh-navbar .links {
  transition: .2s;
}
.ctsh-navbar .links ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.ctsh-navbar .links ul li,
.ctsh-navbar .links ul li a {
  display: inline-block;
}
.ctsh-navbar .links ul li a {
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  font-size: 14.4px;
}
.ctsh-navbar .menu {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  border-radius: 50%;
  scale: 0;
}
.bk-card, .contact-form input, .contact-form textarea {
  background: rgba(255, 255, 255, 0.1); /* Transparent glass effect */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
/* Glowing circular effects */
.bk-card::before,
.bk-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(5, 5, 76, 0.5), transparent);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}
/* Top-left glow */
.bk-card::before {
  top: -40px;
  left: -40px;
}
/* Bottom-right glow */
.bk-card::after {
  bottom: -40px;
  right: -40px;
}
.bk-custom-btn {
  padding-bottom: 5px;
  color: var(--light);
  position: relative;
}
.bk-custom-btn::after {
  transition: .2s;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--light);
}
.bk-custom-btn:hover::after {
  width: 20%;
  height: 4px;
}
.bk-highlighted-text {
  color: var(--light);
}
.bk-bg-dark {
  background-color: var(--darkShadeI);
}
.bk-text-dark {
  color: var(--dark);
}

.mx-loader {
  width: 100%;
  height: 100vh;
  background-color: var(--darkShadeI);
  color: var(--lightTheme);
  position: fixed;
  top: 0;
  left: 0;
}

.mx-fixed-container {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  height: 100%;
  overflow-y: auto;
  z-index: 10;
}

.mx-form-icon {
  width: 50px;
}

.mx-form-input {
  width: calc(100% - 50px);
}

.mx-form-input input,
.mx-form-input select {
  background-color: #FFFFFF;
  color: #555;
  opacity: 1;
  border: none;
}

.mx-sticker-down {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.mx-plans-hover:hover {
  /* background: rgb(4,15,54);
  background: -moz-linear-gradient(38deg, rgba(4,15,54,0.5) 0%, rgba(2,10,36,0.7) 100%);
  background: -webkit-linear-gradient(38deg, rgba(4,15,54,0.5) 0%, rgba(2,10,36,0.7) 100%);
  background: linear-gradient(38deg, rgba(4,15,54,0.5) 0%, rgba(2,10,36,0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#040f36",endColorstr="#020a24",GradientType=1); */
}

.mx-features-img {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}

.mx-float-icon {
  position: fixed;
  bottom: 80px;
  left: 20px;
}

@keyframes loadbar {
0%,to { left: 0; right: 80% }
25%,75% { left: 0; right: 0 }
50% { left: 80%; right: 0 }
}

.gg-loadbar,
.gg-loadbar::before {
display: block;
box-sizing: border-box;
height: 4px
}

.gg-loadbar {
position: relative;
transform: scale(var(--ggs,1));
width: 18px;
margin: 5px 0;
}

.gg-loadbar::before {
content: "";
position: absolute;
border-radius: 4px;
background: currentColor;
animation: loadbar 2s cubic-bezier(0,0,.58,1) infinite
}

.bk-bordered-card {
  border: 1px solid var(--light);
}
.about-header::before, .copy-trading-header::before{
  content: "";
  position: absolute;
  width: 45%;
  right: 0;
  height: 55%;
  z-index: 0;
  filter: blur(100px);
  top: 0;
  background: linear-gradient(180deg, rgba(188, 165, 255, 0) 0%, #214D76 100%);
}
.copy-trading-header::before{
  right: 0;
}
.copy-trading-table tr th {
  background-color: var(--darkShadeI);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}
.copy-trading-table tr:not(.copy-trading-table thead tr:nth-child(1)) {
  border-bottom: 1px solid var(--light);
}
.team-inner{
  position: absolute;
  left: 0;
  bottom: -120%;
  transition: 1s ease;
  background-color: var(--darkShadeI);
}
.team::before{
  position: absolute;
  content: '';
  width: 380px;
  height: 150px;
  bottom: -30px;
  background: rgba(5 ,5 ,76, .6);
  filter: blur(20px);
  z-index: -1;
  left: 0;
}
.team-inner div{
  z-index: -1;
  position: absolute;
  top: -150px;
  transition: 1s ease;
}
.team-inner p{
  position: absolute;
  bottom: -30px;
  opacity: 0;
  transition: 1s ease;
}
.team:hover .team-inner{
  bottom: 0;
}
.team:hover .team-inner div{
  z-index: 1;
  top: 30px;
}
.team:hover .team-inner p {
  opacity: 1;
  bottom: 30px;
}
/* .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  padding: 19px 20px;
  color: white;
}

.logo h4 {
  margin: 0;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 70px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffcc00;
}

.cta button {
  background-color: #ffcc00; 
  color: #333;
  border: none;
  padding: 18px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta button:hover {
  background-color: #ffc107;
}

.navbar {
  position: sticky;
  top: 0;
}


.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cta {
  margin-left: auto;
}





.hamburger {
  display: none; 
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin-bottom: 5px;
  transition: transform 0.3s ease-in-out;
}


@media (max-width: 768px) { 
  .nav-links {
    display: none; 
  }
  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.nav-links.active {
  display: flex; 
}



@media (max-width: 768px) {
  .nav-links {
    display: none; 
    flex-direction: column; 
    position: absolute;
    top: 60px; 
    left: 0;
    background-color: #333;
    width: 100%; 
    padding: 10px 0;
    text-align: center;
    gap: 15px;
    z-index: 1000;
    height:100vh;
   
  }
  

  .nav-links.active {
    display: flex; 
  }
  

  .hamburger {
    cursor: pointer;
  }

  .nav-links li {
      margin: 0;
      padding: 40px 0;
      width: 100%; 
    }
  
    .nav-links li a {
      text-decoration: none;
      color: white;
      font-size: 24px; 
      font-weight: bold;
      transition: color 0.3s ease-in-out;
    }
    

} */


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  padding: 19px 20px;
  color: white;
}

.logo h4 {
  margin: 0;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 70px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffcc00;
}

.cta button {
  background-color: #ffcc00; 
  color: #333;
  border: none;
  padding: 18px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta button:hover {
  background-color: #ffc107;
}

.navbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cta {
  margin-left: auto;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none; 
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin-bottom: 5px;
  transition: transform 0.3s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
      display: none; 
  }

  /* Logo should stay at the left */
  .logo {
      order: 0; /* Ensure logo stays on the left */
  }

  /* Move the hamburger to the right side */
  .hamburger {
      display: block;
      order: 2; /* Place hamburger after button */
  }

  /* Button should come before hamburger */
  .cta {
      order: 1; /* Move the button before the hamburger */
      margin-right: 15px;
  }

  .hamburger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links.active {
      display: flex; /* Show the nav links when active */
      flex-direction: column;
      /* position: absolute; */
      position: fixed; 
      top: 60px; 
      left: 0;
      background-color: #333;
      width: 100%; 
      padding: 10px 0;
      text-align: center;
      gap: 15px;
      z-index: 1000 ;
      height:100vh;
      transform: translateY(0);
  }

  /* Reduce button size on smaller screens */
  .cta button {
      padding: 12px 10px; /* Smaller button padding */
      font-size: 14px; /* Smaller button font size */
     
  }

  .nav-links li {
      margin: 0;
      padding: 40px 0;
      width: 100%; 
  }

  .nav-links li a {
      text-decoration: none;
      color: white;
      font-size: 24px; 
      font-weight: bold;
      transition: color 0.3s ease-in-out;
  }
}


.container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px;
}

.card {
  /* background: linear-gradient(145deg, #1b032d, #290642); */
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  width: 250px;
  padding: 20px;
  text-align: center;
  position: relative;
  height: 350px;
  border-color: #fff;
  border: #1e1929 1px solid;
}
.card{
opacity: 1;
transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
transform-style: preserve-3d;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  border-color: #fff;
}

.icon {
  margin: 30px auto;
}

.icon img {
  width: 90px;
}

.card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
}
.card h3 {
  margin-top: 30px;
}
.benefit-card {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
}

.card {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

.card:nth-child(2) {
  animation-delay: 0.7s;
}

.card:nth-child(3) {
  animation-delay: 0.8s;
}

.card:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








.services-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-box {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  flex: 1;
  max-width: 400px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  color: white;
}


.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.9rem;
  color: #ddd;
}


.box1 {
  background-image: url('https://img.freepik.com/free-photo/standard-quality-control-collage-concept_23-2149595831.jpg?ga=GA1.1.223654036.1724009519&semt=ais_hybrid');
}

.box2 {
  background-image: url('https://img.freepik.com/free-photo/google-drive-icon-line-connection-circuit-board_1379-902.jpg?ga=GA1.1.223654036.1724009519&semt=ais_hybrid');
}

.box3 {
  background-image: url('https://img.freepik.com/premium-photo/3d-illustration-digital-block-chain-code-low-polygonal-grid-triangles-glowing-blue-dot-network-abstract-background-concept-network-internet-communication_92790-1458.jpg?ga=GA1.1.223654036.1724009519&semt=ais_hybrid');
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column; /* Stacks items vertically */
    align-items: center; /* Centers items horizontally */
  }

  .service-box {
    max-width: 100%; /* Takes the full width of the container */
    height: auto; /* Adjust height based on content */
  }
  .ctsh-navbar .links {
    background-color: var(--darkTheme);
    position: fixed;
    top: -500%;
    left: 0;
    width: 100%;
    padding: .8rem 1.2rem;
    border-bottom: 1px solid var(--lightTheme);
  }
  .ctsh-navbar .links.active {
    top: var(--navbarHeight);
  }
  .ctsh-navbar .links ul li,
  .ctsh-navbar .links ul li a {
    display: block;
  }
  .ctsh-navbar .links ul li a {
    font-size: 18.4px;
  }
  .ctsh-navbar .menu {
    scale: 1;
  }
}



.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-card {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  flex: 1;
  min-width: 200px; 
}


.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

.stat-label {
  font-size: 1.1rem;
  color: #fff;
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .stats-container {
      flex-direction: column; /* Stacks stat cards vertically */
      align-items: center;   /* Centers the cards */
  }

  .stat-card {
      max-width: 100%; /* Makes cards take full width of the container */
      margin-bottom: 20px; /* Adds spacing between stacked cards */
  }
}


.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px; 
  color: #fff; 
  margin: 20px auto;
  max-width: 900px; 
}

.cta-section button {
  background-color: #ff6f61; 
  color: #fff; 
  font-size: 1.2rem; 
  padding: 12px 24px; 
  border: none; 
  border-radius: 8px; 
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease; 
}

.cta-section button:hover {
  background-color: #ff4a3d; 
  transform: scale(1.05); 
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .cta-section h2 {
      font-size: 1.5rem; 
  }

  .cta-section button {
      font-size: 1rem; 
      padding: 10px 20px;
  }
 
}
.mobit{
  opacity: 6px;
  
}


@media (max-width: 768px) {
  .services-container {
    flex-direction: column; /* Stacks items vertically */
    align-items: center; /* Centers items horizontally */
  }

  .service-box {
    max-width: 95%; /* Takes the full width of the container */
    height: auto; /* Let the height adjust based on content */
    min-height: 500px; /* Minimum height of 450px */
  
}
.service-box p {
  margin-bottom: 30px; /* Bring the text up a bit */
}

}

  









  

