/* RESET STYLE */
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* CSS VARIABLES */
:root {
  --primary-color: #58808b;
  --secondary-color: #710187;
  --accent-color: #1c0138;
  --text-white: #fff;
  --text-light: #f8f9fa;
  --header-bg: #1d1b1b;
  --muted-foreground: 0 0% 60%;
  --muted: 0 0% 10%;
}
html {
  overflow-x: hidden !important;
}

/* BODY STYLE */
body {
  font-family: "Sofia Sans", sans-serif;
  font-size: 18px;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

/* SET HEAD TAG FONT FAMILY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
}

/* REMOVE ANCHOR STYLE */
a {
  text-decoration: none;
  color: inherit;
}

/* HEADER STYLES */
#header-section {
  display: block;
  background-color: transparent;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 0.3s linear;
  width: 100%;
}

/* NAVBAR STYLES */
.nav-logo {
  max-width: 150px;
  filter: brightness(0%) invert(1);
}
.dropdown-menu {
  border: none;
}
.dropdown-item {
  font-size: 18px;
}

.navbar-toggler {
  box-shadow: none;
  border: none;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  border: none;
  font-weight: 900;
  display: inline-block;
  vertical-align: 0rem !important;
}

.dropdown-item:active {
  background: none;
}
.z-999 {
  z-index: 999;
}
.nav-link-text {
  color: var(--text-white);
}

.scroll-bg {
  background: var(--header-bg) !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-bottom: 1px solid rgba(113, 1, 135, 0.5);
}

.nav-item-hover-effect {
  color: var(--text-white);
  position: relative;
  max-width: fit-content;
}
.nav-link:hover,
.nav-link:focus,
.nav-link.show {
  color: var(--text-white) !important;
}
.nav-item-hover-effect::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  background: rgba(113, 1, 135, 0.5);
  height: 2px;
  width: 0%;
  transition: all 0.3s linear;
}
.nav-item-hover-effect:hover::after {
  width: 100%;
}
.dropdown-menu .dropdown-item {
  color: var(--secondary-color);
}

/* ───────────────────────────────────────────
   SUBMENU — Desktop (flyout to the right)
─────────────────────────────────────────── */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu.sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  margin-top: 0;
}

/* Show sub-dropdown on hover (desktop) */
.dropdown-submenu:hover > .dropdown-menu.sub-dropdown {
  display: block;
}

/* Fix: Remove Bootstrap default arrow & set RIGHT arrow */
.dropdown-submenu > .dropdown-item.dropdown-toggle::after {
  display: inline-block !important;
  margin-left: auto !important;
  float: right !important;
  margin-top: 6px !important;
  border-top: 0.35em solid transparent !important;
  border-bottom: 0.35em solid transparent !important;
  border-left: 0.35em solid currentColor !important;
  border-right: 0 !important;
  width: 0 !important;
  height: 0 !important;
  vertical-align: 0 !important;
  content: "" !important;
}

/* ───────────────────────────────────────────
   SUBMENU — Mobile / Collapsed navbar
─────────────────────────────────────────── */
@media (max-width: 1399.98px) {
  /* Sub-dropdown sits below parent, full width */
  .dropdown-submenu > .dropdown-menu.sub-dropdown {
    position: static;
    left: 0;
    top: auto;
    box-shadow: none;
    border: none;
    border-left: 3px solid #dee2e6;
    border-radius: 0;
    margin-left: 1rem;
    padding-left: 0.5rem;
    display: none;
  }

  /* Mobile: arrow points DOWN */
  .dropdown-submenu > .dropdown-item.dropdown-toggle::after {
    float: none !important;
    margin-left: 6px !important;
    margin-top: 0 !important;
    border-left: 0.35em solid transparent !important;
    border-right: 0.35em solid transparent !important;
    border-top: 0.35em solid currentColor !important;
    border-bottom: 0 !important;
  }

  /* Show sub-dropdown when toggled open on mobile */
  .dropdown-submenu.open > .dropdown-menu.sub-dropdown {
    display: block;
  }
}
/* NAVBAR STYLES END*/

/* HERO SECTION STYLES */
.hero-content-wrapper {
  min-height: 100vh;
}

.hero-section {
  position: relative;
  /* padding-top: 100px; */
  background: transparent;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8));
}
.hero-content h1 {
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 6rem);
  background: linear-gradient(90deg, var(--text-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

#typewritter {
  position: relative;
  display: inline-block;
  /* Gradient Text */
  background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-content {
  width: 100%;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0%;
  z-index: 1;
}
.home-about-head {
  color: var(--text-white);
}
.home-about-text {
  color: hsl(var(--muted-foreground));
}

.read-more {
  color: var(--primary-color);
  transform: scale(1);
  transition: all 0.3s linear;
}

.read-more i {
  transform: translateX(0);
  transition: all 0.3s linear;
}
.read-more:hover {
  transform: scale(1.1);
}

.read-more:hover i {
  transform: translateX(1.5px);
}
.date-venue {
  font-size: x-large;
}

.hero-content-wrapper {
  width: 80%;
}
.box {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.countown p:nth-child(2) {
  color: hsl(var(--muted-foreground));
}

/* .home-about {
  position: absolute;
  bottom: 10%;
  width: 100%;
  margin: 0;
  left: 0% !important;
} */
.highlight {
  font-weight: bold;
  color: var(--secondary-color);
}

.line {
  margin: 20px 0px;
  position: relative;
  z-index: 1;
  height: 2px;
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.5) 25%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.5) 75%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.hero-video {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.button-primary {
  position: relative;
  background-color: var(--secondary-color);
  color: var(--text-white);
  border-radius: 20px;
  padding: 0.7rem 2rem;
  transition: all 0.3s linear;
}

.button-primary:hover {
  background-color: var(--secondary-color);
}

.button-secondary {
  position: relative;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  color: var(--text-white);
  padding: 0.7rem 2rem;
  transition: all 0.3s linear;
}

/* .button-primary::before {
  content: "\f08b";
  font-size: 14px;
  padding-right: 10px;
  font-weight: 900;
  font-family: "Font Awesome 7 Free";
}
.button-secondary::before {
  content: "\f387";
  font-size: 14px;
  padding-right: 10px;
  font-weight: 900;
  font-family: "Font Awesome 7 Free";
} */

.button-primary::after,
.button-secondary::after {
  content: "\f061";
  font-size: 14px;
  padding-left: 10px;
  font-weight: 900;
  font-family: "Font Awesome 7 Free";
}

.button-secondary:hover {
  border: 2px solid var(--secondary-color);
  background-color: var(--secondary-color);
}
.timmer-container {
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.countown {
  text-align: center;
}
.countown p:first-child {
  font-weight: 900;
  font-size: 43px;
}

/* HERO SECTION STYLES END*/

/* IMPACT STYLES */
.impact-container {
  position: relative;
}
.impact-container::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(113, 1, 135, 0.2) 0%,
    rgba(113, 1, 135, 0.2) 25%,
    rgba(113, 1, 135, 1) 50%,
    rgba(113, 1, 135, 0.2) 75%,
    rgba(113, 1, 135, 0.2) 100%
  );
}

.impact-container::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(113, 1, 135, 0.2) 0%,
    rgba(113, 1, 135, 0.2) 25%,
    rgba(113, 1, 135, 1) 50%,
    rgba(113, 1, 135, 0.2) 75%,
    rgba(113, 1, 135, 0.2) 100%
  );
}
.custom-border-right {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-content span:first-child {
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-white);
}
.impact-content span:last-child {
  font-weight: 400;
}

.impact-content span {
  color: hsl(var(--muted-foreground));
}

.section-subtitle span {
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 3.5rem;
  letter-spacing: 3.2px;

  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px hsl(var(--muted-foreground));
  text-shadow: 0 0 70px rgba(113, 1, 135, 0.5);
}

.section-title {
  position: relative;
  color: var(--text-white);
  padding-left: 1.5rem;
}
.section-title span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  height: 2px;
  width: 20px;
  background-color: var(--text-white);
}
/* IMPACT STYLES END */

/* ABOUT STYLES */
.about-image-wrapper {
  width: 400px;
  height: 400px;
  animation: bounce 5s 1s linear infinite;
  position: relative;
}

.about-image-wrapper img:first-child {
  filter: grayscale(0%);
  transition: all 0.4s linear;
}

.about-image-wrapper img:first-child:hover {
  filter: grayscale(100%);
}

.about-section {
  background-color: hsl(var(--muted) / 0.3);
}

.about-section p,
.about-section li {
  color: hsl(var(--muted-foreground));
}
.about-section svg {
  position: absolute;
  width: 100%;
  height: 70px;
  object-fit: cover;
  bottom: -70px;
  left: 0;
  fill: hsl(var(--muted) / 0.3);
}

.bg-image {
  position: absolute;
  top: 0;
  left: -40px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rotate 50s 1s linear infinite;
  z-index: -1;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.custom-strong {
  color: var(--secondary-color);
}

.custom-ul-style {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-ul-style li {
  position: relative;
  padding-left: 25px;
}
.custom-ul-style li::before {
  content: "\f058";
  font-weight: 900;
  font-family: "Font Awesome 7 Free";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--secondary-color);
}
.sponsors-item {
  padding: 10px;
  border: 1px solid;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.become-sponsor {
  position: relative;
  left: 50%;
  margin-top: 2rem;
  transform: translateX(-50%);
  display: inline-block;
  border: 1px solid var(--secondary-color);
  color: var(--text-white);
  padding: 0.5rem 1.5rem;
  transition: all 0.3s linear;
  border-radius: 20px;
}
.become-sponsor:hover {
  background-color: var(--secondary-color);
}
.become-sponsor i {
  font-size: 14px;
}

.sponsors-item img {
  width: 100%;
  height: 70px;
  /* filter: grayscale(100%); */
  transition: 0.4s ease;
}
.sponsors-advantage {
  filter: brightness(100%) invert(0.5);
}

/* .sponsors-item img:hover {
  filter: grayscale(0%);
} */
/* ABOUT STYLES END */

/* OUR SERVICES STYLE */
.focused-tracks {
  color: hsl(var(--muted-foreground));
  padding-top: 100px;
  position: relative;
}

.tracks-desc-1 {
  position: absolute;
  top: 40px;
  opacity: 0.2;
  filter: grayscale(100%);
  right: 0;
}

.accordion {
  background-color: transparent !important;
}

.accordion-body {
  color: hsl(var(--muted-foreground));
}

.accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid hsl(var(--muted) / 1) !important;
}

.accordion-button:after,
.accordion-button:not(.collapsed):after {
  background-image: none;
  content: "\2b";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: transparent;
  color: var(--text-white);
  border: none;
  border-bottom: 1px solid var(--secondary-color);
}
.track-image {
  filter: grayscale(0%);
  opacity: 0.5;
  transition: all 0.3s linear;
  animation: bounce 5s 1s linear infinite;
}

.track-image:hover {
  filter: grayscale(100%);
}

.accordion-button {
  font-size: large;
  background-color: transparent;
  color: hsl(var(--muted-foreground));
}

/* TRACKS STYLE END */

/* EXPERIENCE STYLE */
.exper-item-box {
  padding: 1rem;
  position: relative;
  border-radius: 20px;
  background-color: hsl(var(--muted) / 0.3);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.icon-wrap .number {
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.5;
}

.exper-desc-2 {
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  filter: grayscale(100%);
  opacity: 0.1;
  height: 500px;
}

.exper-item-box::after {
  position: absolute;
  content: "";
  inset: -1px;
  border-radius: 20px;
  background-color: none;
  z-index: -1;
  transition: all 0.3s linear;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

.exper-item-box:hover::after {
  background: linear-gradient(264deg, #f63 -31.73%, #6d2cf9 120.95%);
  animation: flip 0.8s ease forwards;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(180deg);
  }
}

.exper-item-box .content p {
  color: hsl(var(--muted-foreground));
}

.icon-wrap .icon {
  width: 50px;
  height: 50px;
}

.icon-wrap .icon img {
  filter: grayscale(100%);
  transition: all 0.3s linear;
}

.exper-item-box:hover .icon-wrap .icon img {
  filter: grayscale(0%);
}

.exper-item-box .icon-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* WHY THIS EXIST STYLE */
.why-this-exit {
  min-height: 300px;
  overflow: hidden;
  cursor: pointer;
  background-image: url("../images/robotic-healthcare-assistant-analyzing-patient-data-tablet-modern-hospital-future-ai.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-size: 110%; */
  background-position: center;

  transition: background-position 0.08s linear;
  background-attachment: fixed;
}
.why-this-exit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7));
}
.why-this-exit-content h4 {
  font-weight: 900;
  font-size: clamp(1.8rem, calc(4vw + 2rem), 4rem);
  color: var(--text-white);
}
/* WHY THIS EXIST END */

/* COUNCIL STYLES */
.council-slider .owl-stage,
.council-slider .owl-item {
  display: flex;
}
.council-item {
  padding: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--muted) / 1);
  background-color: #000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 1;
}

.social-icon {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  width: 40px;
  display: flex;
  background-color: var(--secondary-color);
  justify-content: center;
  align-items: center;
  height: 40px;
  transform: translateX(100px);
  border-radius: 50%;
  transition: all 0.4s linear;
}
.social-icon i {
  font-size: 1.5rem;
}

.council-item::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #000;
  border-radius: 18px;
  z-index: -1;
}

.council-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: conic-gradient(from 0deg, #73338b, #9d4451, #73338b);

  z-index: -2;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.council-item:hover::after {
  transform: scaleX(1);
}

.council-item:hover .social-icon {
  transform: translateX(0);
}

.council-item:active .social-icon {
  transform: translateX(0);
}

.council-item:focus .social-icon {
  transform: translateX(0);
}

.council-item img {
  width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s linear;
}

.council-item:hover img {
  filter: grayscale(0%);
}

.council-name {
  font-size: clamp(1.2rem, 1.1vw, 2.5rem);
  color: var(--text-white);
  font-weight: bold;
}

.council-item .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.section-subtitle {
  color: var(--secondary-color);
  margin-bottom: 2rem !important;
}

/* COUNCIL STYLES END */

/* ------ INFO SECTION ------ */
.info-section {
  position: relative;
  overflow: hidden;
  height: 700px;
}

.wave-wrapper {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.info-section img {
  filter: grayscale(100%);
  transition: all 0.3s linear;
}

.info-section img:hover {
  filter: grayscale(0%);
}

.info-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-section p,
.info-section li {
  color: hsl(var(--muted-foreground));
}

.info-box {
  width: 500px;
  overflow: hidden;
  height: 500px;
  position: relative;
}
.bg-circle {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  overflow: hidden;
  width: 400px;
  border-radius: 50%;
  background: transparent;
  height: 400px;
  z-index: 2;
  box-shadow: 0px 0px 20px rgba(113, 1, 135, 0.6);
  left: 50%;
}

/* .bg-circle::before {
  position: absolute;
  content: "";
  background: linear-gradient(264deg, #f63 -31.73%, #6d2cf9 120.95%); */
/* inset: -2px; */
/* box-shadow: 0px 0px 20px rgba(113, 1, 135, 0.5);
  z-index: -2; */

/* .bg-circle::after {
  position: absolute;
  content: "";
  background-color: #000;
  inset: 2px;
  z-index: -1;
} */

.circle-div {
  position: absolute;
  width: 150px;
  height: 150px;
  padding: 0.5rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  top: 75px;
  left: 50%;
  color: var(--text-white);
  text-align: center;
  background-color: hsl(var(--muted));
  transition: background-color 0.5s linear;

  isolation: isolate;
}

/* Gradient Border */
.circle-div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 3px;

  background: linear-gradient(
    264deg,
    #ff6633 -31.73%,
    #6d2cf9 120.95%
  ) !important;

  /* Proper circular border mask */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spinBorder 4s linear infinite;
  pointer-events: none;
  z-index: -1;
}

/* Inner Background */
.circle-div::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: hsl(var(--muted));
  transition: background 0.5s linear;
  z-index: -1;
}

/* Active State */
.circle-div.active-circle::after {
  background: linear-gradient(
    264deg,
    #ff6633 -31.73%,
    #6d2cf9 120.95%
  ) !important;
}

.circle-div:nth-child(2) {
  top: 50%;
  left: 85%;
}

.circle-div:nth-child(3) {
  top: 85%;
  left: 50%;
}

.circle-div:nth-child(4) {
  top: 50%;
  left: 75px;
}

.info-slide-content {
  color: var(--text-white);
  background: #000;
  border: 1px solid rgba(113, 1, 135, 0.5);
  overflow: hidden;
  transition: all 0.3s linear;
  padding: 2rem;
  border-radius: 7px 20px 7px 20px;
}

@media (min-width: 1100px) {
  .info-slide-content {
    min-height: 420px;
  }
}

.info-slide-content .section-title {
  background: unset;
  color: var(--primary-color);
  transition: all 0.3s linear;
}

.gear-image {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: none;
  opacity: 0.2;
  animation: bounce 4s 1s linear infinite;
}

@keyframes bounce-and-fade-left {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(0) translateY(30px);
  }

  100% {
    transform: translateX(100%) translateY(0px);
  }
}

/* ------ Info Section End------ */

/* FOOTER STYLES */
/* ------ footer Section start ------ */
.footer-section {
  color: hsl(var(--muted-foreground));
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.footer-section h4 {
  position: relative;
  width: max-content;
  color: var(--text-white);
}

.footer-section h4::before {
  position: absolute;
  content: "";
  background: var(--secondary-color);
  border-radius: 10px;
  left: 0;
  bottom: -5px;
  width: 60%;
  height: 3px;
}

.footer-section .footer-img {
  filter: brightness(0%) invert(1);
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/shape-59.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}

.footer-section > * {
  position: relative;
  z-index: 1;
}

#footer-desc-1 {
  position: absolute;
  bottom: 30px;
  left: 40px;
  opacity: 0.3;
  animation: rotate-circle 40s linear infinite;
}

#footer-desc-2 {
  position: absolute;
  top: 30px;
  right: 40px;
  opacity: 0.3;
  animation: rotate-circle 40s linear infinite;
}

@keyframes rotate-circle {
  to {
    transform: rotate(360deg);
  }
}
.copyright {
  height: 70px;
  background-color: var(--header-bg);
}

.social img {
  width: 40px;
  height: 40px;
}

/* FOOTER STYLES END */

/* THE ROOM STYLES */
.the-room {
  padding-top: 50px;
  padding-bottom: 50px;
  color: hsl(var(--muted-foreground));
}

.desc-1 {
  position: fixed;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -5;
  /* filter: grayscale(100%) brightness(30%); */
  filter: brightness(10%);
  left: 0;
  /* opacity: 0.1; */
}
.the-room .content {
  position: relative;
  border-radius: 12px;
  background: #000;
  overflow: hidden;
  border: 1px solid hsl(var(--muted) / 1);
  height: 100%;
}

/* rotating gradient layer */
.the-room .content::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, #73338b, #9d4451);
  animation: spinBorder 4s linear infinite;
}

/* inner card layer */
.the-room .content::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #000;
  border-radius: 10px;
  z-index: 1;
}

/* content should stay above */
.the-room .content > * {
  position: relative;
  z-index: 2;
}

@keyframes spinBorder {
  100% {
    transform: rotate(360deg);
  }
}

.the-room .content p {
  font-size: clamp(1.5rem, 1.8vw, 2.5rem);
  color: var(--text-white);
  font-weight: bold;
}

.the-room .content i {
  border: 1px solid;
  border-radius: 50%;
  width: 30px;
  align-content: center;
  height: 30px;
}

/* PARTICLES STYLES */

.particle-wrapper {
  position: fixed;
  overflow: hidden;
  inset: 0;
  opacity: 0.5;
  z-index: -1;
}

/* Particle Style */
.particle {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: rgba(214, 40, 220, 0.5);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(214, 40, 220, 0.5);
  animation: floatUp linear infinite;
}

/* Animation */
@keyframes floatUp {
  from {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  to {
    transform: translateY(-120vh);
    opacity: 0;
  }
}
/* THE ROOM STYLES END */

/* INTERNAL ABOUT THE HOST */
.about-host,
.why-this-conference {
  color: hsl(var(--muted-foreground));
}
.breadcrumb {
  margin-top: 90px;
}
.breadcrumb {
  position: relative;
  min-height: 250px;
  background-image: url("../images/shape-58.png");
  background-size: cover;
  filter: grayscale(100%);
  background-repeat: no-repeat;
  background-color: #18003a;
  color: #fff;
  border: 1px solid #000;
}

.about-desc-2 {
  position: absolute;
  bottom: -42px;
  opacity: 0.2;
  filter: grayscale(100%);
  right: 0;
}

/* .breadcrumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 1) 100%
  );
} */

@media (max-width: 1400px) {
  .breadcrumb {
    margin-top: 80px;
  }
}

.first-img-wrapper .invitation-img {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 76px 20px;
}

.first-img-wrapper .invitation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 550px;
}

.second-img-wrapper .invitation-img {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 325px;
  height: 325px;
  border-radius: 20px 76px;
}

.second-img-wrapper {
  margin-bottom: 1.5rem;
  justify-content: start;
}

.second-img-wrapper .invitation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 400px;
}

.invitation-img img {
  filter: grayscale(0%);
  transition: all 0.3s linear;
}

.invitation-img img:hover {
  transform: scale(1.1);
  filter: grayscale(100%);
}

.why-this-conference {
  position: relative;
  min-height: 300px;
}

#why-this-conference-desc {
  position: absolute;
  top: 50%;
  filter: grayscale(100%);
  opacity: 0.3;
  transform: translateY(-50%);
  right: 0;
}

/* INTERNAL ABOUT THE CONFERENCE */
.internal-about-section {
  color: hsl(var(--muted-foreground));
}

/* INTERNAL COUNCIL STYLE END*/

/* PARTNERS STYLES */

.partner-section {
  color: hsl(var(--muted-foreground));
}
.table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
}

.table-box {
  border: 2px solid hsl(var(--muted) / 1);
  border-radius: 16px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.table-box.header {
  background: hsl(var(--muted) / 0.3);
  color: var(--text-white);
  font-size: 22px;
  font-weight: 800;
}

.note-section {
  margin-top: 42px;
}

.note-title {
  color: #8d00b5;
  font-size: 28px;
  font-style: italic;
  font-weight: 800;
  margin-bottom: 8px;
}

.note-list {
  padding-left: 22px;
}

.note-list li {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.note-list strong {
  font-weight: 800;
}

@media (max-width: 768px) {
  .table-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .table-box {
    font-size: 18px;
  }

  .table-box.header {
    font-size: 20px;
  }

  .note-title {
    font-size: 24px;
  }

  .note-list li {
    font-size: 16px;
  }
}

.sponsor-logo-card {
  border: 2px solid var(--secondary-color);
}

.internal-become-sponsors {
  color: var(--secondary-color);
}
.internal-become-sponsors:hover {
  color: var(--text-white);
}
/* PARTNERS STYLES END */

/* REGISTRATION STYLES */
.clients {
  color: hsl(var(--muted-foreground));
}
.register-btn {
  padding: 20px 50px;
}
.center-btn .clients {
  color: hsl(var(--muted-foreground));
}

.clients .table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 4fr;
  gap: 15px;
  margin-bottom: 20px;
}

.clients .table-header > div {
  background: hsl(var(--muted) / 0.3);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
}

.clients .tiers {
  display: flex;
  flex-direction: column;
}

.clients .sub-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.clients .sub-tiers span {
  background: hsl(var(--muted) / 0.3);
  color: #fff;
  padding: 8px;
  border-radius: 20px;
  font-size: 12px;
}

/* Rows */
.clients .row {
  display: grid;
  grid-template-columns: 1fr 1fr repeat(4, 1fr);
  gap: 15px;
  margin: 0px;
  margin-bottom: 15px;
}

.clients .mode {
  background: hsl(var(--muted) / 0.3);
  color: white;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
}

.clients .track {
  border: 2px solid hsl(var(--muted) / 1);
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

.center-btn a {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: hsl(var(--muted) / 0.3);
  color: #fff;
  border: 1px solid var(--secondary-color);
  font-weight: 600;
  border-radius: 7px 20px 7px 20px;
  transition: all 0.5s ease;
}
.center-btn a span i {
  font-size: 14px;
}

.center-btn a:hover {
  background: var(--secondary-color);
}

.clients .price {
  border: 2px solid hsl(var(--muted) / 0.3);
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  background: #fff;
}

.clients .price.highlight {
  background: hsl(var(--muted) / 0.3);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .clients .table-header,
  .clients .row {
    grid-template-columns: 1fr;
  }

  .clients .sub-tiers {
    grid-template-columns: 1fr;
  }
}
.center-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
/* REGISTRATION STYLES */

/* ==== BLOG STYLES ==== */
.blog-internal-content {
  color: hsl(var(--muted-foreground));
}

.blog-card {
  border: none;
  border: 1px solid rgba(113, 1, 135, 0.5);
  position: relative;
  box-shadow: 1px 1px 10px rgba(113, 1, 135, 0.3);
}

.blog-internal-content > p > strong {
  color: var(--text-white);
}

.blog-internal-content h2,
.blog-internal-content .date {
  color: var(--text-white);
}
.blog-internal-content .date {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--secondary-color);
  color: var(--text-white);
}
.blog-body,
.card-footer {
  background: hsl(var(--muted) / 1);
  color: hsl(var(--muted-foreground));
}
.read-more-btn {
  color: var(--secondary-color);
}
.blog-body h4 a {
  color: var(--text-white);
}

.blog-internal-content h4 {
  margin-top: 1.5rem;
  color: var(--secondary-color);
}
.pagination {
  color: hsl(var(--muted-foreground));
}
.pagination button {
  border: none;
  padding: 5px 10px;
  border-radius: 7px;
  color: #fff;
}
.pagination button:not(:disabled) {
  background: var(--secondary-color);
}

/* ------ Contact us ------ */
.contact-card-heading {
  color: var(--secondary-color);
  font-weight: 900;
}
.contact-info-div {
  min-height: 200px;
}

.contact-card,
.contact-card a {
  color: hsl(var(--muted-foreground));
  transition: 0.3s;
}
.form-container {
  background: hsl(var(--muted) / 1);
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card-heading {
  font-weight: 600;
  font-size: 18px;
}

.icon-image {
  filter: brightness(100%) invert(1);
  width: 45px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: hsl(var(--muted) / 0.3);
  background-clip: padding-box;
  border: 1px solid hsl(var(--muted-foreground));
  border-radius: var(--bs-border-radius);
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.contact-card {
  position: relative;
  border-radius: 20px;
  padding: 1px;
  border: 1px solid hsl(var(--muted) / 0.3);
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

/* Animated Gradient Border */
.contact-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, #73338b, #9d4451, #73338b);
  animation: spinBorder 4s linear infinite;
  z-index: -2;
}

/* Inner Background */
.contact-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #000;
  border-radius: inherit;
  z-index: -1;
}

/* Smooth Rotation */
@keyframes spinBorder {
  to {
    transform: rotate(360deg);
  }
}

.contact-form-container {
  background-image: url("../images/shape-48.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
}
.form-container label {
  color: var(--text-white);
  font-weight: 600;
}

.btn-custom {
  border: none;
  background-color: var(--secondary-color);
  color: #fff;
}

.coming-soon {
  padding: 2rem;
  background: hsl(var(--muted) / 1);
  border-radius: 10px;
  color: var(--text-white);
  font-size: clamp(1.5rem, 2vw, 3rem);
  box-shadow: 0px 0px 20px var(--secondary-color);
}

.blog-body {
  min-height: 200px;
}

@media (min-width: 990px) and (max-width: 1024px) {
  .blog-body {
    min-height: 250px;
  }
}

/* ===== PRELOADER ======= */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
canvas#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fog-bloom {
  position: absolute;
  width: 700px;
  height: 200px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(113, 1, 135, 0.25) 0%,
    rgba(28, 1, 56, 0.18) 40%,
    transparent 75%
  );
  filter: blur(38px);
  pointer-events: none;
  animation: fogPulse 3.5s ease-in-out infinite alternate;
}

@keyframes fogPulse {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scaleX(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1.12);
  }
}

.white-bloom {
  position: absolute;
  width: 600px;
  height: 80px;
  left: 50%;
  top: calc(50% + 46px);
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(113, 1, 135, 0.18) 0%,
    rgba(28, 1, 56, 0.12) 40%,
    transparent 75%
  );
  filter: blur(28px);
  pointer-events: none;
  animation: whitePulse 3.5s ease-in-out infinite alternate;
}

@keyframes whitePulse {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.brand-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.brand-text {
  display: flex;
  gap: 0;
  line-height: 1;
  user-select: none;
}

.brand-text .word {
  display: flex;
}

.brand-text .space {
  width: 0.45em;
}

.char {
  display: inline-block;
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(
    90deg,
    rgba(113, 1, 135, 1) 0%,
    rgba(28, 1, 56, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    charEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    charFloat 3.2s ease-in-out infinite;
}

.char.glow-pulse {
  animation:
    charEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    charFloat 3.2s ease-in-out infinite,
    glowPulse 2.8s ease-in-out infinite;
}

@keyframes charEntrance {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.6);
    filter: blur(12px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes charFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(113, 1, 135, 0.55))
      drop-shadow(0 0 30px rgba(28, 1, 56, 0.4));
  }

  50% {
    filter: drop-shadow(0 0 22px rgba(113, 1, 135, 0.95))
      drop-shadow(0 0 55px rgba(28, 1, 56, 0.7));
  }
}

.tagline {
  margin-top: 22px;
  font-size: clamp(10px, 1.5vw, 14px);
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(
    90deg,
    rgba(113, 1, 135, 1) 0%,
    rgba(28, 1, 56, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  animation: taglineIn 1s 1.8s ease forwards;
}

@keyframes taglineIn {
  to {
    opacity: 0.72;
  }
}

.desc-3 {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.1;
}
/* .focused-tracks::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
} */

/* ===== NEW EXPERIENCE ======= */
/* .experience-section {
  background-color: hsl(var(--muted) / 0.3);
} */
@media (min-width: 990px) {
  .px-150 {
    padding: 0px 150px;
  }
}

.video-wrapper {
  /* width: 400px;
  height: 400px; */
  margin: auto;
  overflow: hidden;
  animation: dynamic-border-radius 8s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.exp-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Organic animated border radius */
@keyframes dynamic-border-radius {
  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }

  25% {
    border-radius: 58% 42% 30% 70% / 30% 60% 40% 70%;
  }

  50% {
    border-radius: 30% 70% 55% 45% / 55% 35% 65% 45%;
  }

  75% {
    border-radius: 65% 35% 45% 55% / 60% 40% 60% 40%;
  }
}

@media (max-width: 550px) {
  .video-wrapper {
    width: 250px;
    height: 250px;
  }
}

.exp-card {
  --border-radius: 24px;
  position: relative;
  background: #000;
  border-radius: var(--border-radius);
  overflow: hidden;
  z-index: 1;
  border: 1px solid hsl(var(--muted) / 1);
  color: hsl(var(--muted-foreground));
}

/* ONLY BORDER */
.exp-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: conic-gradient(
    from 0deg,
    #ff0080,
    transparent,
    #7928ca,
    transparent
  );
  inset: -50%;
  animation: rotateBorder 6s linear infinite;
  z-index: -1;
}

.exp-card::after {
  --inset: 1px;
  content: "";
  inset: var(--inset);
  position: absolute;
  border-radius: calc(var(--border-radius) - var(--inset));
  background: inherit;
  z-index: -1;
}

@keyframes rotateBorder {
  100% {
    transform: rotate(360deg);
  }
}

.exp-card .icon {
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.exp-card .number {
  color: #fff;
  font-weight: 900;
  font-size: 42px;
  opacity: 0.5;
}

.the-room::after {
  position: absolute;
  background-image: url(../images/line-shape.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  /* z-index: 5; */
  /* filter: brightness(50%); */
}

.experience-section::after {
  position: absolute;
  background-image: url(../images/footer-bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  z-index: 2;
}

.desc-5 {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  object-fit: cover;
  width: 100%;
}

.desc-9 {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -2;
  transform: rotate(180deg);
}

.desc-6,
.desc-8 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0.7;
  z-index: -2;
  object-fit: cover;
}

.desc-7 {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  filter: brightness(20%);
  height: 700px;
}
#desc-7-2 {
  animation: rotate 20s linear forwards infinite;
}

#desc-7-1 {
  animation: rotate-reverse 20s linear forwards infinite;
}
@keyframes rotate-reverse {
  to {
    transform: rotate(-360deg);
  }
}

.progress-bar {
  --progress: 0%;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  background: conic-gradient(
    var(--secondary-color) var(--progress),
    rgba(255, 255, 255, 0.1) 0%
  );
  z-index: 999;
}

.progress-bar > * {
  position: relative;
  z-index: 1;
}

.progress-bar::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: #000;
}

.timeline-wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* DAY BAR */

.day-bar {
  background: #7b028f;
  color: #fff;
  padding: 10px 25px;
  font-weight: 700;
  font-size: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.day-bar span:last-child {
  font-size: 22px;
}

/* SESSION ROW */

.session-row {
  position: relative;
  padding: 40px 60px;
}

/* BOX */

.parallel-box {
  border: 2px solid #7b028f;
  border-radius: 18px;
  background: #fff;
  padding: 24px 28px;
  position: relative;
  min-height: 170px;
}

.parallel-box h3 {
  color: #6c0685;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.parallel-box ul {
  margin: 0;
  padding-left: 22px;
}

.parallel-box li {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* SIDE TAG */

.side-tag {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  background: #7b028f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  font-size: 20px;
}

.left-tag {
  left: -42px;
  border-radius: 8px 0 0 8px;
}

.right-tag {
  right: -42px;
  border-radius: 0 8px 8px 0;
}

/* CENTER SESSION */

.center-session {
  border: 2px solid #7b028f;
  background: #fff;
  color: #7b028f;
  font-size: 28px;
  font-weight: 800;
  font-style: italic;
  padding: 12px 28px;
  white-space: nowrap;
}

/* CONNECTOR */

.connector {
  height: 2px;
  background: #7b028f;
  flex: 1;
}

/* SECTION BAR */

.section-bar {
  background: #a26ab3;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  margin: 15px 0 35px;
}

/* LUNCH */

.lunch-box {
  display: inline-block;
  border: 2px solid #7b028f;
  color: #7b028f;
  background: #fff;
  padding: 12px 28px;
  font-size: 34px;
  font-weight: 900;
  font-style: italic;
  margin: 10px auto 40px;
}

/* DINNER */

.dinner-box {
  border: 2px solid #7b028f;
  border-radius: 24px;
  padding: 35px 20px 20px;
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  background: #fff;
}

.dinner-title {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #a26ab3;
  color: #fff;
  padding: 10px 40px;
  font-size: 32px;
  font-weight: 900;
  border-radius: 6px;
}

.dinner-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.dinner-items div {
  color: #7b028f;
  font-size: 28px;
  font-weight: 800;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .parallel-box h3 {
    font-size: 22px;
  }

  .parallel-box li {
    font-size: 18px;
  }

  .center-session {
    font-size: 18px;
  }

  .section-bar {
    font-size: 24px;
  }

  .dinner-items div {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .session-flex {
    flex-direction: column;
    gap: 25px;
  }

  .connector {
    display: none;
  }

  .center-session {
    width: 100%;
    text-align: center;
  }

  .parallel-box {
    width: 100%;
  }
}

.abstract-guidelines {
  color: #000000bf;
}

.center-btn.abstract a {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 7px 20px 7px 20px;
  transition: all 0.5s ease;
}

.abstract-guidelines h4 {
  color: var(--secondary-color);
}

/*========== PROGRAM PAGE STYLES ===========*/
.date-box {
  position: relative;
  display: inline-block;
  height: 135px;
  width: 160px;
  border-radius: 20px;
  background-color: #0d0d0d;
  font-size: 16px;
  border: 1px solid #7b018f;
  line-height: 20px;
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 15px 15px;
  padding-top: 70px;
  padding-left: 90px;
  cursor: pointer;
  margin: 0 15px 20px;
}

.date-box .day {
  position: absolute;
  left: 0px;
  top: 30px;
  padding: 5px 20px;
  background-color: #7b018f;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 0 15px 15px 0;
}

.date-box .date {
  position: absolute;
  left: -0;
  top: 80px;
  width: 100px;
  text-align: center;
  font-size: 38px;
  line-height: 20px;
  font-weight: 600;
  color: #7b018f;
}

.date-box .month {
  display: block;
  font-size: 20px;
  line-height: 1em;
  font-weight: 600;
  color: #7b018f;
  text-transform: uppercase;
}

.active-box {
  background: #7b018f;
}

.date-box.active-box .day {
  background-color: #fff;
  color: #7b018f;
}

.date-box.active-box .date,
.date-box.active-box .month {
  color: #fff;
}

.date-box.active-box .year {
  color: #000;
}

.tab-content {
  background-color: #0d0d0d;
  color: #fff;
}

.border-purple {
  border: 1px solid #7b018f;
}

.text-purple {
  color: #7b018f;
}

.bg-purple {
  background-color: #7b018f;
  color: #fff;
}

.tab-content h4 {
  margin: 0;
}

.tracks-box {
  position: relative;
}

.tracks-box .label {
  font-size: 14px;
}

#tracks-box-odd::after,
#tracks-box-even::after {
  content: "";
  position: absolute;
  height: 0px;
  width: 0px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

#tracks-box-odd::after {
  right: -15px;
  border-left: 15px solid #7b018f;
}

#tracks-box-even::after {
  left: -15px;
  border-right: 15px solid #7b018f;
}

#tracks-box-odd::before,
#tracks-box-even::before {
  content: "";
  position: absolute;
  height: 0px;
  width: 0px;
  left: 50%;
  display: none;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

#tracks-box-odd::before {
  bottom: -15px;
  border-top: 15px solid #7b018f;
}

#tracks-box-even::before {
  top: -15px;
  border-bottom: 15px solid #7b018f;
}

@media (max-width: 520px) {
  #tracks-box-odd::after,
  #tracks-box-even::after {
    display: none;
  }

  #tracks-box-odd::before,
  #tracks-box-even::before {
    display: block;
  }
}

/* ==============  STARTUP LANDING PAGE STYLES START ============ */
.page-main-content {
  color: hsl(var(--muted-foreground));
}

/* Why Participate Start */
.why-participate-card-item {
  color: hsl(var(--muted-foreground));
  border: 1px dotted var(--secondary-color);
}

.why-participate-card-item h3 {
  color: var(--text-white);
}
/* Why Participate End */

/* Who Can Participate Start */
.who-can-participate {
  color: hsl(var(--muted-foreground));
}
/* Who Can Participate End */

/* Participation Tiers Start */
.participation-tiers .price-card-outer {
  overflow: hidden;
  position: relative;
  background: hsl(var(--muted) / 0.3);
  border-radius: 30px;
  padding: 2px;
  height: 100%;
  color: hsl(var(--muted-foreground));
}

.participation-tiers .price-card-outer > * {
  position: relative;
  height: 100%;
  z-index: 3;
}

.participation-tiers .price-card-outer::after {
  content: "";
  position: absolute;
  overflow: hidden;
  width: 150%;
  height: 150%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    #ff0080,
    transparent,
    #7928ca,
    transparent
  );
  animation: rotateEffect 6s linear infinite;
}

.participation-tiers .price-card-inner {
  background-color: #0f0f0f;
  border-radius: 30px;
}

.participation-tiers .price-card-inner h4 {
  color: var(--text-white);
}

.participation-tiers .price {
  background-color: var(--secondary-color);
  border-radius: 50%;
  margin: auto;
  color: #fff;
  width: 150px;
  height: 150px;
}

.participation-tiers .price span:first-child {
  font-size: 42px;
  font-weight: 900;
}

/* Animation  */
@keyframes rotateEffect {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (min-width: 769px) {
  .tier-register-btn {
    position: fixed;
    left: 50%;
    width: 88%;
    transform: translateX(-50%);
    bottom: 25px;
  }
}

/* Participation Tiers Start */

/* Focus Areas Start */
.focus-areas {
  color: hsl(var(--muted-foreground));
}

.focus-areas h3 {
  color: var(--text-white);
}
/* Focus Areas End */

/* What Is The Pitch Dock Start */
.what-is-the-pitch-dock {
  color: hsl(var(--muted-foreground));
}

/* What Is The Pitch Dock End */

/* What Makes The Pitch Dock Different Start */
.what-makes-the-pitch-dock-different-card {
  background-color: #0f0f0f;
  color: hsl(var(--muted-foreground));
}
/* What Makes The Pitch Dock Different End */

/* Tab Btn Group Start */
.tab-btn-group {
  background-color: #0f0f0f;
  color: hsl(var(--muted-foreground));
}

.tab-btn {
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.2s linear;
}
.tab-btn:hover {
  background-color: var(--secondary-color);
}
.tab-btn.active {
  background-color: var(--secondary-color);
}

.tab-content {
  background-color: #0f0f0f;
  color: hsl(var(--muted-foreground));
}

.floating-btn {
  position: fixed;
  top: 50%;
  right: -50px;
  z-index: 999;
  transform: translateY(-50%) rotate(270deg);
}

.floating-btn a {
  border-radius: 10px 10px 0 0px;
  padding: 20px;
}

@media (max-width: 520px) {
  .floating-btn a {
    border-radius: 10px 10px 0 0px;
    padding: 8px 7px;
    font-size: 14px;
  }

  .floating-btn {
    right: -40px;
  }
}
/* Tab Btn Group End */
.day-tabs-groups {
  padding: 10px;
  border-radius: 20px;
}

.days-tab-group button {
  padding: 20px;
  position: relative;
  color: var(--secondary-color);
  font-weight: bold;
  border: 1px solid var(--secondary-color);
  background-color: transparent;
  transition: all 0.3s linear;
  border-radius: 10px;
}

.days-tab-group button.active,
.days-tab-group button:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.days-tab-group button.active::after {
  content: "";
  position: absolute;
  border-top: 15px solid var(--secondary-color);
  bottom: -15px;
  height: 0px;
  width: 0px;
  left: 50%;
  display: block;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

.section-title h2 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #40372e, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title {
  text-align: center;
  position: relative;
}

.hall-tabs-group {
  background-color: #2031521f;
  padding: 10px;
  border-radius: 50px;
}

.hall-tabs-group button {
  border: 1px solid var(--secondary-color);
  border-radius: 50px;
  padding: 10px 20px;
  background: transparent;
  color: var(--secondary-color);
  font-weight: bold;
  transition: all 0.3s linear;
}

.hall-tabs-group button.active,
.hall-tabs-group button:hover {
  color: #fff;
  background-color: var(--secondary-color);
}

/* ===== AGENDA (V2 — dark timeline layout) ===== */
.agenda.agenda-v2 {
  padding: var(--section-padding);
  background: #0c0c14;
  position: relative;
  overflow: hidden;
}

.agenda.agenda-v2::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(195, 53, 49, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.agenda-v2-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.agenda-v2-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 14px;
}

.agenda-v2-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.agenda-v2-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.8;
}

.agenda-v2-center {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.agenda-v2-track-wrap {
  position: relative;
  width: 100%;
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.agenda-v2-track-wrap.is-collapsed .agenda-v2-item--hidden {
  display: none;
}

.agenda-v2-track-wrap.is-expanded .agenda-v2-item--hidden {
  display: grid;
}

.agenda-v2-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, #0c0c14 88%);
  pointer-events: none;
  z-index: 2;
}

.agenda-v2-track {
  width: 100%;
  position: relative;
}

.agenda-v2-rail::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.14);
  z-index: 0;
}

.agenda-v2-item:last-child .agenda-v2-rail::before {
  bottom: 0;
}

.agenda-v2-item {
  display: grid;
  grid-template-columns: minmax(130px, 160px) 24px minmax(0, 1fr);
  gap: 0 20px;
  padding-bottom: 10px;
  position: relative;
  width: 100%;
  max-width: 955px;
  margin: 0 auto;
  /*box-shadow: 1px -2px 8px -1px #ac67ff00;*/
  margin-bottom: 2px;
}

.agenda-v2-item:last-child {
  padding-bottom: 0;
}

.agenda-v2-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  position: relative;
}

.agenda-v2-rail {
  position: relative;
  display: flex;
  justify-content: center;
}

.agenda-v2-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  white-space: nowrap;
  border: 1px solid transparent;
}

.agenda-v2-duration {
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.agenda-v2-dot {
  position: relative;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid #0c0c14;
  z-index: 2;
  flex-shrink: 0;
}

.agenda-v2-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 32px;
  min-width: 260px;
  background: var(--clr-red);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(195, 53, 49, 0.35);
}

.agenda-v2-toggle:hover {
  background: var(--clr-red-dark);
  transform: translateY(-2px);
}

.agenda-v2-toggle .iconsax {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.agenda-v2-track-wrap.is-expanded + .agenda-v2-legend {
  margin-top: 40px;
}

.agenda-v2-body {
  padding-top: 2px;
}

.agenda-v2-time {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.agenda-v2-item-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.agenda-v2-item-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.agenda-v2-speakers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.agenda-v2-speakers h6 {
  color: #bfdbfe;
}

.agenda-v2-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agenda-v2-speaker-img,
.agenda-v2-speaker-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.agenda-v2-speaker-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.agenda-v2-speaker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.agenda-v2-speaker-info span {
  font-size: 14px;
  padding-top: 5px;
}

.agenda-v2-speaker-by {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.agenda-v2-speaker-info strong {
  color: #ffffff;
  font-weight: 600;
}

.agenda-v2-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.agenda-v2-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.agenda-v2-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Tag / track colors */
.tag-registration,
.tag-registration.agenda-v2-pill,
.tag-registration.agenda-v2-time {
  --track: #6b7280;
}

.tag-opening,
.tag-opening.agenda-v2-pill,
.tag-opening.agenda-v2-time {
  --track: #c33531;
}

.tag-keynote,
.tag-keynote.agenda-v2-pill,
.tag-keynote.agenda-v2-time {
  --track: #c33531;
}

.tag-panel,
.tag-panel.agenda-v2-pill,
.tag-panel.agenda-v2-time {
  --track: #7c5cbf;
}

.tag-industry,
.tag-industry.agenda-v2-pill,
.tag-industry.agenda-v2-time {
  --track: #e07b32;
}

.tag-break,
.tag-break.agenda-v2-pill,
.tag-break.agenda-v2-time {
  --track: #3d9a6e;
}

.tag-showcase,
.tag-showcase.agenda-v2-pill,
.tag-showcase.agenda-v2-time {
  --track: #d4a017;
}

.tag-session,
.tag-session.agenda-v2-pill,
.tag-session.agenda-v2-time {
  --track: #3351a2;
}

.agenda-v2-pill.tag-registration {
  background: rgba(107, 114, 128, 0.2);
  color: #b0b8c4;
  border-color: rgba(107, 114, 128, 0.35);
}

.agenda-v2-pill.tag-opening,
.agenda-v2-pill.tag-keynote {
  background: rgba(195, 53, 49, 0.18);
  color: #f5a8a6;
  border-color: rgba(195, 53, 49, 0.4);
}

.agenda-v2-pill.tag-panel {
  background: rgba(124, 92, 191, 0.2);
  color: #c9b8f0;
  border-color: rgba(124, 92, 191, 0.4);
}

.agenda-v2-pill.tag-industry {
  background: rgba(224, 123, 50, 0.18);
  color: #f5c9a8;
  border-color: rgba(224, 123, 50, 0.4);
}

.agenda-v2-pill.tag-break {
  background: rgba(61, 154, 110, 0.18);
  color: #a8e8c8;
  border-color: rgba(61, 154, 110, 0.4);
}

.agenda-v2-pill.tag-showcase {
  background: rgba(212, 160, 23, 0.18);
  color: #f5e0a8;
  border-color: rgba(212, 160, 23, 0.4);
}

.agenda-v2-pill.tag-session {
  background: rgba(51, 81, 162, 0.2);
  color: #a8c4f5;
  border-color: rgba(51, 81, 162, 0.4);
}

.agenda-v2-dot.tag-registration {
  background: #6b7280;
}

.agenda-v2-dot.tag-opening,
.agenda-v2-dot.tag-keynote {
  background: #c33531;
}

.agenda-v2-dot.tag-panel {
  background: #7c5cbf;
}

.agenda-v2-dot.tag-industry {
  background: #e07b32;
}

.agenda-v2-dot.tag-break {
  background: #3d9a6e;
}

.agenda-v2-dot.tag-showcase {
  background: #d4a017;
}

.agenda-v2-dot.tag-session {
  background: #3351a2;
}

.agenda-v2-time.tag-registration {
  background: rgba(107, 114, 128, 0.25);
  color: #e2e8f0;
}

.agenda-v2-time.tag-opening,
.agenda-v2-time.tag-keynote {
  background: rgba(195, 53, 49, 0.25);
  color: #fecaca;
}

.agenda-v2-time.tag-panel {
  background: rgba(124, 92, 191, 0.25);
  color: #e9d5ff;
}

.agenda-v2-time.tag-industry {
  background: rgba(224, 123, 50, 0.25);
  color: #fed7aa;
}

.agenda-v2-time.tag-break {
  background: rgba(61, 154, 110, 0.25);
  color: #bbf7d0;
}

.agenda-v2-time.tag-showcase {
  background: rgba(212, 160, 23, 0.25);
  color: #fef08a;
}

.agenda-v2-time.tag-session {
  background: rgba(51, 81, 162, 0.25);
  color: #bfdbfe;
}

.agenda-v2-legend-dot.tag-keynote {
  background: #c33531;
}

.agenda-v2-legend-dot.tag-panel {
  background: #7c5cbf;
}

.agenda-v2-legend-dot.tag-industry {
  background: #e07b32;
}

.agenda-v2-legend-dot.tag-break {
  background: #3d9a6e;
}

.agenda-v2-legend-dot.tag-showcase {
  background: #d4a017;
}

/* Hide remaining agenda */
#agendaTrackWrap.is-collapsed .agenda-v2-item--hidden {
  display: none;
}

/* Show all agenda */
#agendaTrackWrap:not(.is-collapsed) .agenda-v2-item--hidden {
  display: grid;
  /* Change to flex if your .agenda-v2-item uses flex */
}

/* Hide fade after expanding */
#agendaTrackWrap:not(.is-collapsed) + .agenda-v2-fade {
  display: none;
}

.agenda-v2-speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.agenda-v2-speaker {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 576px) {
  .agenda-v2-speakers-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
         CURRENT SESSION
         =========================================================== */
.agenda-v2-item {
  transition: all 0.35s ease;
}

.agenda-v2-item.active {
  transform: scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.22);
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.04);
}

/* .agenda-v2-item.active .agenda-v2-body{
         border-left:4px solid #00d4ff;
         padding-left:20px;
         } */
.agenda-v2-item.active .agenda-v2-dot {
  background: #00d4ff !important;
  box-shadow:
    0 0 0 8px rgba(0, 212, 255, 0.15),
    0 0 20px rgba(0, 212, 255, 0.5);
  animation: agendaPulse 1.6s infinite;
}

.agenda-v2-item.active .agenda-v2-time {
  background: #00d4ff !important;
  color: #fff !important;
}

.agenda-v2-item.active .agenda-v2-pill {
  background: #00d4ff !important;
  color: #fff !important;
  border-color: #00d4ff;
}

.agenda-v2-item.active::before {
  content: "LIVE NOW";
  position: absolute;
  right: 20px;
  top: 5px;
  background: #00d4ff;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 10;
}

@keyframes agendaPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

.agenda-v2-session {
  padding: 24px;
  /*margin-bottom: 28px;*/
  /*border: 1px solid #e8e8e83a;*/
  border-radius: 18px;
  /*background: #750004;*/
  transition: 0.3s;
  margin-right: 20px;
}

.agenda-v2-session:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.agenda-v2-session:last-child {
  margin-bottom: 0;
}

/* ===== AGENDA (V2 — dark timeline layout) ===== */
.agenda.agenda-v2 {
  padding: var(--section-padding);
  background: #0c0c14;
  position: relative;
  overflow: hidden;
}

.agenda.agenda-v2::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(195, 53, 49, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.agenda-v2-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.agenda-v2-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 14px;
}

.agenda-v2-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.agenda-v2-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.8;
}

.agenda-v2-center {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.agenda-v2-track-wrap {
  position: relative;
  width: 100%;
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.agenda-v2-track-wrap.is-collapsed .agenda-v2-item--hidden {
  display: none;
}

.agenda-v2-track-wrap.is-expanded .agenda-v2-item--hidden {
  display: grid;
}

.agenda-v2-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, #0c0c14 88%);
  pointer-events: none;
  z-index: 2;
}

.agenda-v2-track {
  width: 100%;
  position: relative;
}

/*.agenda-v2-rail::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 22px;*/
/*    bottom: -36px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 2px;*/
/*    background: rgba(255, 255, 255, 0.14);*/
/*    z-index: 0;*/
/*}*/

/*.agenda-v2-item:last-child .agenda-v2-rail::before {*/
/*    bottom: 0;*/
/*}*/

.agenda-v2-item {
  display: grid;
  grid-template-columns: minmax(130px, 160px) 24px minmax(0, 1fr);
  gap: 0 20px;
  padding-bottom: 1px;
  position: relative;
  width: 100%;
  max-width: 955px;
  margin: 0 auto;
  box-shadow: 1px -2px 8px -1px #ac67ff00;
  margin-bottom: 2px;
}

.agenda-v2-item:last-child {
  padding-bottom: 0;
}

.agenda-v2-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  position: relative;
}

.agenda-v2-rail {
  position: relative;
  display: flex;
  justify-content: center;
}

.agenda-v2-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  white-space: nowrap;
  border: 1px solid transparent;
}

.agenda-v2-duration {
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.agenda-v2-dot {
  position: relative;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid #0c0c14;
  z-index: 2;
  flex-shrink: 0;
}

.agenda-v2-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 32px;
  min-width: 260px;
  background: var(--clr-red);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(195, 53, 49, 0.35);
}

.agenda-v2-toggle:hover {
  background: var(--clr-red-dark);
  transform: translateY(-2px);
}

.agenda-v2-toggle .iconsax {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.agenda-v2-track-wrap.is-expanded + .agenda-v2-legend {
  margin-top: 40px;
}

.agenda-v2-body {
  padding-top: 2px;
}

.agenda-v2-time {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.agenda-v2-item-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.agenda-v2-item-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.agenda-v2-speakers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.agenda-v2-speakers h6 {
  color: #bfdbfe;
}

.agenda-v2-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agenda-v2-speaker-img,
.agenda-v2-speaker-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.agenda-v2-speaker-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.agenda-v2-speaker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.agenda-v2-speaker-by {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.agenda-v2-speaker-info strong {
  color: #ffffff;
  font-weight: 600;
}

.agenda-v2-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.agenda-v2-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.agenda-v2-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Tag / track colors */
.tag-registration,
.tag-registration.agenda-v2-pill,
.tag-registration.agenda-v2-time {
  --track: #6b7280;
}

.tag-opening,
.tag-opening.agenda-v2-pill,
.tag-opening.agenda-v2-time {
  --track: #c33531;
}

.tag-keynote,
.tag-keynote.agenda-v2-pill,
.tag-keynote.agenda-v2-time {
  --track: #c33531;
}

.tag-panel,
.tag-panel.agenda-v2-pill,
.tag-panel.agenda-v2-time {
  --track: #7c5cbf;
}

.tag-industry,
.tag-industry.agenda-v2-pill,
.tag-industry.agenda-v2-time {
  --track: #e07b32;
}

.tag-break,
.tag-break.agenda-v2-pill,
.tag-break.agenda-v2-time {
  --track: #3d9a6e;
}

.tag-showcase,
.tag-showcase.agenda-v2-pill,
.tag-showcase.agenda-v2-time {
  --track: #d4a017;
}

.tag-session,
.tag-session.agenda-v2-pill,
.tag-session.agenda-v2-time {
  --track: #3351a2;
}

.agenda-v2-pill.tag-registration {
  background: rgba(107, 114, 128, 0.2);
  color: #b0b8c4;
  border-color: rgba(107, 114, 128, 0.35);
}

.agenda-v2-pill.tag-opening,
.agenda-v2-pill.tag-keynote {
  background: rgba(195, 53, 49, 0.18);
  color: #f5a8a6;
  border-color: rgba(195, 53, 49, 0.4);
}

.agenda-v2-pill.tag-panel {
  background: rgba(124, 92, 191, 0.2);
  color: #c9b8f0;
  border-color: rgba(124, 92, 191, 0.4);
}

.agenda-v2-pill.tag-industry {
  background: rgba(224, 123, 50, 0.18);
  color: #f5c9a8;
  border-color: rgba(224, 123, 50, 0.4);
}

.agenda-v2-pill.tag-break {
  background: rgba(61, 154, 110, 0.18);
  color: #a8e8c8;
  border-color: rgba(61, 154, 110, 0.4);
}

.agenda-v2-pill.tag-showcase {
  background: rgba(212, 160, 23, 0.18);
  color: #f5e0a8;
  border-color: rgba(212, 160, 23, 0.4);
}

.agenda-v2-pill.tag-session {
  background: rgba(51, 81, 162, 0.2);
  color: #a8c4f5;
  border-color: rgba(51, 81, 162, 0.4);
}

.agenda-v2-dot.tag-registration {
  background: #6b7280;
}

.agenda-v2-dot.tag-opening,
.agenda-v2-dot.tag-keynote {
  background: #c33531;
}

.agenda-v2-dot.tag-panel {
  background: #7c5cbf;
}

.agenda-v2-dot.tag-industry {
  background: #e07b32;
}

.agenda-v2-dot.tag-break {
  background: #3d9a6e;
}

.agenda-v2-dot.tag-showcase {
  background: #d4a017;
}

.agenda-v2-dot.tag-session {
  background: #3351a2;
}

.agenda-v2-time.tag-registration {
  background: rgba(107, 114, 128, 0.25);
  color: #e2e8f0;
}

.agenda-v2-time.tag-opening,
.agenda-v2-time.tag-keynote {
  background: rgba(195, 53, 49, 0.25);
  color: #fecaca;
}

.agenda-v2-time.tag-panel {
  background: rgba(124, 92, 191, 0.25);
  color: #e9d5ff;
}

.agenda-v2-time.tag-industry {
  background: rgba(224, 123, 50, 0.25);
  color: #fed7aa;
}

.agenda-v2-time.tag-break {
  background: rgba(61, 154, 110, 0.25);
  color: #bbf7d0;
}

.agenda-v2-time.tag-showcase {
  background: rgba(212, 160, 23, 0.25);
  color: #fef08a;
}

.agenda-v2-time.tag-session {
  background: rgba(51, 81, 162, 0.25);
  color: #bfdbfe;
}

.agenda-v2-legend-dot.tag-keynote {
  background: #c33531;
}

.agenda-v2-legend-dot.tag-panel {
  background: #7c5cbf;
}

.agenda-v2-legend-dot.tag-industry {
  background: #e07b32;
}

.agenda-v2-legend-dot.tag-break {
  background: #3d9a6e;
}

.agenda-v2-legend-dot.tag-showcase {
  background: #d4a017;
}

/* Hide remaining agenda */
#agendaTrackWrap.is-collapsed .agenda-v2-item--hidden {
  display: none;
}

/* Show all agenda */
#agendaTrackWrap:not(.is-collapsed) .agenda-v2-item--hidden {
  display: grid;
  /* Change to flex if your .agenda-v2-item uses flex */
}

/* Hide fade after expanding */
#agendaTrackWrap:not(.is-collapsed) + .agenda-v2-fade {
  display: none;
}

.agenda-v2-speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.agenda-v2-speaker {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 576px) {
  .agenda-v2-speakers-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
         CURRENT SESSION
         =========================================================== */
.agenda-v2-item {
  transition: all 0.35s ease;
}

.agenda-v2-item.active {
  transform: scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.22);
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.04);
}

/* .agenda-v2-item.active .agenda-v2-body{
         border-left:4px solid #00d4ff;
         padding-left:20px;
         } */
.agenda-v2-item.active .agenda-v2-dot {
  background: #00d4ff !important;
  box-shadow:
    0 0 0 8px rgba(0, 212, 255, 0.15),
    0 0 20px rgba(0, 212, 255, 0.5);
  animation: agendaPulse 1.6s infinite;
}

.agenda-v2-item.active .agenda-v2-time {
  background: #00d4ff !important;
  color: #fff !important;
}

.agenda-v2-item.active .agenda-v2-pill {
  background: #00d4ff !important;
  color: #fff !important;
  border-color: #00d4ff;
}

.agenda-v2-item.active::before {
  content: "LIVE NOW";
  position: absolute;
  right: 20px;
  top: 5px;
  background: #00d4ff;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 10;
}

@keyframes agendaPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

.agenda-v2-session {
  padding: 15px;
  margin-bottom: 3px;
  /*border: 1px solid #e8e8e800;*/
  border-radius: 18px;
  background: #000000;
  background: linear-gradient(
    182deg,
    rgb(0 0 0 / 8%) 19%,
    rgb(3 69 173 / 8%) 100%
  );
  transition: 0.3s;
  margin-right: 20px;
}

.agenda-v2-session.c-1 {
  background: #000000;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 66%,
    rgb(173 3 3 / 13%) 100%
  );
}

.agenda-v2-session.c-2 {
  background: #000000;
  background: linear-gradient(
    178deg,
    rgba(0, 0, 0, 1) 58%,
    rgb(83 243 231 / 10%) 100%
  );
}

.agenda-v2-session.c-3 {
  background: #000000;
  background: linear-gradient(
    178deg,
    rgba(0, 0, 0, 1) 58%,
    rgb(102 17 239 / 10%) 100%
  );
}

.agenda-v2-session.c-4 {
  background: #000000;
  background: linear-gradient(
    178deg,
    rgba(0, 0, 0, 1) 58%,
    rgb(83 243 231 / 10%) 100%
  );
}

.agenda-v2-session.c-5 {
  background: #000000;
  background: linear-gradient(
    178deg,
    rgba(0, 0, 0, 1) 58%,
    rgb(83 243 231 / 10%) 100%
  );
}

.agenda-v2-session:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.agenda-v2-session:last-child {
  margin-bottom: 0;
}
