/* Reset and body styling */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
  background-image: url("image.png");
}
html{
  scroll-behavior: smooth;
}
.header {
  text-align: center;
  padding: 2rem;
  background: #1e293b;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #38bdf8;
}
.HomeLink ,a{
    margin-right: 170px;
    list-style: none;
     transition: background-color 0.3s ease;
  transition:  0.3s ease;
}

.HomeLink a:hover{
    color: blue;
    background-color: azure;
    border-radius: 4px;
    padding: 4px;
}

/* Grid layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

/* Team card */
.team-member {
  background-color: #1e293b;
  border-radius: 15px;
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 5%;
  margin-bottom: 1rem;
  border: 3px solid #38bdf8;
}

.team-member h2 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.2rem;
  color: #e2e8f0;
}

.team-member p {
  margin: 0;
  color: #94a3b8;
}
.links li, a{
    list-style: none;
    font-size:20px;
    margin-left: 350px;
    text-decoration: none;
    font-weight: 600;
    color: beige;
}
.links li, a:hover{
    color: blue;
}
.footer {
  text-align: center;
  padding: 1rem;
  background: #1e293b;
  color: #94a3b8;
}
