/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero-section {
  color: var(--color-pure-white);
  width: 100%;
  height: 100%;
  position: relative;
  margin: 4rem var(--side-padding) 3rem;
}

.hero-background {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-bg-image {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.date-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px; /* Special case for pill-shaped elements */
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-text {
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-buttons .button {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--border-radius-medium);
  text-decoration: none;
  transition: var(--transition-all);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Using unified button styles from main.css */

.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-pure-white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white !important;
}

.hero-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-item i {
  font-size: 1.5rem;
  opacity: 0.8;
}

.info-item > div {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1rem;
}

.info-value {
  font-size: 1rem;
  font-weight: 500;
}

/*--------------------------------------------------------------
# About Event Section
--------------------------------------------------------------*/
.about-event-section {
  background-color: var(--color-pure-white);
  padding: 2rem 0;
  width: 100%;
}

.about-header-section {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.about-description {
  color: var(--color-text-black);
  margin-bottom: 1.5rem;
  font-family: var(--default-font-family);
}

.feature-card {
  background-color: var(--color-pure-white);
  border-radius: var(--border-radius-medium);
  padding: 1.25rem;
  transition: var(--transition-all);
  text-align: left;
  border: 1px solid var(--color-light-grey);
}

.feature-icon {
  width: 35px;
  height: 35px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

.feature-card:nth-child(2) .feature-icon i {
  color: var(--color-secondary);
}

.feature-card:nth-child(3) .feature-icon i {
  color: var(--color-secondary);
}

.feature-card:nth-child(4) .feature-icon i {
  color: var(--color-secondary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-black);
  margin-bottom: 1rem;
  font-family: var(--header-font-family);
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-sub-text);
  margin: 0;
  font-family: var(--default-font-family);
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-section {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem var(--side-padding);
}

.cta-section-one {
  color: var(--color-pure-white);
}

.cta-section-one h3 {
  font-size: 1.5rem;
  font-weight: 600;
}


.cta-section-two i {
  font-size: 1.25rem;
}

/* Orphaned styles removed - these are already defined in hero section above */

.highlight-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-pure-white);
  margin: 1.5rem auto;
  position: relative;
  display: block;
  text-shadow: 0 0 5px rgba(0, 123, 255, 0.2), 0 0 10px rgba(0, 123, 255, 0.1);
  animation: titleFloat 8s ease-in-out infinite;
}

.highlight-section-title::before {
  display: none;
}

.highlight-section-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    transparent
  );
  border-radius: var(--border-radius-small);
}

/*--------------------------------------------------------------
# Schedule Preview Section
--------------------------------------------------------------*/

/* Responsive Design for Schedule Preview */

/*--------------------------------------------------------------
# Schedule Carousel Section
--------------------------------------------------------------*/
.schedule-carousel-section {
  padding: 2rem 0;
  background-color: var(--color-pure-white);
  overflow-x: hidden;
}

.schedule-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-light);
}

.schedule-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 1000%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 10%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes slideshow {
  0% {
    transform: translateX(0);
  }
  9% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-10%);
  }
  19% {
    transform: translateX(-10%);
  }
  20% {
    transform: translateX(-20%);
  }
  29% {
    transform: translateX(-20%);
  }
  30% {
    transform: translateX(-30%);
  }
  39% {
    transform: translateX(-30%);
  }
  40% {
    transform: translateX(-40%);
  }
  49% {
    transform: translateX(-40%);
  }
  50% {
    transform: translateX(-50%);
  }
  59% {
    transform: translateX(-50%);
  }
  60% {
    transform: translateX(-60%);
  }
  69% {
    transform: translateX(-60%);
  }
  70% {
    transform: translateX(-70%);
  }
  79% {
    transform: translateX(-70%);
  }
  80% {
    transform: translateX(-80%);
  }
  89% {
    transform: translateX(-80%);
  }
  90% {
    transform: translateX(-90%);
  }
  99% {
    transform: translateX(-90%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Carousel Dot Indicators */
.carousel-indicators {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
  padding: 10px 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-light-grey);
  cursor: pointer;
  transition: var(--transition-all);
  border: 2px solid var(--color-light-grey);
}

.dot.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.2);
}

.dot:hover {
  background-color: var(--color-text-grey);
  transform: scale(1.1);
}

.schedule-info-content {
  padding: 1rem;
}

.schedule-info-content p {
  line-height: 1.6;
  color: var(--color-sub-text);
  margin-bottom: 1.5rem;
}

.schedule-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.schedule-info-content .section-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
}

.highlight-item i {
  font-size: 1.2rem;
  width: 20px;
}

/*--------------------------------------------------------------
# Organised By Section
--------------------------------------------------------------*/
.organised-by-section {
  background-color: var(--color-pure-white);
  padding: 3rem 0;
  color: var(--color-dark);
}

.organised-by-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.organised-by-section p {
  color: var(--color-sub-text);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
/*--------------------------------------------------------------
# Sponsored By Section
--------------------------------------------------------------*/
.sponsored-by-section {
  background-color: var(--color-pure-white);
  padding: 2rem 0;
  border-top: 1px solid var(--color-light-grey);
}

.sponsored-by-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.sponsored-by-section p {
  color: var(--color-sub-text);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.organizer-logo-main,
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-all);
  border: 1px solid var(--color-light-grey);
}

.organizer-logo-main:hover,
.sponsor-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.organizer-logo-main img,
.sponsor-logo img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/*--------------------------------------------------------------
# Supported By Section
--------------------------------------------------------------*/
.supported-by-section {
  background-color: var(--color-muted-white);
  padding: 3rem 0;
}

.supported-by-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-black);
  margin-bottom: 1rem;
}

.supported-by-section p {
  color: var(--color-sub-text);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.organizer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  height: 100px;
  background: white;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-all);
  border: 1px solid var(--color-light-grey);
}

.organizer-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.organizer-logo img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.organizer-logo:hover img {
  filter: brightness(1.1);
}

/*--------------------------------------------------------------
# Speakers Preview Section
--------------------------------------------------------------*/

.speaker-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-sub-text);
  margin-bottom: 0.5rem;
}

.speaker-title {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Geometric Network Pattern Animation
--------------------------------------------------------------*/
.geometric-network {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
  animation: floatUpDown 6s ease-in-out infinite;
  display: block; /* Hidden on mobile by default */
}

.network-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.network-line {
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1;
  stroke-linecap: round;
  filter: url(#glow);
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  animation: networkPulse 3s ease-in-out infinite;
  display: none;
}

.network-node {
  fill: rgba(255, 255, 255, 0.9);
  filter: url(#glow);
  animation: nodePulse 2s ease-in-out infinite;
  r: 3;
}

/* Staggered animations for different elements */
.line-1 {
  animation-delay: 0s;
}
.line-2 {
  animation-delay: 0.2s;
}
.line-3 {
  animation-delay: 0.4s;
}
.line-4 {
  animation-delay: 0.6s;
}
.line-5 {
  animation-delay: 0.8s;
}
.line-6 {
  animation-delay: 1s;
}
.line-7 {
  animation-delay: 1.2s;
}
.line-8 {
  animation-delay: 1.4s;
}
.line-9 {
  animation-delay: 1.6s;
}
.line-10 {
  animation-delay: 1.8s;
}
.line-11 {
  animation-delay: 2s;
}
.line-12 {
  animation-delay: 2.2s;
}
.line-13 {
  animation-delay: 2.4s;
}
.line-14 {
  animation-delay: 2.6s;
}
.line-15 {
  animation-delay: 2.8s;
}

.node-1 {
  animation-delay: 0.1s;
}
.node-2 {
  animation-delay: 0.3s;
}
.node-3 {
  animation-delay: 0.5s;
}
.node-4 {
  animation-delay: 0.7s;
}
.node-5 {
  animation-delay: 0.9s;
}
.node-6 {
  animation-delay: 1.1s;
}
.node-7 {
  animation-delay: 1.3s;
}
.node-8 {
  animation-delay: 1.5s;
}
.node-9 {
  animation-delay: 1.7s;
}
.node-10 {
  animation-delay: 1.9s;
}
.node-11 {
  animation-delay: 2.1s;
}
.node-12 {
  animation-delay: 2.3s;
}

@keyframes networkPulse {
  0%,
  100% {
    stroke-opacity: 0.3;
    stroke-width: 1.5;
  }
  50% {
    stroke-opacity: 1;
    stroke-width: 2.5;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    fill-opacity: 0.4;
    transform: scale(1);
  }
  50% {
    fill-opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.bubble {
  position: relative;
  display: inline-block;
  animation: float 6s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="8" fill="rgba(185,87,255,0.8)" stroke="rgba(255,255,255,0.9)" stroke-width="2"/><circle cx="12" cy="12" r="3" fill="rgba(255,255,255,0.9)"/></svg>'),
    auto;
}

.bubble:hover {
  animation-play-state: paused;
  z-index: 10;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><circle cx="14" cy="14" r="10" fill="rgba(185,87,255,0.9)" stroke="rgba(255,255,255,1)" stroke-width="2"/><circle cx="14" cy="14" r="4" fill="rgba(255,255,255,1)"/><path d="M14 8L14 20M8 14L20 14" stroke="rgba(255,255,255,0.8)" stroke-width="1.5" stroke-linecap="round"/></svg>'),
    auto;
}

.bubble:hover .bubble-content {
  background: rgba(185, 87, 255, 0.2);
  border-color: rgba(185, 87, 255, 0.5);
}

.bubble-content {
  background: rgba(185, 87, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(185, 87, 255, 0.3);
  border-radius: var(--border-radius-large);
  padding: 1rem;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 150px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.bubble-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.bubble:hover .bubble-content::before {
  left: 100%;
}

.bubble-content i {
  font-size: 1.5rem;
  color: var(--color-pure-white);
  transition: transform 0.3s ease;
}

.bubble:hover .bubble-content i {
  transform: scale(1.2) rotate(10deg);
}

.bubble-content span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes titleFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}

.bubble:nth-child(odd) {
  animation-direction: reverse;
}

.bubble:nth-child(3n) {
  animation-duration: 8s;
}

.bubble:nth-child(4n) {
  animation-duration: 7s;
}

.bubbles-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.segment-section > .glowing-dot:nth-child(1) {
  position: absolute;
  width: 18px;
  height: 18px;
  background: radial-gradient(
    circle,
    rgba(185, 87, 255, 0.9) 0%,
    rgba(185, 87, 255, 0.6) 30%,
    rgba(185, 87, 255, 0.3) 60%,
    transparent 100%
  );
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(185, 87, 255, 0.8), 0 0 44px rgba(185, 87, 255, 0.6),
    0 0 66px rgba(185, 87, 255, 0.4), 0 0 88px rgba(185, 87, 255, 0.2);
  z-index: 1;
  pointer-events: none;
  animation: randomMove4 16s ease-in-out infinite;
  /* Start from bottom right of segment-section */
  bottom: 10%;
  right: 10%;
  top: auto;
  left: auto;
}

.segment-section > .glowing-dot:nth-child(2) {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 204, 0.9) 0%,
    rgba(0, 255, 204, 0.6) 30%,
    rgba(0, 255, 204, 0.3) 60%,
    transparent 100%
  );
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.8), 0 0 36px rgba(0, 255, 204, 0.6),
    0 0 54px rgba(0, 255, 204, 0.4), 0 0 72px rgba(0, 255, 204, 0.2);
  z-index: 1;
  pointer-events: none;
  animation: randomMove5 13s ease-in-out infinite;
  animation-delay: -4s;
  /* Start from bottom right with slight offset */
  bottom: 15%;
  right: 15%;
  top: auto;
  left: auto;
}

.segment-section > .glowing-dot:nth-child(3) {
  position: absolute;
  width: 22px;
  height: 22px;
  background: radial-gradient(
    circle,
    rgba(255, 127, 0, 0.9) 0%,
    rgba(255, 127, 0, 0.6) 30%,
    rgba(255, 127, 0, 0.3) 60%,
    transparent 100%
  );
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(255, 127, 0, 0.8), 0 0 56px rgba(255, 127, 0, 0.6),
    0 0 84px rgba(255, 127, 0, 0.4), 0 0 112px rgba(255, 127, 0, 0.2);
  z-index: 1;
  pointer-events: none;
  animation: randomMove6 19s ease-in-out infinite;
  animation-delay: -7s;
  /* Start from bottom right with different offset */
  bottom: 20%;
  right: 5%;
  top: auto;
  left: auto;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

@keyframes networkFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-8px) translateX(5px) rotate(0.5deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-5px) translateX(-3px) rotate(-0.3deg);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-12px) translateX(3px) rotate(0.2deg);
    opacity: 0.7;
  }
}

/*--------------------------------------------------------------
# Conference Segments
--------------------------------------------------------------*/
.segment-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradient-dark-bg);
  color: var(--color-light-grey);
  padding: 2.5rem var(--side-padding);
  position: relative;
  overflow: hidden;
}

.segment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 123, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 86, 179, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(0, 123, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.segment-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

/*--------------------------------------------------------------
# Statistics Section
--------------------------------------------------------------*/
.statistics-section {
  background: var(--gradient-dark-bg);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 123, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 86, 179, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(0, 123, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.statistics-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.statistics-header {
  position: relative;
  z-index: 2;
}

.statistics-header .section-title {
  color: var(--color-pure-white);
}

.statistics-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(185, 87, 255, 0.1);
  border-radius: var(--border-radius-large);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(185, 87, 255, 0.3);
  transition: var(--transition-all);
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="8" fill="rgba(185,87,255,0.8)" stroke="rgba(255,255,255,0.9)" stroke-width="2"/><circle cx="12" cy="12" r="3" fill="rgba(255,255,255,0.9)"/></svg>'),
    auto;
  align-items: center;
  overflow: hidden;
}

/* Animated border effect */
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-large);
  padding: 2px;
  background: linear-gradient(
    90deg,
    rgba(185, 87, 255, 0.1) 0%,
    rgba(185, 87, 255, 0.3) 20%,
    rgba(185, 87, 255, 0.8) 40%,
    rgba(185, 87, 255, 1) 50%,
    rgba(185, 87, 255, 0.8) 60%,
    rgba(185, 87, 255, 0.3) 80%,
    rgba(185, 87, 255, 0.1) 100%
  );
  background-size: 200% 100%;
  animation: borderFlow 6s ease-in-out infinite;
  mask: linear-gradient(var(--color-pure-white) 0 0) content-box,
    linear-gradient(var(--color-pure-white) 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(var(--color-pure-white) 0 0) content-box,
    linear-gradient(var(--color-pure-white) 0 0);
  -webkit-mask-composite: xor;
  z-index: -1;
}

@keyframes borderFlow {
  0% {
    background-position: -100% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: -100% 0%;
  }
}

.stat-item:hover::before {
  animation-duration: 3s;
  background: linear-gradient(
    90deg,
    rgba(185, 87, 255, 0.2) 0%,
    rgba(185, 87, 255, 0.5) 20%,
    rgba(185, 87, 255, 0.9) 40%,
    rgba(185, 87, 255, 1) 50%,
    rgba(185, 87, 255, 0.9) 60%,
    rgba(185, 87, 255, 0.5) 80%,
    rgba(185, 87, 255, 0.2) 100%
  );
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(185, 87, 255, 0.2);
  border-color: rgba(185, 87, 255, 0.5);
  box-shadow: 0 10px 30px rgba(185, 87, 255, 0.2);
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><circle cx="14" cy="14" r="10" fill="rgba(185,87,255,0.9)" stroke="rgba(255,255,255,1)" stroke-width="2"/><circle cx="14" cy="14" r="4" fill="rgba(255,255,255,1)"/><path d="M14 8L14 20M8 14L20 14" stroke="rgba(255,255,255,0.8)" stroke-width="1.5" stroke-linecap="round"/></svg>'),
    auto;
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-icon i {
  font-size: 1.75rem;
  color: var(--color-pure-white);
  transition: var(--transition-all);
}

.stat-item:hover .stat-icon i {
  color: var(--color-pure-white);
  transform: scale(1.2) rotate(10deg);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-pure-white);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: var(--transition-all);
}

.stat-symbol {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-pure-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: var(--transition-all);
}

.stat-item:hover .stat-number {
  color: var(--color-pure-white);
  text-shadow: 0 0 15px rgba(185, 87, 255, 0.5);
}

.stat-item:hover .stat-symbol {
  color: var(--color-pure-white);
  text-shadow: 0 0 15px rgba(185, 87, 255, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  text-align: center;
  margin-top: 0.5rem;
}

/* Left-aligned stat items for objectives */
.stat-item-left {
  text-align: left !important;
  align-items: flex-start !important;
}

.stat-item-left .stat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item-left .stat-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.stat-item-left .stat-number {
  margin-bottom: 0;
  font-size: 2.5rem;
}

.stat-item-left .stat-content {
  text-align: left;
}

.stat-item-left .stat-label {
  text-align: left;
  margin-bottom: 0.75rem;
}

.stat-item-left .stat-description {
  text-align: left;
  margin-top: 0;
}

/* Glowing Dot Animation - Bigger Dots */
.glowing-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(
    circle,
    rgba(185, 87, 255, 0.9) 0%,
    rgba(185, 87, 255, 0.6) 30%,
    rgba(185, 87, 255, 0.3) 60%,
    transparent 100%
  );
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(185, 87, 255, 0.8), 0 0 50px rgba(185, 87, 255, 0.6),
    0 0 75px rgba(185, 87, 255, 0.4), 0 0 100px rgba(185, 87, 255, 0.2);
  z-index: 1;
  pointer-events: none;
  animation: randomMove 15s ease-in-out infinite;
  /* Start from top left */
  top: 10%;
  left: 10%;
}

@keyframes randomMove {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  25% {
    transform: translate(150px, 75px);
    opacity: 1;
  }
  50% {
    transform: translate(300px, 120px);
    opacity: 0.6;
  }
  75% {
    transform: translate(450px, 150px);
    opacity: 0.9;
  }
}

/* Second animation pattern for cyan dot */
@keyframes randomMove2 {
  0% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  12% {
    transform: translate(0, 80px); /* Straight down */
    opacity: 1;
  }
  24% {
    transform: translate(60px, 80px); /* Diagonal down-right */
    opacity: 0.5;
  }
  36% {
    transform: translate(60px, 160px); /* Straight down */
    opacity: 0.8;
  }
  48% {
    transform: translate(120px, 160px); /* Straight right */
    opacity: 0.6;
  }
  60% {
    transform: translate(120px, 240px); /* Straight down */
    opacity: 1;
  }
  72% {
    transform: translate(180px, 240px); /* Straight right */
    opacity: 0.4;
  }
  84% {
    transform: translate(180px, 320px); /* Straight down */
    opacity: 0.9;
  }
  96% {
    transform: translate(240px, 320px); /* Diagonal down-right */
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0); /* Back to start */
    opacity: 0.7;
  }
}

.glowing-dot:nth-child(3) {
  width: 24px;
  height: 24px;
  animation: randomMove3 18s ease-in-out infinite;
  animation-delay: -6s;
  background: radial-gradient(
    circle,
    rgba(255, 127, 0, 0.9) 0%,
    rgba(255, 127, 0, 0.6) 30%,
    rgba(255, 127, 0, 0.3) 60%,
    transparent 100%
  );
  box-shadow: 0 0 30px rgba(255, 127, 0, 0.8), 0 0 60px rgba(255, 127, 0, 0.6),
    0 0 90px rgba(255, 127, 0, 0.4), 0 0 120px rgba(255, 127, 0, 0.2);
  /* Start from top left with different offset */
  top: 20%;
  left: 5%;
}

/* Third animation pattern for orange dot */
@keyframes randomMove3 {
  0% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  11% {
    transform: translate(40px, 40px); /* Diagonal down-right */
    opacity: 1;
  }
  22% {
    transform: translate(40px, 0); /* Straight up */
    opacity: 0.8;
  }
  33% {
    transform: translate(80px, 0); /* Straight right */
    opacity: 0.5;
  }
  44% {
    transform: translate(80px, 80px); /* Straight down */
    opacity: 0.9;
  }
  55% {
    transform: translate(120px, 80px); /* Straight right */
    opacity: 0.7;
  }
  66% {
    transform: translate(120px, 40px); /* Straight up */
    opacity: 1;
  }
  77% {
    transform: translate(160px, 40px); /* Straight right */
    opacity: 0.6;
  }
  88% {
    transform: translate(160px, 120px); /* Straight down */
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0); /* Back to start */
    opacity: 0.6;
  }
}

/* Additional glowing dots with different timings */
.glowing-dot:nth-child(2) {
  width: 16px;
  height: 16px;
  animation: randomMove2 12s ease-in-out infinite;
  animation-delay: -3s;
  background: radial-gradient(
    circle,
    rgba(0, 255, 204, 0.9) 0%,
    rgba(0, 255, 204, 0.6) 30%,
    rgba(0, 255, 204, 0.3) 60%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.8), 0 0 40px rgba(0, 255, 204, 0.6),
    0 0 60px rgba(0, 255, 204, 0.4), 0 0 80px rgba(0, 255, 204, 0.2);
  /* Start from top left with slight offset */
  top: 15%;
  left: 15%;
}

/* Fourth animation pattern for bottom right purple dot */
@keyframes randomMove4 {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  10% {
    transform: translate(-60px, -60px); /* Diagonal up-left */
    opacity: 1;
  }
  20% {
    transform: translate(-120px, 0); /* Straight left */
    opacity: 0.6;
  }
  30% {
    transform: translate(-180px, -90px); /* Diagonal up-left */
    opacity: 0.9;
  }
  40% {
    transform: translate(-240px, 0); /* Straight left */
    opacity: 0.7;
  }
  50% {
    transform: translate(-300px, -120px); /* Diagonal up-left */
    opacity: 1;
  }
  60% {
    transform: translate(-360px, 0); /* Straight left */
    opacity: 0.5;
  }
  70% {
    transform: translate(-420px, -150px); /* Diagonal up-left */
    opacity: 0.8;
  }
  80% {
    transform: translate(-480px, 0); /* Straight left */
    opacity: 0.9;
  }
  90% {
    transform: translate(-540px, -180px); /* Diagonal up-left */
    opacity: 0.6;
  }
  100% {
    transform: translate(0, 0); /* Back to start */
    opacity: 0.8;
  }
}

/* Fifth animation pattern for bottom right cyan dot */
@keyframes randomMove5 {
  0% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  12% {
    transform: translate(0, -80px); /* Straight up */
    opacity: 1;
  }
  24% {
    transform: translate(-60px, -80px); /* Diagonal up-left */
    opacity: 0.5;
  }
  36% {
    transform: translate(-60px, -160px); /* Straight up */
    opacity: 0.8;
  }
  48% {
    transform: translate(-120px, -160px); /* Straight left */
    opacity: 0.6;
  }
  60% {
    transform: translate(-120px, -240px); /* Straight up */
    opacity: 1;
  }
  72% {
    transform: translate(-180px, -240px); /* Straight left */
    opacity: 0.4;
  }
  84% {
    transform: translate(-180px, -320px); /* Straight up */
    opacity: 0.9;
  }
  96% {
    transform: translate(-240px, -320px); /* Diagonal up-left */
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0); /* Back to start */
    opacity: 0.7;
  }
}

/* Sixth animation pattern for bottom right orange dot */
@keyframes randomMove6 {
  0% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  11% {
    transform: translate(-40px, -40px); /* Diagonal up-left */
    opacity: 1;
  }
  22% {
    transform: translate(-40px, 0); /* Straight down */
    opacity: 0.8;
  }
  33% {
    transform: translate(-80px, 0); /* Straight left */
    opacity: 0.5;
  }
  44% {
    transform: translate(-80px, -80px); /* Straight up */
    opacity: 0.9;
  }
  55% {
    transform: translate(-120px, -80px); /* Straight left */
    opacity: 0.7;
  }
  66% {
    transform: translate(-120px, -40px); /* Straight up */
    opacity: 1;
  }
  77% {
    transform: translate(-160px, -40px); /* Straight left */
    opacity: 0.6;
  }
  88% {
    transform: translate(-160px, -120px); /* Straight up */
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0); /* Back to start */
    opacity: 0.6;
  }
}

/*===========================*/
/*====== RESPONSIVE =========*/
/*===========================*/

/*--------------------------------------------------------------
# Tablet View (≥ 768px)
--------------------------------------------------------------*/
@media (min-width: 768px) {

  .cta-section-one {
    margin-bottom: 0.75rem;
  }
  .hero-content p,
  .hero-content h3
  {
    width: 65%;
  }

  
  .hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }

  .geometric-network {
    width: 40%;
    opacity: 1;
    display: block;
  }

  .network-line {
    display: block;
  }

  .about-event-section {
    padding: 4rem 0;
  }

  .about-header-section {
    padding: 0 2rem;
    margin-bottom: 3rem;
    max-width: 85%;
  }

  .feature-card {
    padding: 1.75rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
  }

  .feature-icon i {
    font-size: 1.75rem;
  }

  .segment-section {
    padding: 3rem var(--side-padding);
  }

  .cta-section {
    padding: 3rem var(--side-padding);
  }
  .statistics-section {
    padding: 5rem 0;
  }

  .statistics-subtitle {
    font-size: 1.1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-icon i {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-symbol {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }


  .bubble-content {
    height: 200px;
  }

  
  .bubble-content i {
    font-size: 2rem;
    color: var(--color-pure-white);
    transition: transform 0.3s ease;
  }

  .bubble-content span { 
    font-size: 1rem;
  }

  .highlight-section-title {
    font-size: 2rem;
  }

  .highlight-section-title::after {
    width: 50px;
    height: 2px;
  }

  /* Responsive glowing dots for tablet */
  .glowing-dot {
    width: 16px;
    height: 16px;
    animation-duration: 12s;
  }

  .glowing-dot:nth-child(2) {
    width: 12px;
    height: 12px;
    animation-duration: 10s;
  }

  .glowing-dot:nth-child(3) {
    width: 20px;
    height: 20px;
    animation-duration: 14s;
  }

  .segment-section > .glowing-dot:nth-child(1) {
    width: 14px;
    height: 14px;
    animation-duration: 14s;
  }

  .segment-section > .glowing-dot:nth-child(2) {
    width: 10px;
    height: 10px;
    animation-duration: 11s;
  }

  .segment-section > .glowing-dot:nth-child(3) {
    width: 18px;
    height: 18px;
    animation-duration: 17s;
  }

  .carousel-indicators {
    margin-top: 12px;
    gap: 6px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
  .schedule-carousel {
    height: 380px;
  }

  .schedule-info-content {
    padding: 1.25rem;
  }

  .schedule-highlights {
    gap: 0.875rem;
  }
  .organised-by-section, .sponsored-by-section, .supported-by-section {
    padding: 4rem 0;
  }

  .organised-by-section h2, .sponsored-by-section h2, .supported-by-section h2 {
    font-size: 1.5rem;
  }

  .organised-by-section p, .sponsored-by-section p, .supported-by-section p  {
    font-size: 1rem;
  }

  .speaker-name {
    font-size: 1.15rem;
  }

  .speaker-title {
    font-size: 0.925rem;
  }

  .organizer-logo {
    height: 120px;
    padding: 1.5rem;
  }

  .organizer-logo img {
    max-height: 60px;
  }

  .sponsored-by-section h2 {
    font-size: 1.5rem;
  }

  .sponsored-by-section p {
    font-size: 1rem;
  }

  .organizer-logo-main,
  .sponsor-logo {
    height: 120px;
    padding: 1.5rem;
  }

  .organizer-logo-main img,
  .sponsor-logo img {
    max-height: 80px;
  }

  .hero-info {
    gap: 3rem;
  }
}

/*--------------------------------------------------------------
# Medium Desktop View (≥ 992px)
--------------------------------------------------------------*/
@media (min-width: 992px) {
 

  .schedule-carousel-container {
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
  }

  .schedule-carousel-section {
    padding: 3rem 0;
  }

  .schedule-info-content {
    padding: 1.5rem;
    margin-top: 0;
  }

  .schedule-info-content .section-title {
    margin-top: 0;
  }

  .schedule-carousel {
    height: 300px;
  }

  .schedule-highlights {
    gap: 1rem;
  }

  .hero-buttons {
    margin-bottom: 4rem;
  }
}

/*--------------------------------------------------------------
# Large Desktop View (≥ 1200px)
--------------------------------------------------------------*/

@media (min-width: 1200px) {
  .organised-by-section, .sponsored-by-section, .supported-by-section {
    padding: 4rem 0;
  }

  .organised-by-section h2, .sponsored-by-section h2, .supported-by-section h2 {
    font-size: 1.5rem;
  }

  .organised-by-section p, .sponsored-by-section p, .sponsored-by-section p  {
    font-size: 1rem;
  }

  .about-event-section {
    padding: 6rem 0;
  }

  .about-header-section {
    margin-bottom: 4rem;
    max-width: 80%;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 1.5rem;
  }

  .feature-icon i {
    font-size: 2rem;
  }
  .statistics-section {
    padding: 5rem 0;
  }

  .statistics-subtitle {
    font-size: 1.2rem;
  }

  .stat-item {
    padding: 2rem 1rem;
  }

  .stat-icon i {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-symbol {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .hero-section {
    margin: 5rem var(--side-padding);
  }

  .banner-text {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
  }

  .segment-section {
    padding: 6rem var(--side-padding) 4rem;
  }

  .segment-section .container {
    padding: 0 6rem;
  }

  .cta-section {
    padding: 5rem var(--side-padding);
    flex-direction: row;
    align-items: center;
  }

  
  .cta-section-one h3 {
    font-size: 1.75rem;
    font-weight: 600;
  }


  .highlight-section-title {
    font-size: 2.5rem;
    margin: 0.75rem auto;
  }

  /* Desktop glowing dot sizing declared once; using detailed animated variants below */
  .schedule-carousel-section {
    padding: 4rem 0;
  }

  .schedule-carousel {
    height: 400px;
  }

  .schedule-info-content {
    padding: 2rem;
  }

  .carousel-indicators {
    margin-top: 15px;
    gap: 8px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }
}
