/* ABOUT SECTION */
.about-section {
  padding: 100px 20px;
  background: #111;
  color: #f0f0f0;
  line-height: 1.8;
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f1c40f;
}

.about-section h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #f1c40f;
}

.about-section ul,
.about-section ol {
  margin-left: 20px;
  padding-left: 20px;
}

.about-section ul li,
.about-section ol li {
  margin-bottom: 10px;
}

/* card  */


.card {
  background-color: #1c1c1c;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.card h2 {
  color: #f1c40f;
  margin-bottom: 15px;
}

.card ul, .card ol {
  margin-left: 20px;
  padding-left: 20px;
}

.card ul li, .card ol li {
  margin-bottom: 10px;
}
/* visionc */



/* flex card */
.flex-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* For responsiveness on small screens */
}

.flex-card img.visionc {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  height: 40vh;
  width: 30vh;
}

.flex-card .text-content {
  flex: 1;
  min-width: 250px;
}
