body {
  font-family: "Poppins", sans-serif;
  color: #333;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 40vh;
  background: url('../images/slide/partner.jpg') center/cover no-repeat;
}

.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
    color: #c4bbbb;
}

.section-padding {
  padding: 80px 0;
}


/* CERTIFICATE SECTION */
.certificate-row {
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.certificate-row:hover {
  background: #f8f9fa;
  transform: scale(1.02);
}

.certificate-row i {
  font-size: 1.4rem;
  color: #007bff;
  transition: 0.3s;
}

.certificate-row:hover i {
  transform: rotate(180deg);
}

.toggle-pdf {
  cursor: pointer;
  font-size: 1.3rem;
  color: #333;
}
.pdf-container {
  margin-bottom: 1.5rem;
}


.certificate-pdf { display: none; margin-top: 1rem; }
.certificate-header { cursor: pointer; background: #f9f9f9; padding: 1rem; border-radius: 8px; }
.certificate-header:hover { background: #eee; }

/* FORM */
.custom-form input, .custom-form textarea {
  border-radius: 6px;
  border: 1px solid #ccc;
}

.custom-form input:focus, .custom-form textarea:focus {
  border-color: #007bff;
  box-shadow: none;
}
