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

:root {

  /* ======================
     COLOR SYSTEM
     ====================== */
  --red: #6D0E0F;
  --bg-dark: #080808;
  --dark-grey: #484848;
  --disable-grey: #AFAFAF;
  --grey: #F6F6F6;
  --light-red: #FFEEEE;
  --border-grey: #D9D9D9;
  --white: #FFFFFF;
  --night-purple: #0A0017;
  --amethyst-purple: #C75ED5;
  --neon-purple: #6C0AE2;
  --purple-light-border: rgba(80, 76, 160, 0.60);
  --purple-light: rgba(80, 76, 160, 0.60);
  --light-red: #fee;
  --light-blue: #F4F4FF;
  --yellow: #FC0;
  --btn-default: #5F20BE;
  --btn-hover: #5F20BE;


  /* ======================
     TYPOGRAPHY SYSTEM
     ====================== */

  /* Font Family */
  --font-sora: "Sora", sans-serif;
  --font-nunito: "Nunito", sans-serif;

  /* ======================
     TYPO
     ====================== */

  --font-36: 24px;
  --font-28: 20px;
  --font-18: 16px;
  --font-16: 14px;
  --font-14: 12px;
  --font-12: 10px;
  /* Border Radius */
  --radius-8: 8px;
  --radius-16: 16px;
}

@media (min-width:768px) {
  :root {
    /* ======================
     TYPO
     ====================== */
    --font-36: 28px;
    --font-28: 22px;
    --font-18: 18px;
    --font-16: 16px;
    --font-14: 12px;
    --font-12: 10px;
  }
}

@media (min-width:992px) {
  :root {
    /* ======================
     TYPO
     ====================== */
    --font-36: 36px;
    --font-28: 28px;
    --font-18: 18px;
    --font-16: 16px;
    --font-14: 14px;
    --font-12: 12px;
  }
}

.text-red { color: var(--red) !important; }
.text-dark { color: var(--bg-dark) !important; }
.text-dark-grey { color: var(--dark-grey) !important; }
.text-muted-custom { color: var(--disable-grey) !important; }
.text-grey { color: var(--grey) !important; }
.text-light-red { color: var(--light-red) !important; }
.text-white { color: var(--white) !important; }

.text-night-purple { color: var(--night-purple) !important; }
.text-amethyst { color: var(--amethyst-purple) !important; }
.text-neon-purple { color: var(--neon-purple) !important; }
.text-yellow { color: var(--yellow) !important; }

.bg-red { background-color: var(--red) !important; }
.bg-dark { background-color: var(--bg-dark) !important; }
.bg-grey { background-color: var(--grey) !important; }
.bg-light-red { background-color: var(--light-red) !important; }
.bg-light-blue { background-color: var(--light-blue) !important; }
.bg-white { background-color: var(--white) !important; }

.bg-night-purple { background-color: var(--night-purple) !important; }
.bg-amethyst { background-color: var(--amethyst-purple) !important; }
.bg-neon-purple { background-color: var(--neon-purple) !important; }
.bg-yellow { background-color: var(--yellow) !important; }


.border-grey { border-color: var(--border-grey) !important; }
.border-red { border-color: var(--red) !important; }
.border-purple { border-color: var(--neon-purple) !important; }
.border-purple-light { border: 1px solid var(--purple-light-border); }


.py-section {
  padding-top: 52px;
  padding-bottom: 52px;
}

@media (min-width: 992px) {
  .py-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 768px) {
  .py-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.pt-section {
  padding-top: 52px;
}

@media (min-width: 992px) {
  .pt-section {
    padding-top: 72px;
  }
}

@media (max-width: 768px) {
  .pt-section {
    padding-top: 36px;
  }
}

.pb-section {
  padding-bottom: 52px;
}

@media (min-width: 992px) {
  .pb-section {
    padding-bottom: 72px;
  }
}

@media (max-width: 768px) {
  .pb-section {
    padding-bottom: 36px;
  }
}


/* global styles start */
h2 {
  color: var(--white);
  font-family: var(--font-sora);
  font-size: var(--font-28);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.h2 {
  color: var(--white);
  font-family: var(--font-sora);
  font-size: var(--font-28);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.section-heading {
  color: var(--white);
  font-family: var(--font-sora);
  font-size: var(--font-28);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  text-align: center;
}

p {
  color: var(--white);
  font-family: var(--font-nunito);
  font-size: var(--font-16);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  text-align: left;
}

ul,
ol {
  padding-left: 1rem;
  list-style-position: outside;
}

li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
  /* padding-left: 0.5rem; */
  color: var(--white);
  font-family: var(--font-nunito);
  font-size: var(--font-16);
  font-weight: 400;
}

ul>li {
  list-style-type: disc;
}

ol>li {
  list-style-type: decimal;
}

ul>li:last-child,
ol>li:last-child {
  margin-bottom: 0;
}

li>ul,
li>ol {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

li::marker {
  color: var(--white);
  font-weight: bold;
}


.btn-primary {
  color: var(--white);
  text-align: center;
  font-family: var(--font-nunito);
  font-size: var(--font-14);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-8);
  background: linear-gradient(180deg, rgba(95, 32, 190, 0.60) -37.19%, rgba(199, 94, 213, 0.60) 82.38%, rgba(255, 255, 255, 0.60) 201.96%);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary {
  color: var(--white);
  text-align: center;
  font-family: var(--font-nunito);
  font-size: var(--font-14);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-8);
  border: 1px solid var(--amethyst-purple);
  background: radial-gradient(67.87% 119.58% at 51.2% 82.38%, rgba(199, 94, 213, 0.20) 0%, rgba(95, 32, 190, 0.20) 100%);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}



/* header styles start */
header {
  background-color: var(--night-purple);
  padding: 22px 0 36px 0;
  position: relative;
}

@media (min-width:992px) {
  header {
    background-color: var(--night-purple);
    padding: 22px 0 72px 0;
  }
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 281px;
  height: 281px;
  border-radius: 281px;
  background: var(--neon-purple);
  filter: blur(100px);
}

/* header styles end */

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid #ffffff29;
  background: var(--night-purple);
  box-shadow: 0 10px 15px 0 rgba(80, 76, 160, 0.25);
  font-family: var(--font-nunito);
}

.brand {
  display: flex;
  align-items: center;
}

/* Desktop menu */
.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.menu li{
  list-style: none;
}
.menu a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: .2s ease;
  outline: none;
}

/* Right side CTA (optional style, still core) */
.cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width:768px) {
  .cta {
    display: none;
  }
}

.cta__btn {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(43, 123, 255, .25), rgba(0, 212, 255, .12));
  transition: .2s ease;
}

.cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Hamburger button */
.toggle {
  display: none;
  border: 1px solid var(--white);
  background: var(--night-purple);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}

.toggle:hover {
  background: rgba(255, 255, 255, .10);
}

.toggle__icon {
  width: 18px;
  height: 14px;
  position: relative;
}

.toggle__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .2s ease;
}

.toggle__icon span:nth-child(1) {
  top: 0;
}

.toggle__icon span:nth-child(2) {
  top: 6px;
  opacity: 1;
}

.toggle__icon span:nth-child(3) {
  bottom: 0;
}

/* Mobile dropdown */
.mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(15, 27, 52, .92);
  backdrop-filter: blur(10px);
}

.mobile__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px 14px;
}

.mobile__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-nunito);
}
ul.mobile__list li {
  list-style: none;
}
.mobile__list a {
  display: flex;
  padding: 12px 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
}

.mobile__list a:hover {
  background: rgba(255, 255, 255, .10);
}

/* Show/Hide for mobile dropdown via class */
.mobile.is-open {
  display: block;
}

/* Animate hamburger to X when open */
.toggle.is-open .toggle__icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.toggle.is-open .toggle__icon span:nth-child(2) {
  opacity: 0;
}

.toggle.is-open .toggle__icon span:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}

/* Responsive breakpoint */
@media (max-width: 920px) {

  .menu,
  .cta__btn {
    display: none;
  }

  .toggle {
    display: flex;
  }
}


/*------- footer sec style start -------*/
/*======= footer style start ======*/
footer {
  background: var(--night-purple);
  padding: 36px 0 72px 0;
}

@media (min-width:768px) {
  footer {
    padding: 72px 0;
  }
}

footer .col-md-4.quick-links {
  margin: 18px 0;
}

@media (min-width:768px) {
  footer .col-md-4.quick-links {
    padding-left: 80px;
    margin: 0;
  }
}

footer .col-md-4.quick-links .item ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .col-md-4.quick-links .item ul li {
  list-style: disc;
  gap: 0;
  font-family: var(--font-nunito);
  list-style-position: inside;
}

footer .col-md-4.quick-links .item ul li::marker {
  color: var(--white);
}

footer .col-md-4.quick-links .item ul li::before {
  content: '';
}

footer .item h3 {
  color: var(--white);
  font-family: var(--font-sora);
  font-size: var(--font-28);
  font-style: normal;
  font-weight: 700;
  margin-bottom: 24px;
}

footer .item p {
  color: var(--white);
}

footer .item ul li::marker {
  color: var(--white);
}

footer .item ul li a {
  color: var(--white);
  font-family: var(--nunito);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

@media (min-width:768px) {
  footer .item ul li a {
    font-size: 16px;
  }
}

/*====== footer style end ======*/
/*------- footer sec style end -------*/