/* Info Sections (About & Contact) */
.info-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #fdfdfd, #e8f0f7);
  text-align: center;
  color: #2d3436;
  position: relative;
  overflow: hidden;
}

.info-section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #1e1e2f;
  position: relative;
  display: inline-block;
}

.info-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #00b894;
  margin: 10px auto 0;
  border-radius: 2px;
}

.info-section p {
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
  color: #444;
}

.contact-list {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-list li {
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.contact-list a {
  color: #0984e3;
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover {
  text-decoration: underline;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Outfit', sans-serif;
}
/* Page Load Animation */
.page-animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideIn 0.6s ease-out forwards;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
