/* GLOBAL */
body {
  background: linear-gradient(135deg, #667eea, #764ba2);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

/* NAVBAR */
.navbar {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
}

/* PROFILE */
.profile {
  text-align: center;
  margin-top: 40px;
}

.imgdemas {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid white;
}

/* SECTION PUTIH */
section {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  padding: 30px 0;
  width: 95%;
}

/* ACHIVEMENT */
.ACHIVEMENT h1 {
  font-weight: bold;
}

/* CARD */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  height: 180px;
  object-fit: cover;
}

/* BIODATA */
.biodata {
  background: #f8f9fa;
}

/* BUTTON */
.btn-primary {
  background: #764ba2;
  border: none;
}

.btn-primary:hover {
  background: #5a3d91;
}

.carousel-item img {
  height: 400px;       /* atur tinggi sesuai keinginan */
  object-fit: cover;   /* biar tidak gepeng */
}