
:root {
  --white: #ffffff;
  --black: #000000;
  --primary-color: #9933ff;
  --secondary-color: #1c242f;
  --tertiary-color: #505d6a;
  /* --quaternary-color: #FF33FF; */
  --quaternary-color: #fe2b7f;
  --quinary-color: #6600cc;
  --septenary-color: #1d2329;
  --senary-color: #141a23;
  --highlightblue-color: #7fd0fb;
}


.text-highlight {
    color: var(--highlightblue-color);
}
.text-quaternary {
    color: var(--quaternary-color);
}

#Matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity:.4;
    z-index:0; /* Place behind the main content */
    pointer-events: none; /* Prevent canvas from blocking clicks */
    background-color: transparent; /* Ensure the canvas itself is transparent */
}
.section-home-hero {
    height: 115vh;
}
.section-video {
    position: relative;
}
.section-video .video-background {
    position:absolute;
    z-index: 0;
    width: 100%;
    /* height: 100vh; */
    object-fit: cover;
    opacity: 0.5;
}
.section-home-hero-gradient {
    height: 15vh;
    display: block;
    background: linear-gradient(to bottom, #000033, #000000);
}

.footer-login {
    position: absolute;
    width: 100%;
    bottom:0px;
    left: 0px;
    background: #ffffff5e;
    padding: 10px 10px;
    text-align: center;
}
.form-div {
    padding-bottom: 100px !important;
    position: relative;
}
/* ========= Navbar  */
.header {
    padding: 20px 0;
}
header .mobile-menu-btn {
    top:1px;
}
.nav-line {
    z-index: 3;
    background-color: #ffffff26;
    width: 100%;
    height: 1px;
    position: absolute;
    inset: auto auto 0% 0%;
}
.nav-bg-cover-2 {
    opacity: 0;
    transform: all ease .3s;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: #00000026;
    width: 100%;
    display: flex;
    position: absolute;
    inset: 0%;
}
.header.sticky {
    background-color: transparent;
}
.header.sticky .nav-bg-cover-2 {
    opacity: 1;
}
.header.sticky .nav-bg {
    background: transparent;
}

#neon-grid-container {
    bottom: -70px;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index:0;
    pointer-events: none; /* Prevent canvas from blocking clicks */
    background-color: transparent;
}

#neon-grid-container video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}


.particle-floating-section {
    margin: 0;
    padding: 0;
    padding-top: 10em;
    width: 100vw;
    /* height: 130vh; */
    margin-bottom:100px;
    position:relative;
}
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Overlay content */
.content {
    z-index: 1;
    text-align: center;
}

@keyframes countUp {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.prizeamount {
    animation: none;
}
#universeContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.horizontal-stack {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    z-index: 1;
}

.top-row .amount {
    font-size: 2.5em;
}
.top-row .title {
    font-size: 1.4em;
    text-transform: uppercase;
    font-weight: bold;
}
.top-row .prize-box {
    width: 300px;
}
/* Refined Prize Box Styling */
.prize-box {
    width: 230px;
    padding: 15px;

        background: linear-gradient(135deg, #132b52, #000033);
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(170, 68, 229, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: floatEffect 6s ease-in-out infinite;
}

.prize-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(119, 190, 253, 0.8), 0 0 35px rgba(170, 68, 229, 0.6);
}

/* Soft Glow Trail Effect */
.prize-box:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(170, 68, 229, 0.3), transparent 60%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(1.2);
    opacity: 0;
    z-index: -1;
}

.prize-box:hover:before {
    opacity: 1;
    transform: scale(1.5);
}

/* Count-Up Styling */
.amount {
    font-size: 1.7em;
    margin-left: 15px;
    font-weight: bold;
    color:#ff33ff;
    text-align: center;
}

.top-row .prize-box {
    background: linear-gradient(135deg, #AA44E5, #77BEFD);
}
.top-row .amount {
    background: linear-gradient(45deg, #FFD700, #FFC300, #FFF5CC, #FFC300, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.4), 0 0 10px rgba(255, 204, 102, 0.3);
}

/* Animations */
@keyframes floatEffect {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


.section-home-testimonials.cybergrid {
    background-image: unset;
}
/* Container for the 3D grid effect */
.cybergrid  {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 800px; /* Adds depth to the 3D effect */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The 3D grid */
.grid {
    position: absolute;
    width: 200vw;
    height: 200vh;
    background: linear-gradient(0deg, #DC37FB 1px, transparent 1px),
                linear-gradient(90deg, #DC37FB 1px, transparent 1px);
    background-size: 40px 40px; /* Grid cell size */
    transform: rotateX(60deg) translateZ(-200px); /* 3D rotation */
    animation: drift 5s linear infinite; /* Grid movement */
}


/* Keyframes for subtle drifting animation */
@keyframes drift {
    from {
        transform: rotateX(60deg) translateZ(-200px) translateX(0px);
    }
    to {
        transform: rotateX(60deg) translateZ(-200px) translateX(-100px);
    }
}

/* Your Matrix section */
/* Container to hold multiple cards */
/* .hover-card {
    perspective: 1000px;
    width: 300px;
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 10px;
} */
 .hover-card {
    perspective: 1000px;
    /* width: 300px; */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 0px;
}
.hover-card-content {
    padding: 0px;
}

.opacity-overlay {
    opacity: 0.3;
    background:#fff;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0px;
    top:0px;
    border-radius: 20px;
}

.hover-card-inner {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    /* padding: 20px; */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hover-card:hover .hover-card-inner {
    transform: rotateY(15deg) rotateX(-10deg);
}
.opacity-overlay-container {
    position: relative;
}
.hover-card-title {
    z-index: 1;
    background-color: #0e0e0e;
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    position: relative;
    overflow: hidden;
    color:#fff;
    font-family: "Audiowide", sans-serif;
}
.hover-card-image {
    z-index: 2;
    /* background-color: #0e0e0e; */
    perspective: 2000px;
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:100%;
    margin-bottom: 10px;
    display: flex;
    position: relative;
    overflow: hidden;
}
.hover-card-image img {
    width: 90%;
}
.hover-card-content {
    z-index: 35;
    border-radius: 26px;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.card-gradient {
    z-index: 0;
    background-image: linear-gradient(90deg, #ff1df1, #b825f0 36%, #2849f4 75%, #872af0);
    filter: saturate(43%) blur(60px);
    position: absolute;
    inset: 0%;
    transform: rotate(11deg) scale3d(.6, 1.1, 1);

    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}
.card-gradient.outer {
   transform: rotate(16deg) scale(.8);
    opacity: 0.6;
}
.card-gradient.inner {
    opacity: .3;
    filter: saturate(60%) blur(25px);
}
.hover-card-writeup {
    z-index: 1;
    height: 170px;
    /* background-color: #0e0e0e; */
    border-radius: 16px;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 20px;
    display: flex;
    position: relative;
    text-align: center;
}

/* Cursor effect */
/* Cursor Wrapper */
.cursor-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    display: none; /* Initially hidden */
    z-index: 1000;
    transform-style: preserve-3d;
}

/* Central Dot */
.cursor .dot-white {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Glows with pulsing animation */
.cursor .glow-white,
.cursor .glow-purple,
.cursor .glow-blue {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(15px);
    animation: pulse 1.5s infinite alternate ease-in-out; /* Pulsing animation */
}

.cursor .glow-white {
    background: rgba(255, 255, 255, 0.3);
    filter: blur(8px);
}

.cursor .glow-purple {
    background: rgba(218, 59, 248, 0.3);
    filter: blur(12px);
}

.cursor .glow-blue {
    background: rgba(119, 190, 253, 0.3);
    filter: blur(16px);
}

/* Keyframes for the pulsing glow animation */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

form.login input[type="text"],
form.login input[type="text"]:focus,
form.login input[type="email"],
form.login input[type="email"]:focus,
form.login select, form.login input[type="password"],
form.login select, form.login input[type="password"]:focus,
form.login input[type="text-area"]:focus,
form.login input[type="text-area"],
form.login select,
form.login input ::placeholder
 {
    color:#fff !important;
    background-color:#FFFFFF1A !important;
}


.errorlist {
    padding-left: 0px;
    list-style-type: none;
}

.errorlist li::marker {
    display: none !important;
}

.errorlist li ,
.error-msg {
    color: #dc3545;
    font-style: italic;
    font-weight: normal;
    font-size: 15px;
}


/*     Alert    */
.alert {
  border: 0px;
  position: relative;
  padding: .95rem 1.25rem;
  border-radius: 1px;
  color: inherit;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 14px 0px rgba(18, 38, 63, 0.26);
  -moz-box-shadow: 1px 1px 14px 0px rgba(18, 38, 63, 0.26);
  box-shadow: 1px 1px 14px 0px rgba(18, 38, 63, 0.26); }
  .alert [data-notify="icon"] {
    display: block; }
    .alert [data-notify="icon"]::before {
      line-height: 35px;
      font-size: 22px;
      display: block;
      left: 15px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 35px;
      height: 35px;
      border-radius: 30px;
      text-align: center;
      color: #fff; }
  .alert [data-notify="title"] {
    display: block;
    color: #2b2b2b;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px; }
  .alert [data-notify="message"] {
    font-size: 13px;
    color: #908e8e; }
  .alert .close {
    background: rgba(255, 255, 255, 0.8);
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: 12px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; }

/*    Alert States    */
.alert-black {
  border-left: 4px solid #1a2035; }
  .alert-black [data-notify="icon"]:before {
    background: #1a2035; }

.alert-primary {
  border-left: 4px solid #1572E8; }
  .alert-primary [data-notify="icon"]:before {
    background: #1572E8; }

.alert-secondary {
  border-left: 4px solid #6861CE; }
  .alert-secondary [data-notify="icon"]:before {
    background: #6861CE; }

.alert-info {
  border-left: 4px solid #48ABF7; }
  .alert-info [data-notify="icon"]:before {
    background: #48ABF7; }

.alert-success {
  border-left: 4px solid #31CE36; }
  .alert-success [data-notify="icon"]:before {
    background: #31CE36; }

.alert-warning {
  border-left: 4px solid #FFAD46; }
  .alert-warning [data-notify="icon"]:before {
    background: #FFAD46; }

.alert-danger {
  border-left: 4px solid #F25961; }
  .alert-danger [data-notify="icon"]:before {
    background: #F25961; }


.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown input, .iti--allow-dropdown input[type=tel], .iti--allow-dropdown input[type=text], .iti--separate-dial-code input, .iti--separate-dial-code input[type=tel], .iti--separate-dial-code input[type=text] {
    background-color: #FFFFFF1A !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color:#fff !important;
}
.iti {
    display: block;
}

/* Adjusts the width of the dropdown menu */
.iti__country-list {
    width: 300px !important; /* Adjust this width as needed */
    max-height: 300px; /* Control the max height */
    overflow-y: auto; /* Add scrolling if needed */
}

/* Adjusts the size and padding of each country item */
.iti__country {
    padding: 5px 10px; /* Less padding for smaller items */
    font-size: 14px; /* Adjust font size */
}

/* Adjust the flag icon size */
.iti__flag {
    width: 16px !important;
    height: 11px !important;
}

/* Adjusts the dial code font size */
.iti__dial-code {
    font-size: 14px !important;
}

/* Adjusts the font size in the search input if the dropdown has a search feature */
.iti__country-list .iti__input {
    font-size: 14px;
    padding: 5px;
}
.iti__country {
    color:#111111;
}
.iti__selected-dial-code {
    font-size: 13px;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.social a {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 50%;
  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;
  font-size: 24px;
  color: #fff !important;
  position: relative;
}
.social a i {
  font-weight: 100;
  margin-top: 0px !important;
}
.social a .svg-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.social a .svg-content path {
  fill: none;
  stroke-width: 2px;
  stroke: none;
  pointer-events: none;
}
.social a .svg-content-two {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.social a .svg-content-two path {
  fill: none;
  stroke-width: 1.5px;
  stroke: #fff;
  pointer-events: none;
}
.social a .ba,
.social a .ba-two {
  position: absolute;
  inset: 0px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  pointer-events: none;
}
.social a .ba::before, .social a .ba::after,
.social a .ba-two::before,
.social a .ba-two::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  width: 10px;
  height: 1px;
  background-color: var(--tertiary-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.social a .ba::after,
.social a .ba-two::after {
  left: unset;
  right: 0px;
}
.social a .ba-two {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.social a .ba-two::before {
  top: 2px;
  left: 50%;
  width: 1px;
  height: 10px;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.social a .ba-two::after {
  top: unset;
  bottom: 2px;
  right: 50%;
  width: 1px;
  height: 10px;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.social a:hover {
  color: var(--quaternary-color) !important;
}
.social a:hover .svg-content path {
  stroke-dasharray: 550px;
  stroke-dashoffset: -550px;
  -webkit-animation: animate-stroke-two 0.5s linear forwards;
          animation: animate-stroke-two 0.5s linear forwards;
}
.social a:hover .svg-content-two path {
  stroke-dasharray: 800px;
  stroke-dashoffset: -400px;
  -webkit-animation: animate-stroke-two-reverse 0.5s linear forwards;
          animation: animate-stroke-two-reverse 0.5s linear forwards;
}
.social a:hover .ba,
.social a:hover .ba-two {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.social a:hover .ba::before, .social a:hover .ba::after,
.social a:hover .ba-two::before,
.social a:hover .ba-two::after {
  opacity: 1;
  visibility: visible;
  background-color: var(--quaternary-color);
}
.social a:hover .ba::before {
  left: 2px;
}
.social a:hover .ba::after {
  right: 2px;
}
.social .social-btn-active {
  color: var(--quaternary-color) !important;
}
.social .social-btn-active .svg-content path {
  stroke-dasharray: 550px;
  stroke-dashoffset: -550px;
  -webkit-animation: animate-stroke-two 0.5s linear forwards;
          animation: animate-stroke-two 0.5s linear forwards;
}
.social .social-btn-active .svg-content-two path {
  stroke-dasharray: 800px;
  stroke-dashoffset: -400px;
  -webkit-animation: animate-stroke-two-reverse 0.5s linear forwards;
          animation: animate-stroke-two-reverse 0.5s linear forwards;
}
.social .social-btn-active .ba,
.social .social-btn-active .ba-two {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.social .social-btn-active .ba::before, .social .social-btn-active .ba::after,
.social .social-btn-active .ba-two::before,
.social .social-btn-active .ba-two::after {
  opacity: 1;
  visibility: visible;
  background-color: var(--quaternary-color);
}
.social .social-btn-active .ba::before {
  left: 2px;
}
.social .social-btn-active .ba::after {
  right: 2px;
}

@-webkit-keyframes animate-stroke-two {
  0% {
    stroke-dasharray: 550px;
    stroke-dashoffset: 550px;
    stroke: var(--quaternary-color);
  }
  100% {
    stroke-dashoffset: 0;
    stroke: var(--quaternary-color);
  }
}

@keyframes animate-stroke-two {
  0% {
    stroke-dasharray: 550px;
    stroke-dashoffset: 550px;
    stroke: var(--quaternary-color);
  }
  100% {
    stroke-dashoffset: 0;
    stroke: var(--quaternary-color);
  }
}
@-webkit-keyframes animate-stroke-two-reverse {
  0% {
    stroke-dasharray: 400px;
    stroke-dashoffset: -400px;
    stroke: var(--quaternary-color);
  }
  100% {
    stroke-dashoffset: 0;
    stroke: var(--quaternary-color);
  }
}
@keyframes animate-stroke-two-reverse {
  0% {
    stroke-dasharray: 400px;
    stroke-dashoffset: -400px;
    stroke: var(--quaternary-color);
  }
  100% {
    stroke-dashoffset: 0;
    stroke: var(--quaternary-color);
  }
}


.mt-30 {
    margin-top: 30px;
}
.mt-35 {
    margin-top: 35px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-60 {
    margin-top: 60px;
}
.mt-8 {
    margin-top: -5px;
}
@media(max-width: 768px) {
    .stats-section .stat-number {
        font-size:2rem;
    }


}

@media(max-width:600px) {
    .section-home-hero {
        height: 80vh;
    }

    .cursor-wrapper{
        display: none !important;
    }
}

@media(max-width: 370px) {
    .flipdown {
        margin-left: -35px;
    }

    .cursor-wrapper{
        display: none !important;
    }
}
