body {
  background-color: rgb(33, 33, 88, 1);
  color: white;
}
.about-section {
  padding: 80px 0;
}
.about-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 1s;
}

.about-img:hover {
  scale: 1.06;
  transition: all 1s;
}

.fadeInRight {
  animation: fadeInRight 1.5s ease;
}

.fadeInLeft {
  animation: fadeInLeft 1.5s ease;
}

.about-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.about-content h4 {
  font-size: 22px;
  color: #0d6efd;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.achievements {
  margin-top: 40px;
}
.achievement-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.5s;
}
.achievement-item:hover {
  transform: translateY(-10px);
}
.achievement-item h3 {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 10px;
}
.achievement-item p {
  margin: 0;
  color: #666;
  font-weight: 500;
}

.fadeInLeft.pre-animate,
.fadeInRight.pre-animate {
  opacity: 0;
  transform: translateX(0);
}

.fadeInLeft.animate {
  animation: fadeInLeft 1.5s ease forwards;
}

.fadeInRight.animate {
  animation: fadeInRight 1.5s ease forwards;
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .about-content {
    margin-top: 30px;
  }
}

.counter {
  font-size: 48px;
  font-weight: bold;
  color: #007bff;
  transition: all 0.5s ease-in-out;
}
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

.cover-image {
  animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
