.attendee-item {
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #fff;
  transform: scale(1);
}

.attendee-item:hover {
  background-color: rgba(225, 37, 43, 0.08);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

.attendee-item i {
  font-size: 2.5rem;
  color: #212529;
  transition: transform 0.3s ease, color 0.3s ease;
}

.attendee-item h6 {
  margin-top: 10px;
  font-weight: 700;
  color: #212529;
  transition: color 0.3s ease;
}

.attendee-item:hover i,
.attendee-item:hover h6 {
  color: #e1252b !important;
}

.attendee-item:hover i {
  transform: scale(1.2);
}

.attendee-item p {
  font-size: 13px;
  color: #6c757d;
}

.speaker-card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  background-color: #fff;
  height: 100%;
}

.speaker-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.speaker-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f2f2f2;
}

.speaker-name {
  font-weight: 700;
  margin-bottom: 0;
}

.speaker-title {
  color: red;
  font-weight: 600;
}

.speaker-company {
  color: #6c757d;
}

.speaker-tag {
  background: linear-gradient(135deg, red, #732ff9);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  margin: 10px 0;
}

.speaker-topic {
  background-color: #f5f0ff;
  border-left: 4px solid red;
  padding: 12px 15px;
  border-radius: 12px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 16px;
}

.speaker-desc {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.speaker-btn {
  background-color: #732ff9;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  border: none;
  transition: background 0.3s ease;
}

.speaker-btn:hover {
  background-color: #834eee;
}

.speaker-socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin-left: 8px;
  color: #212529;
  transition: all 0.3s ease;
}

.speaker-socials a:hover {
  background-color: red;
  border-color: red;
  color: #fff;
}

:root {
  --gap: 1.25rem;
  --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --closed: 10rem;
  --open: 40rem;
  --accent: #ff6b35;
}

.innovation-section {
  padding: 0 0 !important;
}

.head h2 {
  font: 400 1.5rem/1.2 Inter, sans-serif;
  color: black;
}

@media (min-width: 1024px) {
  .head h2 {
    font-size: 2.25rem;
  }
}

.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: red;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--accent);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.controls {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.track {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  justify-content: center;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
}

.track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 var(--closed);
  height: 26rem;
  min-height: 260px;
  border: 2px solid #e1252b;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: flex-basis var(--speed), transform var(--speed);
}

.project-card[active] {
  flex-basis: var(--open);
  transform: translateY(-4px);
  box-shadow: 5px 18px 55px rgba(206, 55, 60, 0.5);
  border: 2px solid #e1252b;
}

.project-card__bg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: inherit;
  filter: brightness(0.75) saturate(75%);
  transition: filter 0.3s, transform var(--speed);
}

.project-card:hover .project-card__bg {
  filter: brightness(0.9) saturate(100%);
  transform: scale(1.06);
}

.project-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 0;
}

.frosted-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.25rem;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 0 8px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  margin: auto;
}

.frosted-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at top left,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.frosted-box > div {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 767px) {
  .project-card__content {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }
}

.project-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 1.35rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.project-card__thumb,
.project-card__desc,
.project-card__btn {
  display: none;
}

.project-card[active] .project-card__content {
  flex-direction: row;
  align-items: center;
  padding: 1.2rem 2rem;
  gap: 1.1rem;
}

.project-card[active] .project-card__title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 2.4rem;
}

.project-card[active] .project-card__thumb,
.project-card[active] .project-card__desc,
.project-card[active] .project-card__btn {
  display: block;
}

.project-card__thumb {
  width: 133px;
  height: 269px;
  border-radius: 0.45rem;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.project-card__desc {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.4;
  max-width: 16rem;
  margin: 0 auto;
  text-align: center;
}

.project-card__btn {
  padding: 0.55rem 1.3rem;
  border: none;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.project-card__btn:hover {
  background: #e1252b;
}

.dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 20px 0;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  :root {
    --closed: 100%;
    --open: 100%;
    --gap: 0.8rem;
  }

  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    gap: 0.8rem;
    padding-bottom: 20px;
  }

  .project-card {
    height: auto;
    min-height: 80px;
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
  }

  .project-card[active] {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card__content {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
  }

  .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.2rem;
  }

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: none;
  }

  .project-card[active] .project-card__content {
    padding: 1.5rem;
  }

  .project-card[active] .project-card__title {
    font-size: 1.8rem;
  }

  .project-card[active] .project-card__thumb {
    width: 200px;
    height: 267px;
    border-radius: 0.35rem;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__btn {
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 0.7rem;
  }

  .dots {
    display: none;
  }

  .controls {
    width: 100%;
    justify-content: space-between;
    padding: 0 15px 20px;
  }

  .nav-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
    position: static;
    transform: none;
  }
}

@media (max-width: 1023px) {
  :root {
    --closed: 100%;
    --open: 100%;
    --gap: 0.8rem;
  }

  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    gap: 0.8rem;
    padding-bottom: 20px;
  }

  .project-card {
    height: auto;
    min-height: 80px;
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
  }

  .project-card[active] {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card__content {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
  }

  .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.2rem;
  }

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: none;
  }

  .project-card[active] .project-card__content {
    padding: 1.5rem;
  }

  .project-card[active] .project-card__title {
    font-size: 1.8rem;
  }

  .project-card[active] .project-card__thumb {
    width: 200px;
    height: 267px;
    border-radius: 0.35rem;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__btn {
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 0.7rem;
  }

  .dots {
    display: none;
  }

  .controls {
    width: 100%;
    justify-content: space-between;
    padding: 0 15px 20px;
  }

  .nav-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
    position: static;
    transform: none;
  }
}

@import url("https://fonts.cdnfonts.com/css/ica-rubrik-black");
@import url("https://fonts.cdnfonts.com/css/poppins");

.rotating-gallery-section {
  background: #fff;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.banner {
  top: 35px;
  width: 100%;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.rotating-gallery-section .section-heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  color: #25283b;
  font-family: "Poppins", sans-serif;
}

.banner .slider {
  position: absolute;
  width: 150px;
  height: 200px;
  top: 10%;
  left: calc(50% - 75px);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  animation: autoRun 40s linear infinite;
  z-index: 2;
}

@keyframes autoRun {
  from {
    transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
  }

  to {
    transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
  }
}

.banner .slider .item {
  position: absolute;
  inset: 0 0 0 0;
  transform: rotateY(
      calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)
    )
    translateZ(450px);
}

.banner .slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 100vw);
  height: max-content;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.banner .content h1 {
  font-family: "ICA Rubrik";
  font-size: 16em;
  line-height: 1em;
  color: #25283b;
  position: relative;
}

.banner .content h1::after {
  position: absolute;
  inset: 0 0 0 0;
  content: attr(data-content);
  z-index: 2;
  -webkit-text-stroke: 2px #d2d2d2;
  color: transparent;
}

.banner .content .author {
  font-family: Poppins;
  text-align: right;
  max-width: 200px;
}

.banner .content h2 {
  font-size: 3em;
}

.banner .content .model {
  background-image: url(images/model.png);
  width: 100%;
  height: 75vh;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: auto 130%;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .banner .slider {
    width: 120px;
    height: 160px;
    left: calc(50% - 60px);
  }

  .banner .slider .item {
    transform: rotateY(
        calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)
      )
      translateZ(250px);
  }

  .banner .content h1 {
    text-align: center;
    width: 100%;
    text-shadow: 0 10px 20px #000;
    font-size: 7em;
  }

  .banner .content .author {
    color: #fff;
    padding: 20px;
    text-shadow: 0 10px 20px #000;
    z-index: 2;
    max-width: unset;
    width: 100%;
    text-align: center;
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .rotating-gallery-section {
    background: #fff;
    /* or a gradient/image */
    padding: 25px 0;
    position: relative;
    z-index: 1;
  }

  .banner .slider {
    width: 80px;
    height: 120px;
    left: calc(50% - 40px);
  }

  .banner .slider .item {
    transform: rotateY(
        calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)
      )
      translateZ(150px);
  }

  .banner .content h1 {
    font-size: 5em;
  }
}

.banner .slider:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .banner {
    top: 35px;
    width: 100%;
    height: 50vh;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
}

:root {
  --u: 8px;
  --plate-border: #37a6b3;
  --plate-fill: rgba(55, 166, 179, 0.15);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.herot {
  position: relative;
  min-height: clamp(520px, 98vh, 900px);
  display: grid;
  place-items: center;
  margin-bottom: calc(var(--u) * 3);
  overflow: hidden;
  background: radial-gradient(
    120% 100% at 50% 20%,
    #cf2128 0%,
    #dd1e24 50%,
    #cf2128 100%
  );
}

.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #eaf2ff;
  max-width: min(900px, 90vw);
  padding: calc(var(--u) * 10) calc(var(--u) * 6);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero__content h1 {
  margin: 0 0 0.2em;
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 5.6rem);
  letter-spacing: 0.01em;
}

.hero__content p {
  margin: 0.2em 0 1.1em;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #cfe7ff;
}

.btnt {
  display: inline-block;
  padding: 0.9em 1.3em;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.btn--primary {
  color: #001;
  background: linear-gradient(180deg, #ffffff, #fff);
  box-shadow: 0 14px 40px rgba(18, 99, 255, 0.35),
    inset 0 0 18px rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn--primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

/* Plates */
.plate-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.floating-plate {
  position: absolute;
  width: clamp(28px, 6vw, 50px);
  height: clamp(28px, 6vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dff7ff;
  font-size: clamp(0.6rem, 1.5vw, 1.1rem);
  border-radius: 10px;
  border: 1px solid var(--plate-border);
  background: var(--plate-fill);
  box-shadow: 0 8px 40px #222a, 0 2px 8px #0004;
  transform: translateZ(0);
  backdrop-filter: blur(6px);
  pointer-events: auto;
}

.floating-plate::after {
  content: attr(data-label);
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(0.55rem, 1.2vw, 0.7rem);
  color: #cbe8ff;
  white-space: nowrap;
  text-shadow: 0 0 6px #000a;
}

@media (max-width: 320px) {
  .btnt {
    margin: 0 auto;
    display: inline-block;
    padding: 5px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .btnt {
    margin: 0 auto;
    display: inline-block;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 10px;
  }
}
