:root {
  --primary-purple: #6828b0;
  --dark-purple: #3d1e65;
  --deep-purple: #380473;
  --light-purple: #b388ff;
  --gradient: linear-gradient(135deg, #8e18f5 0%, #6a0dad 100%);
  --white: #ffffff;
  --black: #1a1a1a;
  --green: #a4d562;
  --light-bg: #f8f9fa;
  --light-card: #ffffff;
  --gray: #6c757d;
  --light-text: #495057;
  --muted-text: #6c757d;
  --border: #e9ecef;
  --gradient-green: linear-gradient(135deg, #a4d562 0%, #7aa049 100%);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--light-text);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
.fs-16 {
  font-size: 16px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-purple);
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  padding: 18px 0;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 5px 30px rgba(142, 24, 245, 0.15);
}

.navbar-brand {
  width: 120px;
  height: 45px;
}

.navbar-brand img {
  width: 100%;
  height: 100%;
}

.nav-link {
  font-weight: 600;
  color: var(--light-text);
  margin: 0 15px;
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-purple);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}
.fs-18 {
  font-size: 18px;
}
.btn-pry {
  background: var(--gradient);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(142, 24, 245, 0.3);
}
.btn-purple {
  background: var(--gradient);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(142, 24, 245, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-purple::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-purple:hover::before {
  left: 100%;
}

.btn-purple:hover,
.btn-pry:hover {
  background: var(--gradient-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #a4d562;

  /* box-shadow: 0 8px 25px rgba(142, 24, 245, 0.4); */
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0e6ff 100%);
  overflow: hidden;
  padding: 70px 0 55px;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(
      circle at 25% 25%,
      var(--primary-purple) 2px,
      transparent 0
    ),
    radial-gradient(circle at 75% 75%, var(--light-purple) 1px, transparent 0);
  background-size: 50px 50px, 30px 30px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  background: rgba(142, 24, 245, 0.1);
  color: var(--primary-purple);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(142, 24, 245, 0.2);
  backdrop-filter: blur(10px);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(142, 24, 245, 0.2);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(142, 24, 245, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(142, 24, 245, 0);
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--black);
}

.hero-title p {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--muted-text);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-primary-custom {
  background: var(--gradient);
  color: var(--white);
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
}

.btn-outline-custom {
  background: transparent;
  color: var(--black);
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary-purple);
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--primary-purple);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(106, 13, 173, 0.2);
}

.logo-card {
  background-color: var(--light-card);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: all 0.3s;
  height: 100px;
}

.logo-card img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.logo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(106, 13, 173, 0.15);
}

.crypto-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-crypto {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}

.floating-crypto img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--white);
}

.crypto-center img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--deep-purple);
}

.floating-crypto:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  background: var(--gradient);
}

.floating-crypto:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
  width: 90px;
  height: 90px;
}

.floating-crypto:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
  width: 70px;
  height: 70px;
}

.floating-crypto:nth-child(4) {
  bottom: 10%;
  right: 20%;
  animation-delay: 3s;
  background: var(--gradient);
}

.floating-crypto:nth-child(5) {
  top: 10%;
  left: 20%;
  animation-delay: 4s;
  background: var(--gradient);
}

.floating-crypto i {
  font-size: 2rem;
  color: var(--primary-purple);
}

.floating-crypto:nth-child(1) i,
.floating-crypto:nth-child(4) i,
.floating-crypto:nth-child(5) i {
  color: var(--white);
}

.crypto-center {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(142, 24, 245, 0.3);
  position: relative;
  z-index: 2;
  animation: pulse-center 4s ease-in-out infinite;
}

@keyframes pulse-center {
  0% {
    box-shadow: 0 0 50px rgba(142, 24, 245, 0.3);
  }
  50% {
    box-shadow: 0 0 80px rgba(142, 24, 245, 0.5);
  }
  100% {
    box-shadow: 0 0 50px rgba(142, 24, 245, 0.3);
  }
}

.crypto-center i {
  font-size: 4rem;
  color: var(--white);
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}
.card {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  height: 100%;
  width: 100%;
}
.card img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 70px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card {
  background-color: var(--light-card);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(106, 13, 173, 0.15);
}

.feature-icon {
  width: 140px;
  height: 140px;
  /* background: var(--white); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 2px solid var(--primary-purple);
  position: relative;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--gradient);
  transform: scale(1.1);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s;
}

.feature-icon i {
  font-size: 40px;
  color: var(--primary-purple);
  transition: all 0.3s;
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-card h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--muted-text);
  line-height: 1.7;
}

/* Industries Section */
.industries-section {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(142, 24, 245, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(179, 136, 255, 0.05) 0%,
      transparent 20%
    );
}

.industry-card {
  background-color: var(--light-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid var(--border);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(142, 24, 245, 0.15);
}

.industry-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
  transform: scale(1.1);
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.industry-card:hover .industry-overlay {
  opacity: 1;
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(142, 24, 245, 0.3);
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
}

.industry-icon i {
  font-size: 24px;
  color: var(--white);
}

.industry-content {
  padding: 25px;
  position: relative;
}

.industry-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.industry-description {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.industry-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(142, 24, 245, 0.3);
  z-index: 3;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.industry-card:nth-child(1) {
  animation-delay: 0.1s;
}
.industry-card:nth-child(2) {
  animation-delay: 0.2s;
}
.industry-card:nth-child(3) {
  animation-delay: 0.3s;
}
.industry-card:nth-child(4) {
  animation-delay: 0.4s;
}
.industry-card:nth-child(5) {
  animation-delay: 0.5s;
}
.industry-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Crypto Stats Section */
.crypto-stats {
  padding: 60px 0;
  background: var(--light-gradient);
  position: relative;
  overflow: hidden;
}

.stats-counter {
  text-align: center;
  margin-top: 60px;
}

.stats-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 30px;
}

.stat-item {
  display: inline-block;
  margin: 0 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted-text);
}

/* Testimonials Section */
.testimonial-section {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonial-card {
  background-color: var(--light-card);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  margin: 15px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
  font-style: italic;
  color: var(--light-text);
  margin-bottom: 25px;
  line-height: 1.7;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-purple);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
  font-family: serif;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid var(--primary-purple);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h5 {
  margin: 0;
  font-weight: 700;
  color: var(--black);
}

.client-details p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);

  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 30px;
}

.cta-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.3rem;
  color: var(--muted-text);
}

/* Footer */
.footer {
  background-color: var(--light-bg);
  color: var(--light-text);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--black);
  position: relative;
  display: inline-block;
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

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

.footer ul li a {
  color: var(--muted-text);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer ul li a:hover {
  color: var(--primary-purple);
  transform: translateX(5px);
}

.social-icons a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background-color: rgba(142, 24, 245, 0.1);
  border-radius: 50%;
  text-align: center;
  align-items: center;

  justify-content: center;
  margin-right: 12px;
  color: var(--primary-purple);
  transition: all 0.3s;
  border: 1px solid rgba(142, 24, 245, 0.2);
}

.contact-icons i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  font-size: 12px;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: var(--primary-purple);
  transition: all 0.3s;
  border: 1px solid rgba(142, 24, 245, 0.2);
}

.social-icons a:hover {
  background-color: var(--primary-purple);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(142, 24, 245, 0.3);
}

.copyright {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  margin-top: 70px;
  text-align: center;
  color: var(--muted-text);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .crypto-visual {
    height: 400px;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    max-width: 280px;
  }

  .cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  /* .contact {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
        } */
  .hero-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .crypto-center {
    width: 150px;
    height: 150px;
  }

  .crypto-center i {
    font-size: 3rem;
  }

  .floating-crypto {
    width: 60px;
    height: 60px;
  }

  .floating-crypto i {
    font-size: 1.5rem;
  }
}
