@charset "UTF-8";
header {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
header.active {
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(10px);
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  header .navbar-brand img {
    width: 150px;
    height: auto;
  }
}

.edition-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  cursor: default;
}

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

@keyframes barFlow {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.edition-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: solid 1px #CDCDCD;
}

/* ── Shared gradient text style ── */
.edition-number,
.edition-word {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
  display: inline-block;
  position: relative;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .edition-number,
  .edition-word {
    font-size: 18px;
  }
}
.edition-number,
.edition-word {
  /* Moving gradient on the text */
  background: linear-gradient(109deg, #3688ED -1.37%, #18B5AD 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-animation: gradientShift 3s linear infinite;
          animation: gradientShift 3s linear infinite;
}

/* "Edition" slightly delayed so they shimmer at different phases */
.edition-word {
  -webkit-animation: gradientShift 3s linear infinite 0.4s;
          animation: gradientShift 3s linear infinite 0.4s;
}

@-webkit-keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 250% center;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 250% center;
  }
}
/* ── Shimmer sweep overlay ── */
.edition-number::after,
.edition-word::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-animation: shimmerSweep 2.5s ease-in-out infinite;
          animation: shimmerSweep 2.5s ease-in-out infinite;
}

.edition-word::after {
  -webkit-animation: shimmerSweep 2.5s ease-in-out infinite 0.6s;
          animation: shimmerSweep 2.5s ease-in-out infinite 0.6s;
}

@-webkit-keyframes shimmerSweep {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes shimmerSweep {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
/* ── Entrance animation ── */
.edition-number {
  opacity: 0;
  -webkit-animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards, gradientShift 3s linear 0.7s infinite, shimmerSweep 2.5s ease-in-out 1s infinite;
          animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards, gradientShift 3s linear 0.7s infinite, shimmerSweep 2.5s ease-in-out 1s infinite;
}

.edition-word {
  opacity: 0;
  -webkit-animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards, gradientShift 3s linear 0.4s infinite, shimmerSweep 2.5s ease-in-out 1.6s infinite;
          animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards, gradientShift 3s linear 0.4s infinite, shimmerSweep 2.5s ease-in-out 1.6s infinite;
}

@-webkit-keyframes fadeSlideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.hero-section {
  /* background: linear-gradient(135deg, #ECFEFF 0%, #EFF6FF 50%, #FAF5FF 100%); */
  padding-bottom: 90px !important;
}
.hero-section::before {
  border-radius: 16777200px;
  background: rgba(0, 211, 243, 0.2);
  -webkit-filter: blur(64px);
          filter: blur(64px);
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  z-index: -1;
  top: 5%;
  left: 1%;
  -webkit-animation: glowFloat 15s ease-in-out infinite;
          animation: glowFloat 15s ease-in-out infinite;
}
.hero-section::after {
  border-radius: 16777200px;
  background: rgba(81, 162, 255, 0.2);
  -webkit-filter: blur(64px);
          filter: blur(64px);
  width: 400px;
  height: 400px;
  content: "";
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: 5%;
  -webkit-animation: glowFloat 15s ease-in-out infinite;
          animation: glowFloat 15s ease-in-out infinite;
}
.hero-section h1 {
  font-size: 84px;
  font-style: normal;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 48px;
  }
}
.hero-section .badge {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 767px) {
  .hero-section .badge {
    white-space: normal;
    line-height: 23px;
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .hero-section .badge img {
    display: none;
  }
}

@-webkit-keyframes glowFloat {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(20px, -15px);
            transform: translate(20px, -15px);
  }
  50% {
    -webkit-transform: translate(-15px, 20px);
            transform: translate(-15px, 20px);
  }
  75% {
    -webkit-transform: translate(15px, 15px);
            transform: translate(15px, 15px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes glowFloat {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(20px, -15px);
            transform: translate(20px, -15px);
  }
  50% {
    -webkit-transform: translate(-15px, 20px);
            transform: translate(-15px, 20px);
  }
  75% {
    -webkit-transform: translate(15px, 15px);
            transform: translate(15px, 15px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.hero-video {
  line-height: 1;
}
.hero-video .hero-video-wrapper {
  width: 50%;
  margin: 100px auto;
  -webkit-transition: width 0.15s linear;
  transition: width 0.15s linear;
}

#highImpact,
#pastStories {
  position: relative;
}
#highImpact .carousel,
#pastStories .carousel {
  padding-bottom: 80px;
}
#highImpact .carousel .carousel-item .card,
#pastStories .carousel .carousel-item .card {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow: hidden;
}
#highImpact .carousel .carousel-item .card:hover,
#pastStories .carousel .carousel-item .card:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
#highImpact .carousel .carousel-item .card:hover .card-img-top img,
#pastStories .carousel .carousel-item .card:hover .card-img-top img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
#highImpact .carousel .carousel-item .card .card-img-top img,
#pastStories .carousel .carousel-item .card .card-img-top img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#highImpact .carousel .carousel-item .card .h5,
#pastStories .carousel .carousel-item .card .h5 {
  font-size: 24px;
}
#highImpact .carousel .carousel-indicators [data-bs-target],
#pastStories .carousel .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #00C6E4;
  border: none;
  opacity: 1;
  margin: 0 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#highImpact .carousel .carousel-indicators .active,
#pastStories .carousel .carousel-indicators .active {
  background: linear-gradient(98deg, #348BE8 7.77%, #18B2AE 97.58%);
  width: 40px;
  border-radius: 20px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee .marquee-track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
}
@media (max-width: 768px) {
  .marquee::before, .marquee::after {
    display: none;
  }
}
.marquee::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(transparent));
  background: linear-gradient(to right, #ffffff, transparent);
}
.marquee::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ffffff), to(transparent));
  background: linear-gradient(to left, #ffffff, transparent);
}
.marquee .card {
  margin-right: 20px;
  margin-bottom: 20px;
}

.marquee.reverse .marquee-track {
  animation-direction: reverse;
}

/* Smooth GPU animation */
@-webkit-keyframes scroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes scroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
/* Pause on hover */
.marquee:hover .marquee-track {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.session-card.card {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.session-card.card:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.session-card.card:hover .card-img-top img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.session-card.card .card-img-top img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#experience .experience-card .card {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#experience .experience-card .card .card-icon {
  width: 64px;
  height: 64px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#experience .experience-card .card:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
#experience .experience-card .card:hover .card-icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#experience .experience-card:nth-child(1) .card {
  background: linear-gradient(135deg, rgba(0, 184, 219, 0.2) 0%, rgba(43, 127, 255, 0.2) 100%);
}
#experience .experience-card:nth-child(1) .card .card-icon {
  background: linear-gradient(135deg, #00B8DB 0%, #2B7FFF 100%);
}
#experience .experience-card:nth-child(2) .card {
  background: linear-gradient(135deg, rgba(173, 70, 255, 0.2) 0%, rgba(246, 51, 154, 0.2) 100%);
}
#experience .experience-card:nth-child(2) .card .card-icon {
  background: linear-gradient(135deg, #AD46FF 0%, #F6339A 100%);
}
#experience .experience-card:nth-child(3) .card {
  background: linear-gradient(135deg, rgba(142, 81, 255, 0.2) 0%, rgba(173, 70, 255, 0.2) 100%);
}
#experience .experience-card:nth-child(3) .card .card-icon {
  background: linear-gradient(135deg, #8E51FF 0%, #AD46FF 100%);
}
#experience .experience-card:nth-child(4) .card {
  background: linear-gradient(135deg, rgba(0, 166, 244, 0.2) 0%, rgba(97, 95, 255, 0.2) 100%);
}
#experience .experience-card:nth-child(4) .card .card-icon {
  background: linear-gradient(135deg, #00A6F4 0%, #615FFF 100%);
}
#experience .experience-card:nth-child(5) .card {
  background: linear-gradient(135deg, rgba(0, 201, 80, 0.2) 0%, rgba(0, 188, 125, 0.2) 100%);
}
#experience .experience-card:nth-child(5) .card .card-icon {
  background: linear-gradient(135deg, #00C950 0%, #00BC7D 100%);
}
#experience .experience-card:nth-child(6) .card {
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.2) 0%, rgba(251, 44, 54, 0.2) 100%);
}
#experience .experience-card:nth-child(6) .card .card-icon {
  background: linear-gradient(135deg, #FF6900 0%, #FB2C36 100%);
}

#workshops .card {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#workshops .card:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
#workshops .card:hover .card-img-top img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
#workshops .card .card-img-top img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#tickets .skew-clip {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-transform: skewY(-3deg);
          transform: skewY(-3deg);
  background: linear-gradient(128deg, #3886EF 3.81%, #19B2AF 91.33%);
  padding: 60px 0;
}
@media (max-width: 767px) {
  #tickets .skew-clip {
    -webkit-transform: skewY(0);
            transform: skewY(0);
  }
}
#tickets .skew-clip .container {
  -webkit-transform: skewY(3deg);
          transform: skewY(3deg);
}
@media (max-width: 767px) {
  #tickets .skew-clip .container {
    -webkit-transform: skewY(0);
            transform: skewY(0);
  }
}
#tickets .offer-badge {
  display: inline-block;
}
#tickets .offer-badge .offer-text {
  font-size: 56px;
  top: 18px;
  left: 12px;
  padding: 8px;
}
#tickets .timer-container ul li {
  margin: 0 20px;
}
#tickets .timer-container ul li .timer-number {
  font-size: 48px;
  font-weight: 600;
}
#tickets .timer-container ul li .timer-label {
  font-size: 20px;
  font-weight: 500;
}

#sponsors .sponsors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  #sponsors .sponsors {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  #sponsors .sponsors {
    grid-template-columns: repeat(2, 1fr);
  }
}
#venue {
  background: linear-gradient(135deg, #ECFEFF 0%, #EFF6FF 50%, #FAF5FF 100%);
}
#venue .dark-gradiant {
  width: 38px;
  height: 38px;
}
#venue .venue-name {
  bottom: -10px;
}

#awards .skew-clip-awards {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-transform: skewY(-3deg);
          transform: skewY(-3deg);
  background: linear-gradient(128deg, #151316 3.04%, #101010 90.08%);
  padding: 60px 0;
}
@media (max-width: 767px) {
  #awards .skew-clip-awards {
    -webkit-transform: skewY(0);
            transform: skewY(0);
  }
}
#awards .skew-clip-awards .container {
  -webkit-transform: skewY(3deg);
          transform: skewY(3deg);
}
@media (max-width: 767px) {
  #awards .skew-clip-awards .container {
    -webkit-transform: skewY(0);
            transform: skewY(0);
  }
}
#awards .card {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#awards .card:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
#awards .card .card-icon {
  width: 64px;
  height: 64px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #515151;
  -webkit-box-shadow: 0 0 24px rgba(173, 70, 255, 0.3), 0 0 48px rgba(43, 127, 255, 0.25);
          box-shadow: 0 0 24px rgba(173, 70, 255, 0.3), 0 0 48px rgba(43, 127, 255, 0.25);
}

#pastEditions h5 {
  bottom: 35px;
}
#pastEditions h6 {
  bottom: 10px;
}

#toolsandConnect {
  background: linear-gradient(135deg, #ECFEFF 0%, #EFF6FF 50%, #FAF5FF 100%);
}

.contact-us .icon-box {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(94deg, #3886F0 1.57%, #17B4AC 82.81%);
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-us .icon-box:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 184, 219, 0.3), 0 8px 24px rgba(43, 127, 255, 0.25);
          box-shadow: 0 4px 12px rgba(0, 184, 219, 0.3), 0 8px 24px rgba(43, 127, 255, 0.25);
}

#faq .accordion-button {
  background: #eef9ff;
  color: #383838;
  border: none;
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#faq .accordion-button:not(.collapsed) {
  background: #fff !important;
  background-color: #fff !important;
}

.new-gradient {
  background: linear-gradient(94deg, #3787ED 18.27%, #1AB2AF 99.28%);
}

.company-logo {
  width: 120px;
  height: 60px;
}

.line {
  border-radius: 16777200px;
  background: -webkit-gradient(linear, left top, right top, from(#3788ED), to(#26A1C9));
  background: linear-gradient(90deg, #3788ED 0%, #26A1C9 100%);
  width: 96px;
  height: 4px;
}

.speaker-session-list .accordion-button:not(.collapsed) {
  background: #F8FAFC !important;
  background-color: #F8FAFC !important;
}

.icon-box {
  width: 64px;
  height: 64px;
}

:root {
  --background: #ffffff;
  --foreground: #2E323B;
}

.fs-16 {
  font-size: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}
.fs-14 {
  font-size: 14px;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(135deg, #ECFEFF 0%, #EFF6FF 50%, #FAF5FF 100%);
  font-size: 16px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}
.text-gradient {
  background: linear-gradient(94deg, #3886F0 1.57%, #17B4AC 82.81%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.bg-gradient {
  background: linear-gradient(135deg, #ECFEFF 0%, #EFF6FF 50%, #FAF5FF 100%);
}

.bg-light {
  background-color: #F5F8FF !important;
}

.border-light {
  border: 1px solid #D4E0FF !important;
}

header + section {
  padding-top: 150px !important;
}

.title {
  color: #00C6E4;
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 75% */
  letter-spacing: -0.6px;
}

.sub-title {
  color: #626D84;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.btn.btn-primary {
  background: linear-gradient(94deg, #3886F0 1.57%, #17B4AC 82.81%);
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.btn-primary:hover {
  background: linear-gradient(94deg, #3886F0 1.57%, #17B4AC 82.81%);
  opacity: 0.9;
}
.btn:hover img {
  -webkit-animation: circle;
          animation: circle;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.move-round {
  -webkit-animation: circle;
          animation: circle;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.text-gradient {
  background: linear-gradient(94deg, #3886F0 1.57%, #17B4AC 32.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-animated {
  color: #3886F0;
  background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: hue 10s infinite linear;
}

@-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}
.text-primary {
  color: #00C6E4 !important;
}

.text-dark-light {
  color: #626D84 !important;
}

.text-link {
  color: #155DFC !important;
}

.main-title {
  font-size: 64px;
}
@media (max-width: 767px) {
  .main-title {
    font-size: 36px;
  }
}

.sub-title {
  font-size: 18px;
}
@media (max-width: 767px) {
  .sub-title {
    font-size: 16px;
  }
}

.bg-transparent {
  background-color: transparent !important;
  background: transparent !important;
}

.navtab-agenda {
  margin-bottom: 40px;
}
.navtab-agenda .nav-link {
  position: relative;
  padding: 12px 36px;
  border-radius: 999px !important;
  border: 1.5px solid #e2e8f0 !important;
  background: transparent !important;
  color: #7a8fa6 !important;
  outline: none;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  margin: 0 16px;
}
.navtab-agenda .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border-radius: 16777200px;
  background: linear-gradient(135deg, #348BE8 0%, #19B1B1 100%);
  opacity: 0;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  z-index: -1;
}
.navtab-agenda .nav-link:not(.active):hover {
  color: #4a90c4 !important;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 184, 219, 0.3);
          box-shadow: 0 10px 15px -3px rgba(0, 184, 219, 0.3);
}
.navtab-agenda .nav-link.active {
  color: #fff !important;
  border-color: transparent !important;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 184, 219, 0.3);
          box-shadow: 0 10px 15px -3px rgba(0, 184, 219, 0.3);
}
.navtab-agenda .nav-link.active::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.tab-content .tab-pane {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tab-content .tab-pane.show.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 116px;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#00c8f0), to(#1e90d6));
  background: linear-gradient(to bottom, #00c8f0, #1e90d6);
}
@media (max-width: 767px) {
  .timeline::before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .timeline .timeline-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.timeline .timeline-item::before {
  width: 18px;
  height: 18px;
  background: #fff;
  border: solid 4px #00A6F4;
  border-radius: 30px;
  content: "";
  position: absolute;
  top: 0;
  left: 75px;
  -webkit-box-shadow: 0 0 0 4px rgba(0, 200, 240, 0.15);
          box-shadow: 0 0 0 4px rgba(0, 200, 240, 0.15);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .timeline .timeline-item::before {
    left: -39;
  }
}
.timeline .timeline-item:hover .card {
  -webkit-box-shadow: 0 8px 32px rgba(0, 140, 200, 0.12);
          box-shadow: 0 8px 32px rgba(0, 140, 200, 0.12);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.timeline .timeline-item:hover::before {
  -webkit-box-shadow: 0 0 0 7px rgba(0, 200, 240, 0.2);
          box-shadow: 0 0 0 7px rgba(0, 200, 240, 0.2);
}
.timeline .timeline-time {
  width: 100px;
  min-width: 100px;
  padding-top: 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #7a8fa6;
  padding-right: 0;
  line-height: 1;
  text-align: left;
}
@media (max-width: 767px) {
  .timeline .timeline-time {
    margin-bottom: 10px;
  }
}
.timeline .card {
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
.timeline .card .card-body {
  gap: 16px;
}
@media (max-width: 767px) {
  .timeline .card.ms-5 {
    margin-left: 0px !important;
  }
}
@media (max-width: 767px) {
  .timeline .timeline-info .timeline-speaker,
  .timeline .timeline-info .timeline-location {
    width: 100%;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .timeline .timeline-info .timeline-speaker.me-4,
  .timeline .timeline-info .timeline-location.me-4 {
    margin-right: 0px !important;
  }
}

.bg-light-sublime {
  background-color: #EEF9FF !important;
}

.bg-light-gradient {
  background: linear-gradient(93deg, #F4F8FF 0.81%, #F4F8FF 100%) !important;
}

.dark-gradiant {
  border-radius: 8px;
  background: linear-gradient(135deg, #3AD1FC 0%, #2FE7F1 100%);
}

.card-animation {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.card-animation:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.speaker-card.card {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.speaker-card.card .card-img {
  overflow: hidden;
}
.speaker-card.card .card-img::after {
  opacity: 0.9;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(37.55%, #3190E1), color-stop(55.27%, #1EABBA), color-stop(99.82%, rgba(7, 7, 7, 0)));
  background: linear-gradient(0deg, #3190E1 37.55%, #1EABBA 55.27%, rgba(7, 7, 7, 0) 99.82%);
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: height 0.5s ease-out;
  transition: height 0.5s ease-out;
}
.speaker-card.card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  color: white;
}
.speaker-card.card:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.speaker-card.card:hover .card-img::after {
  height: 100%;
}

/* Hide number input arrows */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}/*# sourceMappingURL=main.css.map */

.phone-field label{
    display:block;
    margin-bottom:8px;
}

.phone-input-wrapper{
    width:100%;
}

.phone-input-wrapper .iti{
    width:100%;
}

.phone-input-wrapper input{
    width:100%;
}

.takeaways-wrapper ul{
    list-style:none;
    padding:0;
    margin:0;
}

.takeaways-wrapper li{
    display:flex;
    align-items:flex-start;
    gap:1rem;
    margin-bottom:1rem;
    padding:1.5rem;
    background:#F5F8FF;
    border:1px solid #D4E0FF;
    border-radius:12px;
    transition:transform 0.3s;
}

.takeaways-wrapper li:hover{
    transform:translateY(-3px);
}

.takeaways-wrapper li p{
    margin:0;
}

.takeaways-wrapper li::before{
    content:"";
    width:24px;
    height:24px;
    min-width:24px;
    margin-top:2px;
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%233191DF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 12L11 14L15 10' stroke='%233191DF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Force inputs to stack vertically */
.lead-modal .row {
    display: flex;
    flex-direction: column;
}

/* Make each field full width */
.lead-modal .col-lg,
.lead-modal .col-md-12,
.lead-modal .col-12 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

/* Spacing fix */
.lead-modal .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Input styling like your design */
.lead-modal .form-control {
    width: 100%;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    background: #f8f9fa;
}

/* Modal box styling */
.lead-modal .modal-content {
    border-radius: 20px;
    padding: 25px;
}

/* Button gradient */
.lead-modal .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #14b8a6);
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-size: 18px;
}

/* Fix intl-tel-input wrapper */
.lead-modal .iti {
    width: 100%;
}

/* Fix input inside intlTelInput */
.lead-modal .iti input {
    width: 100% !important;
    padding-left: 60px !important; /* space for flag */
    height: 56px;
    border-radius: 12px;
    background: #f3f4f6;
    border: 1px solid #ddd;
}

/* Fix flag position */
.lead-modal .iti__flag-container {
    left: 12px;
}

/* Align flag properly */
.lead-modal .iti__selected-flag {
    padding-left: 8px;
}

/* Remove weird spacing */
.lead-modal input[type="tel"] {
    width: 100%;
}

.story-card {
    min-width: 380px;
    max-width: 380px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-6px);
}

/* iframe */
.story-iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .story-card {
        min-width: 260px;
        max-width: 260px;
    }

    .story-iframe {
        height: 300px;
    }
}
