

.about-section {
  padding: 50px 20px;
  text-align: center;
  background: #ffffff;
}

.heading {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  color: #000000;
  margin-bottom: 20px;
}

.subheading {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 25px;
  max-width: 280px;
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 10px 0;
}

.card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.card:hover {
  transform: translateY(-10px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .subheading {
    font-size: 1rem;
    padding: 0 10px;
  }

  .card {
    max-width: 90%;
  }
}
.card {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: scale(1);
}

.card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 119, 204, 0.2);
}
.bs-about-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.bs-about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1d3557;
  animation: fadeInDown 0.6s ease-in-out;
}

.bs-about-section {
  margin-top: 40px;
  animation: fadeInUp 0.5s ease-in-out;
}

.bs-about-section h2 {
  color: #457b9d;
  margin-bottom: 10px;
}

.bs-about-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.bs-box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #1d3557;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bs-tag {
  display: inline-block;
  background: #a8dadc;
  color: #1d3557;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 5px 5px 0 0;
  font-size: 0.9rem;
}

.bs-why-list {
  list-style: none;
  padding-left: 0;
}

.bs-why-list li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}

.bs-why-list li::before {
  content: "✔";
  color: #2a9d8f;
  position: absolute;
  left: 0;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .bs-about-header h1 {
    font-size: 2rem;
  }

  .bs-about-boxes {
    flex-direction: column;
  }
}