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

body {
  font-family: Arial, sans-serif;
}

.navbar {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-bottom: 1px solid #eee;
}

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

.logo img {
  width: 200px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #00288D;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
  color: #f26a1b;
}
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}


.dropdown-toggle {
  
  color: #0033cc;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;       
  left: 0;         
  transform: translateX(-10%);  
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-radius: 8px;
  padding: 10px 0;
}

  .dropdown-menu.show {
    display: block !important;
  }


/* Dropdown menu links */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #0033cc;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.login-btn {
  padding: 6px 14px;
  border: 1px solid #f26a1b;
  background-color: white;
  color: #f26a1b;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
}

.create-btn {
  padding: 6px 14px;
  background-color: #003087;
  color: white;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 20px;
}

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

.create-btn:hover {
  background-color: #001f5c;
}
.hero {
  position: relative;
  background: linear-gradient(135deg, #003399, #005bff);
  color: white;
  padding: 60px 10% 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

.top-cut {
  display: block;
  width: 100%;
  height: auto;
}

.hero-bottom-cut {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-left, .hero-right {
  flex: 1;
  max-width: 500px;
  text-align: left;
  transform: translateY(100px);
  transition: all 1.2s ease;
}

.hero-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-left h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #f2f2f2;
}

.hero-left p {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.buttons {
  display: flex;
  gap: 15px;
}

.create {
  background-color: #ff5c35;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.contact {
  background-color: #fff;
  color: #003399;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.hero-right {
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  width: 400px;
}

/* Trusted Section */
.trusted {
  background-color: #f8f8f8;
  text-align: center;
  padding: 50px 10%;
}

.trusted h4 {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: #002dff;
  margin-bottom: 30px;
}

.brands {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brands img {
  height: 60px;
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.animate-from-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s ease-in-out;
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Animate in class */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.onboarding-section {
  padding: 80px 10%;
  background-color: #fff;
}

.onboarding-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.onboarding-image {
  flex: 1;
  max-width: 500px;
  transform: translateX(-100px);
  transition: all 1s ease;
}

.onboarding-image img {
  width: 100%;
  max-width: 400px;
}

.onboarding-text {
  flex: 1;
  padding-left: 40px;
  transform: translateX(100px);
  transition: all 1s ease;
}

.onboarding-text h2 {
  color: #003399;
  font-size: 24px;
  margin-bottom: 10px;
}

.underline {
  width: 50px;
  height: 3px;
  background-color: #e53935;
  margin-bottom: 20px;
}

.onboarding-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* Animated in class */
.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
/* WHY CHOOSE SECTION */
.why-ngmb {
  padding: 80px 10%;
  background: #ffffff;
}
.why-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.why-text {
  flex: 1;
  max-width: 550px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s ease;
}

.why-text h2 {
  font-size: 26px;
  color: #003399;
  margin-bottom: 15px;
}

.why-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.why-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.why-text ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.learn-more {
  background: #003399;
  color: white;
  padding: 10px 24px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.why-image {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.2s ease;
}

.why-image img {
  max-width: 100%;
  width: 500px;
}

/* Scroll animation */
.animate-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.2s ease;
}

.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* ONE CLICK SECTION */
.one-click-section {
  text-align: center;
  padding: 60px 10%;
}

.one-click-section h2 {
  font-size: 24px;
  color: #003399;
  margin-bottom: 15px;
}

.one-click-section p {
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #333;
}
.payment-flow {
  background-color: #003399; /* Solid dark blue */
  padding: 60px 10%;
  color: white;
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}
.step-card {
  width: 220px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.step-card.clicked {
  transform: scale(1.05);
}
.step-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.step-card p {
  color: white;
  font-size: 14px;
  line-height: 1.4;
}
.arrow {
  font-size: 26px;
  color: white;
  font-weight: bold;
}
.key-features {
  padding: 60px 10%;
  background: #fff;
  text-align: center;
}
.key-features h2 {
  font-size: 24px;
  color: #003399;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid;
  text-align: center;
}
.feature-card.blue-orange {
  border-image: linear-gradient(to bottom, #003399 50%, #ff6600 50%) 1;
}
.feature-card img {
  position: absolute;
  top: 50%;
  left: -16px; 
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: white;
   border: 2px solid #ff6600;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  
}

.feature-card p {
  font-size: 14px;
  color: #333;
  margin: 10px 0 0;
  line-height: 1.4;
}
.global-payments {
  padding: 60px 10% 40px;
  text-align: center;
  background-color: #fff;
}
.global-payments .gp-heading h2 {
  font-size: 28px;
  color: #003399;
  font-weight: 700;
}
.global-payments .gp-heading p {
  margin-top: 10px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.gp-cards {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.gp-card {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  background: white;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.gp-card:hover {
  transform: translateY(-5px);
}
.gp-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.gp-card h4 {
  color: #ff6600;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.gp-card p {
  font-size: 14px;
  color: #333;
}

.developers-section {
  background: linear-gradient(to right, #002a9d, #005bff);
  color: white;
  padding: 60px 10% 80px;
  text-align: center;
}
.developers-section .dev-text h2 {
  font-size: 26px;
  font-weight: 700;
}
.developers-section .highlight {
  color: #ff6600;
}
.dev-text p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.dev-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}
.dev-box {
  background-color: #ff6600;
  color: white;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  transition: transform 0.3s ease;
}
.dev-box:hover {
  transform: scale(1.05);
}
.dev-box img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}
.dev-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.dev-box p {
  font-size: 14px;
  line-height: 1.4;
}
.faq-section {
  background-color: #fffaf7;
  padding: 60px 10%;
}
.faq-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.faq-left {
  flex: 1;
}
.faq-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
}
.faq-left p {
  margin: 5px 0;
  font-size: 16px;
  color: #333;
}
.faq-left a {
  color: #0047ab;
  font-weight: 500;
  font-size: 14px;
}
.faq-left img {
  margin-top: 20px;
  width: 90%;
  max-width: 250px;
}
.faq-right {
  flex: 2;
}
.faq-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.faq-item h4 {
  font-size: 16px;
  color: #0047ab;
  position: relative;
}
.faq-item h4::after {
  content: '+';
  position: absolute;
  right: 0;
  color: #f60;
  font-size: 18px;
}
.faq-item.open h4::after {
  content: '−';
}
.faq-item p {
  font-size: 14px;
  color: #444;
  margin-top: 10px;
}

/* Industries */
.industries {
  background: #fff;
  padding: 60px 10%;
  text-align: center;
}
.industries h2 {
  font-size: 22px;
  color: #0027b3;
  margin-bottom: 40px;
  font-weight: 700;
}
.industry-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.industry {
  width: 100px;
}
.industry img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
}
.industry p {
  margin-top: 10px;
  font-size: 14px;
  color: #222;
}
.animate-left, .animate-right {
  opacity: 0;
  transition: all 1.2s ease;
}

.animate-left {
  transform: translateX(-100px);
}

.animate-right {
  transform: translateX(100px);
}

.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.merchant-dashboard {
  background: linear-gradient(to right, #002a9d, #0061ff);
  color: white;
  padding: 60px 10%;
}
.dashboard-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.dashboard-left h3,
.dashboard-right h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.orange {
  color: #ff6600;
}
.dashboard-left ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.create-account {
  background-color: #f26522;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.contact-sales {
  border: 1px solid #fff;
  background: transparent;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.banner-cta {
  text-align: center;
  padding: 50px 10%;
  background-color: white;
}
.banner-cta h2 {
  font-size: 20px;
  color: #002a9d;
  font-weight: 700;
}
.highlight {
  color: #f26522;
}
.orange-text {
  color: #ff6600;
}
.footer {
  background: #fff;
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.footer-top-shape svg {
  display: block;
  width: 100%;
  height: 30px;
  margin-top: -1px;
}
.footer-content {
  padding: 40px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer-logo img {
  width: 160px;
}
.footer-column a {
  display: block;
  margin-bottom: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  color: #0056b3;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}
.footer-column {
  min-width: 150px;
  justify-content: center;
}
.footer-column h4 {
  font-size: 15px;
  color: #ff6600;
  margin-bottom: 10px;
}
.footer-column p {
  font-size: 14px;
  color: #333;
  margin: 4px 0;
}
.footer-column img {
  height: 40px;
  margin-bottom: 10px;
  background-color: white;
}
.footer-bottom {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
}
.social-icons {
  display: flex;
  gap: 15px; /* spacing between icons */
  align-items: center;
  justify-content: flex-start; /* or center */
  margin-top: 10px;
}

.social-icons a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff; /* change to your brand color */
}

.social-icons i {
  margin-right: 10px;
  color: #003399;
  cursor: pointer;
}
.contact-section {
  background: linear-gradient(to right, #0038ff, #0061ff);
  padding: 60px 5% 40px;
  color: #fff;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.contact-heading h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-card img.icon-placeholder {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  object-fit: contain;
  background-color: #eaeaea;
}

.contact-card h3 {
  font-size: 18px;
  color: #003399;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #333;
}

.sales-btn,
.support-btn {
  background-color: #2b44ff;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.sales-btn:hover,
.support-btn:hover {
  background-color: #001bbb;
}

.contact-info-container {
  background: #fff;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  gap: 30px;
  text-align: left;
}

.contact-info-text h3 {
  color: #003399;
  margin-bottom: 10px;
}

.contact-info-text h4 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.contact-info-text p {
  font-size: 14px;
  line-height: 1.6;
}

.contact-info-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  background-color: #f0f0f0;
  object-fit: contain;
}
.business-edge {
  background-color: #fff7f3;
  padding: 60px 5% 80px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.business-edge h2 {
  font-size: 24px;
  color: #002366;
  margin-bottom: 40px;
}

.edge-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.edge-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.edge-card:hover {
  transform: translateY(-8px);
}

.edge-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.edge-card h3 {
  font-size: 16px;
  color: #002366;
  margin-bottom: 10px;
}

.edge-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.signup-btn {
  background-color: #ff5b2e;
  color: white;
  font-weight: bold;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.signup-btn:hover {
  background-color: #e1471a;
}
.pricing-section {
  width: 100%;
}

.top-blue-section {
  background: linear-gradient(180deg, #002366 60%, white 40%);
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.top-blue-section h2 {
  font-size: 24px;
  font-weight: bold;
}

.top-blue-section p {
  margin-top: 10px;
  font-size: 16px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  color: #002366;
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
}

.card.standard {
  background: #002366;
  color: white;
  border: 1px solid #ff8a65;
}

.card.standard button {
  background: #ff5722;
  color: white;
  border: none;
  padding: 8px 12px;
  margin-top: 10px;
  border-radius: 3px;
  cursor: pointer;
}

.card.enterprise button {
  background: white;
  color: #002366;
  border: 1px solid #002366;
  padding: 8px 12px;
  margin-top: 10px;
  border-radius: 3px;
  cursor: pointer;
}

.card h1 {
  font-size: 40px;
  margin: 10px 0;
}

.card ul {
  text-align: left;
  margin-top: 10px;
  padding-left: 20px;
}

.bottom-white-section {
  background: white;
  display: flex;
  padding: 50px 20px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.left-text h3 {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  line-height: 1.5;
}

.right-features {
  max-width: 600px;
  text-align: center;
}

.right-features h2 {
  color: #002366;
  font-size: 20px;
  font-weight: bold;
}

.right-features p {
  margin: 10px 0 20px 0;
  color: #333;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.features-list span {
  background: #002366;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
}
.contact-section {
  padding: 40px 20px;
  background-color: #fff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  padding: 40px;
}

.contact-title {
  text-align: center;
  color: #f15a29;
  font-size: 22px;
  border-bottom: 2px solid #f15a29;
  display: inline-block;
  margin-bottom: 40px;
  padding-bottom: 5px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form .form-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form button {
  background-color: #f15a29;
  color: #fff;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #e6501f;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #002366;
}

.contact-info .company-name {
  font-weight: bold;
  color: #002366;
  font-size: 18px;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}
.contact-info .sub-line {
  display: block;
  font-size: 18px;
  color: #002366;
  font-weight: normal;
}
.address-line {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}
.address-line span {
  display: block;
  margin-left: 0; /* ensures no indentation */
}


.social-icons {
  margin-top: 10px;
  margin-bottom: 15px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.map-box img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 10px;
}
.about-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.about-left h2 span {
  font-size: 28px;
  color: #0044cc;
  font-weight: bold;
}

.about-left h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
}

.about-left p {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 600px;
}

.join-btn {
  background-color: #f15a29;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.team-section {
  background-color: #ffefe1;
  padding: 60px 40px;
}

.team-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.team-heading {
  font-size: 20px;
  font-weight: 600;
}

.team-subheading {
  color: #888;
  font-size: 14px;
  margin-top: 8px;
}

.team-grid {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.team-card {
  background-color: #f9f9f9;
  width: 160px;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.team-card.empty {
  background-color: #f5f5f5;
  height: 160px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0;
}

.role {
  font-size: 12px;
  color: #002366;
  margin-bottom: 5px;
}

.role .highlight {
  font-weight: 500;
  color: #444;
}

.bio {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.social img {
  width: 18px;
  margin: 0 5px;
}
h2 {
  color: #0033cc;
  text-align: center;
  margin: 20px 0;
}

.platform-section {
  text-align: center;
  padding: 40px 20px;
}

.platform-section p {
  max-width: 600px;
  margin: 10px auto 30px;
}

.platform-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.platform-icons img {
  width: 130px;
  height: 100px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #f9f9f9;
}

.faq-section {
  padding: 40px 20px;
  background: #fff;
}

.faq-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.faq-image img {
  margin-top: 180px;
  max-width: 400px;
  width: 100%;
}

.faq-content {
  flex: 1;
  max-width: 600px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #f9f9f9;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
  border-top: 1px solid #eee;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
   .container {
    flex-direction: column;
    text-align: center;
  }

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

  .create, .contact {
    width: 80%;
    margin-bottom: 10px;
  }

  .hero-right img {
    width: 90%;
  }

  .brands {
    flex-direction: column;
    gap: 20px;
  }
  .onboarding-container {
    flex-direction: column;
    text-align: center;
  }

  .onboarding-text {
    padding-left: 0;
    padding-top: 30px;
 
  }
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-text, .why-image {
    max-width: 100%;
  }
  .steps-container {
    flex-wrap: wrap;
    gap: 20px;
  }.faq-section {
    padding: 40px 5%;
  }

  .faq-container {
    flex-direction: column;
    gap: 30px;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }

  .faq-left h2 {
    font-size: 22px;
    text-align: center;
  }

  .faq-left p,
  .faq-left a {
    text-align: center;
    display: block;
    font-size: 15px;
  }

  .faq-left img {
    margin: 20px auto 0;
    display: block;
    width: 70%;
    max-width: 200px;
  }

  .faq-item h4 {
    font-size: 15px;
  }

  .faq-item p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
   .gp-cards, .dev-boxes {
    flex-direction: column;
    align-items: center;
  }
  .dashboard-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    justify-content: center;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
   .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-text {
    text-align: center;
  }

  .contact-info-image img {
    margin-top: 20px;
  }
  .edge-cards {
    flex-direction: column;
    align-items: center;
  }
  .top-blue-section {
    padding: 30px 15px;
  }

  .top-blue-section h2 {
    font-size: 20px;
  }

  .top-blue-section p {
    font-size: 14px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .card {
    width: 90%;
  }

  .card h1 {
    font-size: 32px;
  }

  .card h3 {
    font-size: 18px;
  }

  .bottom-white-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
  }

  .left-text h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .right-features h2 {
    font-size: 18px;
  }

  .right-features p {
    font-size: 14px;
  }

  .features-list {
    gap: 10px;
  }

  .features-list span {
    padding: 8px 12px;
    font-size: 13px;
  }
  .contact-content {
    flex-direction: column;
  }

  .contact-form {
    margin-bottom: 30px;
  }

  .contact-container {
    padding: 20px;
  }

  .contact-title {
    font-size: 18px;
  }
  .about-section {
    padding: 40px 20px;
    text-align: center;
  }

  .about-left h2 span {
    font-size: 22px;
  }

  .about-left h3 {
    font-size: 20px;
    margin-top: 10px;
  }

  .about-left p {
    font-size: 13px;
    margin: 15px auto;
  }

  .join-btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  .team-section {
    padding: 40px 20px;
  }

  .team-heading {
    font-size: 18px;
  }

  .team-subheading {
    font-size: 13px;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .team-card {
    width: 90%;
    max-width: 300px;
  }

  .team-card.empty {
    height: 150px;
    width: 90%;
    max-width: 300px;
  }

  .avatar {
    width: 50px;
    height: 50px;
  }

  .team-card h4 {
    font-size: 14px;
  }

  .bio,
  .role {
    font-size: 13px;
  }

  .social img {
    width: 18px;
    margin: 0 6px;
  }
  .faq-container {
    flex-direction: column;
    align-items: center;
  }

  .faq-image img {
    max-width: 90%;
  }

  .platform-icons {
    justify-content: center;
    gap: 15px;
  }

  .platform-icons img {
    width: 60px;
  }
}