/* Start custom CSS for html, class: .elementor-element-2491bdf *//* =========================================================
   DKU Innovation Challenge
   ---------------------------------------------------------
   Page-specific stylesheet.
   The .ic-page wrapper keeps these styles scoped to this page.
   ========================================================= */

/* ---------- Design tokens & base styles ---------- */
.ic-page {
  --orange: #db542e;
  --text: #333333;
  --muted: #808080;

  color: var(--text);
  background: #ffffff;
  font-family: Lato, Arial, sans-serif;
  line-height: 1.6;
}

.ic-page * {
  box-sizing: border-box;
}

.ic-page img {
  max-width: 100%;
  height: auto;
}

.ic-page strong {
  color: var(--orange);
  font-weight: 700;
}

.ic-wrap {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.ic-hero {
  padding: 60px 0;
  text-align: center;
}

.ic-hero img {
  display: block;
  width: min(1513px, 100%);
  margin: 0 auto;
}

.ic-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 13px 28px;

  color: #ffffff !important;
  background: var(--orange);

  font-weight: 700;
  text-decoration: none;
}

/* ---------- Main headings ---------- */
.ic-main-title,
.ic-section-title {
  color: var(--orange);
  font-family: Abel, Lato, Arial, sans-serif;
  font-weight: 400;
  text-align: center;
}

.ic-main-title {
  margin: 100px 0 20px;
  font-size: 60px;
  line-height: 1.1;
}

.ic-section-title {
  margin: 100px 0 25px;
  font-size: 48px;
  line-height: 1.15;
}

/* ---------- Intro statements & body copy ---------- */
/*
 * Pure CSS statement slider.
 * Four hidden radio buttons control the horizontal position of the track.
 * The labels below act as clickable navigation dots.
 */
.ic-statement-slider {
  --statement-height: 72px;

  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}

/* Keep the native radio inputs accessible but visually hidden. */
.ic-statement-slider > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ic-statement-window {
  height: var(--statement-height);
  overflow: hidden;
}

.ic-statement-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.55s ease;
}

.ic-statement-track p {
  display: flex;
  flex: 0 0 25%;
  align-items: center;
  justify-content: center;

  height: var(--statement-height);
  margin: 0;
  padding: 0 20px;

  font-size: 35px;
  line-height: 1.25;
}

/* Move the track when a navigation dot is selected. */
#ic-statement-1:checked ~ .ic-statement-window .ic-statement-track {
  transform: translateX(0);
}

#ic-statement-2:checked ~ .ic-statement-window .ic-statement-track {
  transform: translateX(-25%);
}

#ic-statement-3:checked ~ .ic-statement-window .ic-statement-track {
  transform: translateX(-50%);
}

#ic-statement-4:checked ~ .ic-statement-window .ic-statement-track {
  transform: translateX(-75%);
}

.ic-statement-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.ic-statement-dots label {
  width: 9px;
  height: 9px;
  border: 1px solid #db542e;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.ic-statement-dots label:hover {
  transform: scale(1.2);
}

#ic-statement-1:checked ~ .ic-statement-dots label[for="ic-statement-1"],
#ic-statement-2:checked ~ .ic-statement-dots label[for="ic-statement-2"],
#ic-statement-3:checked ~ .ic-statement-dots label[for="ic-statement-3"],
#ic-statement-4:checked ~ .ic-statement-dots label[for="ic-statement-4"] {
  background: #db542e;
}

/* Respect the user's reduced-motion setting. */
@media (prefers-reduced-motion: reduce) {
  .ic-statement-track {
    transition: none;
  }
}

.ic-copy {
  max-width: 1260px;
  margin: 0 auto;
}

.ic-copy p {
  margin: 1em 0;
  font-size: 16px;
}

```css
/* ---------- Timeline ---------- */

.ic-timeline-section {
  padding: 24px 0 10px;
}

.ic-timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 30px;

  padding-top: 10px;
}


/* Horizontal connecting line */
.ic-timeline::before {
  content: "";

  position: absolute;
  top: 43px;
  left: 12.5%;
  right: 12.5%;

  height: 2px;

  background: #e4e4e4;
}


/* Individual timeline item */
.ic-timeline-item {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}


/* Icon circle */
.ic-timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;

  margin-bottom: 20px;

  background: #ffffff;
  border: 2px solid #db542e;
  border-radius: 50%;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}


/* SVG icon */
.ic-timeline-icon svg {
  width: 28px;
  height: 28px;

  fill: none;
  stroke: #db542e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Small hover effect */
.ic-timeline-item:hover .ic-timeline-icon {
  transform: translateY(-3px);

  background: #fff8f5;

  box-shadow:
    0 8px 24px rgba(219, 84, 46, 0.12);
}


/* Date */
.ic-timeline-date {
  margin-bottom: 6px;

  color: #db542e;

  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}


/* Description */
.ic-timeline-label {
  max-width: 180px;

  color: #333333;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .ic-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 48px 30px;
  }

  .ic-timeline::before {
    display: none;
  }
}


@media (max-width: 600px) {
  .ic-timeline {
    grid-template-columns: 1fr;

    gap: 0;

    padding-left: 12px;
  }

  .ic-timeline-item {
    position: relative;

    align-items: flex-start;

    padding: 0 0 38px 86px;

    text-align: left;
  }

  .ic-timeline-item::before {
    content: "";

    position: absolute;
    top: 68px;
    left: 33px;

    width: 2px;
    height: calc(100% - 48px);

    background: #e4e4e4;
  }

  .ic-timeline-item:last-child::before {
    display: none;
  }

  .ic-timeline-icon {
    position: absolute;
    top: 0;
    left: 0;

    width: 66px;
    height: 66px;

    margin: 0;
  }

  .ic-timeline-date {
    padding-top: 6px;

    font-size: 20px;
  }

  .ic-timeline-label {
    max-width: none;
  }
}
```


/* ---------- Project tracks ---------- */
.ic-subwrap {
  max-width: 1260px;
  margin: 0 auto;
}

.ic-group-title {
  margin: 0 0 30px;
  color: var(--orange);

  font-family: "Abril Fatface", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.ic-track {
  margin-bottom: 25px;
}

.ic-track h3,
.ic-project-title,
.ic-prof-name {
  font-family: "Abril Fatface", Georgia, serif;
  font-weight: 400;
}

.ic-track h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.ic-track ul {
  margin: 0;
  padding-left: 20px;
}

.ic-faculty-heading {
  margin-top: 100px;
}

/* ---------- Faculty projects ---------- */
.ic-faculty {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 55px;

  max-width: 1320px;
  margin: 0 auto 80px;
}

.ic-faculty img {
  width: 225px;
}

.ic-prof-name {
  margin: 15px 0 8px;
  font-size: 25px;
  line-height: 1.25;
}

.ic-prof-meta {
  margin: 7px 0;
  font-size: 15px;
}

.ic-prof-meta a {
  color: inherit;
}

.ic-view {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 17px;

  color: #ffffff !important;
  background: #333333;
  text-decoration: none;
}

.ic-project-title {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.3;
}

.ic-project-body p,
.ic-project-body li {
  font-size: 16px;
}

.ic-project-body ul {
  padding-left: 22px;
}


/* ---------- Faculty photo placeholder ----------
   Replace the placeholder <div> in HTML with the final <img> when ready.
------------------------------------------------ */
.ic-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 225px;
  aspect-ratio: 3 / 4;

  color: #777777;
  background: #f3f3f3;
  border: 1px dashed #b9b9b9;

  font-size: 14px;
  text-align: center;
}

/* ---------- Dachuang information ---------- */
.ic-info {
  padding: 100px 0;
}

.ic-info h2 {
  margin: 0 0 28px;
  color: var(--orange);

  font-family: Abel, Lato, Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
}

.ic-info h3 {
  margin: 38px 0 10px;
  color: var(--orange);

  font-family: Lato, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.ic-info p,
.ic-info li {
  color: #333333;
  font-size: 16px;
}

.ic-info a em {
  color: #333333;
}

.ic-sep {
  margin: 0 0 18px;
  border: 0;
  border-top: 1px solid #dddddd;
}

/* ---------- Native no-JS project type toggles ---------- */
.ic-native-toggle {
  color: var(--muted);
  border-bottom: 1px solid #dddddd;
}

.ic-native-toggle summary {
  position: relative;
  padding: 15px 34px 15px 0;

  color: var(--muted);
  cursor: pointer;
  font-size: 17px;
  list-style: none;
}

.ic-native-toggle summary::-webkit-details-marker {
  display: none;
}

.ic-native-toggle summary::after {
  content: "+";
  position: absolute;
  top: 10px;
  right: 4px;

  color: #444444;
  font-size: 24px;
}

.ic-native-toggle[open] summary::after {
  content: "−";
}

.ic-native-toggle > div {
  padding: 0 0 18px;
  color: var(--muted);
}

.ic-native-toggle ul {
  margin-top: 0;
}

.ic-native-toggle li,
.ic-native-toggle span {
  color: var(--muted);
}

/* ---------- Eligibility & quick links ---------- */
.ic-eligibility ul {
  padding-left: 22px;
}

.ic-quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ic-quick-links a {
  color: var(--muted);
  font-style: italic;
  text-decoration: none;
}

.ic-quick-links a:hover {
  color: var(--orange);
}

/* =========================================================
   Responsive layout
   ========================================================= */

/* ---------- Tablet ---------- */
@media (max-width: 900px) {
  .ic-main-title {
    font-size: 48px;
  }

  .ic-statement-slider {
    --statement-height: 64px;
  }

  .ic-statement-track p {
    font-size: 27px;
  }

  .ic-section-title,
  .ic-info h2 {
    font-size: 40px;
  }

  .ic-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .ic-faculty {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ic-faculty img {
    width: 180px;
  }

  .ic-photo-placeholder {
    width: 180px;
  }

  .ic-project-title {
    font-size: 26px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .ic-wrap {
    width: min(100% - 28px, 1260px);
  }

  .ic-hero {
    padding: 30px 0;
  }

  .ic-main-title {
    margin-top: 60px;
    font-size: 38px;
  }

  .ic-statement-slider {
    --statement-height: 78px;
    margin-bottom: 40px;
  }

  .ic-statement-track p {
    padding: 0 8px;
    font-size: 21px;
  }

  .ic-section-title,
  .ic-info h2 {
    margin-top: 60px;
    font-size: 34px;
  }

  .ic-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ic-timeline-item {
    padding-bottom: 20px;
  }

  .ic-faculty {
    margin-bottom: 55px;
  }

  .ic-project-title {
    font-size: 23px;
  }

  .ic-info {
    padding: 60px 0;
  }
}/* End custom CSS */