* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {

  /* ======================
     COLOR SYSTEM
     ====================== */
  --red: #6D0E0F;
  --orange: #DC5500;
  --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);
  --purple-dark: #504CA0;
  --light-red: #fee;
  --light-blue: #F4F4FF;
  --yellow: #FC0;
  --btn-default: #DC5500;
  --btn-hover: #DC5500;


  /* ======================
     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;
  --nav-fixed-top: 10px;
  --nav-fixed-height: 0px;
  --nav-sticky-offset: 0px;
}

@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);
  border-radius: 8px;
  background: var(--btn-default);
  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;
}

html {
  scroll-behavior: smooth;
}



/* 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);
}

@media (max-width:992px) {
  header::before {
    display: none;
  }
}

/* header styles end */

.nav__inner {
  max-width: var(--max, 1320px);
  margin: 0 auto;
  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);
  transition: box-shadow 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
  z-index: 1;
  position: relative;
}

header.nav.is-nav-fixed > .container-lg:first-child .row {
  min-height: var(--nav-fixed-height);
}

header.nav.is-nav-fixed .nav__inner {
  position: fixed;
  top: var(--nav-fixed-top);
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max, 1320px), calc(100% - 24px));
  z-index: 1200;
  background: rgba(10, 0, 23, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  animation: nav-fixed-in 0.24s ease;
}

header.nav.is-nav-fixed .mobile {
  position: fixed;
  top: calc(var(--nav-fixed-top) + var(--nav-fixed-height) + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max, 1320px), calc(100% - 24px));
  z-index: 1199;
  border-radius: 0 0 12px 12px;
}

@keyframes nav-fixed-in {
  from {
    opacity: 0.8;
    transform: translate(-50%, -8px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop menu */
.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.menu li {
  list-style: none;
  margin: 0;
}

.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:992px) {
  .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: var(--purple-dark);
  backdrop-filter: blur(10px);
}

.mobile__inner {
  max-width: var(--max, 1320px);
  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: 992px) {

  .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;
  border-top: 1px solid var(--orange);
}

@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;
  padding: 0;
}

footer .col-md-4.quick-links .item ul li {
  list-style: disc;
  gap: 0;
  font-family: var(--font-nunito);
  list-style-position: inside;
  list-style: none;
}

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;
  list-style: none;
}

@media (min-width:768px) {
  footer .item ul li a {
    font-size: 16px;
  }
}

footer .col-md-4.quick-links .item ul li::before {
  display: none;
}

/*====== footer style end ======*/

/* >>>>>>>>>>>>> Modal Style Start <<<<<<<<<<<< */

.modal {
  display: none;
  position: fixed;
  z-index: 1200;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #484848a1;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: var(--bg-dark);
  margin: auto;
  padding: 16px;
  width: 60%;
  max-width: 500px;
  border-radius: var(--radius-16);
  font-family: var(--font-nunito);

  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

#myModalVideo .modal-content,
#myModalVideo .modal-content .modal-body {
  padding: 0;
  border: none;
  line-height: 0;
}

@media only screen and (max-width: 600px) {
  .modal-content {
    width: 90%;
  }
}

/* Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

/* Close Button */
.close-video,
.close {
  color: var(--white);
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-video:hover,
.close-video:focus,
.close:hover,
.close:focus {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

/* Modal Header */
.modal-header {
  padding: 2px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

#myModalVideo .modal-header {
  padding: 16px;
}

.modal-header h3 {
  font-size: var(--font-18);
  font-weight: 700;
  color: var(--white);
}

/* Modal Body */
.modal-body {
  padding: 2px 16px;
}

/* >>>>>>>>>>>>> Modal Style End <<<<<<<<<<<< */

/*--------- form input style ----------*/

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-8);
  border: 1px solid var(--border-grey);
  background: var(--white);
  font-family: var(--font-nunito);
  font-size: var(--font-14);
  font-weight: 400;
  line-height: normal;
  color: var(--dark-grey);
}

.form-control:focus {
  outline: none;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
}

.form-checkbox {
  font-size: var(--font-14);
  color: var(--white);
  font-family: var(--font-nunito);
}

.form-checkbox span a {
  color: var(--white);
}

button.form-control-btn {
  width: 100%;
}

.ajax-form .error-message {
  font-size: var(--font-12);
  font-family: var(--font-nunito);
  color: var(--white);
  margin-top: 4px;
}

.ajax-form .error-message {
  color: var(--white);
}


.ajax-form .custom-loader {
  width: 50px;
  height: 50px;
  border: 5px solid #eee;
  border-top: 5px solid #6c3bd1;
  /* purple color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------- form input style end ---------/