/* =========================
   Collaboration Section
========================= */
.collaboration-section {
  background-color: #fff;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.collaboration-top {
  text-align: center;
  margin-bottom: 10px;
}

.collaboration-top p {
  line-height: 1.8;
  color: #111;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Logo row */
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logoNC,
.logoVku {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.logoNC {
  max-height: 67px;
}

.logo-row .cross {
  font-size: 2rem;
  color: #111;
  font-weight: bold;
}

/* Collaboration content (text + image) */
.collaboration-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.collab-text {
  flex: 1.2;
  min-width: 500px;
}

.collab-text h3 {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.7;
  color: #111;
  margin-bottom: 15px;
}

.collab-text p {
  line-height: 1.8;
  color: #111;
  margin-bottom: 15px;
  font-size: 0.95rem;
  text-align: none !important;
}

.collab-image {
  flex: 1.6;
  text-align: right;
}

.collab-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-width: 750px;
  margin-left: 90px;
}

/* Button */
.collab-text .btn {
  display: inline-block;
  background-color: #f8dea7;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  margin-top: 30px;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.collab-text .btn:hover {
  background-color: #1779aa;
  transform: translateY(-2px);
}

/* =========================
   Team Section
========================= */
.team-section {
  background-color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.intro-text {
  font-size: 1rem;
  color: #111;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Profile Cards */
.profile-card {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-image-wrapper {
  position: relative;
  width: 200px;
  height: 240px;
  margin: 0 auto 1rem auto;
  border-radius: 90px 90px 0 0;
  overflow: hidden;
  background-color: #eaf2f8;
  box-shadow: 0 9px 12px rgba(104, 93, 93, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.3s ease;
}

.profile-image-wrapper:hover img {
  transform: scale(1.1);
}

.view-more-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  opacity: 0;
  font-size: 0.65rem;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.profile-image-wrapper:hover .view-more-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.profile-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  color: #111;
}

.profile-title {
  font-size: 0.9rem;
  color: #111;
}

/* =========================
   Partners Section
========================= */
.partners-section {
  background-color: rgba(255, 252, 231, 0.2);
  padding: 3rem 0;
}

.partners-section p.lead {
  font-size: 1rem;
  color: #111;
  line-height: 1.7;
  max-width: 1100px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: normal;
}
