/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at bottom, #1a1a1a 0%, #000 100%);
  background-image: url("assets/bg-grid.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  overflow: hidden;
}

/* Base Navbar Container */
.navbar-container {
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 1000;
}

/* Logo */
.nav-logo {
  height: 38px;
}

/* Menu Wrapper (rounded background) */
.nav-menu-wrapper {
  background: rgba(20, 20, 40, 0.8);
  backdrop-filter: blur(14px);
  border-radius: 50px;
  padding: 6px 20px;
  display: flex;
  justify-content: center;
}

/* Menu Items */
.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu li a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background 0.3s;
}

.nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* CTA Button */
.nav-btn {
  background-color: #ffffff;
  color: #000000;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #eaeaea;
}

/* Mobile Menu Toggle */
.navbar-toggler {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
}

/* Mobile Nav Dropdown */
.mobile-nav {
  display: none;
  background-color: rgba(20, 20, 40, 0.95);
  padding: 10px 20px;
  border-radius: 16px;
  margin-top: 10px;
}

.mobile-nav li a {
  display: block;
  color: white;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li:last-child a {
  border-bottom: none;
}

/* JS Toggle Class */
.mobile-nav.show {
  display: block;
}


/* Mobile nav is hidden by default */
.mobile-nav {
  display: none;
  background-color: rgba(20, 20, 40, 0.95);
  padding: 10px 20px;
  border-radius: 16px;
  margin-top: 10px;
  animation: fadeIn 0.3s ease-in-out;
}

/* Show class added via JS */
.mobile-nav.show {
  display: block;
}

/* Toggle Icon */
.navbar-toggler {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: white;
}


.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  width: 90%;
  margin-left: 5%;
}

.bg-glow,
.bg-mask {
  position: absolute;
  width: 100%;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  top: -10%;
  width: 150%;
  max-width: none;
}

.bg-mask {
  bottom: 0;
  width: 100%;
}

.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #c5c5c5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(to bottom, #4085ff,#4085ff,#4085ff , #4085ff ,#4085ff, #8d9eff ,#fff);
  color: white;
  border: none;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px; /* pill shape */
  box-shadow: 
    inset 0 -3px 8px rgba(0, 0, 0, 0.2), /* inner bottom shadow */
    0 6px 12px rgba(91, 120, 255, 0.3); /* outer glow */
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: #fff;
  color: #000;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.btn-outline:hover {
  background: #f5f5f5;
}

.hero-section img {
  z-index: 0 !important;
  pointer-events: none;
}

.hero-nav {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.nav-left .logo {
  height: 40px;
}

.nav-center {
  background: #000000b5;
  border-radius: 40px;
  padding: 0.5rem 1.5rem;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-right .btn-outline.small {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  background: white;
  color: black;
  border-radius: 999px;
}

.nav-right .btn-outline.small:hover {
  background: #f2f2f2;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

#mobileNav {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.how-it-works {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

/* Connector line behind steps */
.connector-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: linear-gradient(to right, rgba(64, 133, 255, 0) 0%, rgba(64, 133, 255, 0.5) 50%, rgba(64, 133, 255, 0) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

/* Icon style */
.step-icon {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

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

/* Gradient heading */
.how-it-works h3 {
  font-size: 1.25rem;
  font-weight: 500;
  background: linear-gradient(#4085FF, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* Step text */
.how-it-works p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  max-width: 340px;
  margin: 0 auto;
}

/* Section Wrapper */
.who-section {
  position: relative;
  padding: 4rem 4rem;
  background-color: rgba(8, 97, 255, 0.09);
  border-radius: 48px;
  overflow: hidden;
  max-width: 1100px;
  margin: 4rem auto;
  z-index: 1;
}

/* Glow Elements */
.who-glow-top,
.who-glow-bottom {
  position: absolute;
  background: linear-gradient(135deg,
      rgba(64, 133, 255, 1) 0%,
      rgba(64, 133, 255, 0.3126) 50%,
      rgba(64, 133, 255, 0) 100%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

.who-glow-top {
  top: -100px;
  left: -150px;
  width: 600px;
  height: 300px;
}

.who-glow-bottom {
  bottom: -100px;
  right: -150px;
  width: 600px;
  height: 300px;
  transform: rotate(180deg);
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

/* Icon Box */
.icon-box {
  width: 100%;
  max-width: 350px;
  max-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.icon-box img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

/* Text Content */
.who-text h3 {
  background: linear-gradient(#4085FF, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-style: normal;
  font-size: 35px;
  line-height: 100%;
}

.who-text p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.why-choose-section {
  background-color: #000;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.feature-card {
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 100%);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(64, 133, 255, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 0 25px rgba(64, 134, 255, 0.425);
}

.feature-icon {
  width: 330px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 16px;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ccc;
}

.feature-desc {
  color: #FFFFFF9E;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  display: inline-block;
}

/* Trusted Vendors Section  */
.trusted-vendors {
  border-radius: 2rem;
  margin: 5%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Animation for Image */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.image-animate {
  animation: fadeInScale 0.6s ease-out forwards;
}

.trusted-vendors .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-vendors .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(64, 133, 255, 0.2);
}


.faq-section {
  padding : 10% 10% 5% 10%;
}

.faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.3s ease;
  position: relative;
  width: 100%;
  text-align: left;
  padding: 0 0;
  border: none;
}

.faq-question::after {
  content: "+";
  font-size: 2rem;
  font-weight: 100;
  color: #fff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  background-color: rgba(255, 255, 255, 0.03);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 400px; 
  opacity: 1;
}


.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}


/* Footer */
.footer {
  background-color: #000;
  padding: 0 7%;
}

.footer-top {
  background-image: url('assets/img/Group 1597880805.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 80px 20px 60px;
  color: #fff;
  border-radius: 32px;
}

.footer-top h3 {
  font-size: 2rem;
  transition: font-size 0.3s ease; /* Smooth font-size change */
}

.footer-bottom {
  position: relative;
  background-image: url('assets/img/Polygon.png'), url('assets/img/Polygon 2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 20px;
  border-radius: 50px 50px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: padding 0.3s ease; /* Smooth padding transition */
}

.footer-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  pointer-events: none;
  z-index: 2;
}

.footer-logo img {
  max-width: 150px;
  opacity: 0;
  animation: fadeInScale 1s ease-out forwards;
  transition: transform 0.3s ease; /* Smooth transform transition */
}

/* Footer Logo Hover Animation */
.footer-logo img:hover {
  transform: scale(1.1); /* Slightly scale up the logo */
}

/* Footer Links Hover Animation */
.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition for transform, color, and text-decoration */
}

.footer-links a:hover {
  text-decoration: underline;
  transform: scale(1.05); /* Slightly scale up the link */
  color: #f1f1f1; /* Optional: Change text color on hover */
}

/* Button Hover Animation */
.footer-top .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for button hover effects */
}

.footer-top .btn:hover {
  transform: translateY(-5px); /* Move the button up slightly */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
}

/* Footer Bottom Blur */
.footer-bottom-blur {
  position: absolute;
  bottom: 0;
  start: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 1;
  transition: background 0.3s ease; /* Smooth transition for the background of footer-bottom-blur */
}



/* Animation for Footer Logo */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
