  .certifications-title {
    font-weight: 700;
    color: #002147;
  }

  .certifications-highlight {
    color: #f6c026;
  }

  .certifications-line {
    border-top: 3px solid #002147;
    width: 70px;
    margin: 10px 0 20px 0;
  }

  .certifications-bullet {
    color: #0c63e4;
    font-size: 1.1rem;
  }

  .certifications-card {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }

  .certifications-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }

  .certifications-text {
    font-size: 0.95rem;
  }
  /* Hero Section */
.hero-bg {
    background: url('<?= base_url("frontend/assets/images/v2/img_profile.jpg") ?>') center/cover no-repeat;
    height: 350px;
}
.overlay-dark {
    background-color: rgba(0,0,0,0.5);
}

/* Facility Cards */
.facility-card {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 2rem;
}
.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.facility-card ul li {
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Gallery Cards */
.gallery-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.gallery-img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

/* Modal Styles */
.modal-content {
    background: transparent !important;
}
.modal-body {
    padding: 0 !important;
}
.modal-body img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}
.btn-close-white {
    filter: invert(1);
}

/* ---------- market SECTION ---------- */
.hero-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.hero-bg {
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.breadcrumb-link {
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumb-link:hover {
  text-decoration: underline;
  color: #fff;
}

/* ---------- SECTION HEADINGS ---------- */
.section-subtitle {
  letter-spacing: 1px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #ff7b00);
  border-radius: 3px;
}
.section-title {
  color: #222;
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
}

