/* 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);
}
/* 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-bottom: 50px;
  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: 100px;
  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;
}

.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;
     }

 }


