﻿/* STRIP */
.mission-strip {
  background: linear-gradient(90deg, var(--primary), #1e40af);
  padding: 20px 0;
  text-align: center;
}

.mission-strip p {
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  max-width: 900px;
  margin: auto;
}

.highlight {
  color: var(--accent);
  font-weight: 800;
  position: relative;
  text-shadow: 0 0 8px rgba(212,175,55,0.4);
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.highlight:hover {
  transform: translateY(-1px);
}

/* STRIP BASE */
.mission-strip {
  background: linear-gradient(90deg, var(--primary), #1e40af);
  overflow: hidden;
  padding: 18px 0;
}

/* WRAPPER */
.strip-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* MOVING TRACK */
.strip-track {
  display: flex;
  width: max-content;
  gap: 160px;
  animation: scrollText 25s linear infinite;
}

.strip-track:hover {
  animation-play-state: paused;
}

/* TEXT */
.strip-track p {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ANIMATION */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SECTION BACKGROUND */
.mission-section {
  background: #eef5ff;
  padding: 60px 0;
}

/* GRID */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.mission-card {
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.mission-card:hover i {
  transform: scale(1.2);
  transition: 0.3s ease;
}

/* IMAGE */
.mission-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* TEXT */
.card-text {
  padding: 20px;
  background: white;
}

.card-text h2 {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.card-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 460;
}

.card-text i {
  color: var(--accent);
  margin-right: 8px;
}

.mission-strip::before,
.mission-strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
  z-index: 2;
}

.mission-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--primary), transparent);
}

.mission-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--primary), transparent);
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}