.map-container {
  width: 100%;
  height: 400px;
  justify-content: center;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .map-container {
    margin: 10px 20px;
    width: 95%;
  }
}

@media (max-width: 576px) {
  .map-container {
    margin: 10px 10px;
  }
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #888;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #bbb transparent;
}

.header-right {
  position: relative;
  width: 100%;
  max-width: 200px;
}

.icon-sm {
  width: 18px;
  height: 16px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}

.suggestions {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  border-radius: 6px;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  color: #000;
  transition: background 0.2s ease;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

/* General Styles #f58732 #008080 */
:root {
  --primary-color: #f58732;
  --text-color: #333;
  --light-gray: #f4f4f4;
  --dark-gray: #555;
  --white: #fff;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  margin-top: 5.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  color: var(--text-color);
  margin-bottom: 20px;
}

h2 {
  text-align: center;
  font-size: 2.5em;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
}

a {
  text-decoration: none;
}

.sosmed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin: 0px;
  text-decoration: none;
  transition: 0.3s;
}

.sosmed:hover {
  background-color: #f58732;
  border: 1px solid #f58732;
}

.sosmed svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  stroke-width: 2;
}

.sosmed:hover svg {
  stroke: white;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  background-color: #ffffff;
  color: #f2f2f2;
  border-bottom: 1px solid #55555589;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.header.hidden {
  transform: translateY(-100%);
}

.header.revealed {
  transform: translateY(0);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-left .logo img {
  height: 80px;
  width: auto;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: smaller;
  transition: color 0.3s ease;
}

.nav-menu li a {
  position: relative;

  text-decoration: none;
  display: inline-block;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #f58732;
  transition: width 0.2s ease-in-out;
}

.nav-menu li a:hover {
  color: #f58732;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: #f58732;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  background-color: #ebebeb;
  min-width: 200px;

  z-index: 1;
  border-radius: 8px;
  padding: 0;
  left: -500%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 1.5s ease, transform 0.3s ease,
    max-height 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
  top: 220%;
  text-align: center;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
}

.dropdown-content a {
  color: #f2f2f2;
  padding: 20px 20px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.wed {
  border: 1px solid #55555589;
  border-radius: 5px;
  margin-top: 1px;
  text-align: center;
  padding: 20px;
}

.services-dropdown-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 10px;
  min-width: 350px;
  padding: 20px;
}

.servicess-dropdown-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  min-width: 250px;
  padding: 20px;
}

.services-dropdown-content a {
  white-space: normal;
}

.services-dropdown-content .service-column {
  display: flex;
  flex-direction: column;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-menu .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #232323;
  margin: 5px 0;
  transition: 0.4s;
}

.header-right {
  display: flex;
  align-items: center;
}

.search-box {
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #55555589;
  background-color: #f7f7f7;
  color: #494949;
  font-size: 0.9em;
}

.search-box::placeholder {
  color: #aaa;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 35em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
  max-width: 1400px;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  background-image: url("Desain\ tanpa\ judul\ \(3\).webp");
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("Desain\ tanpa\ judul\ \(3\).webp");
  background-position: center;
  filter: brightness(0.97);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  padding: 20px;
}

.text-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.text-content h1 {
  font-size: 2.6em;
  margin-bottom: 50px;
  text-align: left;
  font-weight: 300;
}

.icon-grid {
  flex: 1.5;
  min-width: 400px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  padding: 20px;
}

.timeline-line {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%);
  z-index: 0;
}

.icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: relative;
  z-index: 1;
}

.icon-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #f58732;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: #eee;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.7s ease, background-color 0.6s ease;
  border: 2px solid white;
}

.icon-label {
  font-size: 1em;
  color: rgb(0, 0, 0);
  opacity: 1;
}

.experience-section {
  background-color: #008080;
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.experience-section h2 {
  color: var(--white);
}

.experience-section h2::after {
  background-color: var(--white);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.fact-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fact-item i {
  font-size: 3em;
  margin-bottom: 0px;
  color: var(--white);
}

.fact-item h3 {
  font-size: 2.5em;
  margin-bottom: 5px;
  color: var(--white);
  margin-top: 6px;
}

.fact-item p {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
}

.partners-section {
  padding: 40px 0;
  text-align: center;
  background-color: #f8f8f8;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
}

.partners-section h2 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 30px;
}

.partner-carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

.partner-carousel-track {
  display: flex;

  will-change: transform;

  min-width: fit-content;
}

.partner-carousel-track img {
  height: 80px;
  width: auto;
  margin: 0 20px;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-carousel-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-carousel::before,
.partner-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 1;
  pointer-events: none;
}

.partner-carousel::before {
  left: 0;
  background: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
}

.partner-carousel::after {
  right: 0;
  background: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
}

@media (max-width: 768px) {
  .partner-carousel-track img {
    height: 60px;
    margin: 0 15px;
  }
  .partner-carousel::before,
  .partner-carousel::after {
    width: 30px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-label {
    font-size: 0.7em;
  }
}

.blog-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.article-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-card h3 {
  padding: 15px;
  font-size: 1.3em;
  margin-bottom: 0;
}

.article-card p {
  padding: 0 15px 15px;
  font-size: 0.95em;
  color: var(--dark-gray);
}

.article-card .read-more {
  display: block;
  padding: 15px;
  text-align: right;
  color: var(--primary-color);
  font-weight: bold;
  border-top: 1px solid #eee;
}

.article-card .read-more:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Tim Ahli */
.team-section {
  padding: 60px 0;
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.team-member {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.team-member .profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--primary-color);
}

.team-member h3 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-member p {
  color: var(--dark-gray);
  font-size: 0.9em;
}

.testimonial-section {
  padding: 60px 20px;
  background: #fff;
  color: #333;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  max-width: 1100px;
  margin: 0 auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  width: 40px;
  height: 40px;
}

.title-text h2 {
  font-size: 1.4rem;
  color: #344054;
  margin: 0;
}

.title-text h3 {
  font-size: 1.8rem;
  color: #f58732;
  margin: 6px 0 0;
}

.view-all-btn {
  background-color: none;
  color: var(--dark-gray);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: 1px solid #55555589;
}
.view-all-btn:hover {
  background-color: #f58732;
  color: white;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.testimonial-card {
  border: 1px solid #55555589;
  color: var(--dark-gray);
  border-radius: 16px;
  padding: 30px 25px;
  width: 300px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.quote-icon {
  width: 40%;
  height: 24px;
  margin-bottom: 10px;
}

.testimonial-card p {
  flex-grow: 0.5;
  font-size: 1rem;
  line-height: 1.6;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.person span {
  font-size: 0.9rem;
  color: #b9b7b7;
}

/* Footer */
.footer {
  background-color: #222;
  color: var(--white);
  padding: 40px 0 20px;
  font-size: 0.9em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 180px;
  margin: 15px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.2em;
}

.social-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 10px;
  margin-top: 10px;
}

.social-icons-grid a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  color: #ecf0f1;
  font-size: 1.3em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons-grid a:hover {
  background-color: #f58732;
  color: #fff;
}

@media (max-width: 768px) {
  .footer-col {
    min-width: 150px;
  }
  .social-icons-grid {
    max-width: 120px;
    justify-content: center;
    margin: 0 auto;
  }
  .social-icons-grid a {
    width: 55px;
    height: 55px;
    font-size: 1.1em;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .hero-content {
    gap: 0;
  }

  .icon-grid {
    gap: 0;
    padding: 0;
    min-width: 350px;
    margin-top: 50px;
  }

  .text-content h1 {
    margin-bottom: 0;
    text-align: center;
  }

  .timeline-line {
    top: 40%;
  }

  .hero-content h1 {
    font-size: 2em;
    margin-top: 5rem;
  }

  .hero-content p {
    font-size: 1.2em;
  }

  .facts-grid,
  .article-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partner-carousel,
  .testimonial-carousel {
    justify-content: flex-start;
  }

  .testimonial-item {
    min-width: 280px;
  }

  h2 {
    font-size: 2em;
  }

  .topbar {
    display: none;
  }
}

/* Topbar #f58732 */
.topbar {
  background-color: #008080;
  color: var(--white);
  padding: 4px 0;
  font-size: 0.9em;
  font-weight: bold;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-social a {
  color: var(--white);
  margin-left: 15px;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.topbar-social a:hover {
  color: var(--secondary-color);
}

.counter {
  font-size: 2rem;
  font-weight: bold;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding-left: 0.5rem;
}

.about-text {
  flex: 1;
  min-width: 350px;
  color: var(--dark-gray);

  padding: 2rem;
  border-radius: 7px;
}

.about-text h3 {
  font-size: 1.6rem;

  margin-bottom: 1rem;
  color: rgb(81, 80, 80);
  display: flex;
  justify-content: flex-start;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: left;
}

.about-illustration {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.5rem;

    justify-content: center;
  }

  .about-text p {
    font-size: 0.95rem;
    text-align: justify;
    padding: 0.5rem;
  }

  .about-illustration img {
    padding: 0;
    width: 100%;
  }

  .about-text {
    padding: 0;
    min-width: 250px;
  }
}

/* f */

.true-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;

  color: #f1f1f1;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
}

.true-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.true-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.true-item {
  display: flex;
  padding: 1rem;
  border-radius: 10px;
  align-items: center;
  gap: 1rem;
  transition: all 0.5s ease;
  border-bottom: 1px solid #55555589;
  margin-bottom: 2rem;
}

/* #f58732 #008080 */
.true-item:hover {
  transform: scale(1.01);
}

.true-icoon {
  width: 78px;
  height: 78px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(6, 6, 6);
  flex-shrink: 0;
  border: 1px solid #55555589;
  background-color: #ffffff;
}

.true-text h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.simpang {
  justify-content: flex-end;
}

.true-text p {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

@media screen and (max-width: 600px) {
  .true-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .true-icoon {
    margin-bottom: 0.5rem;
  }
}

.true-hidden {
  overflow: hidden;
  max-height: 0;
  display: none;
  transition: all 0.5s ease;
}

.true-hidden.show {
  max-height: 500px;
  display: flex;
}

.true-btn-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}

.true-button {
  background-color: #ffffff;
  color: rgb(24, 24, 24);
  border: 1px solid #55555589;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.true-button:hover {
  background-color: #c0bfbf;
  color: #f58732;
}

/* newss */
.team-section {
  padding: 60px 20px;
  background: #ffffff;
  color: rgb(46, 46, 46);
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.team-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 900px;
  margin: auto;
  flex-wrap: wrap;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: rgb(141, 139, 139);
  background: none;
  padding: 0.4rem 1rem;
  cursor: pointer;
  z-index: 5;
  user-select: none;
  border-radius: 50%;
}

.prev {
  left: 0;
  transform: translateY(-50%) translateX(calc(-100% - 1rem));
}

.next {
  right: 0;
  transform: translateY(-50%) translateX(calc(100% + 1rem));
}

@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
    align-items: center;

    max-width: 95%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .nav-btn {
    font-size: 1.5rem;
    padding: 0.3rem 0.8rem;
    top: 30%;
  }

  .prev {
    left: 0.5rem;
    transform: translateY(-50%);
  }

  .next {
    right: 0.5rem;
    transform: translateY(-50%);
  }
}

@media (max-width: 480px) {
  .prev {
    left: 0.2rem;
  }
  .next {
    right: 0.2rem;
  }
}

.team-section {
  background-color: #eceaea;
}

.outer-box {
  display: flex;
  flex-direction: column;
  flex: 1 1 350px;
  background: #eff1f1;
  padding: 1px;
  border: 1px solid #55555589;
  border-radius: 16px;
  min-height: 460px;
}

.outer-box.text-side {
  flex: 1.2;
}
.outer-box.photo-side {
  flex: 1;
}

.inner-box {
  background: #ffffff;
  border: 1px solid #55555589;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  height: 100%;
}

.photo-box-small {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-photo {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px #ffffff20;
}

.nav-btn:hover {
  color: #f58732;
}

.text-box .team-name {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: #3f3f3f;
}

.prestasi-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prestasi-box {
  background: #ffffff;

  border-radius: 10px;
  border: 1px solid #55555589;
  box-shadow: 0 0 6px #00000020;
  transition: transform 0.3s ease;
}

.prestasi-box:hover {
  transform: scale(1.01);
}

.prestasi-box:hover p {
  color: #f58732;
}

.prestasi-box:hover strong {
  color: #f58732;
}

@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
  }

  .team-photo {
    width: 100%;
  }
}

.indicator-container {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.indicator-container .dot {
  width: 5px;
  height: 5px;
  background-color: #51515140;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.indicator-container .dot.active {
  background-color: #f58732;
}

.team-photo {
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: scale(0.98);
}

.team-photo.show {
  opacity: 1;
  transform: scale(1);
}

#prestasi-list {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#prestasi-list.show {
  opacity: 1;
  transform: translateY(0);
}

.team-container > .outer-box:first-child {
  border: none !important;
}

.team-container > .outer-box:first-child .inner-box {
  border: none !important;
}
/* tee */
.hamburger-menu,
.mobile-popup-overlay {
  display: none;
}

@media (max-width: 991px) {
  .header .container {
    display: block;
  }

  .true-list {
    max-height: none;
    overflow-y: hidden;
    overflow-x: hidden;
  }

  .topbar {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
    position: relative;
    margin-left: auto;
    z-index: 1001;
  }

  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-popup-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);

    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  }

  .mobile-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-popup-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 70%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;

    transform: scale(0.9);
    transition: transform 0.3s ease-out;
  }

  .mobile-popup-overlay.active .mobile-popup-content {
    transform: scale(1);
  }

  .close-popup-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #333;
  }

  .mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .mobile-nav-menu li {
    border-bottom: 1px solid #eee;
  }

  .mobile-nav-menu li:last-child {
    border-bottom: none;
  }

  .mobile-nav-menu li a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 15px 10px;
    display: flex;
    transition: background-color 0.3s ease;
  }

  .mobile-nav-menu li a:hover {
    background-color: #f0f0f0;
  }

  .dropdown-mobile {
    position: relative;
  }

  .dropdown-mobile > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 20px;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav-menu li {
    border-bottom: none;
  }
  .mobile-nav-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-toggle-mobile {
    display: block;
    flex-shrink: 0;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
  }

  .dropdown-toggle-mobile[aria-expanded="true"] {
    transform: rotate(180deg);
  }

  .dropdown-content-mobile {
    position: static;
    background-color: #f8f8f8;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    width: 100%;
    padding: 0;
  }

  .dropdown-content-mobile.active {
    max-height: 1000px;
    padding: 10px 0;
  }

  .dropdown-content-mobile a {
    padding: 10px 30px;
    color: var(--text-color);
    font-weight: normal;
    text-align: left;
  }

  .dropdown-content-mobile a:hover {
    background-color: #e8e8e8;
  }

  .services-dropdown-content-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: unset;
    padding: 0;
  }

  .services-dropdown-content-mobile .service-column-mobile {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
  }

  .services-dropdown-content-mobile .service-column-mobile:last-child {
    border-bottom: none;
  }

  .header-right {
    order: 2;
    margin: 0 auto;
    margin-top: 0.3rem;
  }

  .logo {
    margin: 0 auto !important;
    border-bottom: 1px solid #008080;
  }

  .mobile-contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
  }

  .mobile-contact-info .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    padding: 8px 0;
    font-size: 1em;
  }

  .mobile-contact-info .contact-item i {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    stroke: var(--dark-gray);
    stroke-width: 2;
  }

  .mobile-contact-info .contact-item:hover {
    color: #f58732;
  }

  .mobile-contact-info .contact-item:hover i {
    stroke: #f58732;
  }

  .mobile-contact-info .certification-logo {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
  }

  .mobile-contact-info .certification-logo img {
    max-width: 120px;
    height: auto;
  }

  .mobile-popup-content {
    padding-bottom: 20px;
  }
}

.header-right .suggestions {
  display: none !important;
}

*baseforuniqueclasses: hospital-news-v2- * / .hospital-news-v2-container {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.hospital-news-v2-container {
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
  padding: 2rem;
}

.hospital-news-v2-search-section {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  position: relative;
}

.hospital-news-v2-search-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.hospital-news-v2-search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.hospital-news-v2-search-results-dropdown.show {
  display: block;
}

.hospital-news-v2-search-result-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  color: #333;
  text-decoration: none;
  display: block;
}

.hospital-news-v2-search-result-item:last-child {
  border-bottom: none;
}

.hospital-news-v2-search-result-item:hover {
  background-color: #f0f0f0;
  color: #ee5b30;
}

.hospital-news-v2-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  width: 100%;
}

.hospital-news-v2-column {
  padding: 0 15px;
  flex: 0 0 50%;
  max-width: 50%;
  box-sizing: border-box;
}

.hospital-news-v2-column-inner {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding-bottom: 20px;
  min-height: 350px;
}

.hospital-news-v2-wrapper {
  padding: 0;
}

.hospital-news-v2-fancy-separator {
  width: 100%;
  position: relative;
}

.hospital-news-v2-fancy-title {
  color: #ffffff;
  background-color: #f58732;
  padding: 10px 15px;
  font-size: 1.1em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hospital-news-v2-fancy-title::before,
.hospital-news-v2-fancy-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background-color: #e0e0e0;
  width: 50%;
  z-index: 0;
}

.hospital-news-v2-fancy-title::before {
  left: 0;
  margin-left: -50%;
}

.hospital-news-v2-fancy-title::after {
  right: 0;
  margin-right: -50%;
}

.hospital-news-v2-separator-holder {
  position: absolute;
  height: 0px;
  background-color: #e0e0e0;
  top: 50%;
  transform: translateY(-50%);
  width: 1000px;
  z-index: 0;
}

.hospital-news-v2-separator-left {
  left: -980px;
  background-color: #e0e0e0;
}

.hospital-news-v2-separator-right {
  right: -980px;
  background-color: #e0e0e0;
}

.hospital-news-v2-fancy-title {
  position: relative;
  z-index: 2;

  padding-left: 25px;
  padding-right: 25px;
}

.hospital-news-v2-empty-space {
  height: 3rem;
}

.hospital-news-v2-items-grid {
  padding: 0 15px;
}

.hospital-news-v2-post-format-standard {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.hospital-news-v2-mini-post-img {
  flex-shrink: 0;
  margin-right: 15px;
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.hospital-news-v2-mini-post-img a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.hospital-news-v2-mini-post-img img.hospital-news-v2-preload-me {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.3s ease;
}

.hospital-news-v2-mini-post-img a i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hospital-news-v2-mini-post-img a:hover i {
  opacity: 1;
}

.hospital-news-v2-mini-post-img a:hover img.hospital-news-v2-preload-me {
  transform: scale(1.05);
}

.hospital-news-v2-mini-post-img.hospital-news-v2-no-avatar {
  width: 0;
  height: 0;
  margin-right: 0;
  visibility: hidden;
  overflow: hidden;
}

.hospital-news-v2-mini-post-img.hospital-news-v2-no-avatar a {
  display: none;
}

.hospital-news-v2-post-content {
  flex-grow: 1;
}

.hospital-news-v2-post-content a {
  color: #333;
  text-decoration: none;
  font-size: 1em;
  line-height: 1.4;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 5px;
  transition: color 0.2s ease-in-out;
}

.hospital-news-v2-text-secondary {
  font-size: 0.85em;
  color: #767676;
  display: flex;
}

.hospital-news-v2-post-content a:hover {
  color: #f58732;
}

.hospital-news-v2-btn-container {
  text-align: right;
  padding: 0 15px;
}

.hospital-news-v2-btn-right {
  text-align: right;
}

.hospital-news-v2-general-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85em;
  padding: 12px 12px;
  border-radius: 0;
  background-color: #ffffff;
  color: #000;
  border: 1px solid #a7a5a5;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  gap: 5px;
  border-radius: 10%;
  margin: 0 auto;
  margin-top: 2rem;
  font-weight: 600;
}

.hospital-news-v2-general-btn:hover {
  background-color: #c0bfbf;
  color: #f58732;
}

.hospital-news-v2-btn-icon {
  font-size: 0.9em;
  line-height: 1;
}

@media (max-width: 768px) {
  .hospital-news-v2-row {
    flex-direction: column;
    margin: 0;
  }

  .hospital-news-v2-column {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .hospital-news-v2-column:last-child {
    margin-bottom: 0;
  }

  .hospital-news-v2-fancy-separator,
  .hospital-news-v2-btn-container {
    padding: 0;
  }
}

.hospital-news-v2-search-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0px;
}

.hospital-news-v2-search-modal.active {
  display: flex;
}

.hospital-news-v2-modal-footer-logo {
  text-align: center;
  padding-top: 10px;
  flex-shrink: 0;
}

.hospital-news-v2-footer-logo-img {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hospital-news-v2-search-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s ease-out;
  margin-top: 10rem;

  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.hospital-news-v2-modal-search-input {
  padding: 11px 1px;

  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.1em;
  box-sizing: border-box;
  flex-shrink: 0;

  flex-grow: 0.93;
}

.hospital-news-v2-modal-search-btn {
  background-color: #ee5b30;
  color: white;
  border: none;
  padding: 13px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.hospital-news-v2-modal-search-btn:hover {
  background-color: #d14a27;
}

.hospital-news-v2-modal-search-input-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.hospital-news-v2-modal-search-results {
  max-height: 100px;
  overflow-y: auto;
  border: 1px solid #eee;
  border-radius: 5px;
  background-color: #fff;
  flex-grow: 1;
  margin-bottom: 15px;

  min-height: 200px;

  padding: 0;
  margin: 0;

  &::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
  }

  scrollbar-width: none;

  -ms-overflow-style: none;
}

.hospital-news-v2-modal-search-result-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  transition: background-color 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.hospital-news-v2-modal-search-result-item:last-child {
  border-bottom: none;
}

.hospital-news-v2-modal-search-result-item:hover {
  background-color: #f5f5f5;
  color: #ee5b30;
}

.hospital-news-v2-modal-search-result-item.appeared {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hospital-news-v2-close-button {
  color: #aaa;
  float: right;
  font-size: 38px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hospital-news-v2-close-button:hover,
.hospital-news-v2-close-button:focus {
  color: #333;
  text-decoration: none;
}

.hospital-news-v2-modal-search-result-item-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 3px;
  margin-right: 15px;
  flex-shrink: 0;
}

.hospital-news-v2-modal-search-result-item-title {
  font-size: 1em;
  font-weight: normal;
  flex-grow: 1;
}

.hospital-news-v2-post-format-standard:last-of-type {
  border-bottom: none;
}

@media (max-width: 768px) {
  .hospital-news-v2-search-modal-content {
    width: 80%;
    margin-top: 5rem;
  }

  .hospital-news-v2-modal-search-input {
    font-size: 1em;
    flex-grow: 0.5;
  }

  .hospital-news-v2-modal-search-result-item {
    padding: 8px 10px;
  }

  .hospital-news-v2-modal-search-result-item-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

.our-news-separator-section {
  width: 100%;
  margin-bottom: 40px;
  background-color: #008080;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.our-news-separator-content h1 {
  font-size: 40px;
  margin: 0;
  padding: 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

@media (max-width: 768px) {
  .our-news-separator-section {
    margin: 20px 0;
    padding: 15px 0;
  }
  .our-news-separator-content h1 {
    font-size: 30px;
  }
}

.simple-separator {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.simple-separator .line-left,
.simple-separator .line-right {
  flex-grow: 1;
  height: 2px;
  background-color: #51515140;
}

.simple-separator .text {
  font-size: 1.6em;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--dark-gray);
  padding: 0 20px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .simple-separator .text {
    font-size: 1em;
    padding: 0 10px;
  }

  .content-wrapper {
    display: block !important;
  }
}

.content-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 4rem auto 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.main-content {
  flex: 3;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-content {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.sidebar-button-wrapper {
  text-align: center;
  margin-top: 25px;
}

.view-more-btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.view-more-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.view-more-btn i {
  margin-left: 8px;
}

.related-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-post-item {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: #333;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.related-post-item:hover {
  color: #007bff;
}

.related-post-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 1rem;
}

.related-post-text {
  flex-grow: 1;
}

.related-post-title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}

.related-post-date {
  font-size: 0.85em;
  color: #7f8c8d;
}

.post-thumbnail {
  height: auto;
  background-color: #4d4b4b49;
}

.post-thumbnail img {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  display: flex;
}
/* neews */

.timeline-section {
  text-align: center;
  margin-bottom: 10rem;
}

.section-title {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #6a1b9a;
  border-radius: 2px;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-container::before {
  content: "";
  position: absolute;
  width: 4px;
  background-image: linear-gradient(to bottom, #a8a7a9, #ada9a7);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 2px;
}

.timeline-entry {
  display: flex;
  justify-content: space-between;

  position: relative;
  align-items: center;
}

.timeline-entry:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-entry:nth-child(even) {
  flex-direction: row;
}

.timeline-icon-dot {
  width: 50px;
  height: 50px;
  border: 2px solid #494949;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  font-size: 1.5em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 15px rgba(45, 45, 45, 0.315);
  background-color: #fff;
}

.timeline-entry:hover .timeline-icon-dot {
  background-color: #f58732;
  color: #fff;
  transition: all 0.3s ease;
  border: #f58732;
}

.timeline-entry:hover .timeline-label {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.timeline-label {
  border: 1px solid #494949;

  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  width: calc(45% - 70px);
  position: relative;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-entry:nth-child(odd) .timeline-label {
  margin-right: auto;
}

.timeline-entry:nth-child(even) .timeline-label {
  margin-left: auto;
}

.timeline-entry:nth-child(odd) .timeline-label::before {
  left: 100%;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #2d2d4d;
}

.timeline-entry:nth-child(even) .timeline-label::before {
  right: 100%;
  border-width: 15px 15px 15px 0;
  border-color: transparent #2d2d4d transparent transparent;
}

.timeline-date {
  font-size: 1.1em;
  font-weight: 600;
  color: #9c27b0;
  margin-bottom: 5px;
}

.timeline-label h3.counter {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 5px;
  line-height: 1.2;
}

.timeline-event {
  font-size: 1em;
  line-height: 1.5;
  color: var(--dark-gray);
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
    transform: none;
  }

  .timeline-section {
    margin-bottom: 3rem;
  }

  .timeline-entry {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    display: block;
  }

  .timeline-icon-dot {
    position: relative;
    left: 10%;
    transform: none;
    margin-left: 0px;
    margin-bottom: 15px;
  }

  .timeline-label {
    width: calc(70% - 40px);
    margin-left: 40px;
    text-align: left;
    padding: 25px 30px;
  }

  .timeline-entry:nth-child(odd) .timeline-label,
  .timeline-entry:nth-child(even) .timeline-label {
    margin-right: 0;
    margin-left: 40px;
  }

  .timeline-label::before {
    top: 20px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #2d2d4d transparent transparent;
  }

  .timeline-entry:nth-child(odd) .timeline-label::before,
  .timeline-entry:nth-child(even) .timeline-label::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent #2d2d4d transparent transparent;
  }
}

/* 
 */

.event-card {
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 10px;

  overflow: hidden;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.event-card img {
  width: 320px;
  object-fit: cover;
  border-radius: 10px;
  max-height: 200px;
}

.event-info {
  flex: 1;
  padding: 20px;
}

.event-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.event-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.event-deskripsi {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.event-button {
  display: inline-block;
  border: 1px solid var(--dark-gray);
  color: #484646;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.event-button:hover {
  background: #b2b2b2;
  color: #f58732;
  border: 1px solid #b2b2b2;
}

/* Selang-seling layout */
.event-card.alternate-right {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .event-card,
  .event-card.alternate-right {
    flex-direction: column;
  }

  .event-card img {
    width: 90%;
    border-radius: 10px 10px 0 0;
  }
}
