html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafc;
}

/*endregion  */
.index--section {
  width: 100%;
  position: relative; 
  z-index: 1;
}

/* .welcome-section{
  margin-top: 10px;
} */
/* Make Swiper full width and center aligned */
.mySwiper {
  margin-top: 67px;
  width: 100%;
  /* height: 350px; */
  height: calc(45vh - 70px);
  overflow: hidden;
  border-radius: 0 !important;
}

/* Style each slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa; /* Light gray or any color you prefer */
}

/* Image inside slides */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-fit: contain; */
  border-radius: 0 !important;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  background: #999;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007bff;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  /* color: #007bff; */
  color: white;
  font-weight: bold;
  transition: transform 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}


@media (max-width: 768px) {
  .mySwiper{
    margin-top: 45px;
  }
}


/* cbe section */
.tvet-section {
  margin-top: 50px;
  padding: 10px;
  /* background: #f4f7fb; */
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #0b3d91;
  margin-bottom: 5px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 16px;
}

/* Card Design */
.card {
  /* background: #ffffff; */
  padding: 25px 10px;
  margin-bottom: 10px;
  border-radius: 15px;
  /* box-shadow: 0 6px 20px rgba(0,0,0,0.08); */
  transition: 0.3s ease;
}

/* .card:hover {
  transform: translateY(-5px);
} */

/* Titles */

.card h2{
  color: #0b3d91;
  margin-bottom: 15px;
  font-size: 50px;
  border-left: 6px solid #0b3d91;
  padding-left: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.card h3 {
  color: #0b3d91;
  margin-bottom: 15px;
  font-size: 30px;
}

/* Text */
.card p {
  display: flex;              /* ✅ makes number + text align */
  align-items: flex-start;
  gap: 10px;                  /* spacing between number and text */
  text-align: justify;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: 1px;
  font-size: 16px;
}

.core-box {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #0b3d91;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
  margin: 3px 0;
}

/* Lists */
.card ul {
  padding-left: 20px;
}

.card ul li {
  margin-bottom: 8px;
  color: #333;
}
/* item-2 */
.card-item.item-2 ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-left: 20px;
}

.card-item.item-2 ul li {
  margin-bottom: 8px;
  color: #333;
}

@media (min-width: 768px) {
  .card-item.item-2 ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    display: grid;
    grid-template-columns: 1fr;
  }
}







/* ===== Modern TESDA Table Design ===== */
.assessment-container{
  /* background: #f4f8ff;  */
  padding: 20px;
  display: flex;
  justify-content: center;
}
.assessment-modern {
  margin: 0 auto;
  /* background: #f4f8ff;  */
  width: 60%;
  min-width: 1000px;
  padding:  20px 40px 0px 40px;
  justify-content: center;
}

.assessment-header {
  text-align: center;
  margin-bottom: 30px;
}

.assessment-header h2 {
  font-size: 45px;
  color: #0b3d91;
  margin-bottom: 8px;

  border-left: 6px solid #0b3d91;
  padding-left: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.assessment-header p {
  color: #555;
  font-size: 18px;
}

/* Table Wrapper for responsiveness */
/* .table-wrapper {
  overflow-x: auto;
} */

.modern-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', sans-serif;
  table-layout: auto;
}

.modern-table thead {
  background: linear-gradient(90deg, #0b3d91, #1456c5);
  color: white;
}

.modern-table th {
  padding: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: left;
}

.modern-table td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 18px;
  color: #333;
}

/* Zebra stripe */
.modern-table tbody tr:nth-child(even) {
  background: #f8fbff;
}
/* Make accreditation number look official */
.modern-table td:last-child {
  font-family: monospace;
  color: #0b3d91;
  font-weight: 600;
}

/* Hover effect */
/* .modern-table tbody tr:hover {
  background: #eaf3ff;
  transform: scale(1.01);
  transition: 0.2s ease;
} */

