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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #14213d, #000000);
  color: #ffffff;
}

/* Add the original font family (if you know the font, replace the placeholder) */
body {
  font-family: 'YourFontName', sans-serif;  /* Replace 'YourFontName' with the actual font */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: #000000;
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

.left-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 3rem; /* Increased the gap between logo and nav links */
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  cursor: pointer;
}

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

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;  
  right: 3rem;
}

.cta-buttons a {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.login-btn {
  border: 1px solid #e5e5e5;
  color: #ffffff;
}

.login-btn:hover {
  background-color: #fca311;
  color: #000000;
}

.demo-btn {
  background-color: #fca311;
  color: #000000;
}

.demo-btn:hover {
  background-color: #ffffff;
  color: #14213d;
}

/* Mobile responsive styling */
@media (max-width: 768px) {
  .left-nav {
    justify-content: space-between;
    width: 100%;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #000000;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .cta-buttons {
    display: none;
  }
}

/* Show buttons on mobile */
@media (max-width: 768px) {
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #e5e5e5;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  margin-top: 3rem;
  border-radius: 12px;
  box-shadow: 0 0 40px 10px rgba(255, 165, 0, 0.4);
}

/* Responsive Design */
@media screen and (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 6rem 5rem;
  }

  .hero-content {
    flex: 1;
    margin-right: 15rem;
  }

  .hero-image {
    flex: 1;
  }
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #000000;
  color: #ffffff;
}

/* Metrics Section */
.metrics {
  background-color: #14213d;
  padding: 5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.metric {
  flex: 1 1 250px;
  max-width: 300px;
  color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #1a2b4d;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(252, 163, 17, 0.4);
}

.metric i {
  font-size: 2.5rem;
  color: #fca311;
  margin-bottom: 1rem;
  display: block;
}

/* How It Works Section */
.how-it-works {
  background-color: #14213d;
  padding: 5rem 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  color: #fca311;
}

/* Each step */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  gap: 0.5rem;
}

.step.reverse {
  flex-direction: column-reverse;
}

.step-text {
  display: flex;
  align-items: Flex-start;
  gap: 0.5rem;
  max-width: 700px;
}

.step-text h3 {
  margin: 0;
  font-size: 1.75rem;
  color: #ffffff;
}

.step-text p {
  color: #e5e5e5;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Number bubble */
.step-badge {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fca311;
  color: #000000;
  font-weight: bold;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Step image */
.step-img {
  width: 100%;
  max-width: 700px;
  border-radius: 0.75rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

/* Responsive layout */
@media (min-width: 768px) {
  .step {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .step.reverse {
    flex-direction: row-reverse;
  }

  .step-text {
    max-width: 35%;
  }

  .step-img {
    max-width: 40%;
  }
}

/* Testimonials Section */
.testimonials-section {
  background-color: #14213d;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #fca311;
  margin-bottom: 40px;
}

.testimonials-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background-color: #1e2a48;
  border-radius: 20px;
  padding: 30px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #fca311;
}

.testimonial-card h3 {
  margin: 10px 0 10px;
  color: #ffffff;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #e5e5e5;
}

/* Contact Section */
.contact-section {
  background-color: #14213d;
  padding: 60px 20px;
  text-align: center;
}

.contact-section .section-title {
  color: #fca311;
  margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Metrics Section */
.metrics {
  background-color: #14213d;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.metric {
  flex: 1 1 250px;
  max-width: 300px;
  color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #1a2b4d;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(252, 163, 17, 0.4);
}

.metric i {
  font-size: 2.5rem;
  color: #fca311;
  margin-bottom: 1rem;
  display: block;
}
section {
  margin: 0;
  padding: 0;
  background-color: #14213d;
}
/* Footer */
.footer {
  background-color: #14213d;
  color: #ffffff;
  padding: 0,5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #cccccc;
}

.footer-icons {
  margin-top: 1rem;
}

.footer-icons a {
  color: #ffffff;
  margin: 0 0.75rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #fca311;
}

/* Step entry animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial state before animation */
.step {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* Animated state when scrolled into view */
.step.visible {
  animation: fadeUp 0.8s ease forwards;
}

/* Zoom effect on image hover */
.step-img:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
  
  .footer-icons a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.footer-icons a:hover {
  transform: scale(1.2);
  opacity: 1;
}
}
.step img {
  width: 400px;
  margin-bottom: 3px;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.step p {
  font-size: 20px;
  line-height: 1.4;
  color: #666;
}

.steps-container {
  gap: 20px;
  padding: 5px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0rem;
}