body {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: var(--text-dark);
}


/* Hero Section */
.hero {
  width: 100%;
  height: 780px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

.hero .hero__swiper {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.hero .hero__swiper .swiper-slide img {
  width: 100%;
  pointer-events: none;
  user-select: none;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: start;
  top: 50%;
  transform: translateY(-50%);
  padding-top: 3rem;
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  margin-bottom: 1.5rem;
}

.hero__search {
  position: relative;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.hero__search input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  border-radius: 8px;
}

.hero__search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero__search button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.hero__search-suggestions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__search-suggestions-list {
  display: flex;
  list-style: none;
  padding-left: 0;
  gap: 16px;
  overflow: hidden;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.hero__search-suggestions-list .swiper-slide {
  width: fit-content;
}

.hero__search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__search-header-arrow {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__search-header-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.hero__search-suggestion {
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: white;
  text-decoration: none;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 12px;
  width: fit-content;
}

.hero__search-suggestion:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Hero Section */


/* News Section */
.news-section {
  margin-top: -5rem;
  position: relative;
  margin-bottom: 5rem;
}

.news-section__wrapper {
  position: relative;
  z-index: 2;
  background-color: white;
  padding: 3rem;
  border-radius: 1rem;
}

.news-section__wrapper .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.news-section .news-section__slide {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}

.news-section .news-section__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-section .news__content {
  height: 260px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: white;
  display: flex;
  flex-direction: column;
}


.news-section .news__content .news__title {
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 28px;
  text-decoration: none;
  color: white;
}

.news__content .news__date {
  font-size: 14px;
}

.news-section__small-news-image {
  width: 75px;
  height: 75px;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}

.news__content .swiper-button-disabled.prev,
.news__content .swiper-button-disabled.next {
  opacity: 0.3;
  pointer-events: none;
}

.news-section__small-news-list {
  height: 550px;
  overflow-y: auto;
}

.news-section__small-news {
  padding: 1rem;
  border: 1px solid transparent;
  display: block;
  text-decoration: none;
  color: var(--text-dark);
}

.news-section__small-news .news__title {
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-section__small-news:hover {
  background-color: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  border-radius: 0.45rem;
}

.news-section__small-news:hover {
  color: var(--bs-primary);
  background-color: rgba(52, 90, 219, 0.05);
  border: 1px solid var(--bs-primary);
}

/* News Section */

/* Banner */
.banner-section {
  position: relative;
}

.banner-section__wrapper {
  height: 350px;
  margin-bottom: 5rem;
}

.banner-section__wrapper .banner-section__item {
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.banner-section__wrapper .banner-section__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 10;
  position: relative;
}

.banner-section__wrapper .banner-section__item img.overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.5;
}

.banner-section .swiper-pagination {
  bottom: -30px !important;
}

/* Banner */

/* Layanan Section */
.layanan-section {
  padding: 6rem 0;
  background-color: var(--bs-white);
}

.layanan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 0;
  list-style: none;
  gap: 1rem;
}

.layanan__item {
  border-radius: 0.65rem;
  padding: 1.25rem;
  color: var(--text-dark);
  border: 1px solid transparent;
  background-color: var(--bs-body-bg);
}

.layanan__item i {
  color: color-mix(in srgb, var(--text-dark), transparent 60%);
  font-size: 1.25rem;
}

.layanan__item h6 {
  text-decoration: none;
  color: var(--text-dark);
  gap: 1rem;
  font-weight: 600;
}

.layanan__item p {
  opacity: 0.75;
}

.layanan__item:hover {
  background-color: rgba(52, 90, 219, 0.05);
  cursor: pointer;
  color: var(--bs-primary);
  border: 1px solid var(--bs-primary);

}

.layanan__item:hover h6,
.layanan__item:hover i {
  color: var(--bs-primary);
}

/* Layanan Section */

/* Capaian Section */
.capaian-section {
  /* margin-bottom: 5rem; */
  background-color: var(--bs-primary);
}

.capaian {
  padding: 5rem 0;
  color: white;
  text-align: center;
}

.capaian__numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem;
}

.capaian__number {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.capaian__number-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}




/* News Page */
.news-header {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
}

.news-header__background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.news-header__background .background__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-header__background .background__overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.85);

}

.news-header__content {
  position: relative;
  z-index: 2;
  color: white;
  height: 100%;
  padding: 11rem 0rem 4rem 0rem;
}

.news__meta {
  font-size: 14px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.news__statistic {
  display: flex;
  gap: 1.5rem;
}

.statistic__icon {
  font-size: 1rem;
  opacity: 0.8;
  height: 32px;
  width: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  border-radius: 100px;
}

.news__statistic-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
}

.statistic {
  display: flex;
  font-size: 14px;
  flex-direction: column;
}

.statistic .statistic__value {
  font-size: 1rem;
  font-weight: 500;
  opacity: 1;
  color: white;
}

.statistic .statistic__label {
  font-size: 0.75rem;
  opacity: 0.8;
  color: white;
}

.news-content {
  margin-top: 4rem;
  margin-bottom: 8rem;
}

.news-content__article {
  font-size: 1.125rem;
  text-align: justify;
}


.news-content__article figure>img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  height: auto;
}

.news-content__related-news {
  position: sticky;
  top: 8rem;
  height: fit-content;
}

/* News Page */


/* Program Keahlian */
.main-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.main-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.main-description {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 30px;
  text-align: justify;
  line-height: 1.8;
}

.competency-list {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.competency-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.competency-list ul {
  list-style: none;
}

.competency-list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #495057;
  line-height: 1.6;
}

.competency-list li::before {
  content: '•';
  color: var(--bs-primary);
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: 0;
}

.activities-section {
  background: white;
}

.activities-title {
  background: var(--bs-primary);
  color: white;
  font-size: 1.4em;
  font-weight: 800;
  padding: 15px 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-page {
  margin-bottom: 2rem;
}

.programs-section {
  background: var(--bs-light);
  border-radius: 15px;
  padding: 30px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.program-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  border: 1px solid #e9ecef;
  z-index: 2;
}

.program-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -5px;
  width: 10px;
  background-color: var(--bs-yellow);
  top: 30px;
  bottom: 30px;
  border-radius: 10px;
}

.program-number {
  font-size: 1.5em;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.program-title {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.program-description {
  color: #495057;
  line-height: 1.6;
  font-size: 0.95em;
}

.info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.info-box {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.jp-box {
  background: #28a745;
  color: white;
}

.program-box {
  background: #28a79c;
  color: white;
}

@media (max-width: 768px) {
  .info-boxes {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 10px;
    max-width: 100%;
  }

  .main-section {
    padding: 25px;
  }
}

/* Program Keahlian */

/* Ship Simulator Gallery */
.ship-simulator-gallery .gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

/* Ship Simulator Gallery */

/* Daftar Kepala */
.daftar-kepala {
  display: grid;
  gap: 1.5rem;
}

.daftar-kepala .daftar-kepala__item {
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 1rem;
  background-color: var(--bs-light);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.daftar-kepala .daftar-kepala__year {
  padding: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  min-width: 80px;
  /* color: var(--bs-primary); */
  /* border-right: 1px solid var(--bs-gray-300); */
  color: white;
  background-color: var(--bs-primary);
  width: 25%;
}

.daftar-kepala .daftar-kepala__name {
  padding: 1.5rem;
  text-align: left;
  width: 75%;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Daftar Kepala */


/* Daftar Pejabat Struktural */
.daftar-pejabat-struktural {
  display: grid;
  gap: 1.5rem;
}

.daftar-pejabat-struktural .daftar-pejabat-struktural__item {
  display: flex;
  border-radius: 1rem;
  flex-direction: column;
  background-color: var(--bs-light);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.daftar-pejabat-struktural .daftar-pejabat-struktural__info {
  padding: 1.5rem;
}

.daftar-pejabat-struktural .daftar-pejabat-struktural__img {
  padding: 1.5rem;

  width: 200px;
}

.daftar-pejabat-struktural__item:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}


@media screen and (min-width: 900px) {
  .daftar-pejabat-struktural .daftar-pejabat-struktural__img {
    padding: 0;
  }

  .daftar-pejabat-struktural .daftar-pejabat-struktural__item {
    flex-direction: row;
  }
}

/* Daftar Pejabat Struktural */


/* Mitra */
.mitra-section {
  margin-bottom: 2.5rem;
}

.industry-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #3498db;
  display: inline-block;
}

.companies-text {
  font-size: 1.15rem;
  color: #555;
  line-height: 2.1;
  text-align: justify;
  background: white;
  padding: 1.7rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.2rem;
}

.company-name {
  font-weight: 700;
  color: #2c3e50;
  font-size: 1em;
}

.company-number {
  color: #7f8c8d;
  font-size: 1rem;
}

/* Mitra */
