@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #151a24;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  overflow-x: hidden;
}

/* === Subtle Animated Background === */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(200, 230, 255, 0.6) 0.8px, transparent 0.8px);
  background-size: 15px 15px;
  opacity: 0.08;
  animation: subtle-drift 60s linear infinite;
}

@keyframes subtle-drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/* === Certifications === */
.certifications {
  margin-top: 30px;
  margin-bottom: 30px;
}

.cert-title {
  font-size: 1rem;
  color: #8ab4f8;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cert-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100px;
  text-align: center;
}

.cert-item img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 8px;
}

.cert-item span {
  font-size: 0.8rem;
  color: #c9d1d9;
}

/* === Content Container === */
.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
  position: relative;
  z-index: 1; /* Keep above background */
}

.name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e0e0e0;
}

.title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4285f4;
  margin: 10px 0 20px;
  letter-spacing: 1px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #c9d1d9;
  margin-bottom: 30px;
}

.description p {
  margin-bottom: 1em;
}

.description p:last-child {
  margin-bottom: 0;
}


.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #21262d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #30363d;
}

.icon {
  width: 20px;
  height: 20px;
}
