body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* subtle gradient */
  color: #e6e6e6; /* light gray for readability */
    background: linear-gradient(to bottom right, #0e0e0e, #1a1a1a) no-repeat fixed;
    background-size: cover;
}

html {
    height: 100%;
    margin: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 94vh;
  margin: 4rem auto;
}

.content {
  flex: 1; /* Pushes the footer to the bottom if there's not enough content */
}


body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.3;
}


/*!************************************/
/* * Scroll Bars*/
/* ***********************************!*/
        /* Applies to all scrollbars */
        ::-webkit-scrollbar {
            width: 10px;
        }

        /* Track */
        ::-webkit-scrollbar-track {
            background: #1b1b1b; /* or transparent */
            border-radius: 10px;
        }

        /* Thumb (the draggable part) */
        ::-webkit-scrollbar-thumb {
            background-color: #4d0eb3;
            border-radius: 10px;
            border: 2px solid #1b1b1b; /* creates padding effect */
        }

        ::-webkit-scrollbar-thumb:hover {
            background-color: #6d29d1;
        }

        :root {
            --primary-color: #007bff;
            --accent-color: #28a745;
            --surface-color: #ffffff;
            --surface-secondary: #f8f9fa;
            --text-primary: #212529;
            --text-secondary: #6c757d;
            --border-color: #dee2e6;
        }

        /*!************************************/
        /* * Footer Styles*/
        /* ***********************************!*/
footer {
  display: flex; /* Use flexbox for alignment */
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Center content vertically inside the footer */
  align-items: center; /* Center content horizontally */
  width: 95%; /* Ensure full width of the footer */
  margin: 0 auto; /* Center the footer container within the page */
  padding: 15px; /* Space inside the footer */
  background-color: #1b1b1b; /* Footer background color */
  color: #4d0eb3; /* Text color */
  font-size: 0.9rem;
  border-radius: 10px; /* Smoothly rounded corners */
  text-align: center; /* Center text if any alignment issue appears */
}



footer .social-icons {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

footer .social-icons a {
    text-decoration: none;
    color: inherit;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    transition: color 0.3s ease;
}

footer .social-icons a img {
    width: 20px; /* Icon size */
    height: 20px;
}

footer .social-icons a:hover {
    color: #debaff; /* Highlight color on hover */
}