
 body.dark-mode {
   background: url("../../images/bg/1.svg");
  background-position:center;
 background-size:cover;
 background-repeat:no-repeat;
  color: #f8f9fa;

		 font-family: 'Poppins', sans-serif;
			
        }
		
		
		
		body.light-mode {
  background-color: #f2f2f2;
  color: black;

		 font-family: 'Poppins', sans-serif;
			
        }
		
			p {
  
   font-family: 'Poppins', sans-serif;
  font-weight: 350;
  text-transform:title-case;
  
 
 
}
		
		 h1 {
 
    font-family: 'Poppins', sans-serif;
	font-weight:bold;
  
}		




  .btn-all{
   border-radius:15px;
 background: linear-gradient(to right, #00ff00 0%, #66ff66 100%);
   border: 1px solid rgba(0, 255, 0, 0.15);
      box-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
  
  }



.bottom-nav a.active {
  color: #66ff66;
   text-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
}




.sidebar a.active{
  color: white;
 
   text-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
}


  .card {
    transition: background-color 0.3s, color 0.3s;
	border-radius: 15px;
  }
  
  
  .how-to-card {
    font-size:1rem;
	font-weight:bold;
	 color: black;
	border-radius: 25px;
  }
  
   .how-to-card i {
    font-size:1.3rem;
    color: #00ff00;
   text-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
  }

  .dark-mode .card {
    background-color: #1b1b1b;
    color: #fff;
	  border-radius:15px;
  }
  
 
  .orange-card {
    background-color: #00ff00 !important;
  border: 1px solid rgba(0, 255, 0, 0.15);
      box-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
  text-align:center;
  border-radius:15px;
  
  
  }
  
  
  

  
    .orange-card i {
 color: black;
 font-size:0.9rem;
 
 
  
  }
  
  
  
   .dark-mode .service-card {
   border-radius:15px;
 
 
    
  }
  
  
  
  .service-card {
  text-align:center;
  border-radius:15px;
 
  
  }
  
  .service-card i {

 font-size:0.9rem;
 
  
  }
  
 
  
  
    .card-main-gradient {
   border-radius:15px;
 background: linear-gradient(to right, #00ff00 0%, #66ff66 100%);
   border: 1px solid rgba(0, 255, 0, 0.15);
      box-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
  }
  
  
  .light-mode .card-border-gradient {
   border-radius:15px;
 border:1px solid #00ff00;
  background: linear-gradient(to right, #00ff00 0%, #66ff66 100%);
  
      box-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
 
    
  }
  
   .dark-mode .card-border-gradient {
   border-radius:15px;
 border:1px solid #00ff00;

  

 
    
  }
  

  .sidebar {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #1b1b1b;
    padding-top: 1rem;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: width 0.3s ease;
	border-top-right-radius:25px;
    width: 70px; /* COLLAPSED BY DEFAULT */
  }

  .sidebar.expanded {
    width: 220px;
  }

  .sidebar h4 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .sidebar.expanded h4 {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar a {
    color: #66ff66;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.2s;
    position: relative;
  }

  .sidebar a:hover,
  .sidebar a.active {
    background-color: #00ff00;
  }

  .sidebar a span {
    transition: opacity 0.3s ease;
    white-space: nowrap;
    opacity: 0;
    width: 0;
    overflow: hidden;
  }

  .sidebar.expanded a span {
    opacity: 1;
    width: auto;
  }

  .sidebar button#toggleMode {
    margin: auto 1rem 1rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sidebar:not(.expanded) button#toggleMode span {
    display: none;
  }

  .toggle-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1050;
    background: linear-gradient(to right, #00ff00 0%, #66ff66 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 1.2rem;
  }

  .content {
    margin-left: 70px;
    padding: 1rem;
    transition: margin-left 0.3s ease;
  }

  .sidebar.expanded ~ .content {
    margin-left: 220px;
  }

  /* Tooltip styling for collapsed view */
  .sidebar:not(.expanded) a[title]:hover::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #343a40;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    margin-left: 10px;
    font-size: 0.85rem;
    z-index: 1055;
  }
  
  
  
  
  
  /* Mobile Header */
.mobile-header {
  background-color: #343a40;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  height: 56px;
}

/* Push content down on mobile */
@media (max-width: 767.98px) {
  .content {
    padding-top: 70px;
  }

  /* Hide hamburger toggle on mobile */
  .toggle-btn {
    display: none !important;
  }
}




  /* Mobile behavior */
  @media (max-width: 767.98px) {
    .sidebar {
      transform: translateX(-100%);
      width: 220px;
    }

    .sidebar.show {
      transform: translateX(0);
    }

    .content {
      margin-left: 0 !important;
    }
  }
  
  
  
  
  
  /* Bottom Mobile Nav */
.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
 
  padding: 8px 0;
  z-index: 1050;
  border-top: 1px solid #495057;
  border-top:1px solid gray;
}







  .dark-mode .bottom-nav {
    background-color: #050505;
    color: white;
  }
  
   .bottom-nav {
    transition: background-color 0.3s, color 0.3s;
  }


 .light-mode .bottom-nav {
    background-color: #fff;
  }



.bottom-nav a {
  color: black;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
}


 .dark-mode .bottom-nav a {
  
    color: white;
  }
  
   .bottom-nav a {
   
	color: 0.3s;
  }




.bottom-nav a i {
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
}


.bottom-nav a.active,
.bottom-nav a:hover {
  color: #00ff00;
}

.bottom-nav a.active i,
.bottom-nav a:hover i {
  color: #00ff00;
}





@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

  
 
.card:hover {
  transform: translateY(-3px);
  transition: all 0.4s ease-in-out;
}




.trade-card {
 border-radius:15px;
 background: url("images/bg/1.jpg");
 background-position:center;
 background-size:cover;

 
 /*  box-shadow: 0 0 5px rgba(0, 123, 255, 0.1); */
 
}



.desktop-theme-btn{

 background: linear-gradient(to right, #00ff00 0%, #66ff66 100%);

}

.mobile-theme-btn{

 background: linear-gradient(to right, #00ff00 0%, #66ff66 100%);

}
  
  
