/* Toggle Switch */
.switch {
    position: absolute;
    top: 15px;
    right: 20px;
    display: inline-block;
    width: 34px;
    height: 20px;
  }
  
  .switch input {
    display: none;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:checked + .slider:before {
    transform: translateX(14px);
  }

  /* Dark mode styles */
body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

/* Navbar brand */
body.dark-mode .text-logo {
  color: #e0e0e0;
}

/* burger dark mode */
body.dark-mode .burger {
  background-color: #e0e0e0;
}

/* Testimonial text */
body.dark-mode .testimonial-text {
  color: #e0e0e0;
}

/* Testimonial author */
body.dark-mode .testimonial-author {
  color: #e0e0e0;
}

/* dark-mode.css */
body.dark-mode {
    background-color: #121212;
    color: #ffffff;
  }
  
  /* Add other dark mode styles here */



