/* ===== Hero Section ===== */
.dashboard-highlight .card {
  border-radius: 50px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, .25);
  margin-top: 70px;
}

/* ===== Featured Services ===== */
.feature-card {
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  background: #fff;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}
.feature-card .icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.feature-card:hover .icon i {
  transform: rotate(15deg) scale(1.1);
  color: #ff9800;
}

/* ===== Search Section ===== */
.btn-gradient {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  background: linear-gradient(45deg, #ff5722, #ff9800);
  transform: translateY(-2px);
}
.search-box {
  border-radius: 20px;
}
.search-box input::placeholder {
  color: #aaa;
  font-style: italic;
}

/* ===== Statistik Cards ===== */
.bg-gradient-primary {
  background: linear-gradient(135deg, #2196f3, #21cbf3);
}
.bg-gradient-success {
  background: linear-gradient(135deg, #4caf50, #81c784);
}
.bg-gradient-warning {
  background: linear-gradient(135deg, #ff9800, #ffc107);
}

.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}
.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.border-top-primary { border-top: 4px solid #0d6efd; }
.border-top-success { border-top: 4px solid #198754; }
.border-top-warning { border-top: 4px solid #ffc107; }
.border-top-info { border-top: 4px solid #0dcaf0; }

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.stat-card h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.stat-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Responsif Statistik */
@media (max-width: 768px) {
  .stat-card { padding: 25px 15px; }
  .icon-circle { width: 60px; height: 60px; font-size: 26px; }
  .stat-card h2 { font-size: 2rem; }
}

/* ===== Latest Dataset ===== */
.card {
  background: #fff;
  transition: 0.3s ease;
}
.card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.section-title h3 {
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.section-title h3::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background: #0d6efd;
  bottom: 0;
  left: 25%;
  border-radius: 2px;
}

.table thead th {
  font-weight: 600;
  color: #555;
  font-family: 'Poppins', sans-serif;
  border-bottom: 2px solid #eee;
}
.table tbody tr {
  cursor: pointer;
  transition: 0.25s;
}
.table tbody tr:hover {
  background-color: #f5f9ff;
}
.table tbody td {
  vertical-align: middle;
}

.dataset-title {
  font-size: 0.7rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #333;
}
.dataset-org .badge {
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}
.badge {
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== Related Links ===== */
.link-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  background: #fff;
}
.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  background: #f8faff;
}
.link-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.3s;
}
.link-card:hover .link-logo {
  transform: scale(1.05);
}
.link-logo img {
  max-height: 60px;
  object-fit: contain;
}
.footer-modern {
    background: linear-gradient(135deg, #0d6efd, #21cbf3);
    color: #fff;
    padding: 60px 20px 30px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
}

.footer-modern .footer-logo img {
    transition: transform 0.3s ease;
}
.footer-modern .footer-logo img:hover {
    transform: scale(1.1);
}

.footer-modern .footer-description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

.footer-modern .social-links a {
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    font-size: 24px;
    transition: all 0.3s ease;
}
.footer-modern .social-links a:hover {
    color: #ff9800;
    transform: translateY(-5px) scale(1.2);
}

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin: 20px auto;
    width: 80%;
}

.footer-modern .copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}
