/* =============================
   Service Section Styling
============================= */

.service-container {
  padding: 60px 0;
  background: #fff;
}

/* ---------- Sidebar (Service Category) ---------- */
.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.service-list .list-group-item {
  background-color: #f8f9ff;
  border: none;
  border-radius: 8px;
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-list .list-group-item:hover {
  background: #ffe6dc;
  color: #f15a24;
}

.service-list .list-group-item.active {
  background: linear-gradient(90deg, #ff512f, #f09819);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(241, 90, 36, 0.3);
}

/* ---------- Left Side (Service Content) ---------- */
.service-content {
  text-align: left;
  padding: 0 30px;
}

.service-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

/* ---------- Image Below Text ---------- */
.service-img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

.service-img:hover {
  transform: scale(1.05);
}

/* ---------- Active Service Box ---------- */
.service-box {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.service-box.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .service-container .row {
    flex-direction: column-reverse;
  }

  .service-content {
    text-align: center;
    padding: 20px 10px;
  }

  .sidebar-title {
    text-align: center;
  }

  .service-list .list-group-item {
    text-align: center;
  }

  .service-img {
    max-width: 100%;
  }
}
/* General Section */
.mission-vision-section {
  background: linear-gradient(to bottom, #e8f2e7 0%, #ffffff 60%);
  padding: 70px 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.mission-vision-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.mission-vision-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.mission-vision-section .underline {
  width: 80px;
  height: 3px;
  background: #111;
  margin: 10px auto 40px;
  border-radius: 2px;
}

/* Boxes Wrapper */
.mission-vision-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Box Design */
.mission-box,
.vision-box {
  flex: 1 1 45%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Titles inside boxes */
.mission-box h4,
.vision-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

/* Paragraphs */
.mission-box p,
.vision-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-vision-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .mission-box,
  .vision-box {
    flex: 1 1 100%;
  }

  .mission-vision-section h2 {
    font-size: 26px;
  }
}
