/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a237e;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#preloader .pulse-loader {
  position: relative;
  width: 80px;
  height: 80px;
}

#preloader .pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: pulse 1.5s ease-in-out infinite;
}

#preloader .pulse:nth-child(2) {
  animation-delay: 0.5s;
}

#preloader .pulse:nth-child(3) {
  animation-delay: 1s;
}

/* Header */
/* Navbar */
#navbar .nav-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid #80808052;
}

#navbar .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  height: 80px;
}

#navbar .nav-wrapper .logo {
  width: 120px;
}

#navbar .nav-wrapper .nav-links ul {
  display: flex;
  gap: 5px;
  align-items: center;
}

#navbar .nav-wrapper .nav-links ul li {
  position: relative;
  padding: 5px;
}

#navbar .nav-wrapper .nav-links ul li::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 0;
  background-color: var(--secondary-color);
  height: 4px;
  width: 100%;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: none;
}

#navbar .nav-wrapper .nav-links ul li:hover::after,
#navbar .nav-wrapper .nav-links ul li.active::after {
  opacity: 1;
  visibility: visible;
}

#navbar .nav-wrapper .nav-links ul li:hover a,
#navbar .nav-wrapper .nav-links ul li.active a {
  color: var(--secondary-color);
}

#navbar .nav-wrapper .nav-links ul li a {
  padding: 15px 20px;
  transition: all 0.3s ease;
}

/* #navbar .nav-wrapper .hamburger {
    display: flex;
} */

/* -- Hamburger Menu Styling -- */
#navbar .nav-wrapper .hamburger {
  width: 28px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  cursor: pointer;
}

#navbar .nav-wrapper .hamburger span {
  /* display: block; */
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

#navbar .nav-wrapper .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

#navbar .nav-wrapper .hamburger.open span:nth-child(2) {
  opacity: 0;
}

#navbar .nav-wrapper .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Aside */
#aside .aside-container {
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  background: var(--primary-color);
  color: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 0 5px #00000040;
  transition: all 0.5s ease;
}

#aside .aside-container.open {
  left: 0;
  opacity: 1;
}

/* #aside .aside-container .close-icon {
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
} */

#aside .aside-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

#aside .aside-wrapper .logo {
  width: 100px;
}

#aside .aside-wrapper .nav-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Hero */
#hero .hero-container {
  background:
    linear-gradient(#000047d0, #00005dc2),
    url(../assets/section-img/3.png) no-repeat center/cover;
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#hero .hero-container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #00ff802c;
  filter: blur(100px);
  z-index: -1;
}

#hero .hero-wrapper {
  color: var(--white);
  display: flex;
  flex-direction: column;
  width: 70%;
}

#hero .hero-wrapper .hero-header h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
}

#hero .hero-wrapper .hero-description {
  margin: 20px 0;
  width: 80%;
}

#hero .hero-wrapper .hero-description p {
  font-size: clamp(16px, 3vw, 20px);
  text-transform: uppercase;
  font-weight: 500;
}

#hero .hero-wrapper .hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

#hero .hero-wrapper .date-loc {
  margin-bottom: 40px;
}

#hero .hero-wrapper .date-loc h4 {
  font-weight: 900;
}

#hero .hero-image {
  position: absolute;
  right: -300px;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  overflow: hidden;
  z-index: -1;
}

#hero .hero-image .image {
  height: 100%;
  width: 100%;
  background:
    linear-gradient(to right, #011556cc, #00000080),
    url(/assets/section-img/20.jpg) no-repeat;
  background-position: top 20% left -100px;
  background-clip: border-box;
  background-size: cover;
  position: relative;
  z-index: -1;
}

/* #hero .hero-image .image img {
  object-position: top left;
} */

/* Event Intro */
#event-intro .event-intro-container {
  position: relative;
  z-index: 1;
  background-color: black;
}

#event-intro .event-intro-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0073ff8f, #00ff8000);
  filter: blur(120px);
  animation: moveBackground 5s infinite alternate;
}

#event-intro .event-intro-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0073ff80, #00ff8000);
  filter: blur(120px);
  animation: moveBackground 10s infinite alternate-reverse;
}

#event-intro .event-intro-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

#event-intro .event-intro-wrapper .left,
#event-intro .event-intro-wrapper .right {
  flex: 1;
}

#event-intro .event-intro-wrapper .left .image {
  border-radius: 20px;
  overflow: hidden;
}

#event-intro .event-intro-wrapper .left .image img {
  aspect-ratio: 16/9;
}

#event-intro .event-intro-wrapper .right .event-intro-heading {
  margin-bottom: 20px;
}

#event-intro .event-intro-wrapper .right .event-intro-heading h3 {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}

#event-intro .event-intro-wrapper .right .event-intro-description p {
  margin-bottom: 20px;
  color: #f2f4ff;
}

/* About */
#about .about-container {
  position: relative;
  z-index: 1;
  background-color: black;
}

#about .about-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0073ff8f, #00ff8000);
  filter: blur(120px);
  animation: moveBackground 5s infinite alternate;
}

#about .about-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0073ff80, #00ff8000);
  filter: blur(120px);
  animation: moveBackground 10s infinite alternate-reverse;
}

#about .about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

#about .about-wrapper .left {
  flex: 1;
}
#about .about-wrapper .left .about-heading {
  margin-bottom: 20px;
}

#about .about-wrapper .left .about-heading h3 {
  font-size: clamp(28px, 3vw, 40px);
}

#about .about-wrapper .left .about-description p {
  margin-bottom: 20px;
}

#about .about-wrapper .right {
  flex: 1;
  display: flex;
  gap: 10px;
}

#about .about-wrapper .right .image {
  border-radius: 20px;
  overflow: hidden;
}

#about .about-wrapper .right .hidden-image {
  display: none;
}

/* Counter */
#counter .count-wrapper {
  display: flex;
  border-radius: 64px;
  border: 3px solid var(--white);
}

#counter .count-wrapper .bottom {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

#counter .count-wrapper .bottom .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

#counter .count-wrapper .bottom .logo .image {
  max-width: 200px;
  padding: 50px 10px;
}

#counter .count-wrapper .bottom .logo,
#counter .count-wrapper .bottom .count-box {
  flex: 1;
  min-width: 150px;
}

#counter .count-wrapper .bottom .count-box {
  border-right: 3px solid var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 10px;
}

#counter .count-wrapper .bottom .count-box:last-child {
  border-right: none;
}

/* Engage Leaders */
#engage-leaders .engage-container {
  position: relative;
  z-index: 1;
}

#engage-leaders .engage-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0073ff8f, #00ff8000);
  filter: blur(120px);
  animation: moveBackground 5s infinite alternate;
}

#engage-leaders .engage-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0073ff80, #00ff8000);
  filter: blur(120px);
  animation: moveBackground 10s infinite alternate-reverse;
}

#engage-leaders .engage-wrapper {
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  align-items: start;
  justify-content: center;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* background-color: red; */
}

/* #engage-leaders .engage-wrapper .engage-left {
  grid-column: 1;
  grid-row: 1;
  text-align: left;
} */

#engage-leaders .engage-wrapper .section-header {
  margin-bottom: 0;
  width: 100%;
}

#engage-leaders .engage-wrapper .section-header h2 {
  line-height: 1.2;
}

/* #engage-leaders .engage-wrapper .engage-description {
  grid-column: 2;
  grid-row: 1;
} */

#engage-leaders .engage-wrapper .engage-description p {
  margin-bottom: 16px;
}

#engage-leaders .engage-wrapper .engage-description p:last-child {
  margin-bottom: 0;
}

#engage-leaders .engage-wrapper .engage-action {
  margin-top: 40px;
}

#engage-leaders .engage-wrapper .engage-action-desktop {
  display: block;
}

#engage-leaders .engage-wrapper .engage-action-mobile {
  display: none;
}

/* Key */
#key .key-container {
  position: relative;
}

#key .content-tracks-card {
  position: relative;
  width: 100%;
  /* max-width: 80%; */
  margin: 0 auto;
  padding: 60px;
  border-radius: 14px;
  border: 1px solid #ffffff1a;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 102, 0.92) 0%,
      rgba(0, 0, 102, 0.78) 55%,
      rgba(0, 0, 102, 0.35) 100%
    ),
    url("../assets/highlights/22.jpg") no-repeat right center / cover;
  overflow: hidden;
  z-index: 1;
}

#key .content-tracks-left {
  max-width: 680px;
}

/* #key .content-tracks-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
} */

#key .content-tracks-subtitle {
  margin-bottom: 26px;
  color: #b7c8ff;
  font-size: 20px;
}

#key .content-tracks-list {
  display: flex;
  flex-direction: column;
}

#key .content-tracks-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 18px;
}

#key .content-tracks-list li:last-child {
  border-bottom: none;
}

#key .key-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0073ff8f, #00ff8000);
  filter: blur(120px);
  animation: moveBackground 5s infinite alternate;
}

#key .key-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0073ff80, #00ff8000);
  filter: blur(120px);
  animation: moveBackground 10s infinite alternate-reverse;
}

#key .key-box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#key .key-box-container .key-box {
  flex: 0 0 calc((100% - 40px) / 2);
  background: #193227cc;
  background: #0a27407f;
  border: 1px solid #ffffff1a;
  display: flex;
  gap: 20px;
  padding: 40px;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  min-width: 300px;
}

#key .key-box .icon {
  width: 60px;
  height: 60px;
  padding: 15px;
  border-radius: 50%;
  background: #00ff8020;
  background: #5d00ff20;
}

#key .key-box .icon img {
  object-fit: contain;
}

#key .key-box .content {
  flex: 1;
}

#key .key-box .content h3 {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Why attend */
#why-attend .content {
  margin-bottom: 50px;
}

#why-attend .why-attend-box-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
  justify-content: center;
}

#why-attend .why-attend-box-container::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  background: #00ff803d;
  background: #3000ab7f;
  height: 300px;
  width: 300px;
  filter: blur(100px);
  z-index: -1;
}

#why-attend .why-attend-box-container .why-attend-box {
  flex: 0 0 calc((100% - 60px) / 3);
  background: #193227cc;
  background: #0a27407f;

  border: 1px solid #ffffff1a;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 12px;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  overflow: hidden;
  width: 100%;
  /* min-width: 250px; */
  /* flex: 1; */
}

#why-attend .why-attend-box-container .why-attend-box .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: #00ff8020;
  background: #5d00ff20;

  padding: 10px;
  margin-bottom: 20px;
}

#why-attend .why-attend-box-container .why-attend-box img {
  object-fit: contain;
}

#why-attend .why-attend-box-container .why-attend-box h4 {
  font-size: 24px;
  /* margin-bottom: 0px; */
  /* color: var(--primary-color); */
}

#why-attend .why-attend-box-container .why-attend-box p {
  color: #fefefef8;
}

/* Partners */
#partners .partners-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

#partners .partner-box {
  flex: 0 0 calc((100% - 30px) / 2);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 34px;
}

#partners .partner-box .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #5d00ff20;
  padding: 12px;
  flex: 0 0 auto;
}

#partners .partner-box .icon img {
  object-fit: contain;
}

#partners .partner-box .content h4 {
  font-size: 18px;
  margin-bottom: 14px;
}

#partners .partner-box .content p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.9;
  color: #fefefef8;
}

/* Agenda */
#agenda .agenda-container {
  /* background: var(--white); */
  color: var(--white);
}

#agenda .agenda-item {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
  /* position: sticky;
  top: 0; */
}

#agenda .agenda-item:not(:last-child) {
  min-height: 80vh;
}

#agenda .agenda-item:nth-child(even) {
  flex-direction: row-reverse;
}

#agenda .agenda-item .left {
  flex: 4;
}

#agenda .agenda-item .left .title {
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--bg-black);
}

#agenda .agenda-item .left .description ul {
  list-style: circle;
  padding-left: 20px;
}

#agenda .agenda-item .left .description ul li {
  margin-bottom: 20px;
}

#agenda .agenda-item .left .description ul li::marker {
  color: var(--primary-light-color);
}

#agenda .agenda-item .right {
  flex: 3;
}

#agenda .agenda-item .right .image {
  height: 500px;
  /* position: sticky; */
  /* top: 50%; */
  /* top: calc(50% - (500px / 2)); */

  border-radius: 10px;
  overflow: hidden;
}
/* #agenda .agenda-container {
  background: var(--white);
}

#agenda .agenda-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#agenda .agenda-wrapper ul li {
  background: var(--bg-black);
  font-size: 20px;
  text-align: center;
  padding: 20px 20px 20px 20px;
  width: 600px;
  min-height: 100px;
  max-width: 90%;
  margin: auto;
}

#agenda .agenda-wrapper ul li::marker {
  color: var(--bg-black);
} */

/* Who attends — audience grid + seniority (uses site default section background) */
#who-attends .section-header h2 {
  color: transparent;
  background: linear-gradient(45deg, #990099, #e6007e);
  -webkit-background-clip: text;
  background-clip: text;
}

#who-attends .section-header h2 span {
  color: #e6007e;
}

#who-attends .who-meet-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 20px;
  margin-top: 40px;
}

#who-attends .who-meet-item {
  text-align: center;
}

#who-attends .who-meet-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #422727;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#who-attends .who-meet-icon img {
  width: 36px;
  height: 36px;
}

#who-attends .who-meet-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  max-width: 140px;
  margin: 0 auto;
}

#who-attends .who-meet-accent {
  color: #ff8a3d;
}

#who-attends .seniority-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

#who-attends .seniority-title {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

#who-attends .seniority-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#who-attends .seniority-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) auto;
  gap: 14px 18px;
  align-items: center;
}

#who-attends .seniority-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-align: right;
}

#who-attends .seniority-bar-wrap {
  min-width: 0;
}

#who-attends .seniority-bar-track {
  height: 14px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  position: relative;
}

#who-attends .seniority-bar-fill {
  height: 100%;
  border-radius: 7px 0 0 7px;
  background: linear-gradient(90deg, #6a1b9a 0%, #ff7043 100%);
  position: relative;
  min-width: 4px;
}

#who-attends .seniority-bar-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
}

#who-attends .seniority-pct {
  font-size: 14px;
  font-weight: 800;
  color: #ff8a3d;
  min-width: 40px;
  text-align: right;
}

/* Partner */
#partner .partner-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px 30px;
  flex-wrap: wrap;
}

#partner .partner-wrapper .partner-box {
  flex: 0 0 calc((100% - 60px) / 3);
  background: #193227cc;
  background: #0a27407f;

  border: 1px solid #ffffff1a;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 12px;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  overflow: hidden;
  width: 100%;
  /* min-width: 250px; */
}

#partner .partner-wrapper .partner-box .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff1e;
  background: #00ff8020;
  background: #5d00ff20;
  padding: 10px;
  margin-bottom: 20px;
}

#partner .partner-wrapper .partner-box .icon img {
  object-fit: contain;
}

#partner .partner-wrapper .partner-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

#partner .partner-wrapper .partner-box p {
  text-align: justify;
  color: #ffffffdd;
}

#partner .button {
  margin-top: 40px;
  text-align: center;
}

/* What's new */
#whatsnew .whatsnew-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

#whatsnew .whatsnew-wrapper .whatsnew-box {
  flex: 0 0 calc((100% - 90px) / 4);
  border: 1px solid #ffffff17;
  border-radius: 12px;
  background: #0f1836;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 18px;
  padding: 28px 18px;
  width: 100%;
  min-height: 430px;
}

#whatsnew .whatsnew-wrapper .whatsnew-box .icon {
  width: 102px;
  height: 102px;
  border: 2px solid #e6007e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#whatsnew .whatsnew-wrapper .whatsnew-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

#whatsnew .whatsnew-wrapper .whatsnew-box .content {
  color: #ffffff;
  position: static;
}

#whatsnew .whatsnew-wrapper .whatsnew-box h4 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 16px;
  text-transform: none;
}

#whatsnew .whatsnew-wrapper .whatsnew-box p {
  opacity: 1;
  color: #d7d9e4;
  line-height: 1.6;
}

#whatsnew .button {
  margin-top: 40px;
  text-align: center;
}

/* Who participates */
#who-participates .who-participates-container {
  position: relative;
}

#who-participates .who-participates-container::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  background: #00ff803d;
  background: #3000ab7f;
  height: 300px;
  width: 300px;
  filter: blur(100px);
  z-index: -1;
}

#who-participates .who-participates-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

#who-participates .who-participates-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    #03033990,
    #0c044870,
    #0f043d55,
    transparent,
    transparent,
    transparent,
    transparent
  );
}

#who-participates .who-participates-wrapper .slick-track {
  display: flex;
  align-items: center;
}

#who-participates .who-participates-wrapper .slick-track img {
  margin: 0 10px;
  padding: 10px;
  height: 80px;
  border-radius: 10px;
  object-fit: contain;
  vertical-align: middle;
  background: var(--white);
}

/* Speakers */
#speakers .speakers-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}

#speakers .speakers-box-container .speaker-box {
  flex: 0 0 calc((100% - 90px) / 4);
  background-color: #0c124f2d;
  padding: 15px;
  border-radius: 10px;
}

#speakers .speakers-box-container .speaker-box .speaker-image {
  height: 250px;
  border-radius: calc(15px - 10px);
  overflow: hidden;
}

#speakers .speakers-box-container .speaker-box .speaker-image img {
  object-position: top;
}

#speakers .speakers-box-container .speaker-box .speaker-info {
  padding: 30px 0px 20px;
  line-height: 1.2;
}

#speakers .speakers-box-container .speaker-box .speaker-info .name {
  font-size: 20px;
  text-transform: capitalize;
}

#speakers .speakers-box-container .speaker-box .speaker-info .designation {
  margin: 10px 0;
  font-size: 14px;
}

#speakers .speakers-box-container .speaker-box .speaker-info .company {
  font-size: 18px;
}

/* Testimonial */
#testimonial .testimonial-container {
  background: var(--black);
}

#testimonial .testimonial-wrapper {
  position: relative;
}

#testimonial .testimonial-card {
  --t-bg: linear-gradient(135deg, #0b4aa6 0%, #1b6ed9 55%, #0b4aa6 100%);
  --t-accent: #ffffff;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #ffffff1a;
  background: #0a0a0a;
  /* min-height: 520px; */
}

#testimonial .testimonial-card-left {
  position: relative;
  padding: 56px 56px 46px;
  color: var(--white);
  background: var(--t-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#testimonial .testimonial-card-left > * {
  position: relative;
  z-index: 2;
}

#testimonial .testimonial-card-kicker {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

#testimonial .quote-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 26px;
}

#testimonial .testimonial-card-left .testimony {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.42;
  margin-bottom: 34px;
  max-width: 640px;
}

#testimonial .testimonial-brand {
  margin-top: -12px;
  margin-bottom: 26px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 12px 14px;
}

#testimonial .testimonial-brand img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

#testimonial .author-details .name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

#testimonial .author-details .designation,
#testimonial .author-details .company {
  opacity: 0.95;
}

#testimonial .testimonial-card-right {
  position: relative;
  background: #111;
}

#testimonial .testimonial-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.02) contrast(1.05);
  clip-path: none;
}

/* Theme variants */
#testimonial .testimonial-card.t-blue {
  --t-bg: linear-gradient(135deg, #0b4aa6 0%, #1b6ed9 60%, #0b4aa6 100%);
}

#testimonial .testimonial-card.t-purple {
  --t-bg: linear-gradient(135deg, #2d0a63 0%, #6a1bd9 55%, #2d0a63 100%);
}

#testimonial .testimonial-card.t-teal {
  --t-bg: linear-gradient(135deg, #0b6a6a 0%, #1aa8a0 55%, #0b6a6a 100%);
}

#testimonial .testimonial-card.t-green {
  --t-bg: linear-gradient(135deg, #0b5e2a 0%, #18a957 55%, #0b5e2a 100%);
}

#testimonial .testimonial-card.t-indigo {
  --t-bg: linear-gradient(135deg, #0b1b63 0%, #2a59d9 55%, #0b1b63 100%);
}

#testimonial .testimonial-card.t-orange {
  --t-bg: linear-gradient(135deg, #7a2c00 0%, #d9631b 55%, #7a2c00 100%);
}

#testimonial .testimonial-card.t-slate {
  --t-bg: linear-gradient(135deg, #2b2f3a 0%, #4b5566 55%, #2b2f3a 100%);
}

#testimonial .testimonial-slides .slick-dots {
  position: relative;
  /* margin-top: 30px; */
  /* font-size: 0px; */
  /* padding-top: 20px; */
  /* width: 100%; */
}

#testimonial .testimonial-slides .slick-dots li {
  display: inline-block;
  vertical-align: top;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid var(--white);
  transition: ease all 0.55s;
  border-radius: 8px;
  margin: 0 4px;
}

#testimonial .testimonial-slides .slick-dots li.slick-active {
  background: var(--white);
  width: 20px;
}

#testimonial .testimonial-slides .slick-dots li button {
  height: 0;
  width: 0;
  opacity: 0;
}

/* Sponsors */
#sponsors .sponsors-container {
  background: var(--white);
}

#sponsors .sponsors-grid-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#sponsors .sponsors-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sponsors .sponsors-grid .sponsors-grid-header {
  /* text-transform: uppercase; */
  font-weight: 600;
  font-size: clamp(20px, 3vw, 32px);
  margin-bottom: 20px;
  /* letter-spacing: 3px; */
  background: linear-gradient(#393434, #a49898);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding-bottom: 10px;
}

#sponsors .sponsors-grid .sponsors-grid-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2 0%, #a855f7 100%);
}

#sponsors .sponsors-grid .sponsors-grid-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#sponsors .sponsors-grid .sponsors-grid-wrapper a {
  margin: 0 10px;
  height: 70px;
  width: 200px;
}
#sponsors .sponsors-grid .sponsors-grid-wrapper a img {
  object-fit: contain;
}

/* Highlight */
/* #highlight .highlight-container {
  background: var(--white);
} */
#highlight .highlight-container .slide-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#highlight .highlight-container .slide-container .slider {
  cursor: grab;
}

#highlight .highlight-container .slide-container .slider img {
  margin: 10px;
  border-radius: 5px;
  box-shadow:
    1px 1px 10px #3e3c3c5d,
    inset -1px -1px 10px #31333653;
  object-position: top;
}

#highlight .highlight-container .slide-container .highlight-slider-1 img {
  height: 220px;
}
#highlight .highlight-container .slide-container .highlight-slider-2 img {
  height: 180px;
}
#highlight .highlight-container .slide-container .highlight-slider-3 img {
  height: 270px;
}

/* Event Recap */
#event-recap .event-recap-container {
  position: relative;
}

#event-recap .event-recap-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0073ff8f, #00ff8000);
  filter: blur(120px);
  animation: moveBackground 5s infinite alternate;
}
#event-recap .event-recap-wrapper .video-container {
  width: 100%;
  height: 700px;
  max-height: 700px;
  border-radius: 30px;
  overflow: hidden;
}

#event-recap .event-recap-wrapper .video-container iframe {
  width: 100%;
  height: 100%;
}

#event-recap .button {
  margin-top: 30px;
  text-align: center;
}

/* Timeline */
#timeline .timeline-wrapper {
  display: flex;
  /* align-items: center;
  justify-content: center; */
  flex-wrap: wrap;
  flex-direction: column;
  /* text-align: center; */
  gap: 50px;
}

#timeline .timeline-wrapper h2 {
  font-size: clamp(24px, 3vw, 48px);
}

#timeline .timeline-subwrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: 2rem;
  border-left: 3px solid #007bff;
}

#timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin: 2rem 0;
  position: relative;
}

#timeline .timeline-item .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 4px;
}

#timeline .dot.blue {
  background-color: blue;
}
#timeline .dot.yellow {
  background-color: gold;
}
#timeline .dot.green {
  background-color: limegreen;
}
#timeline .dot.pink {
  background-color: deeppink;
}

#timeline .text {
  margin-left: 1.5rem;
}

#timeline .text h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

#timeline .text p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

/* Contact */
#contact .contact-container {
  position: relative;
}

#contact .contact-container::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  background: #00ff803d;
  background: #3000ab7f;
  height: 300px;
  width: 300px;
  filter: blur(100px);
  z-index: -1;
}

#contact .contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  gap: 50px;
}

#contact .contact-wrapper h2 {
  font-size: clamp(24px, 3vw, 48px);
}

#contact .contact-box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

#contact .contact-box-container .contact-box {
  border-radius: 10px;
  background: #ffffff16;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  width: 300px;
}

#contact .contact-box-container .contact-box h4 {
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--primary-light-color);
}

#contact .contact-box-container .contact-box a {
  transition: all 0.3s ease;
}

#contact .contact-box-container .contact-box a:hover {
  color: var(--primary-light-color);
}

#contact .become {
  text-align: center;
}

/* More About Eventhive  */
#more-about .more-container {
  position: relative;
}

#more-about .more-container::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  background: #00ff8040;
  background: #3000ab7f;
  height: 300px;
  width: 300px;
  filter: blur(100px);
  z-index: -1;
}

#more-about {
  font-size: 16px;
}

#more-about .more-logo {
  margin-bottom: 30px;
}
#more-about .more-logo .logos {
  display: flex;
  align-items: center;
  gap: 30px;
}

#more-about .more-logo .logo-separator {
  width: 2px;
  height: 50px;
  background: var(--white);
}

#more-about .more-logo .logo {
  width: 100px;
}

#more-about .more-logo .logo img {
  object-fit: contain;
}

#more-about p {
  margin-bottom: 10px;
}

#more-about .indus-cities h4 {
  margin-bottom: 5px;
}

#more-about .indus-cities {
  margin-bottom: 20px;
}

#more-about .indus-cities {
  word-wrap: break-word;
  /* word-break: break-all; */
}

#more-about .indus-cities span {
  display: inline-block;
  margin-right: 10px;
  /* word-wrap: break-word; */
  white-space: normal;
}

/* Footer */
/* #footer {
  color: var(--white);
  position: sticky;
  width: 100%;
  bottom: 0;
  z-index: -1;
  left: 0;
} */

#footer .footer-wrapper .top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

#footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#footer .footer-wrapper .top .logo {
  flex: 1;
}

#footer .footer-wrapper .top .logo .logo-icon {
  max-width: 350px;
}

#footer .footer-wrapper .top .logo .logo-icon img {
  opacity: 0.3;
}

#footer .footer-wrapper .top :is(.quick-links, .socials) {
  flex: 1;
}

#footer .footer-wrapper .top .quick-links {
  display: flex;
  justify-content: center;
}

#footer .footer-wrapper .top .quick-links ul li a {
  transition: all 0.3s ease-in-out;
  padding: 10px;
}

#footer .footer-wrapper .top .quick-links ul li a:hover {
  color: var(--primary-light-color);
}

#footer .footer-wrapper .top .socials ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

#footer .footer-wrapper .top .socials ul li a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #776f6f26;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

#footer .footer-wrapper .top .socials ul li a:hover {
  background: var(--primary-light-color);
}

#footer .footer-wrapper .center .timer {
  font-size: clamp(40px, 3vw, 60px);
  font-weight: 900;
  text-align: center;
  opacity: 0.3;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

#footer .footer-wrapper .divider {
  height: 1px;
  width: 100%;
  background: #ffffff35;
}

#footer .footer-wrapper .bottom {
  text-align: center;
}
