* {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* overflow: hidden; */
  font-size: 14px;
}

/* Create global primary color and secondary color */
:root {
  --dark: #000000;
  --light: #ddd;
  /* --light: #f1f1f1; */
}
/*********************** HEADER SECTION ***********************/
.top-bar{
  color: white;
  background-color: #01132b;
  text-align: center;
  padding:5px;
}

/*********************** HEADER SECTION ***********************/
header {
  background-color: var(--light);
  width: 100%;
  /* height: 50px; */
  /* line-height: 50px; optional, centers text vertically */
  position: fixed;
  top: 0;
  z-index: 1000; /* ensures it stays above other elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* optional visual enhancement */
}
.navbar {
  height: 50px;
  padding: 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: #000;
  padding: 0 5px;
}
/* .navbar-nav .nav-item:not(:last-child)::after {
  content: "|";
  color: #999;
  margin: 0 10px;
} */

@media (max-width: 767px) {
  .navbar-nav {
    padding-top: 10px;
    background-color: white;
  }

  .navbar-nav .nav-item {
    display: block;
    border-bottom: solid 1px #e6e6e6;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .navbar-nav .nav-item::after {
    content: "";
    margin: 0;
  }
}
/*********************** HERO SECTION ***********************/
.hero-section {
  padding-top: 25vh;
  padding-bottom: 25vh;
  min-height: 100vh;
}
.hero-section h2 {
  margin: 0;
  padding: 0;
  font-size: 25px;
}
.hero-section p {
  margin: 0;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .hero-section {
    padding: 150px 0 20px 0;
    height: auto;
    min-height: auto !important;
  }
  .hero-section h2 {
    font-size: 20px;
  }
  .hero-section p {
    font-size: 12px;
  }
  .hero-section img {
    height: 250px;
  }
}
/*********************** REQUEST A DEMO SECTION ***********************/
.request-demo-section {
  padding: 50px 0;
  background-color: var(--light);
}
.request-demo-section h1 {
  /* text-align: center; */
  font-size: 25px;
  /* margin-bottom: 50px; */
}
.request-demo-section h2 {
}
.request-demo-section p {
}
.request-demo-section .request-demo-form {
}
.request-demo-section .request-demo-form .input-box,
.request-demo-section .request-demo-form select.input-box {
  display: block;
  width: 100%;
  padding: 5px;
}
.request-demo-section .request-demo-form .send-request {
  border: solid 1px black;
  color: white;
  background-color: black;
  padding: 5px 10px;
  display: block;
  width: 100%;
}
.request-demo-section .request-demo-form .send-request:hover {
  border: solid 1px black;
  color: black;
  background-color: transparent;
}

@media (max-width: 767px) {
  .request-demo-section {
    padding: 15px 0;
  }
  .request-demo-section h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .request-demo-section h2 {
  }
  .request-demo-section p {
  }
  .request-demo-section .request-demo-form {
    margin: 0 50px;
  }
  .request-demo-section .request-demo-form .input-box,
  .request-demo-section .request-demo-form select.input-box {
  }
  .request-demo-section .request-demo-form .send-request {
    width: 100%;
    display: block;
  }
}

/* ********************** PRODUCT SECTION **********************/
.product-section {
  padding: 50px 0;
}
.product-section h1 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 50px;
}
.product-section .box {
  background-color: var(--light);
  padding: 25px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.product-section .box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.product-section .box h3 {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 40px;
}
.product-section .box p {
}
@media (max-width: 767px) {
  .product-section {
    padding: 15px 0;
  }
  .product-section .col-md-3 {
    display: inline-block;
    width: 50%;
    margin-bottom: 4%;
  }
  .product-section h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .product-section .box {
  }
  .product-section .box:hover {
  }
  .product-section .box h3 {
  }
  .product-section .box p {
  }
}
/*********************** LIQUIDITY BRIDGE SOLUTION ***********************/
.liquidity-bridge-solution-section {
  padding: 50px 0 0 0;
}
.liquidity-bridge-solution-section h1 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 50px;
}
/*********************** DEVELOPMENT SECTION ***********************/
.development-section {
  padding: 50px 0;
  background-color: var(--light);
}
.development-section h1 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 50px;
}
.development-section .box {
  background-color: white;
  padding: 25px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.development-section .box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.development-section .box h3 {
}
.development-section .box p {
}

@media (max-width: 767px) {
  .development-section {
    padding: 15px 0;
  }
  .development-section .col-md-3 {
    display: inline-block;
    width: 50%;
    margin-bottom: 4%;
  }
  .development-section h1 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .development-section .box {
  }
  .development-section .box:hover {
  }
  .development-section .box h3 {
  }
  .development-section .box p {
  }
}
/*********************** PRODUCT OVERVIEW SECTION ***********************/
.product-overview-section {
  padding: 50px 0;
}
.product-overview-section h1 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 50px;
}
.product-overview-section .box {
  background-color: #f4f4f4;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-overview-section .box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.product-overview-section .box img {
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}
.product-overview-section .box h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.product-overview-section .box p {
  font-size: 12px;
  color: #777;
  margin: 0;
}
@media (max-width: 767px) {
  .product-overview-section {
    padding: 15px 0;
  }
  .product-overview-section .col-md-3 {
    display: inline-block;
    width: 50%;
    margin-bottom: 4%;
  }
  .product-overview-section h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .product-overview-section .box {
  }
  .product-overview-section .box:hover {
  }
  .product-overview-section .box img {
  }
  .product-overview-section .box h3 {
  }
  .product-overview-section .box p {
  }
}
/*********************** AWARDS SECTION ***********************/
.award-section {
  padding: 50px 0;
  background-color: var(--light);
}
.award-section h1 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 50px;
}
.award-section .box {
  background-color: #ffffff;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.award-section .box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.award-section .box img {
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}
.award-section .box h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.award-section .box p {
  font-size: 12px;
  color: #777;
  margin: 0;
}
@media (max-width: 767px) {
  .award-section {
    padding: 15px 0;
  }
  .award-section .col-md-3 {
    display: inline-block;
    width: 50%;
    margin-bottom: 4%;
  }
  .award-section h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .award-section .box {
  }
  .award-section .box:hover {
  }
  .award-section .box img {
  }
  .award-section .box h3 {
  }
  .award-section .box p {
  }
}
/*********************** B2B SERVICES SECTION ***********************/
.b2b-service-section {
  padding: 50px 0;
  text-align: center;
}
.b2b-service-section h1 {
  font-size: 20px;
}
.b2b-service-section h2 {
  font-size: 20px;
}
.b2b-service-section p {
  font-size: 12px;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .b2b-service-section {
    padding: 15px 0;
  }
  .b2b-service-section h1 {
    font-size: 20px;
  }
  .b2b-service-section h2 {
    font-size: 20px;
  }
  .b2b-service-section p {
  }
}
/*********************** ABOUT SECTION ***********************/
.about-section {
  padding: 50px 0;
}
.about-section h1 {
  font-size: 25px;
  margin-bottom: 20px;
}
.about-section h2 {
  margin-top: 20px;
  font-size: 20px;
}
.about-section p {
}

@media (max-width: 767px) {
  .about-section {
    padding: 15px 0;
  }
  .about-section h1 {
  }
  .about-section h2 {
  }
  .about-section p {
  }
}
/*********************** CONTACT SECTION ***********************/
.contact-section {
  padding: 50px 0;
  background-color: var(--light);
}
.contact-section h1 {
  font-size: 25px;
  margin-bottom: 50px;
}
.contact-section h2 {
  font-size: 15px;
}
.contact-section p {
}
.contact-section .contact-form {
}
.contact-section .contact-form .send-message {
  display: block;
  width: 100%;
  border: solid 1px black;
  color: #ffffff;
  background-color: black;
  padding: 5px 10px;
}
.contact-section .contact-form .send-message:hover {
  border: solid 1px black;
  color: black;
  background-color: transparent;
}
@media (max-width: 767px) {
  .contact-section {
    padding: 15px 0;
    text-align: center;
  }
  .contact-section h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .contact-section h2 {
    margin-top: 20px;
    font-size: 15px;
  }
  .contact-section .contact-form {
    margin: 0 30px;
  }
  .contact-section .contact-form input,
  .contact-section .contact-form select,
  .contact-section .contact-form textarea {
    margin-bottom: 10px !important;
  }
  .contact-section .contact-form textarea {
    margin-top: 10px !important;
  }
  .contact-section .contact-form .mb-4 {
    margin: 0 !important;
  }
  .contact-section .contact-form .send-message {
    text-align: center;
  }
}
/*********************** FOOTER SECTION ***********************/
footer {
  font-size: 12px;
  background-color: #ffffff;
  padding: 20px 0;
  color: #a3a3a3;
}

footer a {
  color: #a3a3a3;
  text-decoration: none;
}

footer a:hover {
  color: black;
  text-decoration: underline;
}

footer a:not(:last-child)::after {
  content: "|";
  color: #a3a3a3;
  margin: 0 10px;
}

@media (max-width: 767px) {
  footer {
    padding: 20px 10px;
    text-align: center;
  }
  footer a {
    display: block;
    margin: 0 5px;
    border-bottom: solid 1px #d3d3d3;
  }
  footer a:hover {
    color: black;
    text-decoration: none;
  }
  footer a:not(:last-child)::after {
    content: "";
    margin: 5px 0;
  }
}

/*********************** SUCCESS/ERROR MESSAGES ***********************/
.error {
  color: white;
  background: red;
  padding: 5px 10px;
}
.success {
  color: white;
  background: black;
  padding: 5px 10px;
}
