@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: #ffffff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.navbar {
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #ffffff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-img {
  /* width: 40px;
  height: 40px;
  background-color: #35b98f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.logo-img img {
  width: 60px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  font-size: 15px;
}

.nav-links a:hover {
  color: #ff6a00;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff984e;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.wallet-btn {
  /* background-color: #35b98f; */
  background-color: #0000;
  background-image: linear-gradient(90deg, #f05400, #f1a518);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  font-family: inherit;
}

.wallet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.features h2 {
  font-size: 42px;
}

@media (max-width: 900px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  .features h2 {
    font-size: 28px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    /* background: rgba(15, 23, 42, 0.95); */
    background-color: #fafafa;
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@media (max-width: 480px) {
  .logo span {
    font-size: 1.2rem;
  }

  .wallet-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
/* Content Section Styles */
.content-section {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  padding: 2rem 4rem;
  align-items: center;
  margin: 0 auto;
  gap: 2rem;
}

.text-content {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.text-content h1 {
  font-size: 60px;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #f1a518, #f05400);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  line-height: 1.2;
}

.text-content p {
  font-size: 16px;
  margin-bottom: 2rem;
  color: #000;
  line-height: 1.6;
}

.cta-button {
  /* background-color: #35b98f; */
  background-color: #0000;
  background-image: linear-gradient(90deg, #f05400, #f1a518);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(53, 185, 143, 0.4);
}

.image-content {
  flex: 1;
  /* min-width: 300px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  width: 80%;
  /* margin-bottom: 60px; */
}

/* Content Section Responsive Styles */
@media (max-width: 900px) {
  .text-content h1 {
    text-align: center;
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .content-section {
    padding: 1rem;
  }

  .text-content,
  .image-content {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .text-content h1 {
    text-align: center;
    font-size: 2rem;
  }

  .text-content p {
    text-align: center;
    font-size: 1rem;
  }

  .image-placeholder {
    height: 300px;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

section {
  margin: 4rem 0;
}

.features {
  margin: 6rem 4rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.features p {
  color: #000;
  font-size: 15px;
}

.features .feature-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem;
  gap: 1rem;
}

.features .feature-cards .feature-card {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: flex-start;
  gap: 20px;
  height: 300px;
  border-radius: 10px;
  width: 33.33%;
}

.features .feature-cards .feature-card:hover {
  /* background-image: linear-gradient(#2a2b31, #3a3a3a00); */
  border-top: 2px solid #f05400;
}

.features .feature-cards .feature-card h3 {
  color: #000;
  font-size: 24px;
}

.features .feature-cards .feature-card p {
  line-height: 1.8;
}
.features .feature-cards .feature-card i {
  font-size: 24px;
  color: #fff;
  background-image: linear-gradient(90deg, #f05400, #f1a518);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
}

.user-count {
  /* background-image: linear-gradient(#3a3b41, #b1a1a100); */
  /* background-image: linear-gradient(90deg, #f05400, #f1a518); */
  background-color: #f0540018;
  border-radius: 10px;
  margin: 2rem 6rem;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #f1a518; */
}

.user-count .user-count-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.user-count .user-count-left h2 {
  font-size: 42px;
  line-height: 1.3;
}

.user-count .user-count-left p {
  font-size: 15px;
  color: #000;
}
.counter {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 60px; /* Space between items */
  max-width: 800px;
  /* margin: auto; */
  /* padding: 20px; */
}

.count-card {
  text-align: left;
  /* padding: 30px; */
  border-radius: 10px;
}

.user-count-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-count-right img {
  width: 80%;
}

.count-card h2 {
  font-weight: 600;
  color: #f1780b;
}

.about {
  margin: 4rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.about-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 70%;
}

.about-text h2 {
  font-size: 42px;
}

.about-text p {
  color: #000;
  line-height: 1.8;
  /* width: 90%; */
}

footer {
  background-color: #020710;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo {
  font-size: 24px;
  color: #fff;
}

footer .footer-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

footer .footer-links ul li {
  list-style-type: none;
}

footer .footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

footer .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

footer .socials a {
  text-decoration: none;
  color: #fff;
}
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 32px;
    /* text-align: center; */
  }

  .content-section {
    padding: 1rem;
  }

  .faq h2 {
    font-size: 32px;
  }

  .text-content,
  .image-content {
    min-width: 100%;
  }

  .features .feature-cards {
    flex-direction: column;
    padding: 2rem 0rem;
  }

  .features .feature-cards .feature-card {
    height: auto;
    width: 100%;
  }

  .content-section {
    height: auto;
  }

  .image-content img {
    margin-bottom: 0;
  }

  .user-count-right {
    width: 100%;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 60%;
  }

  .user-count-right img {
    margin-top: 20px;
    width: 100%;
  }

  .user-count .user-count-left h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .features {
    margin: 1rem;
    margin-top: 4rem;
  }
  .user-count {
    margin: 1rem;
    flex-direction: column;
  }

  .user-count .user-count-left {
    width: 100%;
  }

  .about {
    margin: 1rem;
    flex-direction: column;
    gap: 20px;
  }

  .about-text {
    width: 100%;
  }

  footer {
    flex-direction: column;
    gap: 2rem;
  }
  footer .footer-links ul {
    flex-direction: column;
  }
  .faq-wrapper {
    flex-direction: column;
  }
  .faq-right {
    display: none;
  }
}
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background: transparent;
  border: 2px solid #f05400;
  color: #f05400;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  /* padding: 12px 16px; */
  border-radius: 50%;
  font-size: 20px;
  display: none; /* Hidden by default */
  transition: opacity 0.3s ease;
}

.faq h2 {
  font-size: 42px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  /* border-bottom: 1px solid #ddd; */
  margin-bottom: 14px;
  /* border-radius: 10px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow */
  transition: box-shadow 0.3s ease;
  font-family: inherit;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px;
  font-size: 16px;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: inherit;
  font-weight: 500;
  /* border-radius: 5px; */
}

.faq-question i {
  color: #f05400;
}

.faq-question:hover {
  background: #f0540018;
}
.faq-answer {
  display: none;
  padding: 10px 15px;
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  font-family: inherit;
}
.faq-icon {
  margin-left: 10px;
}
.faq-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.faq-left {
  flex: 1;
}

.faq-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-right img {
  /* max-width: 100%; */
  height: auto;
  border-radius: 10px;
}

.about-text ul li {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .faq-right {
    display: none;
  }
  .about-text ul li {
    margin-bottom: 20px;
  }
}
