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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar Styles */
.navbar {
  position: sticky; /* Sticky navbar */
  top: 0; /* Keep at the top of the page */
  z-index: 1000; /* Ensure it stays above other elements */
  display: flex; /* Flexbox for horizontal alignment */
  justify-content: space-between; /* Logo on the left, links on the right */
  align-items: center; /* Vertically align items */
  background: white; /* Navbar background color */
  padding: 10px 20px; /* Add spacing inside the navbar */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.navbar .logo {
  font-size: 1.5rem; /* Larger font for the logo */
  font-weight: bold; /* Bold font for emphasis */
  color: #004085; /* Dark blue for branding */
}

.navbar .nav-links {
  list-style: none; /* Remove bullet points */
  display: flex; /* Horizontal layout */
  gap: 20px; /* Add space between links */
  margin: 0; /* Reset default margin */
}

.navbar .nav-links li {
  margin: 0; /* Reset list item margins */
}

.navbar .nav-links a {
  text-decoration: none; /* Remove underline */
  font-size: 1rem; /* Set a readable font size */
  color: #004085; /* Dark blue text for links */
  transition: color 0.3s ease; /* Smooth transition on hover */
}

.navbar .nav-links a:hover {
  color: #00c851; /* Green color on hover */
}

.navbar .btn-primary {
  background: linear-gradient(135deg, #004085, #00c851); /* Blue-to-green gradient */
  color: white; /* White text for contrast */
  padding: 10px 20px;
  border-radius: 25px; /* Rounded button */
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease;
}

.navbar .btn-primary:hover {
  background: linear-gradient(135deg, #00c851, #004085); /* Reverse gradient on hover */
}




/* Hero Section */
.hero {
  padding-top: 80px; /* Adjust to match the height of your navbar */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0062cc, #00c851); /* Hero gradient */
  color: white;
  text-align: center;
  padding: 80px 20px; /* Add additional padding inside the hero */
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero .cta-buttons a {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
}
.btn-primary {
  background: #00C851;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}


/* mission */
.mission1 {
  padding: 50px 20px;
  text-align: center;
  background: #ffffff;
}
.mission1 -grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.mission1 -item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* News Section */
.news1 {
  padding: 50px 20px;
  background-color: #f4f4f4;
}

.news1 h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px; /* Space between the boxes */
}

.news-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.news-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.news-item img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

.news-item p {
  font-size: 1rem;
  line-height: 1.5;
}

.news-item a {
  color: #1e88e5;
  text-decoration: none;
}

.news-item a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
  }
}

/* team Section */
.team {
  padding: 30px 20px;
  text-align: center;
  background: #F0F4F8;
}
.team .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.team-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.icon {
  font-size: 2rem;
  color: #0074D9;
}


/* Features Section */
.features {
  padding: 50px 20px;
  text-align: center;
  background: #F0F4F8;
}
.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.icon {
  font-size: 2rem;
  color: #0074D9;
}

/* AI Section */
.ai-powered {
  padding: 50px 20px;
  text-align: center;
  background: #E8F8FF;
}
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.ai-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Use Cases Section old   background: #F9FFEA; */
.use-cases {
  padding: 50px 20px;
  background: #F0F4F8;
  text-align: center;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.use-case-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* FAQ Section */
.faq {
  padding: 50px 20px;
  background: #F4F4F4;
}
.accordion-item {
  margin-bottom: 10px;
}
.accordion-header {
  background: #fff;
  color: #333;
  padding: 15px;
  border: none;
  border-radius: 5px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.accordion-header:hover {
  background: #E3F2FD;
}
.accordion-body {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-top: none;
  display: none;
  border-radius: 0 0 5px 5px;
}
.accordion-header.active + .accordion-body {
  display: block;
}

/* Call-to-Action Section */
.cta {
  padding: 50px 20px;
  text-align: center;
  background: #001F3F;
  color: #fff;
}
.contact-form input, .contact-form select, .contact-form button {
  width: 400px;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
}
.contact-form button {
  background: #00C851;
  color: #fff;
  cursor: pointer;
}

/* Additional Graphics Placeholder */
.hero::before {
  content: '';
  background: url('images/hero-graphic.svg') no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.features .feature-item::before {
  content: '';
  display: block;
  margin: 0 auto 10px;
  width: 50px;
  height: 50px;
  background: url('images/security-icon.svg') no-repeat center/contain;
}


/* Features1 Section */
.features1 {
  padding: 60px 0; /* Add spacing above and below the section */
  background: #f5f5f5; /* Light gray background */
}

.features1 h2 {
  text-align: center;
  color: #004085; /* Dark blue for fintech branding */
  margin-bottom: 30px;
  font-size: 2rem;
}

.features-layout1 {
  display: flex; /* Flexbox for side-by-side layout */
  gap: 20px; /* Space between image and text */
  align-items: center; /* Vertically align items */
  flex-wrap: wrap; /* Ensure responsive wrapping for smaller screens */
}

.features-image1 img {
  max-width: 400px; /* Restrict image width to 400px */
  height: auto; /* Maintain image aspect ratio */
  border-radius: 8px; /* Optional: Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow for emphasis */
}

.features1-content {
  flex: 1; /* Allow the content to take up remaining space */
  font-size: 1rem; /* Set a readable font size */
  color: #555; /* Subtle gray for text */
}

.features1-content ul {
  list-style: none; /* Remove default list styles */
  padding: 0; /* Remove padding */
}

.features1-content li {
  margin-bottom: 15px; /* Space between each list item */
  line-height: 1.6; /* Improve readability */
}

.features1-content li strong {
  color: #004085; /* Highlight feature titles with dark blue */
}


 /* NW Values Grid */
.nw-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 equal-width columns */
  gap: 20px; /* Space between items */
}

.nw-values-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Optional styling for the section */
.values {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}



/* FAQ Section */
.faq {
  padding: 60px 0;
  background: #eef8f1;
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #004085;
}

.accordion {
  max-width: 800px;
  margin: auto;
}

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  cursor: pointer;
  padding: 15px;
  background: #fff;
  color: #333;
  font-weight: bold;
  text-align: left;
  transition: background 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.accordion-header:hover {
  background: #f4f4f4;
}

.accordion-body {
  padding: 15px;
  display: none;
  background: #fafafa;
  color: #555;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* Footer Styles */
.footer {
  background: #004085; 
  color: white; 
  padding: 20px 0; 
  font-size: 0.9rem; 
}

.footer .container {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between; 
  align-items: center; 
  max-width: 1200px; 
  margin: auto; 
  padding: 0 20px; 
}

.footer-content {
  display: flex;
  flex-direction: column; /* Default column layout for smaller screens */
  gap: 55px; 
}

.footer-info, .footer-contact {
  margin-bottom: 10px; 
}

.footer a {
  color: #00c851; /* Green link color for contrast */
  text-decoration: none; 
  transition: color 0.3s ease; /* Smooth hover effect */
}

.footer a:hover {
  color: #e0e0e0; /* Slightly lighter hover effect */
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row; 
    justify-content: space-between; /* Space out content evenly */
  }

  .footer-info, .footer-contact {
    margin-bottom: 0; 
  }
}

/* Legal Statement Styles */
.legal-statement {
  text-align: center; 
  background: #f5f5f5; 
  color: #666; 
  padding: 10px 0; 
  font-size: 0.9rem; 
  border-top: 1px solid #ddd; 
}

.legal-statement p {
  margin: 0; /* Remove default paragraph margins */
}