*{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
}
body{
  overflow-x: hidden;
}
.container {
  text-align: center;
}

.scrollBar {
  position: fixed;
  z-index: 90;
  top: 0px;
  left: 0;
  height: 4px;
  width: 0vw;
  
  background-image: linear-gradient(to right,#00bea8, #ffd000);
  transition: width 200ms linear;
}

.title {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 10px;
  color: #fffdff;
  
  /* border-radius: 20px; */
  /* background-color: rgba(209, 209, 255, 0.8); */
}

.theme-switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: left 0.3s ease-in-out, background-image 0.3s ease-in-out;
  background-image: url("../Assets/moon.png");
}

.theme-switch.dark-theme::before {
  left: 33px;
  background-image: url("../Assets/sun.png");
}

.contributors-grid {

  width: 100vw;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  display: flex;
}

.contributor-card {
  min-height: 300px;
  display: flex;
  justify-content: center; 
  position: relative;
  max-width: calc(55% - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color:rgba(23,23,23,1);
  border-radius: 8px;
  padding: 10px;
  transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
  text-decoration: none;
  color: #fff;
  /* margin-bottom: 16px;  */
  word-wrap: wrap;
  transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
  width:18%;
  overflow: hidden;
}

#contributors {
  perspective: 1000px; /* This adds depth for 3D transformations */
  margin-left: -19px;
}



.contributor-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
  transition: box-shadow 0.3s ease-in-out, border 0.1s ease-in-out;
}


.contributor-card h2 {
  color: #040404;
  position: relative;
  z-index: 1;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

.contributor-card p {
  font-size: 1.2em;
  position: relative;
  z-index: 1;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  margin: 0 0 10px;
}

.contributor-card:hover h2 {
  color: white;
}

.contributor-card:hover p {
  color: white;

  /* font-weight: 400; */
}

body {
  background-color:#2c394c;
  color: hsl(0, 0%, 100%);
}

header {
  height: 100px;
}

.logo {
  margin: 30px 0 0 0;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
}

.footer-container {
  max-width: 800px;
  margin: auto;
  padding: 0 20px;
}


.footer-contact a {
  color: white;
}

header {
  height: 100px;
}
body {
  min-height: 100vh;
  max-width: 100vw;
}
.logo {
  margin: 5px 0px 0px 0px;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
}

.footer-container {
  max-width: 800px;
  margin: auto;
  padding: 0 20px;
}

.contributor-card{
  margin: 10px;
}

.contributor-card::before{
  content: '';
  position: absolute;
  background: radial-gradient(var(--clr),transparent,transparent);
  height: 500px;
  width: 500px;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: 0.5s, top 0s,left 0s;
  }

  .contributor-card:hover::before{
    opacity: 1;
  }

  .contributor-card::after{
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 8px;
    background-color: rgba(23,23,23,0.7);
  }

  .contributor-card p,
  .contributor-card a {
    position: relative;
    z-index: 1;         
    color: #ddd;        
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); 
  }

  .contributor-card a {
    color: #aaa;       
    text-decoration: underline;
  }

  .contributor-card img {
    border-radius: 50%; 
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
    filter: brightness(1.2); 
    z-index: 1; 
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .contributor-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.4); 
  }

@media (max-width: 900px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.5rem;
    /* Adjust padding to reduce overall height */
  }

  header nav {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100vw;
  }

  header nav .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    padding: 1rem; /* Adjust padding for hamburger icon */
    position: absolute;
    top: 0;
    right: 1rem; /* Adjust right position as needed */
  }

  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    display: none; /* Hide the navbar items */
    max-height: 100vw; /* Full width for mobile view */
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #333; /* Background color for the floating menu */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a box shadow */
    padding: 1rem; /* Add padding */
    border-radius: 0 0 8px 8px; /* Rounded corners at the bottom */
  }

  header nav ul.show {
    display: flex; /* Show the navbar items when the hamburger is clicked */
    align-items: flex-start;
  }

  header nav ul li {
    margin: 0.5rem 1rem; /* Adjust margin for vertical spacing */
  }
  header nav ul li a:hover {
    color: #00c6ff;

    border-bottom: 2px solid #00c6ff;

  }
}

/* Styles for larger screens */
@media (min-width: 901px) {
  header {
    height: auto;
  }
  header nav .hamburger {
    display: none;
  }

  header nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  /* header nav ul li {
    margin: 0 0.5rem; /* Reduce margin between items */
}
*/ header nav ul li a:hover {
  background-color: #00c6ff;
  color: #000;
  border-radius: 0.75rem; /* Rounded corners for active link */
}

footer {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer p {
  margin: 10px 0;
}

footer p a {
  color: #00c6ff;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}

/* Footer Styles */
footer {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer p {
  margin: 10px 0;
}

footer p a {
  color: #00c6ff;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
}

.footer-container {
  max-width: 800px;
  margin: auto;
  padding: 0 20px;
}


.footer-contact {
  margin: 10px 0;
}





html {
  scroll-behavior: smooth;
  max-width: 100vw;
  max-height: 100vh;
}

body {
  background-color: #000;    
  overflow-x: hidden;
  margin: 0;


}

header {
  background-color: #1a1a1a;
  padding: 0px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #00c6ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s, border-bottom 0.3s;
  background-color: rgb(72, 71, 71);
  padding: 15px;
}

header nav ul li a:hover {
  background-color: #00c6ff;
  color: #000;
  border-radius: 0.75rem;
}

@media (max-width: 900px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }

  header nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  header nav .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    padding: 1rem;
    position: absolute;
    top: 0;
    right: 1rem;
  }

  header nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #333;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
  }

  header nav ul.show {
    display: flex;
  }
}

@media (min-width: 901px) {
  header nav .hamburger {
    display: none;
  }

  header nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

header .logo h1 {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  margin: 0;
}


.homeBtn{
  text-decoration: none;
  color: #000;
  top: 20px;
  left: 20px;
  position: absolute;
  background-color: #0e99ea;
  width: 60px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: #000 2px solid;
}
.homeBtn:hover{
  background-color: #00c6ff;
  color: #000;
  border: #00c6ff 2px solid;
}

/* Stats Section */
.contributor-stats {
max-width: 1200px;
margin: 0 auto;
padding: 2rem 2rem;
text-align: center;
border-radius: 25px;
margin-top: 60px;
}

.contributor-stats h2 {
font-size: 3rem;
margin-bottom: 2rem;
}

.contributor-stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}

.contributor-stat-card {
background-color: rgba(0,0,0,0.4);
border-radius: 10px;
padding: 1.5rem;
text-align: center;
}

.contributor-stat-card .contributor-icon {
font-size: 2rem;
margin-bottom: 1rem;
}

.contributor-stat-card h3 {
font-size: 2rem;
margin-bottom: 0.5rem;
}

.contributor-stat-card p {
color: #ffffff;
}

div#contributors{
flex-wrap: wrap;
justify-content: center;
}

a{
  text-decoration: none;
  color: white;
  margin-top: 20px;
  font-size: 1.2rem;
}

.home-nav a {
  text-decoration: none;
  height: 50px;
  width: 150px;
  color: white;
  font-size: 1.25rem;
  position: absolute;
  top: 20px;
  left: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-nav a:hover {
  transform: scale(1.02);
  background-color: #fff;
  color: black;
}

.goBack {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 10px;
  background-color: #d0d0d032;
  backdrop-filter: blur(7px);
  color: rgb(105, 105, 105);
  border: none;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 0 5px black;
  z-index: 22;
  transition: 0.4s opacity;
}

.goBack:hover{
  opacity:0.7;
}

@media (max-width: 600px) {
  .contributor-card {
    width: 90vw;
    margin: 10px auto;
  }
  .contributors-grid {
    gap: 1rem;
  }
}


