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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

header.scrolled {
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.left-nav{
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  cursor: pointer;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 24px;
}


.segment-control {
  display: flex;
  align-items: center;
  padding: 2px;
  background: #079455;
  border-radius: 99px;
  gap: 0;
}

.segment-btn {
  padding: 8px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  background: transparent;
  color: #ffffff;
}

.segment-btn.active {
  background: #ffffff;
  color: #0d121c;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.12);
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  gap:8px 20px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  /* align-items: stretch; */
}

.nav-links.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  position: relative;
}

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

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

.btn-primary {
  padding: 12px 24px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.mobile-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 2px;
  background: #F3F4F6;
  border-radius: 4px;
  cursor: pointer;
  text-align: right;
  padding-inline: 12px;
}

.mobile-toggle span {
  width: 12px;
  height: 3px;
  background: #000;
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-toggle span:nth-child(3) {
  width: 9px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
  width: 12px;
  transform: rotate(-45deg) translate(4px, -6px);
}

.hero {
  margin-top: 88px;
  padding: 84px 20px 0;
  background: url("./assets/images/showcasebgsmall.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  /* overflow: hidden; */
  border-radius: 16px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-content {
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  position: relative;
  z-index: 2;
  flex-direction: column;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  max-width: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  text-wrap: balance;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  text-wrap: balance;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-get-started,
.btn-contact {
  padding: 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-get-started {
  background: #2563eb;
  color: #fff;
}

.btn-contact {
  background: transparent;
  color: #fff;
  border: 1px solid #6c737f;
}

.btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn-contact:hover {
  background: rgba(255, 255, 255, 0.1);
}

.download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.download-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.download-btn:hover {
  transform: translateY(-2px);
}
.download-btn.web {
  border: none;
  padding: 10px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  max-height: 410px;
  aspect-ratio: 325/410;
}

.phone-mockup {
  width: 250px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.partners {
  padding: 60px 20px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.partners-content {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.partners h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 30px;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  transition: all 0.3s;
  cursor: pointer;
}

.partner-logo:hover {
  color: #2563eb;
  transform: scale(1.1);
}

.features {
  padding: 100px 20px;
  background: #fff;
}

.features-content {
  max-width: 1120px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.badge-icon {
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
}

.section-badge span {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  /* letter-spacing: 0.1em; */
}
.features-content .section-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}
.features h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  max-width: 600px;
}

.features-subtitle {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* grid-template-columns: 1fr; */
  gap: 30px;
}

.features-grid img {
  width: 100%;
}

.feature-card {
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.faq {
  padding: 100px 20px;
  background: #000;
  border-radius: 16px;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #031140;
  border-radius: 20px;
  margin-bottom: 20px;
}

.faq-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
}

.faq h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  text-wrap: balance;
}

.faq-categories {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.faq-category {
  padding: 10px 20px;
  background: #1b1b1b;
  border: 1px solid #3d3d3d;
  border-radius: 10px;
  color: #d2d6db;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-category:hover {
  border-color: #031140;
  transform: translateY(-2px);
}

.faq-category.active {
  background: #031140;
  border-color: #2563eb;
  color: #2563eb;
}

.faq-list {
  text-align: left;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 40px;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #2a2a2a;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  flex: 1;
  transition: color 0.3s;
}

.faq-question:hover h4 {
  color: #2563eb;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border: 2px solid #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 20px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: #2563eb;
  color: #fff;
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 15px;
}

.faq-answer p {
  font-size: 15px;
  color: #999;
  line-height: 1.6;
}

footer {
  padding: 10px 0 80px;
  background: #fff;
}

.footer-container {
  /* max-width: 1120px; */
  margin: 0 auto;
}

.footer-top {
  padding: 40px;
  background: url("./assets/images/footerbg.jpg");
  border-radius: 16px;
  text-align: center;
  margin-bottom: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
}

.footer-links-row {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}

.footer-section h4 {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer-contact-btn {
  padding: 8px 16px;
  background-color: #fff;
  border-radius: 999px;
  color: #000 !important;
  /* width: max-content; */
  font-size: 12px;
  text-align: center;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-section ul li a:hover {
  color: #00d186;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #011e4b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: #00d186;
  transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px 52px;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* padding-top: 40px; */
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.tab-footer-logo {
  display: none;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #1e40af;
  transform: translateY(-5px);
}

@media (min-width: 769px) {
  .left-nav{
  gap: 24px;
}

.logo {
  font-size: 24px;
}

  .nav-links {
    display: flex;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }

  .segment-btn {
  padding: 12px 20px;
  font-size: 14px;
}

  .mobile-toggle {
    display: none;
  }

  .hero {
    background: url("./assets/images/showcasebgbig.png");
    padding: 60px 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .hero-content {
    flex-direction: row;
    gap: 60px;
  }

  .hero-text {
    align-items: start;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 56px;
  }

  .hero-image {
    display: none;
  }

  .partners {
    padding: 60px 40px;
  }

  .partners-grid {
    justify-content: space-between;
  }

  .features {
    padding: 100px 40px;
  }
  .features-content .section-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px 52px;
    margin-bottom: 44px;
  }
  .features h2 {
    font-size: 52px;
    max-width: 600px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .faq {
    padding: 100px 40px;
  }

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

  footer {
    padding: 80px 40px 40px;
  }

  .footer-top {
    padding: 60px;
  }

  .footer-links-row {
    flex-direction: row;
    text-align: left;
  }

  .footer-bottom {
    display: flex;
    flex-direction: row;
  }
  .tab-footer-logo {
    display: block;
  }
  .mobile-footer-logo {
    display: none;
  }
}
