.company-dashboard {
  background: #f8fafc;
}

section {
  padding: 80px 8%;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 50px;
  font-size: 16px;
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../gambar/gambar_aro.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-section .hero-content h1 {
  font-size: 64px;
  margin: 20px 0;
}
.hero-section .hero-content p {
  font-size: 22px;
}

.badge {
  display: inline-block;
  background: #25a888;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.hero-buttons button {
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #25a888;
  color: white;
  transition: 0.3s;
}
.hero-buttons button:hover {
  background: #1d8a6f;
}
.hero-buttons .outline {
  background: transparent;
  border: 2px solid white;
}
.hero-buttons .outline:hover {
  background: white;
  color: #1e293b;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.about-grid div {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.about-grid div h3 {
  margin-bottom: 15px;
  color: #1e293b;
}
.about-grid div p,
.about-grid div li {
  color: #64748b;
  line-height: 1.8;
}

.registration-section {
  background: #f8fafc;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.registration-card {
  background: white;
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.registration-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 168, 136, 0.15);
}
.registration-card h3 {
  margin: 20px 0 15px;
  color: #1e293b;
  font-size: 24px;
}
.registration-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 25px;
}
.registration-card a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  background: #25a888;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.registration-card a:hover {
  background: #1d8a6f;
}

.registration-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(37, 168, 136, 0.1);
  font-size: 42px;
}

.stats-section {
  background: #25a888;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  color: white;
}
.stat-card h2 {
  font-size: 48px;
  margin-bottom: 10px;
}
.stat-card span {
  font-size: 16px;
}

.service-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 35px 30px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 168, 136, 0.15);
}
.service-card:hover .service-icon {
  background: #25a888;
  color: white;
  transform: rotate(8deg);
}
.service-card h3 {
  margin-top: 20px;
  margin-bottom: 12px;
  color: #1e293b;
  font-size: 22px;
  font-weight: 700;
}
.service-card p {
  color: #64748b;
  line-height: 1.8;
  font-size: 15px;
}

.service-icon {
  width: 85px;
  height: 85px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(37, 168, 136, 0.1);
  color: #25a888;
  font-size: 36px;
  transition: 0.35s ease;
}

@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 25px;
  }
  .service-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.facility-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #edf2f7;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}
.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 168, 136, 0.15);
}
.facility-card:hover .facility-icon {
  background: #25a888;
  color: white;
  transform: rotate(8deg);
}
.facility-card h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #1e293b;
  font-size: 22px;
  font-weight: 600;
}
.facility-card p {
  color: #64748b;
  line-height: 1.8;
}

.facility-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(37, 168, 136, 0.1);
  color: #25a888;
  font-size: 38px;
  transition: 0.35s ease;
}

@media (max-width: 992px) {
  .service-grid,
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .service-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }
  .facility-card {
    padding: 25px;
  }
  .facility-icon {
    width: 75px;
    height: 75px;
    font-size: 32px;
  }
}
.news-section {
  background: #f8fafc;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
}
.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 168, 136, 0.15);
}
.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}

.news-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #25a888;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.news-content {
  padding: 25px;
}
.news-content .news-date {
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 15px;
}
.news-content h3 {
  color: #1e293b;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.news-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}
.news-content a {
  text-decoration: none;
  color: #25a888;
  font-weight: 600;
  transition: 0.3s;
}
.news-content a:hover {
  padding-left: 8px;
}

@media (max-width: 992px) {
  .about-grid,
  .registration-grid {
    grid-template-columns: 1fr;
  }
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid,
  .facility-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }
  .hero-section {
    height: 50vh;
  }
  .hero-section .hero-content h1 {
    font-size: 40px;
  }
  .hero-section .hero-content p {
    font-size: 18px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .stats-section,
  .service-grid,
  .facility-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-image {
    height: 220px;
  }
  .registration-card {
    padding: 25px;
  }
  .stat-card h2 {
    font-size: 36px;
  }
}/*# sourceMappingURL=dashboard.css.map */