:root {
    --primary: #0a192f;
    --secondary: #64ffda;
    --text: #b7bcce;
    --light: #dde3fa;
    --bg: linear-gradient(135deg,hsl(216, 65%, 11%),hsl(216, 65%, 15%),hsl(216, 65%, 8%));
    --card-bg: #112240;
    --nav-bg: rgba(10, 25, 47, 0.85);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }

  .nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 100;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: var(--secondary);
  }

  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero-name {
    color: var(--light);
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }

  .hero-subtitle {
    color: var(--text);
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
    margin-top: 1rem;
  }

  .social-icons a {
    display: inline-block;
    transition: transform 0.2s;
  }

  .social-icons img {
    width: 30px; /* Set equal width */
    height: 30px; /* Set equal height */
    object-fit: contain; /* Ensures the icon maintains its aspect ratio */
    border-radius: 8px; /* Optional: Adds rounded corners */
  }

  .social-icons a:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
  }
  .counter-number {
    margin-top: 1rem;
    padding: 0.3rem 1rem;
    background: #112240;
    color: #5dffd9;
    border-radius: 20px;
    font-size: 0.9rem;
    align-self: center;
   text-align: center;
  }
  .verify-btn {
    display: inline-block;
    padding: 6px 12px; /* Smaller padding */
    font-size: 14px; /* Smaller text */
    background-color: rgb(96, 250, 255);
    color: rgb(8, 18, 78);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  .verify-btn:hover {
    background-color: rgb(159, 198, 255);
    transform: scale(1.05); /* Slightly enlarges on hover */
  }
  .section {
    padding: 100px 0;
  }

  .section-title {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--text);
    opacity: 0.3;
  }

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

  .card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card-title {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(100, 255, 218, 0.1);
    color: var(--secondary);
    border-radius: 4px;
    font-size: 0.8rem;
    margin: 0.3rem;
  }

  .architecture-diagram {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

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

  .stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 8px;
  }

  .stat-number {
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  input,
  textarea {
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--text);
    border-radius: 4px;
    color: var(--light);
    font-size: 1rem;
  }

  button {
    background: transparent;
    color: var(--secondary);
    padding: 1rem 2rem;
    border: 1px solid var(--secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
  }

  button:hover {
    background: rgba(100, 255, 218, 0.1);
  }

  @media (max-width: 768px) {
    .hero-name {
      font-size: 3rem;
    }

    .hero-subtitle {
      font-size: 2rem;
    }

    .nav-links {
      display: none;
    }
  }