html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

canvas#bioParticles {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;

  background: linear-gradient(-45deg, #d0e6ff, #a3d4f7, #6db9ef, #4a90e2);

  background-size: 400% 400%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #004080;
  color: white;
  padding: 10px 30px;
  z-index: 1;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffc107;
}

header {
  text-align: center;
  padding: 100px 20px;
  color: white;
  z-index: 1;
  position: relative;
}

button {
  padding: 12px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
}

button:hover {
  background: #0056b3;
}


.glass-section {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 60px 40px;
  margin: 60px auto;
  max-width: 800px;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #212121;
  text-shadow: 0 0 5px rgba(0,0,0,0.4);
}

.glass-section p {
  font-size: 1.2em;
  line-height: 1.6;
}

.glass-section ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  text-align: left;
}

.glass-section li {
  position: relative;
  padding-left: 30px; /* space for icon */
  margin-bottom: 12px;
  font-size: 1.1em;
}

.glass-section li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
  color: #00ffcc;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}


.card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  padding: 30px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #fff;
}

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

.card h3 {
  margin-bottom: 10px;
  color: black;
}

.card p {
  font-size: 1em;
  margin-bottom: 20px;
}

.card button {
  background: #00c8ff;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.card button:hover {
  background: #0090c5;
}

.card.coming-soon button {
  background: #999;
  cursor: not-allowed;
}

.card-icon {
  margin-bottom: 15px;
  color: #3292ff;
}

blockquote {
  font-style: italic;
  margin: 30px auto;
  color: #ddd;
  font-size: 30px;
  max-width: 600px;
}

.contact-section {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  color: #ffffff;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2em;
  color: #00c8ff;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.social-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-links a {
  color: #00c8ff;
  font-size: 2em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #ffffff;
}
