
/* Animated gradient background */
.about-gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #f8fafc, #e0f7fa, #fff1eb);
  background-size: 400% 400%;
  animation: aboutGradientShift 15s ease infinite;
  z-index: -1;
}

@keyframes aboutGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Page wrapper */
.about-page {
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: #222;
  overflow-x: hidden;
  margin-top: 90px; /* Adds space from top */
}

/* Common section styling */
.about-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 70px 10%;
}

.about-section h1,
.about-section h2 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #111;
}

.about-section h1 { font-size: 2.8rem; }
.about-section h2 { font-size: 2rem; }

.about-section p {
  max-width: 850px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-divider {
  width: 60px;
  height: 4px;
  background: #0078ff;
  margin: 15px auto 25px auto;
  border-radius: 2px;
}

.highlight {
  color: #0078ff;
}

/* Values */
.about-values {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.about-card {
  background: #ffffffaa;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.about-card h3 {
  color: #0078ff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Milestones */
.milestone-section {
  background: #f8fafc;
  padding: 100px 8%;
}

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

.milestone-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 40px 25px;
  width: 270px;
  transition: all 0.4s ease;
}

.milestone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.milestone-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.milestone-card h3 {
  color: #0078ff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.milestone-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Buttons */
.about-cta {
  margin-top: 30px;
}

.about-cta a {
  text-decoration: none;
  color: #fff;
  background: #0078ff;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin: 0 8px;
  display: inline-block;
}

.about-cta a:hover {
  background: #005fcc;
  transform: translateY(-3px);
}

/* Footer */
.about-footer {
  background: #f8f9fa;
  padding: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-values { flex-wrap: wrap; justify-content: center; }
  .about-card { width: 45%; margin-bottom: 20px; }
}

@media (max-width: 768px) {
  .about-section h1 { font-size: 2.2rem; }
  .about-section h2 { font-size: 1.6rem; }
  .about-section { padding: 60px 8%; }
  .about-card { width: 100%; }
  .milestone-card { width: 90%; }
}
