/* Global Styles */
:root {
  --primary: #6c5ce7;
  --primary-dark: #5649c0;
  --secondary: #00cec9;
  --danger: #ff7675;
  --warning: #fdcb6e;
  --success: #00b894;
  --info: #74b9ff;
  --dark: #2d3436;
  --light: #f5f6fa;
  --gray: #b2bec3;
  --body-bg: #0f1218;
  --card-bg: #1a202c;
  --gradient-1: linear-gradient(135deg, #6c5ce7, #a29bfe);
  --gradient-2: linear-gradient(135deg, #00cec9, #81ecec);
  --gradient-3: linear-gradient(135deg, #ff7675, #fab1a0);
  --font-main: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--body-bg);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.glass-navbar {
  background: rgba(30, 34, 54, 0.85) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(108, 92, 231, 0.1);
  box-shadow: 0 4px 24px rgba(108, 92, 231, 0.08);
}
.btn-gradient {
  background: linear-gradient(90deg, #6c5ce7 0%, #00cec9 100%);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(108, 92, 231, 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #00cec9 0%, #6c5ce7 100%);
  box-shadow: 0 4px 24px rgba(108, 92, 231, 0.18);
  color: #fff !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

.logo-div {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  border-radius: 50%;
}

.img-logo {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;

}

section {
  padding: 100px 0;
  position: relative;
}

.container {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(108, 92, 231, 0.2);
  z-index: -1;
  border-radius: 4px;
}

/* Global Animation Styles */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes borderGlow {
  0% {
    box-shadow: 0 0 5px rgba(108, 92, 231, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.6);
  }
  100% {
    box-shadow: 0 0 5px rgba(108, 92, 231, 0.2);
  }
}

@keyframes subtlePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* Buttons */
.btn {
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.6);
  animation: gradientShift 3s ease infinite;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.btn-primary:hover::after {
  animation: shimmer 1.5s forwards;
  opacity: 1;
}

.btn-outline-light {
  border: 2px solid white;
  background: transparent;
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
}

/* Navbar */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(15, 18, 24, 0.95);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
}

  .pulse-icon {
    display: inline-block;
    margin-right: 10px;
    color: var(--primary);
    position: relative;
}


.pulse-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: rgba(108, 92, 231, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: pulseRing 2s infinite;
  z-index: -1;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.3;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

.nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-connect {
  background: rgba(108, 92, 231, 0.2);
  border-radius: 8px;
  padding: 8px 15px !important;
  margin-left: 15px;
}

.btn-connect:hover {
  background: rgba(108, 92, 231, 0.4);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--body-bg);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.circle-1,
.circle-2,
.circle-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  transition: all 1.5s ease-in-out;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.4),
    rgba(90, 77, 190, 0.1)
  );
  top: 10%;
  left: -150px;
  animation: parallaxFloat 15s ease-in-out infinite alternate;
}

.circle-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(0, 206, 201, 0.3),
    rgba(0, 180, 175, 0.1)
  );
  bottom: -200px;
  right: -150px;
  animation: parallaxFloat 20s ease-in-out infinite alternate-reverse;
}

.circle-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(
    135deg,
    rgba(255, 118, 117, 0.3),
    rgba(220, 100, 100, 0.1)
  );
  top: 40%;
  right: 20%;
  animation: parallaxFloat 12s ease-in-out infinite alternate;
}

@keyframes parallaxFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(40px, 40px) rotate(5deg);
  }
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-image {
  position: relative;
}

.dashboard-preview {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.5s ease-in-out;
}

.dashboard-preview:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.1),
    rgba(0, 206, 201, 0.1)
  );
  z-index: -1;
}

.dashboard-preview::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shimmer 10s infinite linear;
  z-index: 1;
  pointer-events: none;
}

.notification {
  background-color: rgba(26, 32, 44, 0.8);
  border-left: 4px solid;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(5px);
}

.notification.animate-in {
  transform: translateX(0);
  opacity: 1;
}

.notification:nth-child(1) {
  transition-delay: 0.3s;
  border-color: var(--warning);
}

.notification:nth-child(2) {
  transition-delay: 0.6s;
  border-color: var(--danger);
}

.notification:nth-child(3) {
  transition-delay: 0.9s;
  border-color: var(--info);
  margin-bottom: 0;
}

.notification i {
  font-size: 1.5rem;
  margin-right: 15px;
}

.notification.warning i {
  color: var(--warning);
}

.notification.danger i {
  color: var(--danger);
}

.notification.info i {
  color: var(--info);
}

/* Features Section */
.features-section {
  background-color: var(--body-bg);
  position: relative;
  overflow: hidden;
}

.feature-text {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 32, 44, 0.8),
    rgba(26, 32, 44, 0.9)
  );
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(108, 92, 231, 0.3);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.feature-card:hover::after {
  animation: shimmer 3s forwards;
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  filter: blur(10px);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::after {
  opacity: 0.7;
}

.feature-icon.danger {
  background: linear-gradient(
    135deg,
    rgba(255, 118, 117, 0.2),
    rgba(255, 118, 117, 0.1)
  );
  color: var(--danger);
}

.feature-icon.warning {
  background: linear-gradient(
    135deg,
    rgba(253, 203, 110, 0.2),
    rgba(253, 203, 110, 0.1)
  );
  color: var(--warning);
}

.feature-icon.info {
  background: linear-gradient(
    135deg,
    rgba(116, 185, 255, 0.2),
    rgba(116, 185, 255, 0.1)
  );
  color: var(--info);
}

.feature-icon.success {
  background: linear-gradient(
    135deg,
    rgba(0, 184, 148, 0.2),
    rgba(0, 184, 148, 0.1)
  );
  color: var(--success);
}

.feature-icon.primary {
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.2),
    rgba(108, 92, 231, 0.1)
  );
  color: var(--primary);
}

.feature-icon.secondary {
  background: linear-gradient(
    135deg,
    rgba(0, 206, 201, 0.2),
    rgba(0, 206, 201, 0.1)
  );
  color: var(--secondary);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
  background-color: #121820;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: linear-gradient(
    to bottom,
    var(--primary-dark),
    var(--primary),
    var(--secondary)
  );
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 10px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--card-bg);
  position: relative;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  /* position: absolute;
    top: 20px;
    left: 460px;
    z-index: 1; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
  transition: all 0.3s ease;
}

.timeline-icon2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 450px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
  transition: all 0.3s ease;
}

.cta-section input::placeholder {
  color: white; /* Change this to your desired color */
  opacity: 1; /* Ensures full opacity */
}

.timeline-content:hover .timeline-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.timeline-content:hover .timeline-icon2 {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.timeline-item.left .timeline-icon {
  right: -30px;
}

.timeline-item.right .timeline-icon {
  left: -30px;
}

.timeline-content h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--gray);
}

/* Case Study Section */
.case-study-section {
  background-color: var(--body-bg);
  padding: 80px 0;
}

.case-study-card {
  background: linear-gradient(
    135deg,
    rgba(26, 32, 44, 0.9),
    rgba(26, 32, 44, 0.8)
  );
  border-radius: 16px;
  overflow: hidden;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.case-study-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wMykiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=");
  opacity: 0.5;
  z-index: -1;
}

.chart-container {
  background-color: rgba(15, 18, 24, 0.7);
  border-radius: 12px;
  padding: 20px;
  height: 300px;
}

.case-study-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.feature-list li i {
  margin-right: 15px;
  color: var(--primary);
}

.cta-button {
  margin-top: 30px;
}

/* Staking Section */
.staking-section {
  background-color: #121820;
  position: relative;
}

.staking-info {
  padding: 30px;
  height: 100%;
}

.staking-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.staking-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.staking-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.staking-features li i {
  color: var(--success);
  margin-right: 15px;
}

.staking-cta {
  margin-top: 30px;
}

.staking-calculator {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.staking-calculator:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(108, 92, 231, 0.2);
}

.staking-calculator::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.staking-calculator:hover::after {
  animation: shimmer 3s forwards;
  opacity: 1;
}

.staking-calculator h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.calculator-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--light);
  text-align: center;
  white-space: nowrap;
  background-color: rgba(26, 32, 44, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group-text:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.input-group-text:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--light);
  background-color: rgba(26, 32, 44, 0.8);
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  appearance: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  color: var(--light);
  background-color: rgba(26, 32, 44, 0.9);
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.25);
  transform: translateY(-2px);
}

.staking-result {
  margin-top: 30px;
  display: none;
}

.result-card {
  background-color: rgba(26, 32, 44, 0.8);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.result-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.result-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-details div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-details div:last-child {
  border-bottom: none;
}

/* Airdrop Section */
.airdrop-section {
  background-color: var(--body-bg);
  position: relative;
}

.airdrop-container {
  margin-top: 50px;
}

.airdrop-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.airdrop-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(108, 92, 231, 0.3);
}

.airdrop-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  opacity: 0;
  transition: all 0.5s ease;
}

.airdrop-card:hover::before {
  opacity: 1;
}

.airdrop-status {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.airdrop-status.active {
  background-color: rgba(0, 184, 148, 0.2);
  color: var(--success);
}

.airdrop-status.upcoming {
  background-color: rgba(116, 185, 255, 0.2);
  color: var(--info);
}

.airdrop-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(108, 92, 231, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
}

.airdrop-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.airdrop-card h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.airdrop-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-label {
  color: var(--gray);
}

.detail-value {
  font-weight: 600;
}

.detail-value.countdown {
  color: var(--primary);
}

.airdrop-action {
  text-align: center;
}

.airdrop-finder {
  margin-top: 50px;
}

.airdrop-finder h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  background-color: #121820;
  padding: 80px 0;
}

.cta-card {
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.2),
    rgba(0, 206, 201, 0.2)
  );
  background-size: 200% 200%;
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  animation: gradientShift 10s ease infinite;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=");
  opacity: 0.5;
  z-index: -1;
  opacity: 0.5;
  z-index: -1;
}

.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--gray);
}

.cta-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background-color: #0a0d12;
  padding: 80px 0 30px;
  position: relative;
}

.footer-brand a {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray);
  margin-bottom: 20px;
}

.new-footer {
  background: linear-gradient(120deg, #181c2a 60%, #23294a 100%);
  color: #eaeaea;
  border-top: 2px solid #6c5ce7;
}
.footer-brand-card {
  background: rgba(108, 92, 231, 0.08);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 6px 32px rgba(44, 62, 80, 0.08);
}
.footer-logo {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #23294a;
  color: #6c5ce7;
  margin-right: 8px;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover {
  background: #6c5ce7;
  color: #fff;
}
.footer-links-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 28px 18px 18px 18px;
  min-height: 210px;
  margin-bottom: 0;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.05);
}
.footer-links-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}
.footer-links-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-card ul li {
  margin-bottom: 10px;
}
.footer-links-card ul li a {
  color: #b2bec3;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-card ul li a:hover {
  color: #6c5ce7;
}
@media (max-width: 991.98px) {
  .footer-brand-card,
  .footer-links-card {
    min-height: 0;
    padding: 18px 10px;
  }
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(108, 92, 231, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.social-links a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.social-links a::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.social-links a:hover::after {
  animation: shimmer 1s forwards;
  opacity: 1;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--gray);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Add scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .timeline-icon {
    left: 100px;
  }

  .timeline::after {
    display: none;
  }

  .hero-section .row {
    flex-direction: column;
  }
  .hero-text,
  .hero-image {
    text-align: center;
    /* margin-bottom: 30px; */
  }
  .hero-text h1 {
    font-size: 2.8rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item.left .timeline-icon,
  .timeline-item.right .timeline-icon {
    left: 0;
  }

  .case-study-image {
    margin-bottom: 30px;
  }

  .cta-card {
    padding: 40px;
  }

  .features-row {
    flex-direction: column;
  }
  .feature-card {
    margin-bottom: 20px;
    padding: 18px;
  }

  .timeline-item,
  .timeline-content {
    width: 100%;
    padding: 10px 10px;
  }
  .timeline-icon,
  .timeline-icon2 {
    left: 10px !important;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .case-study-card .row {
    flex-direction: column;
  }
  .case-study-image,
  .case-study-content {
    margin-bottom: 20px;
    text-align: center;
  }

  .staking-section .row {
    flex-direction: column;
  }
  .staking-info,
  .staking-calculator {
    margin-bottom: 20px;
    padding: 18px;
  }

  .airdrop-card {
    margin-bottom: 20px;
    padding: 18px;
  }
  .airdrop-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .cta-section {
    padding: 40px 0;
  }
  .cta-card {
    padding: 18px;
  }
  .cta-form .row {
    flex-direction: column;
  }
  .cta-form .col-md-8,
  .cta-form .col-md-4 {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }
  .cta-form button {
    margin-top: 10px;
  }

  .footer .row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand,
  .footer-links {
    margin-bottom: 20px;
  }

  .fea_gap,
  .dashboard-preview {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .airdrop-container .row {
    flex-direction: column;
  }
  .airdrop-card {
    padding: 16px 10px;
    margin-bottom: 18px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    min-width: 0;
    max-width: 100%;
  }
  .airdrop-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .airdrop-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .airdrop-details {
    margin-bottom: 12px;
  }
  .detail-item {
    font-size: 0.98rem;
    padding-bottom: 7px;
    margin-bottom: 7px;
  }
  .airdrop-status {
    font-size: 0.75rem;
    padding: 4px 10px;
    top: 10px;
    right: 10px;
  }
  .airdrop-action .btn,
  .airdrop-action .btn-sm {
    font-size: 0.98rem;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    width: 100%;
  }
  .airdrop-finder {
    margin-top: 30px;
    padding: 18px 5px;
  }
  .airdrop-finder h3 {
    font-size: 1.2rem;
  }
  .airdrop-finder p {
    font-size: 1rem;
  }
  .airdrop-finder .btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    width: 100%;
  }

  .footer .row {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }
  .footer-brand {
    margin-bottom: 24px;
  }
  /* Hide all footer link columns by default */
  .footer-links {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
  }
  /* Group Product + Company */
  /*    .footer .footer-pair-1 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        margin-bottom: 50px;
    }
    .footer .footer-pair-2 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
    .footer-pair-1 .footer-links,
    .footer-pair-2 .footer-links {
        width: 50%;
        min-width: 120px;
    }

    .footer .footer-pair-1,
    .footer .footer-pair-2 {
        flex-direction: column;
        gap: 16px;
    }
    .footer-pair-1 .footer-links,
    .footer-pair-2 .footer-links {
        width: 100%;
        min-width: 0;
    }*/
}

@media (max-width: 575.98px) {
  .timeline-icon,
  .timeline-icon2 {
    width: 50px;
    height: 50px;
    top: 20px;
    left: 460px !important;
  }
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 15px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .cta-card {
    padding: 20px;
  }

  .cta-card h2 {
    font-size: 1.8rem;
  }

  .btn,
  .form-control {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
  .form-control-lg {
    font-size: 1.1rem;
    padding: 0.9rem 1.2rem;
  }
}

/* Add this CSS to your styles.css file */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background: linear-gradient(135deg, #5649c0, #6c5ce7);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.back-to-top-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%) rotate(45deg);
  transition: all 0.5s ease;
}

.back-to-top-btn:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.back-to-top-btn i {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .back-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top-btn i {
    font-size: 1rem;
  }
}
