/* ============== ANIMATED BACKGROUND & SHARED STYLES ============== */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at 70% 20%, var(--primary-color) 0%, transparent 40%),
              radial-gradient(ellipse at 30% 80%, var(--secondary-color) 0%, transparent 40%);
  filter: blur(100px);
  opacity: 0.3;
  animation: moveAurora 20s infinite alternate;
}

@keyframes moveAurora {
  from { transform: translate(-20%, -20%) scale(1.2); }
  to { transform: translate(20%, 20%) scale(1.5); }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--text-color), var(--primary-color));
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-color);
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  margin-top: 2rem;
}

/* ============== ABOUT PAGE SPECIFIC STYLES ============== */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}
.page-header h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

section {
  margin-bottom: 3rem;
}
section:last-child {
  margin-bottom: 0;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.value-card {
  text-align: center;
  background: var(--input-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}
.value-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.9rem;
}

/* Connect Section */
.connect-section {
  text-align: center;
  background: var(--input-bg);
  border-radius: 15px;
  padding: 2.5rem;
}
.connect-section p {
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
}

/* Stylish Button (Same as home.css) */
.btn-primary {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  color: var(--bg-color);
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px var(--glow-color);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-primary i {
  position: absolute;
  left: -10%;
  top: -50%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover i {
  left: 110%;
}

/* ============== FOOTER ============== */
footer {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--text-muted);
}
