/* Muted purple for LinkedIn button */
.btn-outline-purple.linkedin-btn {
  color: #7c5ea8 !important;
  border-color: #7c5ea8 !important;
  background-color: transparent !important;
}
.btn-outline-purple.linkedin-btn:hover, .btn-outline-purple.linkedin-btn:focus {
  color: #fff !important;
  background-color: #7c5ea8 !important;
  border-color: #7c5ea8 !important;
}
/* Muted green for GitHub button */
.btn-outline-success.github-btn {
  color: #4e8a5b !important;
  border-color: #4e8a5b !important;
  background-color: transparent !important;
}
.btn-outline-success.github-btn:hover, .btn-outline-success.github-btn:focus {
  color: #fff !important;
  background-color: #4e8a5b !important;
  border-color: #4e8a5b !important;
}
@media (max-width: 576px) {
  h1.display-4 {
    font-weight: bold;
  }
  .about-page .business-card {
    margin-top: 60px !important;
    margin-bottom: 0.67rem !important;
  }
  p {
    font-size: 0.95rem !important;
  }
}
/* Make 'Learn More' link a muted blue */
.learn-more-link {
  color: #5a7fa8 !important; /* Muted blue */
  text-decoration: underline;
}
/* Muted button styles */
.btn-outline-primary {
  color: #5a7fa8 !important;
  border-color: #5a7fa8 !important;
  background-color: transparent !important;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #fff !important;
  background-color: #5a7fa8 !important;
  border-color: #5a7fa8 !important;
}
.btn-outline-dark {
  color: #6c757d !important;
  border-color: #6c757d !important;
  background-color: transparent !important;
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
  color: #fff !important;
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}
.btn-outline-danger {
  color: #b36a6c !important;
  border-color: #b36a6c !important;
  background-color: transparent !important;
}
.btn-outline-danger:hover, .btn-outline-danger:focus {
  color: #fff !important;
  background-color: #b36a6c !important;
  border-color: #b36a6c !important;
}
.btn-outline-info {
  color: #5a7fa8 !important;
  border-color: #5a7fa8 !important;
  background-color: transparent !important;
}
.btn-outline-info:hover, .btn-outline-info:focus {
  color: #fff !important;
  background-color: #5a7fa8 !important;
  border-color: #5a7fa8 !important;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

html {
  font-size: 14px;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

h1, h2, h3, h4, h5, h6 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #252525 !important;
}

p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: #252525 !important;
}

a {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background: none;
  position: relative;
  color: #6C757D !important;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url('/codeanimation.gif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(6px) brightness(0.9);
  pointer-events: none;
}

.business-card {
  background: #fff !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 8px 32px rgba(71, 74, 115, 0.18), 0 1.5px 6px rgba(71, 74, 115, 0.10);
  margin-top: 60px;
  margin-bottom: 2.5vh;
}

@media (max-width: 576px) {
  .business-card {
    margin-bottom: 2vh;
  }
  .index-card {
    margin-top: -2rem;
  }
  .d-flex.align-items-center.justify-content-center {
    min-height: 100vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}