/* custom.css */
.custom-text-justify { text-align: justify; }
.custom-font-14 { font-size: 14px; }
.custom-inline-font { color: #777777; font-family: 'Open Sans', Arial, sans-serif; }

.founder-logo { height: 100px; }
.client-logo { height: 67px; }
.text-transform-uppercase { text-transform: uppercase; }

.custom-skdg-link { color: #007bff; text-decoration: none; font-weight: bold; }
.contact-bg { background: url(../img/demos/resume/contact/contact-bg-1.jpg); background-size: cover; }

/* Dark Mode Button */
#darkModeToggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  background-color: #333;
  color: #2563eb;
  border: 2px solid #555;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#darkModeToggle:hover {
  transform: scale(1.1);
  background-color: #555;
}

/* Dark Mode Magic Inversion */
body.dark-mode {
    filter: invert(1) hue-rotate(180deg);
    background-color: #111; /* Ensure body matches the dark background */
}

/* Reverse the inversion for media and backgrounds so they look normal */
body.dark-mode img,
body.dark-mode video,
body.dark-mode iframe,
body.dark-mode .contact-bg {
    filter: invert(1) hue-rotate(180deg);
}

