.about-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  text-align: left;
}

.about-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.hero-content {
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 82, 147, 0.1);
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid rgba(0, 78, 146, 0.1);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--primary-blue, #004e92);
  background: rgba(0, 78, 146, 0.05);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 300px;
  margin-top: 20px;
}

.visual-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.decorative-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: linear-gradient(45deg, #cce4f7, #e6f0fa);
  border-radius: 50% 40% 60% 50%;
  z-index: 1;
  z-index: 1;
}

@keyframes blobFloat {
  0% {
    border-radius: 50% 40% 60% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    border-radius: 60% 50% 40% 60%;
    transform: translate(-50%, -50%) rotate(20deg);
  }
}

.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 50, 100, 0.1);
  z-index: 2;
  z-index: 2;
}

.card-1 {
  top: 20%;
  right: 0;
  width: 200px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: 10px;
  width: 190px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.icon-box.blue {
  background: var(--primary-blue);
}

.icon-box.green {
  background: #10b981;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text .label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.card-text .value {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 700;
}

.glass-card:hover {
  transform: scale(1.05);
  z-index: 3;
  transition: transform 0.3s ease;
}

.mission-section {
  padding: 80px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.mission-card {
  background: var(--white);
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.mission-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 78, 146, 0.2);
}

.mission-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
  transition: transform 0.8s ease;
}

.mission-card:hover .mission-bg-pattern {
  transform: scale(1);
}

.stroke-pattern {
  stroke: var(--primary-blue);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.glass-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(209, 213, 219, 0.3);
  color: var(--primary-blue);
  font-size: 32px;
  box-shadow: 0 8px 16px rgba(0, 78, 146, 0.05);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.mission-card:hover .glass-icon {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.9);
  color: #0056b3;
}

.glass-icon.icon-teal {
  color: #0d9488;
  background: rgba(240, 253, 250, 0.7);
}

.mission-card h2 {
  color: var(--primary-blue);
  font-size: 1.75rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.lead-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px !important;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.body-text {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 0;
}

.story-section {
  padding: 80px 0;
  scroll-margin-top: 100px;
}

.timeline-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #cbd5e1;
  top: 0;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  top: 24px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary-blue);
  z-index: 2;
}

.timeline-item.left .timeline-dot {
  right: -8px;
}

.timeline-item.right .timeline-dot {
  left: -8px;
}

.timeline-content {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-year {
  display: inline-block;
  background: rgba(0, 82, 147, 0.1);
  color: var(--primary-blue);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-growth-visual {
  position: relative;
  width: 450px;
  height: 300px;
  margin: 0 auto;
}

.growth-graph-line {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.draw-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.fade-fill {
  opacity: 1;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeInFill {
  to {
    opacity: 1;
  }
}

.growth-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.node-dot {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 78, 146, 0.1);
  background-clip: padding-box;
  transition: all 0.3s ease;
}

.start-node {
  top: 100%;
  left: 0%;
}

.current-node {
  top: 75%;
  left: 37.5%;
}

.future-node {
  top: 25%;
  left: 100%;
}

.node-year,
.node-label {
  position: absolute;
  top: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  white-space: nowrap;
}

.future-node .node-label {
  color: #fff;
  background: var(--primary-blue);
  padding: 2px 8px;
  border-radius: 12px;
  top: -28px;
}

.node-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  opacity: 0;
  opacity: 0;
}

@keyframes pulseNode {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.float-badge {
  position: absolute;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
  gap: 6px;
  z-index: 6;
}

.float-badge i {
  color: #10b981;
}

.badge-1 {
  top: 60%;
  left: 10%;
  animation-delay: 0s;
}

.badge-2 {
  top: 20%;
  right: 20%;
  animation-delay: 2s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.value-card {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.value-card .icon-circle {
  margin: 0 auto 24px;
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-card p {
  color: #64748b;
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
  width: 100%;
}

.alt-bg {
  background-color: var(--soft-blue, #e6f0fa);
}

@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 600px;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-growth-visual {
    transform: scale(0.9);
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .mission-card,
  .value-card,
  .expert-card {
    padding: 24px !important;
  }

  .mission-grid,
  .values-grid {
    gap: 24px;
  }

  .about-growth-visual {
    width: 100%;
    max-width: 350px;
    height: 220px;
    transform: scale(1);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .timeline-line {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
    left: 0;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 22px;
    right: auto;
  }

  .timeline-content {
    text-align: left;
  }
}