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

body {
  font-family: "Inter", sans-serif !important;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.5;
  scroll-behavior: smooth;
  margin-top: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

/* Premium Light Theme Color Palette */
:root {
  --primary: #4f46e5;
  --primary-light: #818cf8;
  --primary-dark: #4338ca;
  --primary-soft: #eef2ff;
  --secondary: #06b6d4;
  --secondary-light: #67e8f9;
  --accent: #8b5cf6;
  --accent-light: #c4b5fd;
  --dark: #0f172a;
  --gray-dark: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --light: #f8fafc;
  --border: #e2e8f0;
  --card-shadow:
    0 20px 35px -12px rgba(0, 0, 0, 0.05),
    0 1px 2px -1px rgba(0, 0, 0, 0.02);
  --hover-shadow: 0 25px 40px -12px rgba(79, 70, 229, 0.15);
  --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 10px;
}

/* ===== NAVIGATION ===== */
.navbar-main {
  background: linear-gradient(131deg,
      rgb(195, 43, 247) 0%,
      rgb(99, 213, 249) 100%);
  backdrop-filter: blur(12px);
  /* border-bottom: 1px solid var(--border); */
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  width: 100%;
}

.navbar-main.navbar-shrink {
  padding: 15px 0;

  background: linear-gradient(131deg, rgb(195 43 247 / 51%) 0%, rgb(99 213 249 / 81%) 100%);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.35s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  transition: color 0.25s;
  font-size: 0.95rem;
}

.nav-item {
  padding: 0px 12px;
}

.nav-links a:hover {
  color: #4c02f4 !important;
}

.nav-link.active {
  color: #4c02f4 !important;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  background: white;
  border: 2px solid var(--border);
  color: var(--dark);
  padding: 9px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg,
      #faf5ff 0%,
      #ffffff 50%,
      #eef2ff 100%);
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  background: var(--primary-soft);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 100%;
  margin-bottom: 32px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-image {
  flex: 1;
  position: relative;
}

.floating-card {
  background: white;
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  position: relative;
}

.chart-container {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 20px;
  padding: 20px;
}

@media (max-width: 800px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .container {
    padding: 0 24px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 90px 0;
}

.section-light {
  background: white;
}

.section-gray {
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h6 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
}

.coming-soon-text {
  font-size: 24px;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 8px;
  text-align: center;
  margin-top: 35px;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 28px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  width: 500px;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-light);
}

.product-icon {
  background: var(--primary-soft);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
  margin: 0 0 10px;
}


.product-icon i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
  /* text-align: center; */
}

.product-card p {
  color: var(--gray);
  line-height: 1.6;
  /* text-align: center; */
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--card-shadow);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: white;
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--hover-shadow);
}

.experience-badge h3 {
  font-size: 2rem;
  font-weight: 800;
}

.about-content {
  flex: 1;
}

.about-content h6 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.stats-container {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat-box h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== STOCKS TABLE ===== */
.stocks-card {
  background: white;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.table-header {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--light);
  border-radius: 60px;
  padding: 8px 16px;
  border: 1px solid var(--border);
}

.search-box input {
  border: none;
  background: transparent;
  padding: 6px 12px;
  outline: none;
  font-size: 0.9rem;
  width: 220px;
}

.stock-table {
  width: 100%;
  border-collapse: collapse;
}

/* .stock-table th {
  text-align: left;
  padding: 16px 12px;
  background: var(--light);
  font-weight: 600;
  color: var(--dark);
  border-radius: 16px 16px 0 0;
} */

.stock-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  color: #0a0a0a;
}

.locked-value {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  padding: 4px 12px;
  border-radius: 40px;
  width: fit-content;
  font-size: 0.85rem;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: white;
  border-radius: 32px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  position: relative;
  /* overflow: hidden; */
}

/* .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
} */


.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  margin: 0 auto;
  width: 85%;
  border-radius: 32px;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-light);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, white, var(--primary-soft));
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 5px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-soft);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.price sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  text-align: center;
}

.contact-form {
  flex: 1;
  background: white;
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(119, 27, 206, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  /* overflow: hidden; */
}


.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-form:hover::before {
  transform: scaleX(1);
}

.contact-form:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-light);
}

.contact-details {
  list-style: none;
  margin-top: 30px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-details li .icon {
  width: 48px;
  height: 48px;
  background: var(--primary-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #9843eac9;
  border-radius: 16px;
  font-size: 0.9rem;
  transition: 0.2s;
  outline: none;
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #771bce;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background: white;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 60px 0 30px;
  /* margin-top: 40px; */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, white, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links h5 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding-left: 0px !important;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1 !important;
  text-decoration: none;
  transition: 0.2s !important;
  margin-left: 0px !important;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    display: none;
  }
}


/* =========================================
   LOGIN PAGE - LIGHT STOCK MARKET UI
========================================= */

.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;

  position: relative;
  overflow: hidden;
  background: url('/website/assets/images/bg/login-bg.png') no-repeat center center/cover;
}

/* =========================================
   SOFT GLOW EFFECTS
========================================= */

.login-section::before,
.login-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.login-section::before {
  width: 350px;
  height: 350px;

  background: rgba(168, 85, 247, 0.18);

  top: -120px;
  left: -120px;
}

.login-section::after {
  width: 350px;
  height: 350px;

  background: rgba(96, 165, 250, 0.15);

  right: -120px;
  bottom: -120px;
}

/* =========================================
   MAIN LOGIN CARD
========================================= */

.login-content-box {
  position: relative;
  z-index: 2;
  padding: 70px 65px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(130, 120, 255, 0.12), 0 0 30px rgba(96, 165, 250, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  transition: all 0.35s ease;
}

/* Gradient Border */
/* .login-content-box::before {
  content: "";
  position: absolute;
  inset: 0;

  padding: 1px;
  border-radius: 32px;

  background: linear-gradient(135deg,
      rgba(168, 85, 247, 0.5),
      rgba(139, 92, 246, 0.5),
      rgba(96, 165, 250, 0.5),
      rgba(56, 189, 248, 0.5));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  
} */


.login-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.login-content-box:hover::before {
  transform: scaleX(1);
}

.login-content-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-light);
}

/* Top Animated Border */
/* .login-content-box::after {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,
      #a855f7,
      #8b5cf6,
      #60a5fa,
      #38bdf8,
      #a855f7);

  background-size: 200% 100%;

  animation: shimmer 4s linear infinite;
} */

/* =========================================
   LEFT SIDE
========================================= */

.login-img-box {
  width: 45%;
}

.login-img-box span {
  display: inline-block;

  color: #6366f1;

  font-size: 30px;
  line-height: normal;
  font-weight: 600;

  margin-bottom: 10px;

  letter-spacing: 0.5px;
}

/* Heading */
.login-img-box h3 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 800;

  color: #111827;

  margin: 0;
}

/* Gradient Highlight */
.login-img-box h3 span {
  background: linear-gradient(135deg,
      #8b5cf6 0%,
      #6366f1 40%,
      #60a5fa 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
   FORM AREA
========================================= */

.login-content-box form {
  width: 48%;
}

/* Input */
.login-content-box .form-control {
  height: 62px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid #6d5dfc !important;
  padding: 0 22px;
  padding-left: 22px;
  font-size: 15px !important;
  color: #111827;
  transition: all 0.3s ease;
  box-shadow: none;
}

.login-content-box .form-control::placeholder {
  color: #9ca3af;
}

.login-content-box .form-control:focus {
  background: #ffffff;

  border-color: #8b5cf6 !important;

  box-shadow:
    0 0 0 4px rgba(139, 92, 246, 0.12),
    0 0 20px rgba(96, 165, 250, 0.12);

  color: #111827;
}

/* =========================================
   BUTTON
========================================= */

.btn--base-two {
  height: 62px;

  border: none;
  border-radius: 16px;

  font-size: 16px;
  font-weight: 700;
  color: #fff;

  background: linear-gradient(135deg,
      #8b5cf6 0%,
      #6366f1 45%,
      #60a5fa 100%);

  background-size: 200% 100%;

  transition: all 0.35s ease;

  position: relative;
  overflow: hidden;
}

.btn--base-two:hover {
  transform: translateY(-3px);

  background-position: right center;

  box-shadow:
    0 12px 30px rgba(99, 102, 241, 0.25),
    0 0 25px rgba(96, 165, 250, 0.15);
}

/* =========================================
   REGISTER TEXT
========================================= */

.login-content-box p {
  margin-top: 24px;

  text-align: center;

  color: #6b7280;

  font-size: 15px;
}

.login-content-box .text--base {
  color: #6366f1;

  font-weight: 700;

  text-decoration: none;

  transition: 0.3s ease;
}

.login-content-box .text--base:hover {
  color: #111827;
}

/* =========================================
   SHIMMER ANIMATION
========================================= */

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .login-content-box {
    flex-direction: column;
    padding: 50px 30px;
    gap: 40px;
  }

  .login-img-box,
  .login-content-box form {
    width: 100%;
    text-align: center;
  }

  .login-img-box h3 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .login-section {
    padding: 60px 0;
  }

  .login-content-box {
    padding: 35px 20px;
    border-radius: 24px;
  }

  .login-img-box h3 {
    font-size: 32px;
  }

  .login-content-box .form-control,
  .btn--base-two {
    height: 56px;
  }
}

.login-content-box-code {
  position: relative;
  z-index: 2;
  padding: 70px 215px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(130, 120, 255, 0.12), 0 0 30px rgba(96, 165, 250, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Gradient Border */
.login-content-box-code::before {
  content: "";
  position: absolute;
  inset: 0;

  padding: 1px;
  border-radius: 32px;

  background: linear-gradient(135deg,
      rgba(168, 85, 247, 0.5),
      rgba(139, 92, 246, 0.5),
      rgba(96, 165, 250, 0.5),
      rgba(56, 189, 248, 0.5));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* Top Animated Border */
/* .login-content-box-code::after {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,
      #a855f7,
      #8b5cf6,
      #60a5fa,
      #38bdf8,
      #a855f7);

  background-size: 200% 100%;

  animation: shimmer 4s linear infinite;
} */

.react-tel-input .flag-dropdown {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0;
  background-color: #fff !important;
  border: 1px solid #6d5dfc !important;
  border-radius: 12px 0 0 12px !important;
}

.react-tel-input .selected-flag {
  width: 43px !important;
}

.react-tel-input .selected-flag {
  border-radius: 12px 0 0 12px !important;
}

.premium-stocks {
  position: relative;
}

.mini-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #63d5f9;
  font-weight: 700;
}

.view-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.premium-stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.premium-stock-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  overflow: hidden;

  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));

  border: 1px solid var(--border);

  backdrop-filter: blur(18px);

  transition: all 0.35s ease;
}

.premium-stock-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.premium-stock-card:hover::before {
  transform: scaleX(1);
}

.premium-stock-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-light);
}

.stock-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle,
      rgba(99, 213, 249, 0.15),
      transparent 70%);
  top: -60px;
  right: -40px;
}

.stock-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.stock-header h4 {
  margin: 0;
  font-size: 1.2rem;
  color: rgb(13, 13, 13);
}

.stock-header p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #565758;
}

.stock-tag {
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #c32bf7, #63d5f9);
  color: white;
}

.stock-desc {
  color: #3c3d3e;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 0px;
}

.premium-stock-slider .swiper-slide {
  height: auto;
  display: flex;
}

.premium-stock-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 24px;
}

.metric {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.metric span {
  display: block;
  font-size: 12px;
  color: #93a0b4;
  margin-bottom: 8px;
}

.metric strong {
  color: white;
  font-size: 15px;
}

.profit {
  color: #63f9b0 !important;
}

.unlock-btn {
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #c32bf7, #63d5f9);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.unlock-btn:hover {
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .premium-stock-grid {
    grid-template-columns: 1fr;
  }
}

.otp-input {
  height: 50px;
  width: 50px;
}

.form-group input {
  color: rgba(5, 5, 5, 0.9) !important;
}


.otp-switch-wrapper {
  width: 100%;
  /* max-width: 420px; */
  margin: 0;
}

.otp-toggle {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.otp-tab {
  flex: 1;
  height: 52px;
  border-radius: 16px;
  border: 1.5px solid rgba(99, 213, 249, 0.25);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  color: #6b7280;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
  cursor: pointer;
}

.otp-tab i {
  font-size: 15px;
}

.otp-tab.active {
  background: linear-gradient(135deg,
      rgba(195, 43, 247, 0.12),
      rgba(99, 213, 249, 0.14));
  border: 2px solid #5b6cff;
  color: #4f46e5;
  box-shadow: 0 10px 25px rgba(91, 108, 255, 0.15);
}

/* .otp-tab:hover {
  transform: translateY(-2px);
} */

.otp-input-box {
  height: 58px;
  border-radius: 18px;
  border: 1.5px solid #6d5dfc;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 18px;
  transition: all 0.3s ease;
}

.otp-input-box:focus-within {
  border-color: #6d5dfc;
  box-shadow: 0 0 0 4px rgba(109, 93, 252, 0.08);
}

.otp-input-icon {
  color: #94a3b8;
  font-size: 16px;
  margin-right: 12px;
}

.otp-input-new {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 15px;
  color: #111827;
  /* border: 1px solid #5e4be770; */
}

.otp-input-new::placeholder {
  color: #94a3b8;
}

.dropdown-menu {
  margin-top: 0;
  border-radius: 10px;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.show-tab {
  display: block;
}

.hide-tab {
  display: none;
}

.toggle-wrapper {
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  padding: 4px;
  border: 1px solid #e5e7eb;
}

.toggle-wrapper button {
  border: none;
  background: transparent;
  padding: 4px 15px;
  font-size: 14px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.admin-toggle-wrapper button {
  padding: 4px 15px !important;
  font-size: 13px;
}

.toggle-wrapper button.active {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
}

.tax-text {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 10px;
  font-style: italic;
}


.pricing-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.pricing-features li i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i {
  color: var(--primary);
}

.research-stats-section {
  margin-top: 30px;
  margin-bottom: 30px;
}

.research-stats-container {
  margin: auto;

  /* background: #fff;
    border: 1px solid #edf1f7; */
  border-radius: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  /* padding: 50px 60px; */

  /* box-shadow:
        0 10px 30px rgba(17, 24, 39, 0.04); */
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}

.stat-divider {
  width: 1px;
  height: 90px;
  background: #e6eaf2;
  margin: 0 40px;
}

.stat-icon {
  width: 80px;
  height: 80px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,
      rgba(147, 51, 234, 0.12),
      rgba(168, 85, 247, 0.08));
}

.stat-icon i {
  font-size: 35px;
  color: #7c3aed;
}

.stat-icon.blue {
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.12),
      rgba(14, 165, 233, 0.08));
}

.stat-icon.blue i {
  color: #2563eb;
}

.stat-content h2 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;

  background: linear-gradient(90deg,
      #7c3aed,
      #2563eb);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-content h4 {
  font-size: 22px;
  margin-bottom: 0px;
  color: #111827;
  font-weight: 600;
}



/* Responsive */

@media (max-width: 992px) {

  .stats-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 30px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .stat-item {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .stat-content h2 {
    font-size: 48px;
  }

  .stat-content h4 {
    font-size: 24px;
  }

  .stat-content p {
    max-width: 100%;
  }
}


.admin-toggle-wrapper button {
    padding: 4px 15px !important;
    font-size: 13px;
}


.react-tel-input .selected-flag:hover, .react-tel-input .selected-flag:focus, .react-tel-input .flag-dropdown.open {
  background-color: transparent !important;
}