.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero {
  position: relative;
  width: 100%;
  height: 520px;
  background: url("../assets/images/kantor\ luar.jpg") center/cover no-repeat;
  background-position-y: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-bottom: 0;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 60, 0.4);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 8%;
}

.hero-content-about {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hero-line {
  display: flex;
  align-content: center;
  align-items: center;
  text-align: center;
  width: 4px;
  height: calc(100% + 20px);
  background-color: #0d6dc1;
  border-radius: 2px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-content: center;
  height: 100%;
  margin-top: 10px;
}

.hero-text h2 {
  text-align: start;
  color: var(--color-accent-lighter);
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-text h1 {
  text-shadow: none;
  text-align: start;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.btn-hero {
  text-align: left;
  display: block;
  width: fit-content;
  background-color: var(--color-accent-lighter);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: #ffffff;
  color: var(--color-accent-lighter);
}

.about-hero p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #f0f0f0;
}

.section-nav {
  position: absolute;

  top: 68%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff6d;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  z-index: 10;
}

.section-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: var(color-text-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-nav .nav-item i {
  font-size: 16px;
}

.section-nav .nav-item.active {
  background-color: var(--color-accent);
  color: #fff;
}

.section-nav .nav-item:hover:not(.active) {
  background-color: rgba(0, 91, 172, 0.3);
}

.content-section {
  margin-top: 50px;
  display: none;
  animation: fadeIn 0.4s ease;
}

.content-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-about {
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: var(--color-text-dim);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vm-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.vm-card {
  background: var(--color-card-bg);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
}

.vm-card:hover {
  background: var(--color-card-hover-bg);
  color: var(--color-card-hover-text);
  transform: translateY(-5px);
}

.vm-card h3 {
  color: var(--color-accent);
  margin-bottom: 15px;
}

.vm-card ul {
  padding-left: 20px;
  color: var(--color-text-dim);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.value-card {
  background: var(--color-card-bg);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-dark);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background: var(--color-card-hover-bg);
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--color-accent);
}

#team-about {
  text-align: start;
}

#team-about .container {
  max-width: 1600px;
}

#team-about h2 {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 50px;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  gap: 30px;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  border-radius: 16px;

  overflow: hidden;

  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 110%;
  height: 260px;
  object-fit: cover;
}

.team-card .info {
  padding: 20px 5px 25px;
}

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.team-card p {
  color: var(--color-text-dim);
  font-size: 0.95rem;
  margin: 0;
}



.partners {
  padding: 60px 0;
  text-align: center;
  background-color: #f9f9f9;
  overflow: hidden;
}

.partners h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.partners-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.partners-track {
  display: flex;
  width: calc(350px * 8 + 1.5rem * 8);
  animation: scrollLoop 40s linear infinite;
}

.partner-card {
  flex: 0 0 350px;
  background: #fff;
  border-radius: 20px;
  padding: 10px 25px 25px 25px;
  margin-right: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.partner-card img {
  filter: grayscale(100);
  width: 200px;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0);
}


.partner-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.container-about {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.history-about h2 {
    font-size: 2em; 
    text-align: center; 
    margin-bottom: 40px; 
    color: var(--color-accent);
}

.content-wrapper-about {
    display: flex;
    gap: 80px; 
    align-items: flex-start; 
}

.timeline-container-about {
    width: 200px;
    position: relative;
    padding-left: 0;
    border-right: none; 
}

.timeline-line-about {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px; 
    width: 4px;
    background-color: #D1D5DB; 
    transform: none;
    z-index: 1; 
}

.timeline-item-about {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: flex-start; 
    padding-left: 60px;
    padding-right: 0;
}

.timeline-item-about:hover {
    color: var(--color-accent);
}

.timeline-dot-about {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-accent); 
    border: 3px solid #E5E7EB; 
    position: absolute;
    left: 12px; 
    z-index: 2;
    transition: all 0.3s ease;
}

.year-text-about {
    font-size: 2em;
    font-weight: 600;
    color: var(--color-text-dim);
    transition: color 0.3s ease;
}

.timeline-item-about.active-timeline-about .timeline-dot-about {
    width: 22px;
    height: 22px;
    left: 11px;
    background-color: var(--color-accent);
    border-color: var(--color-card-bg);
}

.timeline-item-about.active-timeline-about .year-text-about {
    color: var(--color-accent);
    font-weight: 700;
}


.main-content-about {
    flex: 1; 
    min-width: 60%;
    margin-left: 100px;
    animation: fadeIn 0.5s ease;
}

.bordered-content-about {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    background-color: #fff;
    box-shadow: var(--shadow-dark);
}

.foto-container-about {
    background-color: var(--color-card-bg);
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 8px;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-container-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.foto-container-about span {
    color: var(--color-text-dim);
    font-weight: 700;
    font-size: 1.5em;
    text-align: center;
}

.text-area-about {
    padding-top: 10px;
}

.judul-about {
    font-size: 2em;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 15px;
    text-align: start;
}

.deskripsi-about {
    font-size: 1.05em;
    color: var(--color-text-dim);
    line-height: 1.7;
    text-align: start;
}

.cta {
  background: linear-gradient(135deg, #005bac, #007bff);
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 40px;
  margin-top: 60px;
  box-shadow: var(--shadow-dark);
}

.cta h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta p {
  color: #f0f0f0;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #005bac;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-card-hover-bg);
  color: var(--color-card-hover-text);
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2em;
  }

  .vm-wrapper {
    flex-direction: column;
    align-items: center;
  }
}