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

body {
  font-family: 'inter', sans-serif;
   overflow-x: hidden;
}

.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: 0px;
  flex-wrap: wrap;
}

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

.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;
}
.sign-in-link {
  text-decoration: none;
  color: #00288D;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
  display: inline-block;
  margin-right: 0; /* reset negative margin for mobile */
}

/* Hover effect */
.sign-in-link:hover {
  color: #0146F7;
}

/* Mobile-specific adjustments */
@media screen and (max-width: 768px) {
  .sign-in-link {
    font-size: 16px; /* slightly larger for touch screens */
    margin-right: 0; /* ensure proper alignment */
    padding: 10px 15px; /* larger clickable area */
  }
}
.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;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #003087;
  margin-right: 20px;
}

.close-btn {
  display: none;
  font-size: 26px;
  text-align: left;        
  margin-bottom: 20px;
  margin-left: 0;         
  cursor: pointer;
}

.mobile-auth {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.desktop-auth {
  display: flex;
  gap: 10px;
}

.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;
  margin-left: -160px;
}

.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;
  width: 160px;
  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: #001f5c;
}
.orange-text {
  color: #ff6600;
}
.footer {
  background: #fff;
  padding: 20px 40px;
  color: #222;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* About Section (Left Side) */
.footer-about {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-about img {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-about h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
  color: #00288D;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex: 3;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
/* Section background */
.c1 {
  background: linear-gradient(135deg, #01298F, #0146F7);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.c2 h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Card container */
.c3 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

/* Cards */
.c4 {
  background: #fff;
  color: #333;
  flex: 1 1 300px;
  max-width: 400px;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c4:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Icon */
.c5 {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* Headings */
.c4 h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Text */
.c4 p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Buttons */
.c6,
.c7 {
  background: #01298F;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.c6:hover,
.c7:hover {
  background: #0146F7;
}

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

  .c4 {
    width: 90%;
    max-width: 350px;
  }

  .c2 h2 {
    font-size: 22px;
  }
}


.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  margin: 4px 0;
  transition: color 0.2s;
}


.footer-column a:hover {
  color: #f26522;
}
/* Section Wrapper */
.a1 {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

/* Flex container */
.a2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Content */
.a3 {
  flex: 1;
  min-width: 300px;
}

.a3 h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #01298F;
}

.a6 {
  background: linear-gradient(135deg, #01298F, #0146F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Each row with icon + text */
.a7 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.a8 {
  width: 28px;
  height: 28px;
  margin-top: 3px;
}

.a7 h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #01298F;
}

.a7 p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #333;
}

/* Right Image */
.a4 {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.a5 {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

  .a7 {
    justify-content: center;
    text-align: left;
  }

  .a3 {
    margin-bottom: 20px;
  }
}


/* Social Icons */
.social-icons a {
  margin-right: 10px;
  font-size: 16px;
  color: #333;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #f26522;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 15px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.social-icons i {
  margin-right: 10px;
  color: #003399;
  cursor: pointer;
}

.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 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 20px;
  background: #fff;
}

.contact-left,
.contact-right {
  flex: 1;
  margin: 10px;
}

.contact-left h2 {
  color: #002366;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #002366;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: 800;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 600px;
}
 
/* changes */
.contact-form input:focus,
.contact-form select:focus, 
.contact-form textarea:focus,
.contact-form button:focus { 
  outline: none; 
  border-width: 1px;
  border-color: #002366; 
  box-shadow: 0 0 0 3px rgba(0, 35, 102, 0.3); 
}

.contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-form input,
.contact-form select, 
.contact-form textarea {
  margin: 10px 0;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none; 
  width: 100%;
      
}
.contact-form button {
  background: #002366;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  width: 100px;
  margin-left: 250px;
  text-decoration: underline;
  font-weight: 600;
}

.contact-form button:hover {
  background: #e63e00;
}
.contact-details {
  max-width: 600px;         
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
/* changes */
.contact-details h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0d2b61; /* dark blue like your site */
}

.contact-details .address-label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #222;
}

.contact-details .address-text,
.contact-details .email,
.contact-details .phone {
  margin: 0 0 10px 0;
  text-align: justify;      /* keeps it neat in block form */
  color: #444;
}

.contact-details .email i,
.contact-details .phone i {
  color: #0d2b61;   /* orange shade for icons */
  margin-right: 8px;
}

.contact-details .social-icons {
  margin-top: 10px;
}

.contact-details .social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: blue;  /* orange shade */
  text-decoration: none;
}

.contact-details .social-icons a:hover {
  color: #222;
}

    

    iframe {
      width: 100%;
      height: 200px;
      border: none;
      border-radius: 6px;
      margin-top: 15px;
    }

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  gap: 40px;
  overflow: hidden;
}

.about-text {
  flex: 1;
  margin-left: 60px;
  transform: translateX(-100px);
  transition: all 1s ease;
}

.about-text h2 {
  color: #0044cc;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: left;
}

.about-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.about-text p {
  font-size: 14px;
  margin-bottom: 15px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 15px;    
  border: none;
  background-color: #f26322 !important; 
  color: #ffffff !important;          
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 10;          
}

.btn:hover {
  background-color: #d9521e !important;
  transform: translateY(-2px);
}
.about-image {
  flex: 1;
  text-align: center;
  transform: translateX(100px);
  transition: all 1s ease;
  margin-right: 60px;
}

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



.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-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
    }

    .faq-image {
      width: 40%;
    }

    .faq-image img {
      width: 100%;
    }

    .faq-content {
      width: 55%;
    }

    .faq-content h2 {
      text-align: left;
      margin-bottom: 20px;
      color: #002366;
    }

    .faq-item {
      background: #fff;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 15px;
      text-align: left;
      background: #fff;
      border: none;
      outline: none;
      cursor: pointer;
      font-size: 16px;
      font-weight: 500;
      position: relative;
    }

    .faq-question::after {
      content: '+';
      position: absolute;
      right: 20px;
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .faq-question.active::after {
      content: '-';
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background: #fafafa;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-answer p {
      margin: 10px 0;
      color: #333;
    }

    .faq-answer.show {
      max-height: 200px; /* Adjust depending on answer length */
      padding: 15px;
    }
 .team-section {
      text-align: center;
      padding: 60px 20px;
    }

    .team-section h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #222;
    }

    .team-section p {
      font-size: 16px;
      color: #666;
      margin-bottom: 40px;
    }

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

    .team-member {
      background: #f5f5f5;
      border-radius: 12px;
      padding: 20px;
      width: 220px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-8px);
    }

    .team-member img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .team-member h3 {
      font-size: 18px;
      margin: 10px 0 5px;
      color: #222;
    }

    .team-member p {
      font-size: 14px;
      color: #555;
      margin: 0;
    }
    .terms-container{
  max-width: 900px;
  margin: 40px auto;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(31, 41, 55, 0.08);
  border: 1px solid rgba(15,23,42,0.04);
  font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #0f172a;
}

/* Section title */
.terms-title{
  font-size: 1.45rem;
  margin: 0 0 14px 0;
  padding-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #0b1220;
  border-bottom: 1px dashed rgba(11, 18, 32, 0.06);
}

/* The scrollable content area */
.terms-content{
  max-height: 380px;         /* change height as needed */
  overflow-y: auto;
  padding: 18px;
  background: linear-gradient(180deg, rgba(245,247,250,0.6), rgba(255,255,255,0));
  border-radius: 8px;
  margin-top: 12px;
}

/* Paragraph styling — keeps your <br> spacing */
.terms-content p{
  margin: 0;
  line-height: 1.65;
  font-size: 0.98rem;
  white-space: pre-line;     /* respects newlines and <br> */
  color: #243048;
}

/* Custom scrollbar for webkit browsers */
.terms-content::-webkit-scrollbar{
  width: 10px;
}
.terms-content::-webkit-scrollbar-track{
  background: transparent;
}
.terms-content::-webkit-scrollbar-thumb{
  background: rgba(11, 18, 32, 0.12);
  border-radius: 999px;
  border: 2px solid transparent; /* gives padding effect */
  background-clip: padding-box;
}

/* 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%;
  }
  .hero-left h2 {
    margin-left: 10px ;
  }
  .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-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .faq-image {
        width: 80%;
        margin-bottom: 20px;
      }

      .faq-content {
        width: 100%;
      }

      .faq-content h2 {
        text-align: center;
        font-size: 20px;
      }

      .faq-question {
        font-size: 15px;
      }

  .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;
  }
 header.navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  /* Logo smaller */
  .logo img {
    max-width: 120px;
    height: auto;
  }

  /* Hide menu by default */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .nav-links a {
    display: block;
    margin: 12px 0;
    font-size: 16px;
  }

  /* Hamburger visible */
  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  /* Close button inside mobile menu */
  .close-btn {
    font-size: 28px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
  }

  /* Contact section stacked */
  .contact-section {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }

  .contact-left,
  .contact-details {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    margin-bottom: 12px;

  }

  .contact-details iframe {
    width: 100%;
    height: 250px;
  }

  /* Footer stacked */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-column h4 {
    margin-bottom: 10px;
  }

  .social-icons a {
    margin: 0 8px;
  }
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .about-text, .about-image {
    transform: none;
    opacity: 1;
  }

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

  .about-text h3 {
    font-size: 20px;
  }

  .about-text p {
    font-size: 14px;
  }
 .team-container {
        flex-direction: column;
        align-items: center;
      }

  .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;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 75%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links a,
  .nav-links li {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .close-btn {
    display: block;
   
  }

  .desktop-auth {
    display: none;
  }

  .mobile-auth {
    display: flex;
  }
 .contact-form button{
  width: 100px;
 }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    padding-left: 10px;
    border-radius: 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown-toggle::after {
    content: " ▼";
  }
   .desktop-auth {
    display: none;
  }

   .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .mobile-auth {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    gap: 12px;
  }

  .mobile-auth .login-btn,
  .mobile-auth .create-btn {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    text-align: center;
    margin-right: 20px;
  }
  .terms-container {
    padding: 20px;
    margin: 30px 10px;
  }

  .terms-title {
    font-size: 20px;
  }

  .terms-content p {
    font-size: 14px;
    line-height: 1.6;
  }
.terms-container{
    margin: 18px;
    padding: 18px;
    border-radius: 10px;
  }
  .terms-title{
    font-size: 1.2rem;
  }
  .terms-content{
    max-height: 320px;
    padding: 14px;
  }
  .terms-content p{
    font-size: 0.95rem;
    line-height: 1.6;
  }  .footer-content {
      flex-direction: column;
      padding: 20px 20px;
    } 
  .footer-wrapper {
    flex-wrap: nowrap !important;
    padding: 40px 60px !important;
  }
  .footer-wrapper > div {
    flex: 1 !important;
    max-width: 25% !important;
  }
}