* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.navbar-custom {
  background: transparent;
  padding: 20px 0;
  box-shadow: none;
  transition: all 0.4s ease;
}

.navbar-custom.scrolled {
  background: white;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-custom.scrolled .navbar-brand-custom,
.navbar-custom.scrolled .nav-link-custom {
  color: #036c53ff !important;
}

.navbar-custom.scrolled .btn-login {
  border-color: #036c53ff;
  color: #036c53ff !important;
}

.navbar-custom.scrolled .btn-login:hover {
  background: #036c53ff;
  color: white !important;
}

.navbar-custom.scrolled .btn-register {
  background: #065058;
  border-color: #065058;
}

.navbar-custom.scrolled .nav-link-custom:hover {
  background: rgba(3, 108, 83, 0.1);
}

.navbar-brand-custom {
  color: white !important;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand-custom:hover {
  text-decoration: none;
}

.navbar-brand-custom i {
  font-size: 1.8rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.7rem;
  opacity: 0.9;
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 8px;
  font-size: 0.9rem;
  transition: all 0.3s;
  padding: 8px 12px;
  text-decoration: none;
}

.nav-link-custom:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-decoration: none;
}

.btn-login {
  background: transparent;
  border: 2px solid white;
  color: white !important;
  padding: 8px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  margin-right: 10px;
}

.btn-login:hover {
  background: white;
  color: #0c7bb3 !important;
}

.btn-register {
  background: #036475;
  border: 2px solid #036475;
  color: white !important;
  padding: 8px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-register:hover {
  background: #036475;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(3, 100, 117, 0.4);
}

.hero-section {
  background: linear-gradient(135deg, #036c53ff 0%, #00828eff 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  animation: float 6s ease-in-out infinite;
}
.hero-section-registrasi {
  background: linear-gradient(135deg, #036c53ff 0%, #00828eff 100%);
  min-height: 30vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.navbar-custom-regs {
  background: transparent;
  padding: 20px 0;
  box-shadow: none;
  transition: all 0.4s ease;
}

.icon-pencil {
  top: 15%;
  right: 10%;
}

.icon-book {
  top: 30%;
  left: 8%;
  animation-delay: 1s;
}

.icon-ruler {
  bottom: 25%;
  right: 15%;
  animation-delay: 2s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 1rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 40px;
}

.search-box {
  background: white;
  border-radius: 15px;
  padding: 6px 10px;
  max-width: 550px;
  margin: 0 auto 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
}

.search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.9rem;
  padding: 6px 0;
  color: #333;
}

.search-input::placeholder {
  color: #999;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #f5f5f5;
  border-radius: 15px;
  white-space: nowrap;
}

.captcha-text {
  font-weight: 600;
  color: #333;
  font-size: 0.85rem;
}

.captcha-input {
  width: 70px;
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 5px 5px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.captcha-input:focus {
  outline: none;
  border-color: #0c7bb3;
}

.btn-search {
  background: #2ecc71;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 0.85rem;
}

.btn-search:hover {
  background: #036475;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

.illustration-students {
  margin-top: 50px;
  margin-bottom: -80px;
  position: relative;
  z-index: 1;
}

.illustration-students img {
  max-width: 700px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.content-section {
  padding: 80px 0;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0c7bb3;
  margin-bottom: 15px;
}

.section-title p {
  color: #555;
  font-size: 1.1rem;
  font-weight: 500;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(12, 123, 179, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0c7bb3, #1687c7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.feature-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #0c7bb3;
}

.feature-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.timeline-section {
  background: linear-gradient(135deg, #eaf5ffff 0%, #eaeaeaff 100%);
  color: white;
  padding: 80px 0;
}
.form-section {
  background: linear-gradient(135deg, #eaf5ffff 0%, #eaeaeaff 100%);
  color: white;
  padding: 12px 0;
}

.timeline-item {
  background: white;
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-top: 5px solid #2ecc71;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  height: 100%;
  transition: all 0.3s;
}

.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.timeline-item h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0c7bb3;
  font-size: 1.1rem;
}

.timeline-date {
  color: #2ecc71;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.timeline-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.requirement-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.requirement-card h5 {
  color: #0c7bb3;
  font-weight: 600;
  margin-bottom: 15px;
}

.requirement-card ul {
  list-style: none;
  padding: 0;
}

.requirement-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333; /* Teks hitam agar terbaca */
  font-size: 14px;
}

.requirement-card ul li:last-child {
  border-bottom: none;
}

.requirement-card ul li i {
  color: #2ecc71;
  margin-right: 10px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(12, 123, 179, 0.2);
}

.process-step h5 {
  color: #0c7bb3;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0c7bb3, #1687c7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
}

.process-step h5 {
  color: #0c7bb3;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-step p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
}

.faq-question {
  font-weight: 600;
  color: #0c7bb3;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: #666;
  line-height: 1.6;
}

.info-box {
  background: linear-gradient(135deg, #2ecc71, #036475);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 40px 0;
}

.info-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.info-box .btn {
  background: white;
  color: #2ecc71;
  font-weight: 600;
}

.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}

.footer ul li a:hover {
  color: #2ecc71;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #0c7bb3;
  transform: translateY(-3px);
}

.copyright {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
  .search-box {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .btn-search {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .illustration-students i {
    font-size: 8rem;
  }
}
.container {
  color: #fff;
}
.jalur-option {
  border: 2px solid #eff2f7;
  border-radius: 4px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.jalur-option:hover {
  border-color: #556ee6;
  background-color: #f8f9fa;
}

.jalur-option.active {
  border-color: #556ee6;
  background-color: #f0f3ff;
}

.jalur-option input[type="radio"] {
  display: none;
}

.jalur-option i {
  font-size: 2rem;
  color: #556ee6;
}
