{<!--index.html--> 
  <head> 
    <link rel="stylesheet" href="styles.css"/> 
    </head>}
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.75;
    color: #e2e8f0;
    background: #0f172a;
  }
  
  
  header {
    background: linear-gradient(135deg, #ff0000, #1e2937);
    color: white;
    text-align: center;
    padding: 100px 20px 70px;
    position: relative;
  }
  
  h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #67e8f9, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  header p {
    font-size: 1.3rem;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.85;
  }
  
  nav {
    margin-top: 35px;
  }
  
  nav a {
    color: #67e8f9;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s;
  }
  
  nav a:hover {
    color: white;
    text-decoration: underline;
  }
  
  
  .banner {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}
  
  
  main {
    max-width: 1150px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #571111;
  }
  
  h2 {
    font-size: 2.3rem;
    color: #67e8f9;
    margin-bottom: 40px;
    padding-bottom: 12px;
    border-bottom: 3px solid #3b82f6;
    font-weight: 600;
  }
  
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
  }
  
  .card {
    background: #1e2937;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid #334155;
    transition: all 0.4s ease;
  }
  
  .card:hover {
    transform: translateY(-12px);
    border-color: #67e8f9;
    box-shadow: 0 20px 40px rgba(103, 232, 249, 0.15);
  }
  
  .card h3 {
    color: #67e8f9;
    margin-bottom: 16px;
    font-size: 1.4rem;
  }
  
  
  .team-image {
    width: 100%;
    max-width: 920px;
    border-radius: 16px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
  
  
  .member-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #1e2937;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #334155;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  
  .profile-image {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid #67e8f9;
    flex-shrink: 0;
}
  
  .member-card div h3 {
    color: #67e8f9;
    font-size: 1.65rem;
  }
  
  
  ul {
    padding-left: 25px;
  }
  
  ul li {
    margin-bottom: 16px;
    font-size: 1.08rem;
  }
  
  
  #topBtn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: #67e8f9;
    color: #0f172a;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(103, 232, 249, 0.4);
    display: none;
    z-index: 1000;
  }
  
  #topBtn:hover {
    background: #22d3ee;
  }
  
  
  footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 45px 20px;
  }
