/* ========== Work With Us – Hero Section ========== */

.wwu-hero {
  width: 100%;
  min-height: 420px;
  position: relative;
  background-color: #0d0300;
  overflow: hidden;

  display: flex;
  align-items: center; 
  justify-content: flex-start;
  
  padding: 0 64px; 
  box-sizing: border-box;

  color: #ffffff;
  font-family: var(--font-roboto, Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif);
  text-align: left;
}

.wwu-hero__container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wwu-hero__content {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wwu-hero__heading {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.2;
  font-weight: 800;
}

.wwu-hero__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* ========== Responsive ========== */

@media (max-width: 900px) {
  .wwu-hero {
    padding: 40px 24px;
    min-height: 350px; 
  }

  .wwu-hero__content {
    max-width: 100%;
  }

  .wwu-hero__heading {
    font-size: clamp(26px, 7vw, 40px);
  }

  .wwu-hero__text {
    font-size: 16px;
  }
}

/* ========== Work With Us – Collaborate Section ========== */

.wwu-collab {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 112px 64px;
  box-sizing: border-box;
  font-family: var(--font-roboto, Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif);
  text-align: left;
}

.wwu-collab__container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.wwu-collab__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); /* text | image */
  gap: 80px;
  align-items: center;
}

/* --- Left column --- */

.wwu-collab__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wwu-collab__section-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwu-collab__tagline {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.wwu-collab__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wwu-collab__heading {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.2;
  font-weight: 800;
}

.wwu-collab__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #222222;
}

/* --- Features --- */

.wwu-collab__features {
  margin-top: 4px;
}

.wwu-collab__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.wwu-collab__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wwu-collab__subheading {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.wwu-collab__copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
}

/* --- Actions --- */

.wwu-collab__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.wwu-collab__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid #000000;
  transition: 0.22s ease;
}

/* Solid primary */
.wwu-collab__btn--primary {
  background-color: #000000;
  color: #ffffff;
}

.wwu-collab__btn--primary:hover {
  background-color: #111111;
  border-color: #111111;
  transform: translateY(-1px);
}

/* Ghost secondary */
.wwu-collab__btn--ghost {
  background-color: transparent;
  color: #000000;
}

.wwu-collab__btn--ghost:hover {
  background-color: #f4f4f4;
  transform: translateY(-1px);
}

.wwu-collab__chevron {
  font-size: 18px;
  line-height: 1;
}

/* --- Right image --- */

.wwu-collab__media {
  margin: 0;
}

.wwu-collab__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* ========== Responsive ========== */

@media (max-width: 1024px) {
  .wwu-collab {
    padding: 88px 32px;
  }

  .wwu-collab__grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .wwu-collab {
    padding: 64px 24px;
  }

  .wwu-collab__grid {
    grid-template-columns: 1fr;
  }

  .wwu-collab__row {
    grid-template-columns: 1fr;
  }
}

/* ========== Glass Button (JOIN Only) ========== */

.wwu-glass-btn {
  --pad-y: 12px;
  --pad-x: 24px;
  --alpha: 0.10;
  --alpha-hover: 0.18;
  --border-alpha: 0.25;
  --border-alpha-h: 0.40;
  --blur: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-y) var(--pad-x);

  font-size: 16px;
  font-weight: 600;
  color: #000 !important;   /* stays black */
  text-decoration: none;

  background: rgba(255, 255, 255, var(--alpha));
  border: 1px solid rgba(0, 0, 0, var(--border-alpha));

  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));

  transition: 0.25s ease;
}

.wwu-glass-btn:hover {
  background: rgba(255, 255, 255, var(--alpha-hover));
  border-color: rgba(0, 0, 0, var(--border-alpha-h));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ========== Actions row ========== */
.wwu-collab__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ========== CONNECT text link with arrow ========== */
.wwu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Default: chevron in original position */
.cs-btn__chev {
  transform: translateX(0);
  transition: transform 0.25s ease;
}

/* Hover: chevron moves forward (bounce) */
.wwu-link:hover .cs-btn__chev {
  animation: bounce-forward 0.25s ease forwards;
}

/* When hover ends: bounce back to start */
.wwu-link:not(:hover) .cs-btn__chev {
  animation: bounce-back 0.25s ease forwards;
}

/* Animations */
@keyframes bounce-forward {
  from { transform: translateX(0); }
  to   { transform: translateX(6px); }
}

@keyframes bounce-back {
  from { transform: translateX(6px); }
  to   { transform: translateX(0); }
}
/* ========== Work With Us – Co-Creation Section ========== */

.wwu-co-create {
  width: 100%;
  background-color: #11284c;
  color: #ffffff;
  padding: 112px 64px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  font-family: var(--font-roboto, Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif);
}

.wwu-co-create__container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.wwu-co-create__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); /* text | image */
  gap: 80px;
  align-items: center;
}

/* Header + intro */
.wwu-co-create__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wwu-co-create__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwu-co-create__tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.wwu-co-create__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wwu-co-create__heading {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 800;
}

.wwu-co-create__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* List */
.wwu-co-create__list {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwu-co-create__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wwu-co-create__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.wwu-co-create__list-text {
  font-size: 16px;
  line-height: 1.6;
}

/* Actions */
.wwu-co-create__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

/* Primary button (on dark background) */
.wwu-co-create__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.22s ease;
}

.wwu-co-create__btn--primary {
  color: #0d0300;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

.wwu-co-create__btn--primary:hover {
  background-color: #f7f7f7;
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* Link-style "Learn More" with chevron */
.wwu-co-create__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.wwu-co-create__link-label {
  position: relative;
}

.wwu-co-create__chev {
  width: 20px;
  height: 20px;
  transition: transform 0.22s ease;
}

.wwu-co-create__link:hover .wwu-co-create__chev {
  transform: translateX(3px);
}

/* Right media */
.wwu-co-create__media {
  margin: 0;
}

.wwu-co-create__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

/* ========== Responsive ========== */

@media (max-width: 1024px) {
  .wwu-co-create {
    padding: 96px 40px;
  }

  .wwu-co-create__grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .wwu-co-create {
    padding: 72px 24px;
  }

  .wwu-co-create__grid {
    grid-template-columns: 1fr;
  }

  .wwu-co-create__media {
    margin-top: 24px;
  }
}
/* ========== Glass Button (Join) ========== */

.glass-btn {
  --pad-y: 12px;
  --pad-x: 24px;
  --alpha: 0.15;
  --alpha-hover: 0.25;
  --border-alpha: 0.35;
  --border-alpha-h: 0.55;
  --blur: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-y) var(--pad-x);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;

  background: rgba(255, 255, 255, var(--alpha));
  border: 1px solid rgba(255, 255, 255, var(--border-alpha));
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));

  transition: 0.25s ease;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, var(--alpha-hover));
  border-color: rgba(255, 255, 255, var(--border-alpha-h));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}

/* ---------------------------------- */
/* GLASS JOIN BUTTON                  */
/* ---------------------------------- */

.wwu-co-create__join-btn {
  --pad-y: 12px;
  --pad-x: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: var(--pad-y) var(--pad-x);
  border-radius: 10px;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: 0.28s ease;
}

.wwu-co-create__join-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}


/* ---------------------------------- */
/* BUTTON 2 — ANIMATED LINK BUTTON    */
/* ---------------------------------- */

.wwu-co-create__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 24px;
  border: 1px solid #ffffff;

  border-radius: 10px;
  text-decoration: none;

 /* ---------------------------------- */
/* GLASS JOIN BUTTON                  */
/* ---------------------------------- */

.wwu-co-create__join-btn {
  --pad-y: 12px;
  --pad-x: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: var(--pad-y) var(--pad-x);
  border-radius: 10px;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: 0.28s ease;
}

.wwu-co-create__join-btn:hover {
  background: rgba(255, 255, 255, 0.22);

  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}


/* ---------------------------------- */
/* BUTTON 2 — ANIMATED LINK BUTTON    */
/* ---------------------------------- */

.wwu-co-create__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 24px;
  border: 1px solid #ffffff;

  border-radius: 10px;
  text-decoration: none;


  font-size: 16px;
  font-weight: 600;

  background: transparent;
  transition: 0.25s ease border-color, 0.25s ease background;
}

.wwu-co-create__link-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Chevron animation */
.wwu-co-create__chev {
  transition: transform 0.25s ease;
}

.wwu-co-create__link-btn:hover .wwu-co-create__chev {
  transform: translateX(6px);
}

  font-size: 16px;
  font-weight: 600;

  background: transparent;
  transition: 0.25s ease border-color, 0.25s ease background;
}

.wwu-co-create__link-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Chevron animation */
.wwu-co-create__chev {
  transition: transform 0.25s ease;
}

.wwu-co-create__link-btn:hover .wwu-co-create__chev {
  transform: translateX(6px);
}

/* Disable old button background for the glass version */
.button .layout-16-join-btn {
  background: none !important;
  border: none !important;
}

/* ========= Work With Us – Innovative Banner ========= */

.work-with-us-innovative {
  width: 100%;
  padding: 80px 64px;
  box-sizing: border-box;
  background-color: #ebf3ff; /* light blue background around the banner */
  display: flex;
  justify-content: center;
  font-family: var(--font-roboto, Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif);
}

.wwu-innovative__container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}

/* Card with background image */
.wwu-innovative__card {
  position: relative;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("../css/image/work-with-us-innovative.png"); /* <- set your image */
  background-size: cover;
  background-position: center;
}

/* Dark overlay */
.wwu-innovative__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Centered content */
.wwu-innovative__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 48px 24px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wwu-innovative__heading {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 800;
}

.wwu-innovative__subtext {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

/* Buttons row */
.wwu-innovative__actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Base button */
.wwu-innovative__btn {
  min-width: 120px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Primary (Join) – white glassy button */
/* Shared glass button */
.wwu-innovative__btn {
  --pad-y: 12px;
  --pad-x: 32px;

  padding: var(--pad-y) var(--pad-x);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;

  transition: 0.25s ease;
}

/* Hover effect */
.wwu-innovative__btn:hover {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* Responsive */
@media (max-width: 900px) {
  .work-with-us-innovative {
    padding: 64px 24px;
  }

  .wwu-innovative__content {
    padding: 40px 16px;
  }

  .wwu-innovative__heading {
    font-size: clamp(26px, 7vw, 40px);
  }

  .wwu-innovative__subtext {
    font-size: 16px;
  }
}

