.about-section {
  overflow: hidden;
  padding: 50px 0;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(1, 68, 122, 0.02) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.content-left {
  padding-right: 20px;
  animation: slideInLeft 1s ease-out;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #01447a, #dc151a);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.8rem;
  color: #01447a;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  /* margin-bottom: 40px; */
  line-height: 1.8;
}

.objectives-container {
  background: rgba(1, 68, 122, 0.05);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #dc151a;
  position: relative;
  overflow: hidden;
}

.objectives-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(220, 21, 26, 0.1), transparent);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.objectives-title {
  font-size: 1.4rem;
  color: #01447a;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.objectives-title::before {
  content: "🎯";
  margin-right: 10px;
  font-size: 1.2rem;
}

.objectives-list {
  list-style: none;
  padding: 0;
}

.objectives-list li {
  padding: 12px 0;
  color: #555;
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.objectives-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: #dc151a;
  font-weight: bold;
  font-size: 1.2rem;
  width: 20px;
  height: 20px;
  background: rgba(220, 21, 26, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.content-right {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(1, 68, 122, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.3s ease;
}

.image-container:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(1, 68, 122, 0.2);
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(1, 68, 122, 0.1),
    rgba(220, 21, 26, 0.1)
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover::before {
  opacity: 1;
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.3s ease;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(1, 68, 122, 0.9));
  color: white;
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 3;
}

.image-container:hover .image-overlay {
  transform: translateY(0);
}

.overlay-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.overlay-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.decorative-elements {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(1, 68, 122, 0.05),
    rgba(220, 21, 26, 0.05)
  );
  border-radius: 50%;
  z-index: -1;
}

.stats-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(1, 68, 122, 0.1);
  flex: 1;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #01447a;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-left {
    padding-right: 0;
    order: 2;
  }

  .content-right {
    order: 1;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .image-container {
    transform: none;
    margin: 0 auto;
    max-width: 500px;
  }

  .stats-container {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .objectives-container {
    padding: 20px;
  }

  .main-image {
    height: 300px;
  }
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
