/* General Styles */
body {
    font-family: 'Oxygen', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #F1F1F1; /* Default text color for dark sections */
    background-color: #012A4A; /* Default background color - mainly for dark sections */
}



h1, h2, h3, h4, h5, h6 {
    color: #F1F1F1; /* Default heading color for dark sections */
    margin-top: 0;
}

p {
    margin-bottom: 1.25rem; /* 20px / 16px = 1.25rem */
}

a {
    text-decoration: none;
    color: inherit; /* Inherit color by default */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Reapplying section-dark for clarity where it's a solid dark color */
.section-dark {
    background-color: #012A4A; /* Dark blue background */
    color: #F1F1F1; /* Light text */
    padding: 3.75rem 0; /* 60px / 16px = 3.75rem */
}

.section-light {
    background-color: #F1F1F1; /* Light grey background */
    color: #012A4A; /* Dark text */
    padding: 3.75rem 0; /* 60px / 16px = 3.75rem */
}

.dark-text {
     color: #012A4A; /* Dark blue text */
}

.light-text {
    color: #F1F1F1; /* Light grey text */
}

.accent-color {
    color: #03AAAD; /* Accent blue-green */
}

.section-label {
    color: #03AAAD; /* Accent color for labels */
    font-size: 0.9em;
    display: block;
    margin-bottom: 0.625rem; /* 10px / 16px = 0.625rem */
}

.centered-content {
    text-align: center;
}

.centered-content h2,
.centered-content p {
    margin-left: auto;
    margin-right: auto;
}

.max-width-text {
    max-width: 50rem; /* 800px / 16px = 50rem */
}


/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5625rem; /* 12px / 16px = 0.75rem, 25px / 16px = 1.5625rem */
    border: none;
    border-radius: 0.3125rem; /* 5px / 16px = 0.3125rem */
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-family: 'Oxygen', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.button-outline-light {
    background-color: transparent;
    color: #F1F1F1;
    border: 0.0625rem solid #F1F1F1; /* 1px / 16px = 0.0625rem */
}

.button-outline-light:hover {
    background-color: #F1F1F1;
    color: #012A4A;
}

.button-solid-light {
     background-color: #F1F1F1;
     color: #012A4A;
     border: 0.0625rem solid #F1F1F1; /* 1px / 16px = 0.0625rem */ /* Add border to maintain consistency */
}

.button-solid-light:hover {
    background-color: #dcdcdc; /* Slightly darker light grey */
}

.button-solid-dark {
    background-color: #012A4A;
    color: #F1F1F1;
    border: 0.0625rem solid #012A4A; /* 1px / 16px = 0.0625rem */ /* Add border to maintain consistency */
}

.button-solid-dark:hover {
     background-color: #013a61; /* Slightly darker dark blue */
}

.header-container {
  display: flex;
  align-items: center;
}

.navbar-right {
  display: flex;
  align-items: center;
  margin-left: auto; /* 👈 Pushes it to the right */
  gap: 1.5625rem; /* 25px / 16px = 1.5625rem */          /* Space between dropdown and nav */
}

.dropdown {
    margin-left: auto;
    margin-right: 0;

}

.dropdown select {
    width: 17.4375rem; /* 279px / 16px = 17.4375rem */
    height: 2.875rem; /* 46px / 16px = 2.875rem */
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 0.0625rem solid #01497C; /* 1px / 16px = 0.0625rem */ /* match site */
    border-radius: 0.25rem; /* 4px / 16px = 0.25rem */
    padding: 0.2em; /* match site's vertical spacing */
    text-align: left;
    font: normal normal normal 1.125rem / 1.5rem 'Source Sans Pro', sans-serif; /* 18px / 16px = 1.125rem, 24px / 16px = 1.5rem */ /* match exactly */
    letter-spacing: 0px;
    color: #012A4A;
    margin-right: 0.9375rem; /* 15px / 16px = 0.9375rem */

    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22%23012A4A%22%20d%3D%22M4.516%207.548c.436-.446%201.043-.481%201.576%200L10%2011.295l3.908-3.747c.533-.481%201.141-.446%201.574%200%20v.001l.002.002.004.006.006.008a1.938%201.938%200%200%201%20-.001%202.124l-4.51%204.332a1.213%201.213%200%200%201-1.74%200l-4.509-4.332a1.952%201.952%200%200%201-.001-2.121l.004-.005.006-.007.003-.002z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.9375rem center; /* 15px / 16px = 0.9375rem */
    background-size: 0.75rem; /* 12px / 16px = 0.75rem */
    box-sizing: border-box;
    display: block;
}
.container {
    max-width: 106.25rem; /* 1700px / 16px = 106.25rem */
    margin: 0 auto;
    padding: 0 0.9375rem; /* 15px / 16px = 0.9375rem */
    /* Keep flex properties for the general container if needed elsewhere,
       but we will define specifically for the navbar container */
}
/* Navbar */
.navbar {
    background-color: #ffffff; /* Light background */
    padding: 0.75rem 0; /* 12px / 16px = 0.75rem */ /* Vertical padding */
    color: #012A4A; /* Dark text */
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar .logo {
    flex-shrink: 0;
}

#logo-image {
    width: 200px;
  }

nav ul li {
    display: flex; /* Make each list item a flex container */
    align-items: center; /* Vertically center the content (the <a> tag) */
}

/* Keep the existing nav ul rule, you can remove the commented out align-items lines */
nav ul {
    display: flex;
    /* Previous align-items attempts */
}
nav a {
    color: #012A4A; /* Dark link color */
    transition: color 0.3s ease;
    font: normal normal 545 1.25rem / 2rem Source Sans Pro; /* 20px / 16px = 1.25rem, 32px / 16px = 2rem */
    letter-spacing: 0px;
}

.nav-link {
    position: relative;
    display: inline-block;
    text-align: right;
    font: normal normal 600 1.25rem/2rem 'Source Sans Pro', sans-serif; /* 20px / 16px = 1.25rem, 32px / 16px = 2rem */
    letter-spacing: 0px;
    color: #012A4A;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0.5rem 1rem;
}

/* Keep the existing ::after styles for the underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.3125rem; /* -5px / 16px = -0.3125rem */ /* Adjust position slightly below text */
    height: 0.125rem; /* 2px / 16px = 0.125rem */
    width: 100%;
    background-color: #012A4A;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.2s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}



.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3125rem; /* -5px / 16px = -0.3125rem */
  height: 0.125rem; /* 2px / 16px = 0.125rem */
  width: 100%;
  background-color: #03AAAD;
  transform: scaleX(1);
  transform-origin: bottom left;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
    margin-right: 1.25rem; /* 20px / 16px = 1.25rem */
}
.logo svg {
    margin-right: 0.3125rem; /* 5px / 16px = 0.3125rem */
}

.logo-subtitle {
    font-size: 0.7em;
    margin-left: 0.3125rem; /* 5px / 16px = 0.3125rem */
    color: #012A4A;
    align-self: flex-end; /* Align to the bottom */
    line-height: 1; /* Adjust line height */
}

.mobile-menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/* Carousel Container */
.hero-carousel {
  position: relative;
  width: 100%;
  height:  76vh; /* Adjust this value to control the height */
  min-height: 31.25rem; /* 500px / 16px = 31.25rem */ /* Minimum height on smaller screens */
  max-height: 50rem; /* 800px / 16px = 50rem */ /* Maximum height on larger screens */
  overflow: hidden;
}

.carousel-slide.left-align .hero-content {
  justify-content: flex-start;
  text-align: left;
}

.carousel-slide.left-align .slide-2-text,
.carousel-slide.left-align .slide-3-text {
  text-align: left;
}

.carousel-slide.left-align .slide-2-text,
.carousel-slide.left-align .slide-3-text {
  text-align: left;
}

.slide-3-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.125rem; /* 50px / 16px = 3.125rem */
  flex-wrap: wrap;
}

/* Left text block */
.slide-3-text {
  max-width: 37.5rem; /* 600px / 16px = 37.5rem */
  text-align: left;
}

#slide-3 .hero-subtitle {
  font: 1.875rem "Source Sans Pro", sans-serif; /* 30px / 16px = 1.875rem */
  line-height: 2.75rem; /* 44px / 16px = 2.75rem */
  color: #000000;
  opacity: 1;
  text-align: left;
  margin: 0 0 1rem 0; /* 16px / 16px = 1rem */
}

/* Typography overrides for dark-on-light contrast */
.hero-title.dark-text {
  color: #012A4A;
  font: normal normal bold 3.5rem/4.25rem 'Oxygen', sans-serif; /* 56px / 16px = 3.5rem, 68px / 16px = 4.25rem */
}

.hero-subtitle.dark-subtext {
  color: #111;
  font: normal normal normal 1.375rem/2rem 'Source Sans Pro', sans-serif; /* 22px / 16px = 1.375rem, 32px / 16px = 2rem */
  opacity: 1;
  margin-top: 1rem;
}

/* Images */
.slide-3-images {
  position: relative;
  width: 26.25rem; /* 420px / 16px = 26.25rem */
  height: 25rem; /* 400px / 16px = 25rem */
}

#phone3 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 5rem;
  z-index: 1;
  transform: translate(-15rem, 1rem) scale(0.50) rotate(0deg);
  transform-origin: top right;
}

#card3 {
  width: 100%;
  position: absolute;
  top: 10%;
  left: 55%;
  z-index: 2;
  transform: translate(-15.3rem, 5rem) scale(0.4) rotate(0deg); /* -40px / 16px = -2.5rem */
  transform-origin: top right;
}

/* Individual Slides */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F1F1F1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 75rem; /* 1200px / 16px = 75rem */
  padding: 0 1.25rem; /* 20px / 16px = 1.25rem */
}

.carousel-slide:not(.left-align) .hero-title,
.carousel-slide:not(.left-align) .hero-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.carousel-slide.left-align .hero-title,
.carousel-slide.left-align .hero-subtitle {
  text-align: left;
  margin: 0; /* remove auto-centering */
}

.hero-title {
  font: normal normal bold 3.5rem/4.25rem 'Oxygen', sans-serif; /* 56px / 16px = 3.5rem, 68px / 16px = 4.25rem */
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  margin-bottom: 0.25em;
}

.hero-subtitle {
  font: 1.875rem "Source Sans Pro", sans-serif; /* 30px / 16px = 1.875rem */
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  max-width: 1400px; /* This was missed in the initial pass, keeping it as px or consider converting? Let's convert it. */
  max-width: 87.5rem; /* 1400px / 16px = 87.5rem */
  margin: 0 0 1rem 0; /* 16px / 16px = 1rem */

}

.hero-recognition {
    text-align: left;
    font: normal normal 600 1.125rem/1.75rem 'Source Sans Pro', sans-serif; /* 18px / 16px = 1.125rem, 28px / 16px = 1.75rem */
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 0.8;
    position: relative;
    padding-top: 1.875rem; /* 30px / 16px = 1.875rem */
    margin-top: 1.875rem; /* 30px / 16px = 1.875rem */
}

/* Slide 2 Layout */
.slide-2-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.125rem; /* 50px / 16px = 3.125rem */
  flex-wrap: wrap;
}

.slide-2-images {
  position: relative;
  width: 26.25rem; /* 420px / 16px = 26.25rem */
  height: 25rem; /* 400px / 16px = 25rem */
}

#phone {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translate(10.5rem, 1.5rem) scale(1.1) rotate(0deg);
  transform-origin: top left;
}

#card {
  width: 100%;
  position: absolute;
  z-index: 2;
  transform: translate(-4.3rem, 6.5rem) scale(1.3) rotate(0deg);
  transform-origin: top left;
}


.slide-2-images img#phone {
  position: absolute;
  top: 0;
  left: 0;
  width: 11.25rem; /* 180px / 16px = 11.25rem */
  height: auto;
  z-index: 1;
}

.slide-2-images img#card {
  position: absolute;
  top: 1.25rem; /* 20px / 16px = 1.25rem */
  left: 6.25rem; /* 100px / 16px = 6.25rem */
  width: 7.5rem; /* 120px / 16px = 7.5rem */
  height: auto;
  z-index: 2;
}

.slide-2-text {
  max-width: 37.5rem; /* 600px / 16px = 37.5rem */
  text-align: left;
}

.carousel-controls {
  position: absolute;
  bottom: 1.875rem; /* 30px / 16px = 1.875rem */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.25rem; /* 20px / 16px = 1.25rem */
  z-index: 15;
  border-radius: 1.875rem; /* 30px / 16px = 1.875rem */
  padding: 0.625rem 12.5rem; /* 10px / 16px = 0.625rem, 200px / 16px = 12.5rem */
}

/* Arrow buttons */
.carousel-control-prev,
.carousel-control-next {
  position: relative;
  width: 1.875rem; /* 30px / 16px = 1.875rem */
  height: 1.875rem; /* 30px / 16px = 1.875rem */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-control-prev {
  margin-right: 6.25rem; /* 100px / 16px = 6.25rem */ /* Increase to move it farther from the dots */
}


.carousel-control-next {
  margin-left: 6.25rem; /* 100px / 16px = 6.25rem */ /* Increase to move it farther from the dots */
}


/* Arrow icons */
.carousel-control-prev-icon {
  width: 1.25rem; /* 20px / 16px = 1.25rem */
  height: 1.25rem; /* 20px / 16px = 1.25rem */
  background: url('/images/arrow_left_white.svg') no-repeat center center;
  background-size: contain;
  opacity: 0.6;
}

.carousel-control-next-icon {
  width: 1.25rem; /* 20px / 16px = 1.25rem */
  height: 1.25rem; /* 20px / 16px = 1.25rem */
  background: url('/images/arrow_right_white.svg') no-repeat center center;
  background-size: contain;
  opacity: 0.6;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  opacity: 1; /* Fully white on hover */
}

/* Indicators */
.carousel-indicators {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem; /* 20px / 16px = 1.25rem */
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-indicators li {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

/* Empty circle indicator */
.carousel-indicators li::before {
  content: '';
  width: 0.625rem; /* 10px / 16px = 0.625rem */
  height: 0.625rem; /* 10px / 16px = 0.625rem */
  border: 0.125rem solid rgba(255, 255, 255, 0.4); /* 2px / 16px = 0.125rem */
  background-color: transparent;
  border-radius: 50%;
  border-radius: 50%;
  margin-right: 0.5rem; /* 8px / 16px = 0.5rem */
  transition: all 0.3s ease;
}

.carousel-indicators li.active::before {
  background-color: #ffffff;
  border-color: #ffffff;
}

/* Optional text */
.carousel-indicators li span {
  color: white;
  font: normal normal 500 0.875rem/1 'Source Sans Pro', sans-serif; /* 14px / 16px = 0.875rem */
  letter-spacing: 0.5px; /* Letter spacing is often kept as px or em */
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-indicators li.active span {
  opacity: 1;
  font-weight: 600;
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/* Logo Recognition Section */



.parter-logos {
  padding: 6em 0;
  background: #fff;
  text-align: center;
}

.fintech-title {
  font: normal normal 400 1.5rem/1.4 'Oxygen', sans-serif; /* 24px / 16px = 1.5rem */
  color: #000000;
  margin-bottom: 2em;
}

.fintech-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem; /* Adjust spacing between logos */
  max-width: 850px;
  margin: 0 auto;
}

.partner-logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

#ey_logo {
  margin-top: -30px;
}

.fintech-logos img {
  width: 8.125rem; /* 130px / 16px = 8.125rem */
  height: 5rem; /* 80px / 16px = 5rem */
  object-fit: contain;
  max-width: 7.75rem; /* 140px / 16px = 8.75rem */
  transition: transform 0.3s ease;
}

.fintech-logos img.small {
  max-width: 4.75rem;
}

.fintech-logos img:hover {
  transform: scale(1.05);

}
/*----------------------------------------------------------------------------------------------------------------------------------*/

.banking {
  background-color: #012A4A;
  color: #FFFFFF;
  padding: 5em 0;
}

.banking-section {
  background-color: #012a4a;
  padding: 5.2em 0;
  color: #F1F1F1;
  font-family: 'Oxygen', sans-serif;
}

.banking-sub-title {
  color: #03AAAD;
  font: normal normal 600 1.125rem/1.5rem 'Source Sans Pro', sans-serif; /* 18px / 16px = 1.125rem, 24px / 16px = 1.5rem */
  letter-spacing: 0.5px; /* Letter spacing often kept as px or em */
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.banking p {
  font: normal normal normal 1.125rem/1.75rem 'Source Sans Pro', sans-serif; /* 18px / 16px = 1.125rem, 28px / 16px = 1.75rem */
  color: #FFFFFF;
  margin: 0 0 1rem 0;
}

.banking-container {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem; /* 10px / 16px = 0.625rem */
  max-width: 68.75rem; /* 1100px / 16px = 68.75rem */
  margin: 0 auto;
  align-items: flex-start;
  position: relative;
}

.banking-left, .banking-right {
  flex: 1;
}

.banking-subtitle {
  font-size: 1.125rem; /* 18px / 16px = 1.125rem */
  font-family: "Source Sans Pro";
  color: #03AAAD;
  letter-spacing: 1px; /* Letter spacing often kept as px or em */
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.banking-title {
  font: normal normal bold 3rem/3.5rem 'Oxygen', sans-serif; /* 48px / 16px = 3rem, 56px / 16px = 3.5rem */
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.banking-text {
  font-size: 1.125rem; /* 18px / 16px = 1.125rem */
  line-height: 1.6;
  margin-bottom: 1rem;
  font-family: "Source Sans Pro";
}

.banking-buttons {
  display: flex;
  justify-content: center; /* This centers the flex item(s) horizontally */
  /* gap: 0.2rem; */ /* Remove gap if you only have one button */
  margin-top: 1rem;
}

.banking-btn {
  background-color: rgb(3, 170, 173);
  border: none; /* Keep one instance of border: none */
  border-radius: 1.625rem; /* 26px / 16px = 1.625rem */
  box-sizing: border-box;
  color: #012a4a;
  padding: 0.75rem 4.375rem; /* 12px / 16px = 0.75rem, 70px / 16px = 4.375rem */
  /* Removed margin-top from the button, use the container's margin-top */
  text-decoration: none;
  /* Removed the duplicate border: none */
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem; /* 16px / 16px = 1rem */
  font-weight: 400;
  font-style: normal;
  font-stretch: 100%;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-variant: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variation-settings: normal;
  font-feature-settings: normal;
  /* Removed display: flex, justify-content, and gap from the button */
}

.banking-btn:hover {
  background: #5EFAFD 0% 0% no-repeat padding-box;
}

.banking-divider {
  width: 0.0625rem; /* 1px / 16px = 0.0625rem */
  background-color: #03AAAD;
  height: 100%;
  min-height: 18.75rem; /* 300px / 16px = 18.75rem */
  margin: 0 1.875rem; /* 30px / 16px = 1.875rem */
}

.banking-detail {
  font-size: 1rem; /* 16px / 16px = 1rem */
  line-height: 1.8;
  margin-bottom: 2rem;
}

.banking-left,
.banking-right {
  flex: 1;
  max-width: 31.25rem; /* 500px / 16px = 31.25rem */ /* Adjust based on how narrow you want it */
}

.banking-right{
  padding-top: 2.5rem; /* 40px / 16px = 2.5rem */
}

/* Right Column Paragraphs */
.banking-details p {
  margin-bottom: 2rem;
}


/*----------------------------------------------------------------------------------------------------------------------------------*/


.mission-section {
  background-color: rgb(241, 241, 241);
  padding: 10.5em 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #002f4b;
}

.mission-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 65.625rem; /* 1050px / 16px = 65.625rem */
  margin: 0 auto;
}

.mission-left {
  flex: 1.2;
  max-width: 40.625rem; /* 650px / 16px = 40.625rem */
}

.mission-subtitle {
  color: #01497C;
  font: 1.125rem 'Source Sans Pro'; /* 18px / 16px = 1.125rem */
  font-weight: 600;
  letter-spacing: 1px; /* Letter spacing often kept as px or em */
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.mission-title {
  font: 3rem 'Oxygen'; /* 48px / 16px = 3rem */
  font-weight: 700;
  color: #012A4A;
  line-height: 3.75rem; /* 60px / 16px = 3.75rem - assuming 60px2 was a typo */
  margin-bottom: 2rem;
}

.mission-text {
  font: 1.5rem 'Source Sans Pro'; /* 24px / 16px = 1.5rem */
  line-height: 2.25rem; /* 36px / 16px = 2.25rem */
  color: #002f4b;
  margin-bottom: 2.5rem;
}

.mission-btn {
  background-color: rgb(1, 73, 124);
  color: #fff;
  border-bottom-left-radius: 1.625rem; /* 26px / 16px = 1.625rem */
  border-bottom-right-radius: 1.625rem; /* 26px / 16px = 1.625rem - assuming 26 was a typo */
  padding: 0.75rem 4rem;
  border-radius: 1.875rem; /* 30px / 16px = 1.875rem */
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem; /* 16px / 16px = 1rem */
  display: inline-block;
}

.mission-btn:hover {
  background-color: #014366;
}

.mission-right {
  flex: 0.8;
  background-color: #ffffff;
  padding: 2em;
  text-align: center;
  max-width: 20rem; /* 320px / 16px = 20rem */
}

.founder-photo {
  width: 100%;
  max-width: 12.5rem; /* 200px / 16px = 12.5rem */
  margin: 0 auto 1.5rem;
  display: block;
}

.founder-name {
  font: 1.25rem 'Source Sans Pro'; /* 20px / 16px = 1.25rem */
  font-weight: bold;
  margin-bottom: 0rem;
  color: rgb(1, 42, 74);
}

.founder-title {
  font: 1rem 'Source Sans Pro'; /* 16px / 16px = 1rem */
  color: rgb(1, 73, 124);
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}

.founder-quote {
  font: 1.125rem 'Source Sans Pro'; /* 18px / 16px = 1.125rem */
  font-style: italic;
  line-height: 1.875rem; /* 30px / 16px = 1.875rem */
  color: rgb(1, 42, 74);
  margin: 2rem 0;
  font-weight: 600;
  margin: 2rem auto;
  max-width: 18.75rem; /* 300px / 16px = 18.75rem */

}

.divider {
  border: none;
  border-top: 0.125rem solid #03AAAD; /* 2px / 16px = 0.125rem */
  margin: 1.5rem auto;
  width: 80%;
}


/*----------------------------------------------------------------------------------------------------------------------------------*/


.partners-section {
  background-color: #ffffff;
  padding: 6em 2em;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
  color: #012A4A;
}

.partners-container {
  max-width: 81.25rem; /* 1300px / 16px = 81.25rem */
  margin: 0 auto;
}

.partners-title {
  font: 3rem 'Oxygen'; /* 48px / 16px = 3rem */
  font-weight: 700;
  margin-bottom: 2rem;
  color: rgb(1, 42, 74);
}

.partners-text {
  font: 1.5rem 'Source Sans Pro'; /* 24px / 16px = 1.5rem */
  color: rgb(0, 0, 0);
  font-weight: 400;
  line-height: 1.7;
  max-width: 70.75rem; /* 1100px / 16px = 68.75rem */
  margin: auto;
  margin-bottom: 1rem;
}

.partners-visa {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  font-size: 1.625rem; /* 26px / 16px = 1.625rem */
  font-family: "Source Sans Pro", "sans-serif";
  margin-top: 5.5rem;
  flex-wrap: wrap;
  color: rgb(41, 38, 33);
  font-weight: 400;
}

.visa-logo {
  height: 2rem; /* 32px / 16px = 2rem */
  margin: 0 0.375rem; /* 6px / 16px = 0.375rem */
}


/*----------------------------------------------------------------------------------------------------------------------------------*/



.industry-section {
  background: url('hero_background/industry_recognition_bg_desktop.jpg') no-repeat center center;
  background-size: cover;
  padding-top: 5rem; /* 80px / 16px = 5rem */
  padding-bottom: 10rem; /* 160px / 16px = 10rem */
  color: #fff;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
}

.industry-content {
  max-width: 77rem; /* 1200px / 16px = 75rem */
  margin: 0 auto;
}

.industry-title {
  font: 3rem 'Oxygen'; /* 48px / 16px = 3rem */
  font-weight: 700;
  margin: 2rem;
  color: fff;
}

.industry-description,
.industry-subtext {
  font: 1.5rem 'Source Sans Pro'; /* 24px / 16px = 1.5rem */
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 400;
  line-height: 2.25rem; /* 36px / 16px = 2.25rem */
  max-width: 77.75rem; /* 1100px / 16px = 68.75rem */
  margin: 3rem auto;
  margin-bottom: 0rem;
}

.industry-button {
  appearance: button;
  background-color: #03AAAD;
  border: none;
  border-radius: 1.625rem; /* 26px / 16px = 1.625rem */
  width: 13.75rem; /* 220px / 16px = 13.75rem */
  height: 2.875rem; /* 46px / 16px = 2.875rem */
  cursor: pointer;
  display: inline-block;
  color: #000000;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem; /* 16px / 16px = 1rem */
  line-height: 1.5rem; /* 24px / 16px = 1.5rem */
  text-align: center;
  margin: 2.375rem 0; /* 38px / 16px = 2.375rem */
  padding: 0.0625rem 0.375rem; /* 1px / 16px = 0.0625rem, 6px / 16px = 0.375rem */
  box-sizing: border-box;
}
.industry-button:hover {
  background: #5EFAFD 0% 0% no-repeat padding-box;
}

.featured-in {

  margin-bottom: 1rem;
  margin-top: 3rem;
  font: 1.125rem 'Source Sans Pro'; /* 18px / 16px = 1.125rem */
  letter-spacing: 1px; /* Letter spacing often kept as px or em */
  font-weight: 600;

}

.industry-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 2rem;
  max-width: 56.25rem; /* 900px / 16px = 56.25rem */
  margin: 2rem auto;
}

.industry-logos img {
  max-height: 2.625rem; /* 42px / 16px = 2.625rem */
  object-fit: contain;
  filter: brightness(0) invert(1); /* keeps logos white if needed */
}





/*----------------------------------------------------------------------------------------------------------------------------------*/



.site-footer {
  background: #ffffff;
  color: #012A4A;
  padding: 3rem 5%;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.875rem; /* 14px / 16px = 0.875rem */
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem; /* 40px / 16px = 2.5rem */
  margin-bottom: 2rem;
}

.footer-column h4 {
  text-transform: uppercase;
  font-size: 0.8125rem; /* 13px / 16px = 0.8125rem */
  color: #012A4A;
  margin-bottom: 0.75rem;
  border-bottom: 0.0625rem solid #012A4A; /* 1px / 16px = 0.0625rem */
  display: inline-block;
  padding-bottom: 0.25rem; /* 4px / 16px = 0.25rem */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #012A4A;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #03AAAD;
}

.contact a {
  color: #012A4A;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.0625rem solid #012A4A; /* 1px / 16px = 0.0625rem */
  padding-top: 1rem;
  flex-wrap: wrap;
  color: #012A4A;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

.footer-bottom a {
  color: #012A4A;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


@media (max-width: 70rem) {
  html {
    font-size: 85%; /* scale down fonts and rem units by 30% */
  }
}


@media (max-width: 60rem) {
  html {
    font-size: 70%; /* scale down fonts and rem units by 30% */
  }

  .navbar-right.desktop-only {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-toggle span {
    font: 16px 'Source Sans Pro';   
    font-weight: 600; 
    padding-right: 3rem;
  }

  .mobile-nav.show {
    display: block;
  }

  #logo-image {
    padding-left: 4rem;
    width: 150px;
    
  }

  .mobile-menu-toggle {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #01497C;
  margin-left: auto;
  font: 1.125rem 'Source Sans Pro';
  }

  .mobile-nav {
    display: none;
    background-color: #fff;
    color: #012A4A;
    padding: 1rem;
    font: 1.125rem 'Source Sans Pro';
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    font: 1.125rem 'Source Sans Pro';
  }

  .mobile-nav ul li {
    margin-bottom: 0.75rem;
    font: 1.125rem 'Source Sans Pro';
  }

  .mobile-nav ul li a {
    color: #012A4A;
    text-decoration: none;
    font-weight: 600;
    font: 1.125rem 'Oxygen';
    font-weight: 600;
  }

  .mobile-nav ul li a:hover {
    color: #03AAAD;
  }

  #phone-hr-header {
    display: block;
    border-bottom: 1.5px solid #012A4A; 
    padding-bottom: 1.5rem;       
  }

  .navbar .logo {
    padding-left: 0;
  }

  .mobile-nav ul li {
    list-style: none;
    padding: 0;
    font: 12px 'Source Sans Pro';
    font-weight: 600;
    margin: 20px;
    
  }

  .mobile-nav ul li a{
    list-style: none;
    padding: 0;
    font: 20px 'Source Sans Pro';
    font-weight: 600;
  }


  .hero-container {
    padding: 0 0;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;      /* centers items horizontally */
    justify-content: center;  /* centers items vertically if needed */
    text-align: center;
  }

  

  .slide-3-text .hero-title{
    max-width: 64rem; /* 600px / 16px = 37.5rem */
    text-align: left;
    margin: 0 auto;
  }

  .hero-carousel {

    
    min-height: 520px;
  }

  .hero-title-line {
    max-width: 64rem;
    font: normal normal bold 22px / 34px Oxygen;
    margin: 0 auto;
  }

  .hero-subtitle {
    max-width: 64rem;
    font: 16px "Source Sans Pro", sans-serif;
    margin-top: 30px;
    margin: 0 auto;
  }

  .carousel-controls {
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 15;
    border-radius: 1.875rem;
    padding: 0.625rem 12.5rem;
  }

  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background: url(/images/arrow_right_white.svg) no-repeat center center;
    background-size: contain;
    opacity: 0.6;
  }

  .carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
    background: url(/images/arrow_left_white.svg) no-repeat center center;
    background-size: contain;
    opacity: 0.6;
  }

  .carousel-indicators li::before {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    border-radius: 50%;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}


  #slide-1 {
    background-image: url('hero_background/mobile_hero_bg_01.png') !important;
  }

  #slide-2 {
    background-image: url('hero_background/mobile_hero_bg_02.png') !important;
  }

  #slide-3 {
    background-image: url('hero_background/mobile_hero_bg_03.png') !important;
  }

  .fintech-logos {
    max-width: 55rem;
    margin: 0 auto;
  }


  .slide-2-text {
    margin: 0 auto;
    text-align: center;
  }

  .slide-2-text {
    margin: 0 auto;
    text-align: center;
  }

  .hero-title-line {
    text-align: center;
    margin: 0 auto;
   }

   .hero-title,
  .hero-subtitle {
    margin: 0 auto;
    text-align: center;
  }

   .carousel-slide.left-align .hero-subtitle {
    padding-top: 3rem;
    text-align: center;
    display: block;
   }

   #phone {
    transform: translate(12rem, 1.5rem) scale(1.1) rotate(0deg);
    transform-origin: top center;
   }

   #card {
    transform: translate(-2.3rem, 6.5rem) scale(1.3) rotate(0deg);
    transform-origin: top center;
   }
   


   #phone3 {
    transform: translate(-17rem, -3rem) scale(0.50) rotate(0deg);
    transform-origin: top right;
   }

   #card3 {
    transform: translate(-17.3rem, 1rem) scale(0.4) rotate(0deg);
    transform-origin: top right;
   }


   .banking-container {
    flex-direction: column;
    align-items: center; /* Optional: center items vertically */
    text-align: center;  /* Optional: center text inside */
    max-width: 64rem;
   }

   .banking-left {
    max-width: 64rem;
   }

   .banking-right {
    max-width: 64rem;
   }

   .banking-divider {
      display: none;
    }

    #line-under-button {
      border-top: 1.5px solid #03AAAD; 
      padding-top: 1.5rem;   
    }


    .mission-left {
      max-width: 64rem;
    }

    .founder-quote {
      max-width: 64rem;
    }

    em {
      max-width: 64rem;
    }
    .mission-title {
      max-width: 64rem;
      margin: 0 auto;
      font: normal normal 600 18px / 26px Source Sans Pro;
      font-weight: 600;
      line-height: 2.5rem;
      text-align: left;
    }

  .mission-text {
    font-size: 1rem;
    line-height: 1.625rem;
    text-align: center;
  }

  .mission-btn {
    display: block;                /* Makes margin auto work */
    margin: 1.5rem auto 0 auto;    /* Optional top spacing */
    padding: 0.75rem 2rem;
    font-size: 1rem;
    text-align: center;
  }

  .mission-right {
    width: 100%;
    max-width: 64rem;
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }

  .mission-container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    max-width: 64rem;
  }


  .partners-container {
    max-width: 64rem;
  }

  .industry-section {
    max-width: 64rem;
    margin: 0 auto;
  }

  .site-footer {
    width: 100%;
    background-color: #fff;
    max-width: 64rem;
    margin: 0 auto;
  }
}

/* Phone View: Shrink layout and font even more for small screens (≤ 480px) */
@media (max-width: 30rem) {
  html {
    font-size: 50%; /* scale down fonts and rem units by 30% */
  }
  
  .navbar-right.desktop-only {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-toggle span {
    font: 16px 'Source Sans Pro';   
    font-weight: 600; 
    padding-right: 3rem;
  }

  .mobile-nav.show {
    display: block;
  }

  #logo-image {
    padding-left: 4rem;
    width: 150px;
    
  }

  .mobile-menu-toggle {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #01497C;
  margin-left: auto;
  font: 1.125rem 'Source Sans Pro';
  }

  .mobile-nav {
    display: none;
    background-color: #fff;
    color: #012A4A;
    padding: 1rem;
    font: 1.125rem 'Source Sans Pro';
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    font: 1.125rem 'Source Sans Pro';
  }

  .mobile-nav ul li {
    margin-bottom: 0.75rem;
    font: 1.125rem 'Source Sans Pro';
  }

  .mobile-nav ul li a {
    color: #012A4A;
    text-decoration: none;
    font-weight: 600;
    font: 1.125rem 'Oxygen';
    font-weight: 600;
  }

  .mobile-nav ul li a:hover {
    color: #03AAAD;
  }

  #phone-hr-header {
    display: block;
    border-bottom: 1.5px solid #012A4A; 
    padding-bottom: 1.5rem;       
  }

  .navbar .logo {
    padding-left: 0;
  }

  .mobile-nav ul li {
    list-style: none;
    padding: 0;
    font: 12px 'Source Sans Pro';
    font-weight: 600;
    margin: 20px;
    
  }

  .mobile-nav ul li a{
    list-style: none;
    padding: 0;
    font: 20px 'Source Sans Pro';
    font-weight: 600;
  }


  .hero-container {
    padding: 0 0;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;      /* centers items horizontally */
    justify-content: center;  /* centers items vertically if needed */
    text-align: center;
  }

  

  .slide-3-text .hero-title{
    max-width: 34rem; /* 600px / 16px = 37.5rem */
    text-align: left;
    margin: 0 auto;
  }

  .hero-carousel {

    
    min-height: 520px;
  }

  .hero-title-line {
    max-width: 34rem;
    font: normal normal bold 22px / 34px Oxygen;
    margin: 0 auto;
  }

  .hero-subtitle {
    max-width: 34rem;
    font: 16px "Source Sans Pro", sans-serif;
    margin-top: 30px;
    margin: 0 auto;
  }

  .carousel-controls {
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 15;
    border-radius: 1.875rem;
    padding: 0.625rem 12.5rem;
  }

  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background: url(/images/arrow_right_white.svg) no-repeat center center;
    background-size: contain;
    opacity: 0.6;
  }

  .carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
    background: url(/images/arrow_left_white.svg) no-repeat center center;
    background-size: contain;
    opacity: 0.6;
  }

  .carousel-indicators li::before {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    border-radius: 50%;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}


  #slide-1 {
    background-image: url('hero_background/mobile_hero_bg_01.png') !important;
  }

  #slide-2 {
    background-image: url('hero_background/mobile_hero_bg_02.png') !important;
  }

  #slide-3 {
    background-image: url('hero_background/mobile_hero_bg_03.png') !important;
  }

  .fintech-logos {
    max-width: 250px;
    margin: 0 auto;
  }


  .slide-2-text {
    margin: 0 auto;
    text-align: center;
  }

  .slide-2-text {
    margin: 0 auto;
    text-align: center;
  }

  .hero-title-line {
    text-align: center;
    margin: 0 auto;
   }

   .hero-title,
  .hero-subtitle {
    margin: 0 auto;
    text-align: center;
  }

   .carousel-slide.left-align .hero-subtitle {
    padding-top: 3rem;
    text-align: center;
    display: block;
   }

   #phone {
    transform: translate(12rem, 1.5rem) scale(1.1) rotate(0deg);
    transform-origin: top center;
   }

   #card {
    transform: translate(-2.3rem, 6.5rem) scale(1.3) rotate(0deg);
    transform-origin: top center;
   }
   


   #phone3 {
    transform: translate(-17rem, -3rem) scale(0.50) rotate(0deg);
    transform-origin: top right;
   }

   #card3 {
    transform: translate(-17.3rem, 1rem) scale(0.4) rotate(0deg);
    transform-origin: top right;
   }


   .banking-container {
    flex-direction: column;
    align-items: center; /* Optional: center items vertically */
    text-align: center;  /* Optional: center text inside */
   }

   .banking-divider {
      display: none;
    }

    #line-under-button {
      border-top: 1.5px solid #03AAAD; 
      padding-top: 1.5rem;   
    }


    .mission-title {
      max-width: 34rem;
      margin: 0 auto;
      font: normal normal 600 18px / 26px Source Sans Pro;
      font-weight: 600;
      line-height: 2.5rem;
      text-align: left;
    }

  .mission-text {
    font-size: 1rem;
    line-height: 1.625rem;
    text-align: center;
  }

  .mission-btn {
    display: block;                /* Makes margin auto work */
    margin: 1.5rem auto 0 auto;    /* Optional top spacing */
    padding: 0.75rem 2rem;
    font-size: 1rem;
    text-align: center;
  }

  .mission-right {
    width: 100%;
    max-width: 34rem;
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }

  .mission-container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    max-width: 34rem;
  }


  .partners-container {
    max-width: 34rem;
  }

  .industry-section {
    max-width: 34rem;
    margin: 0 auto;
  }

  .site-footer {
    width: 100%;
    background-color: #fff;
    max-width: 34rem;
    margin: 0 auto;
  }

  .footer-column ul li {
    font-size: 1rem;
  }
 
}