/* reset css start */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&amp;family=Exo&amp;family=Playfair+Display&amp;display=swap");
@import url("video-section.css");
:root {
  /* Brand palette (source of truth) — Neon Blue system
     deep navy-black -> royal blue -> electric blue -> ice blue */
  --color-black: #05070f; /* near-black blue, page base */
  --color-navy: #0c1738; /* deep blue surface */
  --color-navy-2: #12245c; /* raised blue surface */
  --color-blue-deep: #15296b; /* deep royal blue */
  --color-blue: #2563eb; /* royal blue */
  --color-amber: #3b82f6; /* legacy name, now = electric blue accent */
  --color-blue-bright: #3b82f6; /* electric blue accent */
  --color-blue-sky: #60a5fa; /* sky blue */
  --color-blue-ice: #bcdcff; /* ice blue */
  --color-gray: #d9e2f5; /* cool light gray */
  --color-cream: #eef4ff; /* cool white text */
  --main: 59 130 246; /* electric blue, RGB triplet for rgb(var(--main)) */

  /* Gradient tokens (modern surface fills) */
  --grad-brand: linear-gradient(135deg, #60a5fa 0%, #3b82f6 45%, #2563eb 100%);
  --grad-surface: linear-gradient(160deg, #16295f 0%, #101f4c 55%, #0b1636 100%);
  --grad-surface-soft: linear-gradient(160deg, #13234f 0%, #0d1a3f 100%);
  --grad-input: linear-gradient(180deg, #16285e 0%, #0f1e49 100%);
  --grad-glow-edge: linear-gradient(90deg, #2563eb, #60a5fa, #bcdcff, #3b82f6);

  /* Legacy HSL token system (drives .btn--base, .base--color, .badge--*, etc.) */
  --primary: 217 91% 60%; /* electric blue #3b82f6 */
  --secondary: 222 58% 20%; /* deep blue #12245c */
  --success: 152 55% 40%; /* emerald #22b573 */
  --danger: 355 68% 60%; /* crimson #e5484d */
  --warning: 221 83% 53%; /* royal blue #2563eb */
  --info: 199 89% 60%; /* sky/cyan blue #38bdf8 */
  --dark: 222 54% 4%; /* near-black blue #05070f */
  --light: 218 55% 91%; /* cool gray #d9e2f5 */
  --muted: 218 16% 62%;
  --body: 220 9% 20%;
  --heading-color: 222 58% 20%; /* deep blue, used by hsl(var(--heading-color) / a) */

  --base-h: 217;
  --base-s: 91%;
  --base-l: 60%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  --base-hover: var(--base-h) var(--base-s) calc(var(--base-l) - 12%);
  --second_color: #0c1738; /* deep blue - dual-purpose dark surface / heading text */

  /* Motion + depth tokens */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: all 0.35s var(--ease-out);
  --shadow-sm: 0 4px 14px rgba(5, 7, 15, 0.35);
  --shadow-md: 0 16px 40px rgba(4, 10, 32, 0.45);
  --shadow-glow: 0 14px 34px rgba(59, 130, 246, 0.35);
  --radius-md: 14px;
  --radius-lg: 20px;
}


html {
  scroll-behavior: smooth;
}

/* ===========Scroll-reveal + shared hover motion (Phase 1 redesign)========= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.package-card,
.choose-card,
.work-card,
.testimonial-card,
.investor-card,
.blog-card,
.contact-item {
  transition: var(--transition-base);
}
.package-card:hover,
.choose-card:hover,
.work-card:hover,
.blog-card:hover,
.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.btn--base:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

a,
.btn--base,
.btn {
  transition: var(--transition-base);
}

body {
  position: relative;
  font-family: "Exo", sans-serif;
  color: #05070f;
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  line-height: 1.7;
  background: #eef4ff;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
}

button:focus {
  outline: none;
}

span {
  display: inline-block;
}

a:hover {
  color: hsl(var(--base));
}

.link-color {
  color: #3b82f6 !important;
}

.border--primary {
  border-color: hsl(var(--primary)) !important;
}

.border--secondary {
  border-color: hsl(var(--secondary)) !important;
}

.border--success {
  border-color: hsl(var(--success)) !important;
}

.border--danger {
  border-color: hsl(var(--danger)) !important;
}

.border--warning {
  border-color: hsl(var(--warning)) !important;
}

.border--info {
  border-color: hsl(var(--info)) !important;
}

.border--dark {
  border-color: hsl(var(--dark)) !important;
}

/* global css start */
.text--primary {
  color: hsl(var(--primary)) !important;
}

.text--secondary {
  color: hsl(var(--secondary)) !important;
}

.text--success {
  color: hsl(var(--success)) !important;
}

.text--danger {
  color: hsl(var(--danger)) !important;
}

.text--warning {
  color: hsl(var(--warning)) !important;
}

.text--info {
  color: hsl(var(--info)) !important;
}

.text--dark {
  color: hsl(var(--dark)) !important;
}

.text--muted {
  color: hsl(var(--muted)) !important;
}

.text--body {
  color: hsl(var(--body)) !important;
}

/* background color css start */
.bg--primary {
  background-color: hsl(var(--primary)) !important;
}

.bg--secondary {
  background-color: hsl(var(--secondary)) !important;
}

.bg--success {
  background-color: hsl(var(--success)) !important;
}

.bg--danger {
  background-color: hsl(var(--danger)) !important;
}

.bg--warning {
  background-color: hsl(var(--warning)) !important;
}

.bg--info {
  background-color: hsl(var(--info)) !important;
}

.bg--dark {
  background-color: hsl(var(--dark)) !important;
}

.bg--light {
  background-color: hsl(var(--light)) !important;
}
input:autofill,
input:autofill:hover,
input:autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #eef4ff;
  transition: background-color 5000s ease-in-out 0s;
}

.badge--base {
  background-color: hsl(var(--base) / 0.15);
  border: 1px solid hsl(var(--base));
  color: hsl(var(--base));
}

.badge--primary {
  background-color: hsl(var(--primary) / 0.15);
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
}

.badge--secondary {
  background-color: hsl(var(--secondary) / 0.15);
  border: 1px solid hsl(var(--secondary));
  color: hsl(var(--secondary));
}

.badge--success {
  background-color: hsl(var(--success) / 0.15);
  border: 1px solid hsl(var(--success));
  color: hsl(var(--success));
}

.badge--danger {
  background-color: hsl(var(--danger) / 0.15);
  border: 1px solid hsl(var(--danger));
  color: hsl(var(--danger));
}

.badge--warning {
  background-color: hsl(var(--warning) / 0.15);
  border: 1px solid hsl(var(--warning));
  color: hsl(var(--warning));
}

.badge--info {
  background-color: hsl(var(--info) / 0.15);
  border: 1px solid hsl(var(--info));
  color: hsl(var(--info));
}

.badge--dark {
  background-color: hsl(var(--dark) / 0.15);
  border: 1px solid hsl(var(--dark));
  color: hsl(var(--dark));
}
.badge--light {
  background-color: hsl(var(--light) / 0.15);
  border: 1px solid hsl(var(--light));
  color: hsl(var(--light));
}

.badge {
  border-radius: 18px;
  padding: 2px 15px 3px;
  font-weight: 600;
}
.input-group-text {
  border: 1px solid rgba(96, 165, 250, 0.4);
  background: linear-gradient(180deg, #17306f 0%, #101f4c 100%) !important;
  color: #bcdcff;
}
/* reset css end */
/* global css strat */
@media (min-width: 1200px) {
  .container {
    max-width: 1360px;
  }
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-none-30 {
  margin-bottom: -30px;
}

.mb-none-40 {
  margin-bottom: -40px;
}

.mb-none-50 {
  margin-bottom: -50px;
}

.mt-minus-100 {
  margin-top: -100px;
}

.mb-none-115 {
  margin-bottom: -115px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-120 {
  padding-top: 120px;
}

@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}

@media (max-width: 575px) {
  .pt-120 {
    padding-top: 80px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}

@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}

@media (max-width: 1199px) {
  .pt-150 {
    padding-top: 120px;
  }
}

@media (max-width: 991px) {
  .pt-150 {
    padding-top: 90px;
  }
}

@media (max-width: 575px) {
  .pt-150 {
    padding-top: 80px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}

@media (max-width: 1199px) {
  .pb-150 {
    padding-bottom: 120px;
  }
}

@media (max-width: 991px) {
  .pb-150 {
    padding-bottom: 90px;
  }
}

@media (max-width: 575px) {
  .pb-150 {
    padding-bottom: 80px;
  }
}

.mt-100 {
  margin-top: 100px;
}

.bg_img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.background-position-y-top {
  background-position-y: top !important;
}

.background-position-y-bottom {
  background-position-y: bottom !important;
}

.background-position-y-center {
  background-position-y: center !important;
}

.base--bg {
  background-color: hsl(var(--base)) !important;
}

.base--bg-two {
  background-color: #12245c !important;
}

.bg--1 {
  background-color: #e5484d !important;
}

.bg--2 {
  background-color: #38bdf8 !important;
}

.bg--3 {
  background-color: #e5484d !important;
}

.bg--4 {
  background-color: #38bdf8 !important;
}

.border-radius--5 {
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
}

.border-radius--10 {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
}

.z-index-2 {
  z-index: 2;
}

.overlay--one {
  position: relative;
  z-index: 9;
}

.overlay--one::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--second_color);
  opacity: 0.75;
  z-index: -1;
}

.overlay--radial {
  position: relative;
  z-index: 9;
}

.overlay--radial::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--second_color), rgba(0, 0, 0, 0.5));
  opacity: 0.95;
  z-index: -1;
}

.base--color {
  color: hsl(var(--base)) !important;
}

.p--color {
  color: #eef4ff !important;
}

.h--color {
  color: #eef4ff !important;
}

.nice-select {
  float: none;
  width: 100%;
  min-height: 50px;
  line-height: 50px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.nice-select .list {
  width: 100%;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
}

.para-white {
  color: #d9e2f5 !important;
}

.heading--color {
  color: #12245c !important;
}

.section--bg {
  background-color: #d9e2f5;
}

.section--img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  z-index: -1;
}

.bg--base {
  background-color: hsl(var(--base)) !important;
}

.text-line-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slick-arrow {
  cursor: pointer;
}

.section-header {
  margin-bottom: 55px;
  margin-top: -8px;
}

.video-embed-h {
  height: 450px;
}
.video-thumb-h {
  position: relative;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #12245c 0%, #05070f 100%);
}

.video-thumb-h::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    hsl(var(--base) / 0.35),
    transparent 55%
  );
}

.video-thumbnail__decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-thumbnail__icon {
  position: absolute;
  color: #eef4ff;
  opacity: 0.08;
}

.video-thumbnail__icon--one {
  font-size: 140px;
  top: -20px;
  left: 5%;
  transform: rotate(-12deg);
}

.video-thumbnail__icon--two {
  font-size: 90px;
  bottom: 10%;
  right: 8%;
  color: hsl(var(--base));
  opacity: 0.16;
}

.video-thumbnail__icon--three {
  font-size: 70px;
  bottom: -10px;
  left: 12%;
  opacity: 0.1;
}

@media (max-width: 575px) {
  .video-thumbnail__icon--one {
    font-size: 90px;
  }
  .video-thumbnail__icon--two {
    font-size: 60px;
  }
  .video-thumbnail__icon--three {
    display: none;
  }
}
@media (max-width: 767px) {
  .video-embed-h {
    height: 320px;
  }
}
@media (max-width: 480px) {
  .video-embed-h {
    height: 220px;
  }
}

.section-eyebrow {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid hsl(var(--base) / 0.4);
  background: hsl(var(--base) / 0.1);
  color: hsl(var(--base));
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .section-header {
    margin-bottom: 50px;
  }
}

.section-top-title {
  font-size: 18px;
  font-family: "Exo", sans-serif;
  color: hsl(var(--base));
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .section-top-title {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .section-top-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .section-top-title {
    font-size: 16px;
  }
}

.section-title {
  font-size: 44px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 440px) {
  .section-title {
    font-size: 24px;
  }
}

.section-title.has--border {
  position: relative;
  padding-bottom: 10px;
}

.section-title.has--border::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 50px;
  margin-left: -25px;
  height: 2px;
  background-color: hsl(var(--base));
}

.section-title + p {
  margin-top: 15px;
}

.box-header .title {
  font-size: 32px;
}

@media (max-width: 320px) {
  .box-header .title {
    font-size: 28px;
  }
}

.border-radius-100 {
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
}

.has-link {
  position: relative;
}

.item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text-white * {
  color: #eef4ff !important;
}

.hover--effect-1 {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 25px 40px 0px rgba(51, 51, 51, 0.1);
}

.hover--effect-1:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.05);
}

.video-button {
  position: absolute;
  width: 105px;
  height: 105px;
  color: #eef4ff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: hsl(var(--base));
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  animation: pulse 2000ms linear infinite;
  -webkit-animation: pulse 2000ms linear infinite;
  -moz-animation: pulse 2000ms linear infinite;
}

.video-button:hover {
  color: #eef4ff;
}

.video-button::before,
.video-button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 74px;
  background-color: hsl(var(--base));
  opacity: 0.15;
  z-index: -10;
}

.video-button::before {
  z-index: -10;
  animation: inner-ripple 2000ms linear infinite;
  -webkit-animation: inner-ripple 2000ms linear infinite;
  -moz-animation: inner-ripple 2000ms linear infinite;
}

.video-button::after {
  z-index: -10;
  animation: outer-ripple 2000ms linear infinite;
  -webkit-animation: outer-ripple 2000ms linear infinite;
  -moz-animation: outer-ripple 2000ms linear infinite;
}

.video-button i {
  font-size: 32px;
}

@-webkit-keyframes outer-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  80% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

@-moz-keyframes outer-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  80% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

@-ms-keyframes outer-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  80% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes outer-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  80% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

@-webkit-keyframes inner-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  30% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@-moz-keyframes inner-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  30% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@-ms-keyframes inner-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  30% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes inner-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  30% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.text-sm {
  font-size: 12px !important;
}

.text-md {
  font-size: 14px !important;
}

.card {
  background: var(--grad-surface);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(4, 10, 32, 0.5), inset 0 1px 0 rgba(188, 220, 255, 0.06);
}

.card .table,
.card .table.style--two {
  box-shadow: none;
  background: transparent;
}

.card .card-header {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0));
  padding: 20px 25px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.22);
}

.card.style--two {
  border: none;
}
.custom--pagination nav .small {
  color: #eef4ff !important;
  font-size: 16px;
}
.card.style--two > .card-header {
  background: var(--grad-surface-soft);
}

.badge {
  font-weight: 400;
  padding: 4px 10px;
}

.nav-tabs {
  padding: 0 30px;
  background: var(--grad-surface-soft);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.nav-tabs.custom--style {
  background-color: transparent;
}

.nav-tabs.custom--style .nav-item .nav-link {
  padding: 15px 20px;
  border: none;
  border-bottom: 2px solid transparent;
  color: #eef4ff;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-tabs.custom--style .nav-item .nav-link.active {
  border-color: hsl(var(--base));
  color: hsl(var(--base));
}

.nav-tabs.custom--style-two {
  background-color: transparent;
  border: none;
}

.nav-tabs.custom--style-two .nav-item {
  margin: 5px 10px;
}

.nav-tabs.custom--style-two .nav-item .nav-link {
  padding: 8px 20px;
  border: 1px solid hsl(var(--base) / 0.45);
  color: #eef4ff;
  font-size: 14px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-tabs.custom--style-two .nav-item .nav-link.active {
  border-color: hsl(var(--base));
  color: #eef4ff;
  background-color: hsl(var(--base));
}

.cmn-list {
  margin-top: 20px;
}

.cmn-list li + li {
  margin-top: 15px;
}

.cmn-list li {
  position: relative;
  padding-left: 40px;
}

.cmn-list li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 20px;
  height: 10px;
  border-left: 1px solid hsl(var(--base));
  border-bottom: 1px solid hsl(var(--base));
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cmn-list-2 {
  margin-top: 20px;
}

.cmn-list-2 li + li {
  margin-top: 10px;
}

.cmn-list-2 li {
  position: relative;
  padding-left: 45px;
}

.cmn-list-2 li:nth-last-of-type(3n + 3)::before {
  border-color: #12245c;
}

.cmn-list-2 li:nth-last-of-type(3n + 2)::before {
  border-color: #3b82f6;
}

.cmn-list-2 li:nth-last-of-type(3n + 1)::before {
  border-color: #38bdf8;
}

.cmn-list-2 li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 20px;
  height: 10px;
  border-left: 1px solid red;
  border-bottom: 1px solid red;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.number-list--style {
  list-style-type: decimal;
  padding-left: 15px;
}

.number-list--style li + li {
  margin-top: 10px;
}

.number-list--style li span {
  font-weight: 500;
  color: hsl(var(--base));
}

.disc-list--style {
  list-style-type: disc;
  padding-left: 15px;
}

.disc-list--style li + li {
  margin-top: 10px;
}
.pagination {
  justify-content: end;
}
.pagination li + li {
  margin-left: 10px;
}
.pagination li.disabled {
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}
.pagination li.disabled .page-link {
  background-color: hsl(var(--base));
}
.pagination li.active .page-link {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
  color: #eef4ff;
}
.pagination li .page-link {
  border: 1px solid hsl(var(--base) / 0.45);
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
  padding: 6px 15px;
  background-color: transparent;
  color: #eef4ff;
  font-weight: 700;
}
.pagination li .page-link:hover {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
  color: #eef4ff;
}
.page-item.disabled .page-link {
  border-color: hsl(var(--base));
}
.cmn-accordion .card + .card {
  margin-top: 15px;
}

.cmn-accordion .card {
  background: var(--grad-surface-soft) !important;
  border-radius: 12px !important;
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  -ms-border-radius: 12px !important;
  -o-border-radius: 12px !important;
  box-shadow: 0 10px 26px rgba(4, 10, 32, 0.35);
  border: 1px solid rgba(96, 165, 250, 0.2) !important;
}

.cmn-accordion .card-header {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0 !important;
  border: 1px solid hsl(var(--base) / 0.45);
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
}

.cmn-accordion .card-header .btn {
  background: var(--grad-brand);
  padding: 15px 20px;
  display: inline-flex;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cmn-accordion .card-header .btn.collapsed {
  background: linear-gradient(180deg, #15286a 0%, #101f4c 100%);
}

.cmn-accordion .card-header .btn:hover,
.cmn-accordion .card-header .btn:focus {
  text-decoration: none;
  box-shadow: none;
}

.cmn-accordion .card-header .btn i {
  color: #eef4ff;
  font-size: 24px;
}

.cmn-accordion .card-header .btn span {
  color: #eef4ff;
  font-size: 16px;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .cmn-accordion .card-header .btn span {
    font-size: 16px;
  }
}

.cmn-accordion .card-body {
  border-top: none;
  padding: 20px 30px;
  background: linear-gradient(180deg, #0e1c45 0%, #0b1636 100%);
  margin-top: 3px;
  border-radius: 10px;
}

blockquote p {
  font-weight: 700;
  font-size: 24px;
  color: #eef4ff;
}

input:focus,
textarea:focus,
.nice-select.open {
  border-color: hsl(var(--base));
}

.page-breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
}

.page-breadcrumb li {
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
}

.page-breadcrumb li::after {
  content: "-";
  color: #eef4ff;
  margin: 0 5px;
}

.page-breadcrumb li:first-child::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--base));
  margin-right: 6px;
}

.page-breadcrumb li:last-child::after {
  display: none;
}

.page-breadcrumb li a {
  color: #eef4ff;
  text-transform: capitalize;
}

.page-breadcrumb li a:hover {
  color: hsl(var(--base));
}
/* ================= Preloader Start — Neon Capsule Loader ================= */
.preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: #05070f;
  background-image: radial-gradient(
      circle at 50% 42%,
      rgba(59, 130, 246, 0.22),
      transparent 55%
    ),
    radial-gradient(circle at 50% 120%, rgba(37, 99, 235, 0.18), transparent 45%);
  z-index: 9990;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader__imges {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* --- Logo with orbiting glow arc + breathing core --- */
.preloader__logo-wrap {
  position: relative;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(96, 165, 250, 0.05) 90deg,
    #3b82f6 260deg,
    #bcdcff 320deg,
    #ffffff 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  animation: preloader_spin 1.15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.65));
}
.preloader__core {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(59, 130, 246, 0.28),
    rgba(5, 7, 15, 0) 70%
  );
  animation: preloader_breathe 1.8s ease-in-out infinite;
}
.preloader__img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  animation: preloader_breathe 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.55));
}
@keyframes preloader_spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes preloader_breathe {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* --- Row of neon capsules lighting up in a wave (echoes the brand image) --- */
.preloader__capsules {
  display: flex;
  align-items: center;
  gap: 9px;
}
.preloader__capsules span {
  width: 13px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0e1c45 0%, #16295f 100%);
  border: 1px solid rgba(96, 165, 250, 0.28);
  transform: translateZ(0);
  animation: preloader_capsule 1.4s ease-in-out infinite;
}
.preloader__capsules span:nth-child(1) {
  animation-delay: 0s;
}
.preloader__capsules span:nth-child(2) {
  animation-delay: 0.11s;
}
.preloader__capsules span:nth-child(3) {
  animation-delay: 0.22s;
}
.preloader__capsules span:nth-child(4) {
  animation-delay: 0.33s;
}
.preloader__capsules span:nth-child(5) {
  animation-delay: 0.44s;
}
.preloader__capsules span:nth-child(6) {
  animation-delay: 0.55s;
}
@keyframes preloader_capsule {
  0%,
  70%,
  100% {
    background: linear-gradient(180deg, #0e1c45 0%, #16295f 100%);
    box-shadow: none;
    border-color: rgba(96, 165, 250, 0.28);
    transform: scaleY(0.82);
  }
  35% {
    background: linear-gradient(180deg, #93c5fd 0%, #3b82f6 55%, #2563eb 100%);
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.9), 0 0 34px rgba(37, 99, 235, 0.55);
    border-color: #bcdcff;
    transform: scaleY(1);
  }
}

.preloader__text {
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(188, 220, 255, 0.75);
  padding-left: 0.42em;
  animation: preloader_breathe 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .preloader__halo,
  .preloader__core,
  .preloader__img,
  .preloader__capsules span,
  .preloader__text {
    animation-duration: 0.001s;
    animation-iteration-count: 1;
  }
  .preloader__capsules span {
    background: linear-gradient(180deg, #93c5fd 0%, #3b82f6 100%);
  }
}
/* ================= Preloader End ======================== */

.scroll-to-top {
  height: 60px;
  width: 60px;
  position: fixed;
  bottom: 5%;
  right: 5%;
  display: none;
  z-index: 99999;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  background-color: hsl(var(--base));
  line-height: 77px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
}

.scroll-to-top .scroll-icon {
  font-size: 31px;
  color: #eef4ff;
  display: inline-block;
}

.scroll-to-top .scroll-icon i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

a[class*="lightcase-icon-"].lightcase-icon-close {
  top: 100px;
  right: 50px;
}

a[class*="lightcase-icon-"].lightcase-icon-close {
  top: 100px;
  right: 50px;
  z-index: 9999999999;
}

#lightcase-overlay {
  z-index: 99999999;
}

#lightcase-case {
  z-index: 999999999;
}

/* global css end */
h1 {
  font-size: 62px;
}

h2 {
  font-size: 32px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

@media (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
}

@media (max-width: 767px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Josefin Sans", sans-serif;
  color: #eef4ff;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  font-family: "Josefin Sans", sans-serif;
  color: #eef4ff;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.3;
}

p,
li,
span {
  margin: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  font-family: "Exo", sans-serif;
  font-weight: 400;
}

a:hover {
  text-decoration: none;
}

.h-font-family {
  font-family: "Josefin Sans", sans-serif !important;
}

.p-font-family {
  font-family: "Josefin Sans", sans-serif !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.text-small {
  font-size: 12px !important;
}

.f-size-14 {
  font-size: 14px !important;
}

.f-size-18 {
  font-size: 18px !important;
}

/* table css start */

.table.white-space-nowrap {
  white-space: nowrap;
}

.table {
  background: var(--grad-surface-soft);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(4, 10, 32, 0.35);
  margin-bottom: 0;
}

.table thead {
  background: var(--grad-brand);
}

.table thead tr th {
  border-top: none;
  border-bottom: none;
  color: #eef4ff;
  text-align: center;
  padding: 10px 20px;
}

.table thead tr th:first-child {
  text-align: left;
}

.table thead tr th:last-child {
  text-align: right;
}
.table tr:last-child {
  border: 0 !important;
}
.table tr th,
.table tr td {
  font-size: 14px;
  border-top-color: hsl(var(--base) / 0.25);
}

.table tbody tr td {
  text-align: center;
  color: #eef4ff;
  padding: 15px 20px;
  vertical-align: middle;
  font-size: 15px;
  border-color: #eef4ff57;
}

.table tbody tr td:first-child {
  text-align: left;
}

.table tbody tr td:last-child {
  text-align: right;
}

.table tbody tr:first-child td {
  border-top: none;
}

.table .user {
  display: flex;
  align-items: center;
}

.table .user .thumb {
  width: 45px;
  height: 45px;
  border: 2px solid #eef4ff;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  margin-right: 10px;
}

.table .user .thumb img {
  width: inherit;
  height: inherit;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(96, 165, 250, 0.07);
}

.badge {
  font-weight: 400;
  padding: 4px 10px;
}

.icon-btn {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  font-size: 14px;
}

[data-label] {
  position: relative;
}

[data-label]::before {
  position: absolute;
  content: attr(data-label);
  font-weight: 700;
  color: #eef4ff;
  top: 0;
  left: 0;
  padding: 13px 15px;
  display: none;
  font-size: 12px;
}

@media (max-width: 1199px) {
  .table-responsive--lg thead {
    display: none;
  }

  .table-responsive--lg tbody tr:nth-child(odd) {
    background-color: #12245c;
  }

  .table-responsive--lg tr th,
  .table-responsive--lg tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
  }

  .table-responsive--lg .user {
    justify-content: flex-end;
  }

  .table-responsive--lg [data-label]::before {
    display: block;
  }
}

@media (max-width: 991px) {
  .table-responsive--md thead {
    display: none;
  }

  .table-responsive--md tbody tr:nth-child(odd) {
    background-color: #12245c;
  }

  .table-responsive--md tr th,
  .table-responsive--md tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
  }

  .table-responsive--md .user {
    justify-content: flex-end;
  }

  .table-responsive--md [data-label]::before {
    display: block;
  }
}

@media (max-width: 767px) {
  .table-responsive--sm thead {
    display: none;
  }

  .table-responsive--sm tbody tr:nth-child(odd) {
    background-color: #12245c;
  }

  .table-responsive--sm tr th,
  .table-responsive--sm tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
  }

  .table-responsive--sm .user {
    justify-content: flex-end;
  }

  .table-responsive--sm [data-label]::before {
    display: block;
  }
}

@media (max-width: 575px) {
  .table-responsive--xs thead {
    display: none;
  }

  .table-responsive--xs tbody tr:nth-child(odd) {
    background-color: #12245c;
  }

  .table-responsive--xs tr th,
  .table-responsive--xs tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
    border-top: 1px solid #12245c !important;
  }

  .table-responsive--xs .user {
    justify-content: flex-end;
  }

  .table-responsive--xs [data-label]::before {
    display: block;
  }
}

@media (max-width: 1199px) {
  *[class*="table-responsive--"].data-label--none tr th,
  *[class*="table-responsive--"].data-label--none tr td {
    padding-left: 0.75rem;
  }
}

/* table css end */
/* button css start */
.btn--base,
.btn {
  padding: 12px 35px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--base:disabled {
  background: var(--grad-brand);
  opacity: 0.6;
  color: #ffffff;
  border: 1px solid transparent;
}
.btn--base {
  color: #ffffff;
  background: var(--grad-brand);
  border: 1px solid rgba(147, 197, 253, 0.5);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.35);
}
.btn--base:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 55%, #1d4ed8 100%) !important;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.4);
}
.btn--base:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #7cb0ff 0%, #3b82f6 50%, #2563eb 100%);
}

.btn--base.active {
  background: linear-gradient(135deg, #1d4ed8 0%, #12245c 100%);
}

.cmn-btn2 {
  padding: 12px 35px;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: linear-gradient(135deg, #17296b 0%, #0f1e49 100%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #eef4ff;
}

.cmn-btn2:hover {
  color: #ffffff;
  background: var(--grad-brand);
}

.border-btn {
  padding: 14px 35px;
  font-size: 16px;
  font-weight: weight("semi");
  text-transform: capitalize;
  color: #eef4ff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid #d9e2f5;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #eef4ff;
}

.border-btn:hover {
  background: var(--grad-brand);
  color: #ffffff;
  border-color: rgba(147, 197, 253, 0.6);
  box-shadow: 0px 25px 40px 0px rgba(37, 99, 235, 0.2);
}

.read-btn {
  padding: 10px 20px;
  min-width: 130px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: hsl(var(--base) / 0.14);
  color: hsl(var(--base));
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.read-btn:hover {
  background-color: hsl(var(--base));
  color: #eef4ff;
}

.btn-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.btn-group *[class*="btn"] {
  margin: 5px 10px;
  align-items: center;
}

.btn-group *[class*="btn"].d-flex {
  padding: 8px 35px;
}

[class*="btn"].btn-md {
  padding: 8px 30px;
}

[class*="btn"].btn-sm {
  padding: 6px 20px;
}

.action-btn {
  padding: 5px 15px;
  font-weight: 600;
  background-color: #eef4ff;
  color: hsl(var(--base));
  font-size: 14px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.bg-btn {
  border: 2px solid #eef4ff;
  color: #eef4ff;
  padding: 12px 25px;
}

.bg-btn:hover {
  background: linear-gradient(135deg, #17296b 0%, #0f1e49 100%);
  color: #eef4ff;
  border-color: #294f9c;
}

/* button css end */
/* form css start */

.form-control {
  padding: 10px 20px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  width: 100%;
  background: var(--grad-input);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #eef4ff;
  min-height: 50px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
select.form-control {
  appearance: auto;
  -webkit-appearance: auto;
}
.form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25), 0 8px 22px rgba(37, 99, 235, 0.28);
  border-color: #60a5fa;
  background: linear-gradient(180deg, #1b306e 0%, #122253 100%) !important;
  color: #eef4ff;
}
.form-select {
  padding: 10px 20px;
  width: 100%;
  border: 1px solid rgba(96, 165, 250, 0.35);
  cursor: pointer;
  color: #eef4ff;
  background-color: transparent;
  background-image: var(--grad-input);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  height: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-select option {
  background-color: #0c1738;
  color: #eef4ff;
  padding: 10px 0;
  display: block;
  border-top: 1px solid rgba(96, 165, 250, 0.2);
}
.form-select:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25), 0 8px 22px rgba(37, 99, 235, 0.28);
  border-color: #60a5fa;
  background-image: linear-gradient(180deg, #1b306e 0%, #122253 100%) !important;
  color: #eef4ff;
}
select {
  padding: 10px 20px;
  width: 100%;
  border: 1px solid rgba(96, 165, 250, 0.35);
  cursor: pointer;
  color: #eef4ff;
  background-color: transparent;
  background-image: var(--grad-input);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  height: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

select option {
  background-color: #0c1738;
  color: #eef4ff;
  padding: 10px 0;
  display: block;
  border-top: 1px solid rgba(96, 165, 250, 0.2);
}

textarea {
  min-height: 150px !important;
  resize: none;
  width: 100%;
}

label {
  color: #d9e2f5;
  margin-bottom: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.form-check-input {
  margin-top: 8px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
}

.custom-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.custom-checkbox label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 0;
}

.custom-checkbox label::before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid hsl(var(--base) / 0.45);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 6px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
}

.custom-checkbox input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 5px;
  width: 5px;
  height: 8px;
  border: 1px solid hsl(var(--base) / 0.45);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-check {
  display: flex;
  align-items: start;
}
.form-check input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  /* display: none; */
  cursor: pointer;
}
.form-check .form-check-input {
  margin-top: 0px;
  background-color: transparent;
}
.form-check label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 0;
}
.form-check label::before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent !important;
  border: 1px solid hsl(var(--base) / 0.45);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 6px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
}
.form-check input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 5px;
  width: 5px;
  height: 8px;
  border: 1px solid hsl(var(--base) / 0.45);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="text"]:read-only,
input[type="email"]:read-only,
input[type="text"]:disabled,
input[type="email"]:disabled {
  background-color: hsl(var(--base) / 0.35);
  border-color: hsl(var(--base));
}

/* form css end*/
/* keyframes css start */
@-webkit-keyframes customRounded {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-moz-keyframes customRounded {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-ms-keyframes customRounded {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes customRounded {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes customaPulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  25% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  75% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@-moz-keyframes customaPulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  25% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  75% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@-ms-keyframes customaPulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  25% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  75% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes customaPulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  25% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  75% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@-webkit-keyframes customLight {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes customLight {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes customLight {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes customLight {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes CustomBounce {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-5);
    -ms-transform: translateY(-5);
    transform: translateY(-5);
  }

  50% {
    -webkit-transform: translateY(-10);
    -ms-transform: translateY(-10);
    transform: translateY(-10);
  }

  75% {
    -webkit-transform: translateY(-5);
    -ms-transform: translateY(-5);
    transform: translateY(-5);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes CustomBounce {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-5);
    -ms-transform: translateY(-5);
    transform: translateY(-5);
  }

  50% {
    -webkit-transform: translateY(-10);
    -ms-transform: translateY(-10);
    transform: translateY(-10);
  }

  75% {
    -webkit-transform: translateY(-5);
    -ms-transform: translateY(-5);
    transform: translateY(-5);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes CustomBounce {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-5);
    -ms-transform: translateY(-5);
    transform: translateY(-5);
  }

  50% {
    -webkit-transform: translateY(-10);
    -ms-transform: translateY(-10);
    transform: translateY(-10);
  }

  75% {
    -webkit-transform: translateY(-5);
    -ms-transform: translateY(-5);
    transform: translateY(-5);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes CustomBounce {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-5);
    -ms-transform: translateY(-5);
    transform: translateY(-5);
  }

  50% {
    -webkit-transform: translateY(-10);
    -ms-transform: translateY(-10);
    transform: translateY(-10);
  }

  75% {
    -webkit-transform: translateY(-5);
    -ms-transform: translateY(-5);
    transform: translateY(-5);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* header start */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header.menu-fixed .header__top {
  display: none;
}

.header.menu-fixed .header__bottom {
  background-color: var(--second_color);
}

.header__bottom {
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .header__bottom {
    padding: 10px 0;
  }
}

.header .site-logo img {
  width: 60px;
}
.site-logo img {
  max-width: 60px;
}
.site-logo span {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 24px;
  font-weight: bolder;
  color: #eef4ff;
}
@media (max-width: 1199px) {
  .header .site-logo img {
    max-width: 40px;
  }
  .header .site-logo span {
    font-size: 18px;
  }
}

.header .main-menu {
  margin-left: 70px;
}

@media (max-width: 1199px) {
  .header .main-menu {
    margin-left: 0;
    padding: 15px 0;
  }
}

.header .main-menu li {
  position: relative;
}

.header .main-menu li:last-child::after {
  display: none;
}

.header .main-menu li.menu_has_children {
  position: relative;
}

.header .main-menu li.menu_has_children.open .sub-menu {
  display: block;
}

@media (max-width: 1199px) {
  .header .main-menu li.menu_has_children > a {
    display: block;
  }
}

.header .main-menu li.menu_has_children > a::before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0;
  right: 0;
  color: #eef4ff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}

@media (max-width: 1199px) {
  .header .main-menu li.menu_has_children > a::before {
    display: block;
    top: 9px;
  }
}

.header .main-menu li.menu_has_children:hover > a::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: hsl(var(--base));
}

.header .main-menu li a {
  padding: 30px 15px 30px 0;
  text-transform: capitalize;
  font-size: 16px;
  color: #eef4ff;
  position: relative;
}

@media (max-width: 1199px) {
  .header .main-menu li a {
    color: #eef4ff;
    padding: 8px 0;
    display: block;
  }
}

.header .main-menu li a:hover,
.header .main-menu li a:focus {
  color: hsl(var(--base));
}

.header .main-menu li .sub-menu {
  position: absolute;
  width: 220px;
  top: 105%;
  left: -20px;
  z-index: 9999;
  background-color: hsl(var(--base));
  padding: 10px 0;
  -webkit-box-shadow: 0px 18px 54px -8px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 18px 54px -8px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #d9e2f5;
}

@media (max-width: 1199px) {
  .header .main-menu li .sub-menu {
    opacity: 1;
    visibility: visible;
    display: none;
    position: static;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    width: 100%;
  }
}

.header .main-menu li .sub-menu li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.header .main-menu li .sub-menu li:last-child {
  border-bottom: none;
}

.header .main-menu li .sub-menu li a {
  padding: 8px 20px;
  display: block;
  color: #eef4ff;
  font-size: 14px;
}

.header .main-menu li .sub-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #eef4ff;
  text-decoration: underline;
}

.header .main-menu li .sub-menu li + li {
  margin-left: 0;
}

.header .main-menu li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.header .main-menu li + li {
  margin-left: 20px;
}

@media (max-width: 1199px) {
  .header .main-menu li + li {
    margin-left: 0;
  }
}

.header .nav-right {
  margin-left: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
.header .nav-right .select {
  height: 46px;
}

@media (max-width: 1199px) {
  .header .nav-right {
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .navbar-collapse {
    background-color: var(--second_color);
    padding: 0 30px 20px 30px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    max-height: 320px;
    overflow: auto;
  }
}

.account-menu .icon i {
  width: 47px;
  height: 45px;
  background-color: hsl(var(--base));
  color: #eef4ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
  font-size: 24px;
}

.account-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-link-in {
  display: inline-block;
  color: #eef4ff;
  font-weight: 500;
  padding: 10px 18px;
  white-space: nowrap;
}
.nav-link-in:hover {
  color: hsl(var(--base));
}
.btn-nav-cta {
  display: inline-block;
  padding: 10px 24px;
  font-weight: 600;
  white-space: nowrap;
}
.account-menu li {
  display: flex;
  align-items: center;
}
.account-menu li + li {
  margin-left: 10px;
}
.account-menu.responsive-account-menu {
  display: none;
}
@media (max-width: 1199px) {
  .navbar-collapse .account-menu {
    display: none;
  }
  .account-menu.responsive-account-menu {
    display: flex;
    margin-left: auto !important;
    margin-right: 15px;
  }
}
@media (max-width: 480px) {
  .account-menu .icon i {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}
.navbar-toggler {
  padding: 0;
  border: none;
}

.navbar-toggler:focus {
  outline: none;
}

.menu-toggle {
  margin: 10px 0;
  position: relative;
  display: block;
  width: 35px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border-top: 2px solid;
  border-bottom: 2px solid;
  color: #eef4ff;
  font-size: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .menu-toggle {
    color: #eef4ff;
  }
}

.menu-toggle:before,
.menu-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: -webkit-transform 0.25s ease-in-out;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  -o-transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  -moz-transition: -webkit-transform 0.25s ease-in-out;
  -ms-transition: -webkit-transform 0.25s ease-in-out;
}

@media (max-width: 1199px) {
  .menu-toggle:before,
  .menu-toggle:after {
    background-color: #eef4ff;
  }
}

span.is-active {
  border-color: transparent;
}

span.is-active:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

span.is-active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

span.menu-toggle:hover {
  color: #eef4ff;
}

@media (max-width: 1199px) {
  span.menu-toggle:hover {
    color: #eef4ff;
  }
}

span.is-active {
  border-color: transparent;
}

span.is-active:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

span.is-active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* bg2 css start */
.hero {
  padding-top: 270px;
  padding-bottom: 210px;
  position: relative;
  z-index: 1;
  background: url("../../images/h3.png") !important;
  background-size: cover !important;
  background-position: center !important;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(5, 7, 15, 0.92) 0%,
    rgba(18, 36, 92, 0.82) 45%,
    rgba(18, 36, 92, 0.55) 100%
  );
}
.hero__content {
  padding: 10px 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid hsl(var(--base) / 0.4);
  background: hsl(var(--base) / 0.12);
  color: hsl(var(--base));
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-outline-light {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 5px;
  border: 1px solid rgba(255, 253, 248, 0.4);
  color: #eef4ff;
  font-weight: 600;
  transition: var(--transition-base);
}
.btn-outline-light:hover {
  background-color: #eef4ff;
  border-color: #eef4ff;
  color: var(--second_color);
  transform: translateY(-3px);
}
@media (max-width: 1399px) {
  .hero {
    padding-top: 200px;
    padding-bottom: 130px;
  }
}
@media (max-width: 991px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: var(--second_color); */
  opacity: 0.5;
  display: none;
  z-index: -1;
}

@media (max-width: 1199px) {
  .hero::before {
    display: block;
  }
}

.hero__title {
  font-size: 58px;
}

@media (max-width: 1199px) {
  .hero__title {
    font-size: 48px;
  }
}

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

/* hero css end */
/* inner-hero css start */
.inner-hero {
  background: url("../../images/bg3.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.inner-hero .page-title {
  color: #eef4ff;
  font-size: 46px;
  font-weight: 600;
  margin: 0;
  position: relative;
  display: inline-block;
}

.inner-hero .page-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 18px auto 0;
  background: hsl(var(--base));
  border-radius: 3px;
}

@media (max-width: 767px) {
  .inner-hero {
    padding-top: 140px;
    padding-bottom: 70px;
  }
  .inner-hero .page-title {
    font-size: 32px;
  }
}

.inner-hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(5, 7, 15, 0.85) 0%,
    rgba(18, 36, 92, 0.7) 100%
  );
  z-index: -1;
}

/* inner-hero css end */
/* cureency section css start */
.cureency-section {
  padding: 50px 0;
  background-color: var(--second_color);
}

@media (max-width: 991px) {
  .cureency-section {
    border-bottom: 2px solid hsl(var(--base) / 0.5);
  }
}

.cureency-item {
  position: relative;
}

.cureency-item:last-child::after {
  display: none;
}

.cureency-item::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  height: 36px;
  margin-top: -18px;
  width: 2px;
  background-color: hsl(var(--base) / 0.75);
}

@media (max-width: 991px) {
  .cureency-item::after {
    display: none;
  }
}

.cureency-card__title {
  font-size: 14px;
}

.cureency-card__amount {
  font-size: 24px;
}

/* cureency section css end  */
/* about section css start */
.about-section {
  position: relative;
  z-index: 1;
  background: url("../../images/bg6.avif") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.about-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--second_color);
  opacity: 0.72;
  display: none;
  z-index: -1;
}

@media (max-width: 991px) {
  .about-section::before {
    display: block;
  }
  .about-section .about-content {
    color: #eef4ff !important;
  }
}

@media (min-width: 991px) {
  .h2-black {
    color: #05070f !important;
  }
}

/* about section css end */
/* package section css start — premium pricing cards */
.package-card {
  position: relative;
  height: 100%;
  padding: 0 28px 30px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(11, 20, 46, 0.82) 42%,
    rgba(8, 15, 36, 0.9) 100%
  );
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(4, 10, 32, 0.5);
  -webkit-transition: transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  -o-transition: transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

/* Corner bloom */
.package-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.package-card:hover {
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 30px 64px rgba(4, 10, 32, 0.62), 0 0 0 1px rgba(96, 165, 250, 0.35);
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

.package-card__title,
.package-card__features,
.package-card__range,
.package-card .btn--base {
  position: relative;
  z-index: 1;
}

/* Full-bleed header band holding the plan name */
.package-card__title {
  margin: 0 -28px 24px !important;
  padding: 24px 20px 22px;
  font-size: 21px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #eef4ff !important;
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.22) 0%,
    rgba(37, 99, 235, 0.14) 100%
  );
  border-bottom: 1px solid rgba(96, 165, 250, 0.25);
}
.package-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #60a5fa,
    #bcdcff,
    #60a5fa,
    transparent
  );
}

.package-card__percantage {
  font-size: 24px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}

/* Feature checklist */
.package-card__features {
  margin-top: 4px !important;
  text-align: left;
}
.package-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.14);
}
.package-card__features li:last-child {
  border-bottom: 0;
}
.package-card__features li::before {
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 11px;
  flex: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #bcdcff;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

/* First feature = the headline return figure */
.package-card__features li:first-child {
  justify-content: center;
  gap: 0;
  margin: 2px 0 10px;
  padding: 14px 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: hsl(var(--base));
  border-bottom: 1px dashed rgba(96, 165, 250, 0.3);
}
.package-card__features li:first-child::before {
  display: none;
}

/* Investment range block */
.package-card__range {
  margin-top: 20px !important;
  padding: 14px 12px;
  border-radius: 14px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #eef4ff !important;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.16),
    rgba(59, 130, 246, 0.05)
  );
  border: 1px solid rgba(96, 165, 250, 0.3);
}
.package-card__range::before {
  content: "Investment Range";
  display: block;
  margin-bottom: 4px;
  font-family: "Exo", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(188, 220, 255, 0.6);
}

/* CTA */
.package-card .btn--base {
  width: 100%;
  margin-top: 20px !important;
}

/* package section css end */
/* choose us section css start */
.choose-card {
  padding: 30px;
  background: var(--grad-surface-soft);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 16px;
}

.choose-card__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}

.choose-card__icon {
  width: 55px;
}

.choose-card__icon i {
  font-size: 42px;
  line-height: 1;
}

.choose-card__title {
  width: calc(100% - 55px);
}

/* choose us section css end */
/* profit calculator section css start */
.profit-calculator-wrapper {
  padding: 50px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  background: var(--grad-surface);
  box-shadow: 0 20px 46px rgba(4, 10, 32, 0.5), inset 0 1px 0 rgba(188, 220, 255, 0.06);
}

@media (max-width: 767px) {
  .profit-calculator-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .profit-calculator-wrapper {
    padding: 20px;
  }
}

/* ===========Testimonial section========= */
.testimonial {
  padding: 50px 0;
  background: radial-gradient(
    circle at 30% 40%,
    #3b82f6 0%,
    #12245c 35%,
    #0a1533 70%,
    #05070f 100%
  );
}

/* ===========Top Investors -> Payment Methods dark zone========= */
.dark-gradient-zone {
  background: radial-gradient(
    circle at 25% 10%,
    #3b82f6 0%,
    #12245c 28%,
    #0a1533 60%,
    #05070f 100%
  );
}

/* profit calculator section css end */
/* how work section css start — Neon step cards */
.work-item {
  position: relative;
  z-index: 1;
}

/* Glowing connector + arrow between steps (desktop only) */
.work-item::before {
  position: absolute;
  content: "";
  left: 55%;
  top: 84px;
  width: 90%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.75) 22%,
    rgba(96, 165, 250, 0.75) 78%,
    transparent
  );
  z-index: -1;
}
.work-item::after {
  position: absolute;
  content: "";
  right: 2%;
  top: 78px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(96, 165, 250, 0.85);
  border-right: 2px solid rgba(96, 165, 250, 0.85);
  transform: rotate(45deg);
  z-index: -1;
}
.work-item:last-child::before,
.work-item:last-child::after {
  display: none;
}

@media (max-width: 991px) {
  .work-item::before,
  .work-item::after {
    display: none;
  }
}

.work-card {
  position: relative;
  overflow: hidden;
  padding: 42px 28px 34px;
  border-radius: 20px;
  background: linear-gradient(
    165deg,
    rgba(59, 130, 246, 0.16) 0%,
    rgba(12, 23, 56, 0.72) 55%,
    rgba(8, 17, 42, 0.85) 100%
  );
  border: 1px solid rgba(96, 165, 250, 0.28);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 22px 50px rgba(4, 10, 32, 0.5);
  transition: var(--transition-base);
}
.work-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-glow-edge);
  opacity: 0.9;
}
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 28px 60px rgba(4, 10, 32, 0.62),
    0 0 0 1px rgba(96, 165, 250, 0.35);
}

/* Ghost step-number watermark */
.work-card .step-number {
  position: absolute;
  top: -22px;
  right: 8px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(96, 165, 250, 0.22);
  pointer-events: none;
  z-index: 0;
}

/* Capsule icon — echoes the neon-pill brand image */
.work-card__icon {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border-radius: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--grad-brand);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: var(--transition-base);
}
.work-card__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 1px solid rgba(96, 165, 250, 0.4);
  opacity: 0;
  transition: var(--transition-base);
}
.work-card:hover .work-card__icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.work-card:hover .work-card__icon::after {
  opacity: 1;
  inset: -10px;
}
.work-card__icon i {
  font-size: 38px;
  line-height: 1;
  color: #ffffff;
}

.work-card__content {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.work-card__content h4 {
  margin-bottom: 10px;
}

.work-card__content p {
  max-width: 280px;
  margin: 0 auto;
  opacity: 0.78;
  font-size: 15px;
}

@media (max-width: 767px) {
  .work-card__content {
    margin-top: 20px;
  }
}

/* how work section css end */
/* testimonial section css start */
.testimonial-card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #eaf2ff 55%, #dbe9ff 100%);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: var(--radius-lg);
  padding: 40px 32px 28px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-base);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(5, 7, 15, 0.25);
}

.testimonial-card__quote {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 42px;
  color: hsl(var(--base) / 0.18);
  line-height: 1;
}

.testimonial-card__content {
  padding: 0 0 24px;
  border-bottom: 1px solid #d9e2f5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card__content p {
  color: #12245c;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.testimonial-card__client {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
}

.testimonial-card__client .thumb {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: hsl(var(--base));
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.testimonial-card__client .thumb span {
  color: #12245c;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.testimonial-card__client .thumb img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.testimonial-card__client .name {
  color: #12245c;
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-card__client .designation {
  color: #8891a8;
  font-size: 13px;
}

.ratings i {
  color: #3b82f6;
  font-size: 14px;
}

.testimonial-slider .slick-list {
  margin: -15px;
}

.testimonial-slider .single-slide {
  margin: 15px;
}

.testimonial-slider .slick-dots {
  margin-top: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-slider .slick-dots li {
  margin: 0 5px;
}

.testimonial-slider .slick-dots li.slick-active button {
  background-color: hsl(var(--base));
  width: 35px;
}

.testimonial-slider .slick-dots li button {
  font-size: 0;
  width: 20px;
  height: 6px;
  background-color: hsl(var(--base) / 0.5);
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* testimonial section css end */
/* team section css start */
.team-card {
  background-color: #12245c;
  padding: 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.team-card:hover {
  background-color: hsl(var(--base));
  box-shadow: 0 5px 10px 5px hsl(var(--base) / 0.5);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.team-card__thumb img {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.team-card__content {
  padding: 20px 15px 15px 15px;
}

/* team section css end */
/* data section css start */
#chart > * {
  color: #eef4ff !important;
  fill: #eef4ff !important;
}

.apexcharts-xaxis-label {
  color: #eef4ff !important;
}

/* data section css end */
/* top investor section css start */
.border-top-1 {
  border-top: 1px solid hsl(var(--base) / 0.5);
}

.investor-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 30px 22px 26px;
  border-radius: 18px;
  background: linear-gradient(
    165deg,
    rgba(59, 130, 246, 0.13) 0%,
    rgba(10, 19, 44, 0.72) 58%,
    rgba(8, 15, 36, 0.86) 100%
  );
  border: 1px solid rgba(96, 165, 250, 0.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(4, 10, 32, 0.45);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}
@media (max-width: 400px) {
  .investor-card {
    padding: 24px 16px 22px;
  }
}

/* Glowing rank strip along the top edge */
.investor-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22%;
  right: 22%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #60a5fa,
    #bcdcff,
    #60a5fa,
    transparent
  );
}

/* Soft corner bloom */
.investor-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.32),
    transparent 70%
  );
  pointer-events: none;
}

/* Rank medallion — squircle badge (echoes the neon-pill brand image) */
.investor-card__number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: var(--grad-brand);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.investor-card__number::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 250, 0.4);
}

.investor-card__name {
  margin-bottom: 2px;
  font-size: 18px;
  color: #eef4ff;
}
.investor-card .name {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(188, 220, 255, 0.6);
}
.investor-card .name::before {
  content: "@";
  opacity: 0.65;
}

.investor-card .amount {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: #bcdcff;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.3);
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.investor-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 26px 56px rgba(4, 10, 32, 0.6),
    0 0 0 1px rgba(96, 165, 250, 0.35);
}
.investor-card:hover .investor-card__number {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.investor-card:hover .amount {
  background: rgba(59, 130, 246, 0.22);
  border-color: rgba(147, 197, 253, 0.6);
}

/* Podium tints for the top three cards */
.row:has(.investor-card) > [class*="col-"]:nth-child(1) .investor-card__number {
  background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
  color: #3b2600;
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.row:has(.investor-card) > [class*="col-"]:nth-child(1) .investor-card__number::before {
  border-color: rgba(253, 230, 138, 0.6);
}
.row:has(.investor-card) > [class*="col-"]:nth-child(2) .investor-card__number {
  background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
  color: #1e293b;
}
.row:has(.investor-card) > [class*="col-"]:nth-child(3) .investor-card__number {
  background: linear-gradient(135deg, #fdba74 0%, #c2410c 100%);
  color: #2a1100;
}

/* top investor section css end */
/* cta section css start */
.cta-wrapper {
  background: url("../../images/h3.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  padding: 35px 100px;
  box-shadow: 0 3px 15px hsl(var(--base) / 0.5);
}

@media (max-width: 767px) {
  .cta-wrapper {
    padding: 30px 50px;
  }
}

@media (max-width: 575px) {
  .cta-wrapper {
    padding: 30px;
  }
}

/* cta section css end */
/* payment brand section css start */
.brand-item {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  background-color: #eef4ff;
  border: 1px solid #d9e2f5;
  border-radius: var(--radius-md);
  height: 100%;
  transition: var(--transition-base);
}

.brand-item:hover {
  transform: translateY(-8px);
  border-color: hsl(var(--base));
  box-shadow: var(--shadow-md);
}

.brand-item img {
  max-height: 56px;
  transition: var(--transition-base);
}

.brand-item:hover img {
  transform: scale(1.08);
}

.brand-item__label {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #12245c;
}

/* payment brand section css end */
/* blog section css start */
.blog-card {
  padding: 15px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background: var(--grad-surface);
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 16px 40px rgba(4, 10, 32, 0.45);
}

.blog-card__thumb img {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.blog-card__content {
  padding: 20px 15px 15px 15px;
}

.blog-card__meta {
  margin: -5px -7px;
}

.blog-card__meta li {
  margin: 5px 7px;
}

.blog-card__meta li i {
  color: hsl(var(--base));
}

.blog-card__meta li a {
  color: hsl(var(--base));
}

/* blog section css end */
/* blog-details-section css start */
.blog-details__thumb {
  position: relative;
}

.blog-details__thumb img {
  width: 100%;
}

.blog-details__thumb .post__date {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  text-align: center;
}

.blog-details__thumb .post__date .date {
  font-size: 30px;
  font-weight: 700;
  color: #eef4ff;
  background-color: hsl(var(--base));
  padding: 10px 5px;
  width: 100%;
  line-height: 1;
}

.blog-details__thumb .post__date .month {
  background-color: #eef4ff;
  text-transform: uppercase;
  padding: 4px 5px;
  width: 100%;
  line-height: 1;
  font-size: 18px;
}

.blog-details__content {
  margin-top: 30px;
}

.blog-details__content p {
  margin-top: 20px;
}

.blog-details__content .blog-details__title {
  font-size: 24px;
}

.blog-details__content blockquote {
  margin-top: 30px;
  margin-bottom: 0;
}

blockquote {
  font-size: 18px;
  color: #eef4ff;
  font-style: italic;
  text-align: center;
  padding: 50px 60px;
  background-color: hsl(var(--base));
}

@media (max-width: 575px) {
  blockquote {
    padding: 30px 40px;
    font-size: 16px;
  }
}

.blog-details__footer {
  text-align: center;
  padding: 50px 0;
  border-bottom: 1px solid #d9e2f5;
}

.blog-details__footer .caption {
  font-size: 24px;
  margin-bottom: 20px;
}

.blog-details__footer .social__links {
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-details__footer .social__links li a {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #eef4ff;
}

.blog-details__footer .social__links li a:hover {
  background-color: hsl(var(--base));
  color: #eef4ff;
}

/* blog-details-section css end */
/* subscribe section css start */
.subscribe-wrapper {
  padding: 50px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 0 0 10px hsl(var(--base) / 0.5);
}

@media (max-width: 575px) {
  .subscribe-wrapper {
    padding: 30px;
  }
}

.subscribe-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.subscribe-form .form-control {
  width: calc(100% - 65px);
  border-right: none;
}

.subscribe-form .subscribe-btn {
  width: 65px;
  background: var(--grad-brand);
  color: #ffffff;
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
}

.subscribe-form .subscribe-btn i {
  font-size: 24px;
  line-height: 1;
}

/* subscribe section css end */
/* account section css start */
.account-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0;
}

.account-card {
  background: var(--grad-surface);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(4, 10, 32, 0.55), 0 0 0 1px rgba(59, 130, 246, 0.12);
}

.account-card__header {
  padding: 50px 30px;
  border-bottom: 2px solid hsl(var(--base) / 0.5);
}

.account-card__body {
  padding: 30px;
}

/* account section css end */
/* contact-wrapper css start */
.contact-wrapper {
  overflow: hidden;
  background-color: var(--second_color);
  box-shadow: 0 5px 15px hsl(var(--base) / 0.4);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.legal-content {
  background-color: #eef4ff;
  border: 1px solid #d9e2f5;
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-sm);
}

.legal-content__title {
  color: #12245c;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid hsl(var(--base) / 0.3);
}

.legal-content__title:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #12245c;
  line-height: 1.9;
  opacity: 0.85;
}

.legal-content__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.legal-content__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #12245c;
  line-height: 1.8;
  opacity: 0.85;
}

.legal-content__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: hsl(var(--base));
  position: absolute;
  left: 0;
  top: 4px;
}

.legal-content__notice {
  background: hsl(var(--base) / 0.08);
  border-left: 3px solid hsl(var(--base));
  padding: 16px 20px;
  border-radius: 6px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .legal-content {
    padding: 30px 20px;
  }
}

.contact-form-wrapper {
  padding: 50px;
}

.contact-form-wrapper p {
  color: rgba(255, 253, 248, 0.7);
  font-weight: 400 !important;
}

.contact-form .form--control,
.contact-form .form-control {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.12) 0%, rgba(12, 23, 56, 0.55) 100%);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #eef4ff;
}

.contact-form .form--control::placeholder,
.contact-form .form-control::placeholder {
  color: rgba(224, 236, 255, 0.5);
}

.contact-form .form--control:focus,
.contact-form .form-control:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.2) 0%, rgba(18, 36, 92, 0.7) 100%);
}

@media (max-width: 575px) {
  .contact-form-wrapper {
    padding: 30px;
  }
}

.contact-item {
  height: 100%;
  padding: 30px;
  background: var(--grad-surface);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  box-shadow: 0 16px 40px rgba(4, 10, 32, 0.45);
}

.contact-item i {
  color: #60a5fa;
}

.contact-item a {
  color: #eef4ff;
}

.contact-item a:hover {
  color: #93c5fd;
}

.contact-item h5 {
  color: #eef4ff;
}

.contact-item p,
.contact-item a {
  color: rgba(224, 236, 255, 0.8);
}

.contact-item a:hover {
  color: #93c5fd;
}

/* contact-wrapper css end */
/* dashboard section css start */
.d-widget {
  padding: 20px;
  background: var(--grad-surface);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  box-shadow: 0 14px 34px rgba(4, 10, 32, 0.4);
}

.d-widget .icon {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: var(--grad-brand);
  color: #ffffff;
  font-size: 32px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.d-widget .amount {
  color: #eef4ff;
  line-height: 1;
}

.d-widget .caption {
  font-size: 14px;
  color: rgba(224, 236, 255, 0.75);
  font-weight: 600;
}

.d-widget.color--two {
  background: linear-gradient(160deg, rgba(56, 189, 248, 0.18) 0%, #0d1a40 60%);
  border-color: rgba(56, 189, 248, 0.4);
}

.d-widget.color--two .icon {
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  color: #05070f;
}

.d-widget.color--two .amount {
  color: #7dd3fc;
}

.d-widget.color--three {
  background: linear-gradient(160deg, rgba(34, 181, 115, 0.18) 0%, #0d1a40 60%);
  border-color: rgba(34, 181, 115, 0.4);
}

.d-widget.color--three .icon {
  background: linear-gradient(135deg, #4ade80, #22b573);
  color: #05070f;
}

.d-widget.color--three .amount {
  color: #4ade80;
}

.d-widget.color--four {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.2) 0%, #0d1a40 60%);
  border-color: rgba(96, 165, 250, 0.45);
}

.d-widget.color--four .icon {
  background: var(--grad-brand);
  color: #ffffff;
}

.d-widget.color--four .amount {
  color: #93c5fd;
}

.d-widget.color--five {
  background: linear-gradient(160deg, rgba(47, 191, 160, 0.18) 0%, #0d1a40 60%);
  border-color: rgba(47, 191, 160, 0.4);
}

.d-widget.color--five .icon {
  background: linear-gradient(135deg, #5eead4, #2fbfa0);
  color: #05070f;
}

.d-widget.color--five .amount {
  color: #5eead4;
}

.d-widget.color--six {
  background: linear-gradient(160deg, rgba(34, 181, 115, 0.18) 0%, #0d1a40 60%);
  border-color: rgba(34, 181, 115, 0.4);
}

.d-widget.color--six .icon {
  background: linear-gradient(135deg, #4ade80, #22b573);
  color: #05070f;
}

.d-widget.color--six .amount {
  color: #4ade80;
}

/* dashboard section css end */
/* sidebar css start */
.sidebar {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
}

.sidebar .widget + .widget {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .sidebar .widget + .widget {
    margin-top: 30px;
  }
}

.sidebar .widget {
  padding: 30px;
  background: var(--grad-surface);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  box-shadow: 0 14px 34px rgba(4, 10, 32, 0.4);
}

.sidebar .widget .widget__title {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 25px;
}

.sidebar .widget .widget__title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: hsl(var(--base));
}

.sidebar .small-post-list .small-post {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid #8891a8;
}

.sidebar .small-post-list .small-post:first-child {
  padding-top: 0;
}

.sidebar .small-post-list .small-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar .small-post-list .small-post__thumb {
  width: 65px;
}

.sidebar .small-post-list .small-post__thumb img {
  width: 100%;
}

.sidebar .small-post-list .small-post__content {
  width: calc(100% - 65px);
  padding-left: 20px;
}

.sidebar .small-post-list .small-post__content .post__title a {
  font-size: 16px;
  font-weight: 600;
}

/* sidebar css end */
/* footer start */
.footer {
  border-top: 2px solid hsl(var(--base) / 0.5);
  position: relative;
  z-index: 1;
}

.footer::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--second_color);
  opacity: 0.45;
  z-index: -1;
}

.footer__top {
  padding-top: 100px;
  padding-bottom: 50px;
}

.footer__bottom {
  padding: 20px 0;
  background-color: var(--second_color);
}

.footer-short-menu {
  margin: -5px -10px;
}

.footer-short-menu li {
  margin: 5px 10px;
}

.footer-short-menu li a {
  color: rgba(255, 255, 255, 0.65);
}

.social-link-list {
  margin: -5px;
}

.social-link-list li {
  margin: 5px;
}

.social-link-list li a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: var(--transition-base);
}

.social-link-list li a:hover {
  color: #ffffff;
  background: var(--grad-brand);
  border-color: rgba(147, 197, 253, 0.6);
  transform: translateY(-4px);
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.65);
  max-width: 380px;
}

.footer-col-title {
  color: #eef4ff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-short-menu--stacked {
  display: block;
}

.footer-short-menu--stacked li {
  margin: 0 0 12px;
}

.footer-short-menu--stacked li a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-short-menu--stacked li a:hover,
.footer-short-menu li a:hover {
  color: hsl(var(--base));
}

/* footer end */

/*# sourceMappingURL=main.css.map */
.cookie__wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: #05070f;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10vh;
  font-size: 18px;
  z-index: 99999;
}
.cookie__wrapper .txt {
  max-width: 720px;
  margin-right: 20px;
}
.package-card {
  background-position: unset;
}
.thumb__350px {
  height: 350px;
}
.thumb__350px img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1199px) {
  .thumb__350px {
    height: 250px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.card-body {
  padding: 30px;
}

.card {
  border: 1px solid rgba(59, 130, 246, 0.28) !important;
}

.cmn-section {
  padding: 60px 0px;
}

.list-group-item {
  background-color: transparent;
  color: #d9e2f5;
}
.list-group {
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--grad-surface-soft);
}
.list-group .list-group-item {
  border-bottom: 1px solid rgba(96, 165, 250, 0.16);
}
.alert {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  align-items: stretch;
}
.alert.alert--base {
  border: 1px solid hsl(var(--base) / 0.6);
  padding: 13px 15px;
}
.alert-icon {
  color: hsl(var(--base));
  margin-right: 12px;
}
.alert button.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  height: 100%;
  background: transparent;
}

.alert__message {
  padding: 12px;
  padding-right: 22px;
}

.alert__icon {
  padding: 13px 14px;
  color: #eef4ff;
}

.form-control:disabled,
.form-control[readonly] {
  background: linear-gradient(180deg, #0f1c44 0%, #0b1636 100%) !important;
  border-color: rgba(96, 165, 250, 0.18) !important;
  opacity: 0.85;
}

/* ================== Input Type File Button Start ============= */
.form--control[type="file"] {
  line-height: 50px;
  padding: 0;
  position: relative;
}

@media (max-width: 575px) {
  .form--control[type="file"] {
    height: 50px;
  }
}

.form--control[type="file"]::file-selector-button {
  border: 1px solid hsl(var(--base));
  padding: 4px 6px;
  border-radius: 0.2em;
  background-color: hsl(var(--base));
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  line-height: 25px;
  position: relative;
  margin-left: 15px;
  color: #05070f;
}

.form--control:hover[type="file"]::file-selector-button {
  background-color: hsl(var(--base-hover)) !important;
  color: #05070f !important;
}
/* ================== Input Type File Button End ============= */

/* Countdown Css Start */
.countdown-card {
  padding: 40px 30px;
}
.countdown-card h2 {
  color: hsl(var(--base));
}
@media (max-width: 767px) {
  .countdown-card {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .countdown-card {
    padding: 25px 15px;
  }
  .countdown-card h4 {
    font-size: 18px;
    font-weight: 500;
  }
  .countdown-card h2 {
    font-size: 20px;
  }
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.countdown-wrapper span {
  background-color: #eef4ff1a;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  font-size: 20px;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .countdown-wrapper span {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
/* Countdown Css End */
.badge.badge--dark {
  color: #eef4ffbf;
  border-color: #eef4ff2e;
  background-color: #eef4ff0f;
}
@media (max-width: 450px) {
  .referral-form.card-body {
    padding: 20px 15px;
  }
}

/* User Ranking */

@media (max-width: 768px) {
  .raking-invest {
    display: block !important;
    margin: 0 auto;
    text-align: center;
  }
}

.raking-invest span:first-child {
  margin-bottom: 5px;
}

.raking-invest h5 {
  margin-bottom: 5px;
  color: hsl(var(--base));
}

.raking-common span {
  margin-bottom: 10px;
}

.raking-common h5 {
  color: hsl(var(--base));
}

.invest-badge__list {
  position: absolute;
  width: 100%;
  min-width: 290px;
  right: -73%;
  top: 0px;
  opacity: 0;
  background: hsl(var(--base));
  z-index: 1;
  visibility: hidden;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.invest-badge:hover .invest-badge__list {
  opacity: 1;
  visibility: visible;
}

.invest-badge__list li span {
  width: 50%;
  font-size: 14px;
}

@media (max-width: 767px) {
  .invest-badge__subtitle {
    font-size: 12px;
  }
}

.invest-badge__list li span:first-child {
  font-weight: 600;
  color: hsl(var(--white));
}

.invest-badge__list li {
  margin-bottom: 5px;
}

/* invest-badge start here */

.invest-badge {
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.invest-badge__thumb {
  margin-bottom: 10px;
}

.invest-badge__thumb__mask {
  content: "";
  width: 126px;
  height: 142px;
  display: inline-block;
  background: #8891a8;
  -webkit-mask: url("../images/shape.png") no-repeat 50% 50%;
  mask-image: url("../images/shape.png");
  mask-size: auto;
  -webkit-mask-size: cover;
  mask-size: contain;
  max-width: 100%;
  max-height: 100%;
  line-height: 9;
  position: relative;
  transition: 0.5s;
}

.invest-badge:hover .badge-lock {
  background-color: #3b82f6;
}

.invest-badge__thumb__mask::before {
  position: absolute;
  content: "";
  width: 100%;
  background: #3b82f6;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.3s linear;
}

.invest-badge:hover .invest-badge__thumb__mask::before {
  height: 100%;
}

.badge-lock img {
  filter: grayscale(100%);
}

.badge-lock::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  opacity: 0.1;
  background-color: transparent;
}

.invest-badge:hover .badge-lock img {
  filter: grayscale(0);
  transition: 0.5s;
}

.badge-lock::after {
  position: absolute;
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  transition: 0.5s;
  z-index: 99;
  color: hsl(var(--dark));
}

.invest-badge:hover .badge-lock::after {
  visibility: hidden;
  opacity: 0;
  top: 60%;
}

.invest-badge__thumb__mask img {
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

.invest-badge__details-3,
.invest-badge__details-4 {
  left: -73% !important;
}

@media (max-width: 1199px) {
  .invest-badge__details {
    left: auto !important;
    right: -75% !important;
  }

  .invest-badge__detail_one {
    right: 0 !important;
    left: -75% !important;
  }
}

@media (min-width: 1200px) and (max-width: 1330px) {
  .invest-badge__details-3,
  .invest-badge__details-4 {
    left: -81% !important;
  }

  .invest-badge__details-1,
  .invest-badge__details-2 {
    right: -81% !important;
  }
}

@media (max-width: 991px) {
  .invest-badge__details-1,
  .invest-badge__details-3 {
    left: auto !important;
    right: -72% !important;
  }

  .invest-badge__details-2,
  .invest-badge__details-4 {
    right: auto !important;
    left: -73% !important;
  }
}

@media (max-width: 767px) {
  .invest-badge__list {
    left: -22px !important;
    right: auto !important;
    top: 100% !important;
    z-index: 99;
    width: 290px;
  }
}

@media (max-width: 600px) {
  .invest-badge__list {
    left: 50% !important;
    top: 140% !important;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 290px;
  }
}

.invest-badge__details::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 11px;
  background-color: hsl(var(--base));
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1200px) {
  .invest-badge__details-1::before,
  .invest-badge__details-2::before {
    left: -13px;
    transform: translateY(-50%) rotate(90deg);
  }

  .invest-badge__details-3::before,
  .invest-badge__details-4::before {
    right: -13px;
    transform: translateY(-50%) rotate(-90deg);
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .invest-badge__detail_one::before {
    right: -13px;
    top: 46%;
    transform: translateY(-50%) rotate(-90deg);
  }

  .invest-badge__detail_two::before {
    left: -13px;
    top: 46%;
    transform: translateY(-50%) rotate(90deg);
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .invest-badge__details-1::before,
  .invest-badge__details-3::before {
    left: -13px;
    transform: rotate(90deg);
  }

  .invest-badge__details-2::before,
  .invest-badge__details-4::before {
    right: -13px;
    transform: rotate(-90deg);
  }
}

@media (max-width: 767px) {
  .invest-badge__details::before {
    transform: rotate(180deg);
    top: -11px;
    left: 48%;
  }
}

.invest-badge__thumb__mask::before {
  height: var(--before-height);
}

/* Ranking section */

.table--responsive {
  max-width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Make the Action column always accessible */
@media (max-width: 767px) {
  .table-responsive th:last-child,
  .table-responsive td:last-child {
    /* position: sticky; */
    right: 0;
    background-color: #d9e2f5;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.05);
    z-index: 1;
  }

  /* Improve action buttons visibility on mobile */
  .table-responsive .dropdown-toggle.btn-icon {
    min-width: 36px;
    /* min-height: 36px; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.referral__level__item__inner {
  display: flex;
}

.referral__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 240px;
}

@media (max-width: 991px) {
  .referral__left {
    width: 180px;
  }
}
@media (max-width: 991px) {
  .referral__left {
    width: 180px;
  }
}

.referral__right {
  width: calc(100% - 240px);
  padding-left: 15px;
}

@media (max-width: 991px) {
  .referral__right {
    width: calc(100% - 180px);
  }
}

.referral__level__item__inner .referral__level__thumb {
  width: 40px;
  height: 40px;
  align-self: center;
}

.referral__level__item__inner .referral__level__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.referral__level__item__inner .referral__level__name,
.referral__level__item__inner .referral__level__profit,
.referral__level__item__inner .referral__level__content {
  padding: 10px 20px;
  background: #12245c;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #eef4ff;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  height: 54px;
  line-height: 38px;
}

@media (max-width: 991px) {
  .referral__level__item__inner .referral__level__name,
  .referral__level__item__inner .referral__level__profit,
  .referral__level__item__inner .referral__level__content {
    padding: 10px;
  }
}

.referral__level__item__inner .referral__level__name:not(:last-child),
.referral__level__item__inner .referral__level__profit:not(:last-child),
.referral__level__item__inner .referral__level__content:not(:last-child) {
  margin-right: 15px;
}

.referral__level__item__inner .referral__level__profit {
  width: 100px;
}

.referral__level__item__inner .referral__level__content.custom-width {
  transition: all ease 0.3s;
}

.referral__level__item__inner .referral__level__name {
  width: 200px;
  font-size: 20px;
}

@media (max-width: 991px) {
  .referral__level__item__inner .referral__level__name {
    width: 140px;
    font-size: 16px;
  }
}

.referral__level__item:hover
  .referral__level__item__inner
  .referral__level__content.custom-width {
  max-width: 1000% !important;
  transition: all ease 0.3s;
}

.referral__level__item__inner .referral__level__content__content {
  display: none;
}

.referral__level__item__inner .hover__none {
  display: flex;
}

.referral__level__item {
  position: relative;
}

.referral__level__item:not(:last-child) {
  margin-bottom: 15px;
}

.referral__level__item:hover .referral__level__name,
.referral__level__item:hover .referral__level__profit,
.referral__level__item:hover .referral__level__content {
  background: hsl(var(--base));
  color: #eef4ff;
}

.referral__level__item:hover .referral__level__content {
  flex-grow: 1;
}

.referral__level__item:hover .hover__none {
  display: none;
}

.referral__level__item:hover .referral__level__content__content {
  display: flex;
}

.referral__level__item:hover .referral__tooltip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.referral__level__item:nth-last-of-type(3) .referral__tooltip,
.referral__level__item:nth-last-of-type(2) .referral__tooltip,
.referral__level__item:nth-last-of-type(1) .referral__tooltip {
  bottom: 100%;
  top: unset;
  margin-bottom: 5px;
}

.referral__level__item:nth-last-of-type(3) .referral__tooltip::before,
.referral__level__item:nth-last-of-type(2) .referral__tooltip::before,
.referral__level__item:nth-last-of-type(1) .referral__tooltip::before {
  top: 100%;
  bottom: unset;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.referral__tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(15px);
  -ms-transform: translateX(-50%) translateY(15px);
  transform: translateX(-50%) translateY(15px);
  width: 100%;
  max-width: 350px;
  background: #eef4ff;
  padding: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 0 5px rgba(18, 36, 92, 0.2);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 9;
  border: 1px solid #d9e2f53d;
  background-color: #12245c;
  border-radius: 3px;
  margin-top: 5px;
}

.referral__tooltip::before {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: inherit;
  width: 20px;
  height: 15px;
  content: "";
  position: absolute;
  bottom: 99%;
  left: 50%;
  margin-left: -10px;
}

@media screen and (max-width: 424px) {
  .referral__tooltip {
    max-width: 280px;
    padding: 30px 15px;
  }
}

@media (max-width: 424px) {
  .referral__level__name {
    position: absolute;
    top: -20px;
    background-color: transparent !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 15px !important;
  }
  .referral__left {
    width: auto;
  }
  .referral__level__item {
    margin-top: 40px;
  }
  .referral__right {
    width: 100%;
  }
}

/* ============================
	New classes
================================
*/

/* Fix for table responsive and dropdown positioning */
.table-responsive {
  overflow-y: visible !important; /* Explicitly ensure vertical overflow is visible */
  overflow-x: auto; /* Maintain horizontal scroll */
  position: relative; /* Ensure proper positioning context */
}

/* Ensure any Bootstrap parent containers don't conflict */
.card .table-responsive,
.card-inner .table-responsive {
  overflow-y: visible !important;
}

/* Fix for dropdown positioning in tables */
.table-responsive .dropdown,
.table-responsive .action-dropdown {
  position: relative;
}

.table-responsive .dropdown-menu.dropdown-menu-end,
.table-responsive .table-dropdown-menu {
  position: absolute !important;
  transform: none !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  min-width: 200px;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

/* Mobile specific fixes */
@media (max-width: 767px) {
  /* Make action button more visible */
  .table-responsive .dropdown-toggle.btn-icon.btn-trigger {
    background-color: #dbeafe;
    border-radius: 50%;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Make icon more visible */
  .table-responsive .dropdown-toggle.btn-icon.btn-trigger .icon {
    color: #8891a8;
  }

  /* Fix dropdown positioning on mobile */
  .table-responsive .dropdown-menu.dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
    position: fixed !important;
    top: auto !important;
  }
}

.toast-hide {
  display: none !important;
}
.toast-hide {
  display: none !important;
}

/* ===========Language switcher (consolidated from per-page inline <style>)========= */
.language_switcher {
  position: relative;
  padding-right: 20px;
  min-width: max-content;
}

@media (max-width: 991px) {
  .language_switcher {
    padding-block: 6px;
    display: inline-flex;
  }

  .language_switcher_wrapper {
    flex: 1;
    text-align: right;
  }
}

.language_switcher::after {
  font-family: "Line Awesome Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  margin: 0;
  color: #eef4ff;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 350ms;
  -webkit-transition: all ease 350ms;
  -moz-transition: all ease 350ms;
}

.language_switcher.open:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.language_switcher__caption {
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.language_switcher__caption .icon {
  position: relative;
  height: 20px;
  width: 20px;
  display: flex;
}

.language_switcher__caption .icon img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.language_switcher__caption .text {
  font-size: 0.875rem;
  font-weight: 500;
  flex: 1;
  color: #eef4ff;
  line-height: 1;
}

.language_switcher__list {
  width: 100px;
  border-radius: 4px;
  padding: 0;
  max-height: 105px;
  overflow-y: auto !important;
  background: hsl(var(--base));
  -webkit-box-shadow: 0px 12px 24px rgba(5, 7, 15, 0.25);
  box-shadow: 0px 12px 24px rgba(5, 7, 15, 0.25);
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75),
    opacity 0.1s linear;
  transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75),
    opacity 0.1s linear;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  position: absolute;
  top: calc(100% + 18px);
  z-index: -1;
  visibility: hidden;
}

.language_switcher__list::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: hsl(var(--base) / 0.3);
}

.language_switcher__list::-webkit-scrollbar {
  width: 3px;
}

.language_switcher__list::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: hsl(var(--base) / 0.8);
}

.language_switcher__list .text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #eef4ff;
}

.language_switcher.open .language_switcher__list {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.language_switcher__item a {
  cursor: pointer;
  padding: 5px;
  border-bottom: 1px solid hsl(var(--heading-color) / 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.language_switcher__item img {
  height: 20px;
  width: 20px;
  display: block;
  border-radius: 50%;
}

.language_switcher__item:last-of-type {
  border-bottom: 0;
}
.language_switcher__item:hover {
  background-color: hsl(var(--dark) / 0.1);
}
.language_switcher__item.selected {
  background: rgba(59, 130, 246, 0.12);
  pointer-events: none;
}

/* ===========Auth pages (sign in / sign up / forgotten password)========= */
body.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(
      circle at 12% 10%,
      rgba(96, 165, 250, 0.28),
      transparent 42%
    ),
    radial-gradient(circle at 88% 90%, rgba(37, 99, 235, 0.22), transparent 48%),
    radial-gradient(circle at 78% 8%, rgba(188, 220, 255, 0.12), transparent 35%),
    linear-gradient(160deg, #12245c 0%, #0a1533 55%, #05070f 100%);
  background-attachment: fixed;
}

.auth-shell {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 16px;
  overflow: hidden;
}

.auth-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.auth-decor__icon {
  position: absolute;
  color: #eef4ff;
  opacity: 0.05;
}
.auth-decor__icon--one {
  font-size: 220px;
  top: -60px;
  left: -50px;
  transform: rotate(-15deg);
}
.auth-decor__icon--two {
  font-size: 170px;
  bottom: -50px;
  right: -30px;
  color: #3b82f6;
  opacity: 0.09;
}
.auth-decor__icon--three {
  font-size: 110px;
  top: 18%;
  right: 8%;
  opacity: 0.05;
}
@media (max-width: 575px) {
  .auth-decor__icon--one {
    font-size: 140px;
  }
  .auth-decor__icon--two {
    font-size: 100px;
  }
  .auth-decor__icon--three {
    display: none;
  }
}

.auth-shell__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  text-decoration: none;
  transition: var(--transition-base);
}
.auth-brand img {
  height: 38px;
  width: auto;
}
.auth-brand span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #eef4ff;
  letter-spacing: 0.02em;
}
.auth-brand:hover span {
  color: #3b82f6;
}

.auth-card {
  background: linear-gradient(165deg, rgba(59, 130, 246, 0.16) 0%, rgba(15, 28, 68, 0.72) 45%, rgba(8, 17, 42, 0.82) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(59, 130, 246, 0.12), 0 0 60px rgba(37, 99, 235, 0.2);
  overflow: hidden;
  position: relative;
}
.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-glow-edge);
}
.auth-card .card-body {
  padding: 40px 34px;
}
@media (max-width: 575px) {
  .auth-card .card-body {
    padding: 30px 22px;
  }
}

.auth-card h2,
.auth-card h3 {
  font-family: "Josefin Sans", sans-serif;
  color: #eef4ff;
  font-weight: 700;
}
.auth-card p.text-center {
  color: rgba(255, 253, 248, 0.65);
}

.auth-card .form-label {
  color: rgba(255, 253, 248, 0.85);
  font-weight: 500;
  font-size: 14px;
}
.auth-card .form-control,
.auth-card .form-select {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.14) 0%, rgba(10, 21, 51, 0.55) 100%);
  border: 1px solid rgba(96, 165, 250, 0.26);
  color: #eef4ff;
  border-radius: 12px;
  padding: 11px 14px;
  transition: var(--transition-base);
}
.auth-card .form-control::placeholder {
  color: rgba(224, 236, 255, 0.42);
}
.auth-card .form-control:focus,
.auth-card .form-select:focus {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.24) 0%, rgba(18, 36, 92, 0.7) 100%);
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  color: #eef4ff;
}
.auth-card .form-select option {
  color: #12245c;
}
.auth-card .input-group .btn-outline-secondary {
  border: 1px solid rgba(96, 165, 250, 0.26);
  border-left: none !important;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.14) 0%, rgba(10, 21, 51, 0.55) 100%);
  color: rgba(224, 236, 255, 0.75);
}
.auth-card .input-group .btn-outline-secondary:hover {
  color: #93c5fd;
}
.auth-card .form-check-input {
  background-color: rgba(10, 21, 51, 0.6);
  border-color: rgba(96, 165, 250, 0.45);
}
.auth-card .form-check-input:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}
.auth-card .form-check-label a {
  color: #3b82f6;
  text-decoration: underline;
}
.auth-card .btn--base {
  width: 100%;
  padding: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.auth-card .auth-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 253, 248, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-base);
}
.auth-card .auth-inline-link i {
  font-size: 16px;
  color: #3b82f6;
}
.auth-card .auth-inline-link:hover {
  color: #3b82f6;
}
.auth-card .alert {
  border-radius: 10px;
  font-size: 14px;
}

.auth-footnote {
  text-align: center;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.45);
  font-size: 13px;
}
.auth-footnote a {
  color: rgba(255, 253, 248, 0.7);
  text-decoration: none;
}
.auth-footnote a:hover {
  color: #3b82f6;
}
