
body {
 
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
}
.top-bar {
  background-color: #f4f4f4;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar i {
  margin-right: 5px;
}
.top-bar span {
  margin: 0 15px;
  display: flex;
  align-items: center;
}
.top-bar .social-icons a {
  color: #0c3572;
  margin: 0 5px;
  font-size: 18px;
}
/* Basic styles for header */
.header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  justify-content: space-between;
}

.header img {
  height: 40px;
  margin-right: 10px;
}

.header .company-name {
  color: #0c3572;
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
}

/* Navbar styles for desktop */
.navbar {
  display: flex; /* Ensures navbar items are on a single row */
  align-items: center;
  background-color: #0c3572;
  padding: 10px 20px;
  flex-wrap: nowrap; /* Prevents wrapping */
  flex-grow: 1;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 10px;
  margin: 0 5px;
  display: flex;
  align-items: center;
  position: relative;
}

.navbar a:hover {
  background-color: #303b75;
}

/* Hide the hamburger and dropdown on desktop */
@media (min-width: 769px) {
  .navbar {
      display: flex; /* Navbar in a single row on desktop */
  }
  .navbar a {
      margin: 0 10px;
  }
  .hamburger {
      display: none; /* Hide the hamburger icon on desktop */
  }
  .dropdown-menu {
      display: none; /* Hide the dropdown menu on desktop */
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar {
      display: none; /* Hide navbar by default on mobile */
  }

  .hamburger {
      display: block; /* Show hamburger menu */
      font-size: 30px;
      cursor: pointer;
      color: #0c3572;
      background-color: #fff;
      padding: 5px 15px;
      border-radius: 5px;
      margin-left: 20px;
  }

  /* Style for the dropdown menu (hidden by default) */
  .dropdown-menu {
      display: none;
      background-color: #0c3572;
      width: 100%;
      text-align: left;
  }

  .dropdown-menu a {
      padding: 15px;
      color: white;
      text-decoration: none;
      display: block;
      width: 100%;
  }

  .dropdown-menu a:hover {
      background-color: #1E1F6E;
  }

  /* Show dropdown when hamburger is clicked */
  .dropdown-menu.show {
      display: block;
  }
}

  /* Mobile and tablet styles (766px to 1025px) */
  @media (min-width: 766px) and (max-width: 1025px) {
    .navbar {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    }

    .navbar a {
      padding: 8px 12px;
      font-size: 14px;
    }

    .header .company-name {
      font-size: 20px;
      margin-right: 10px;
    }

    .hamburger {
      display: none; /* Hide hamburger on tablets */
    }
  }

/* Container holding the images and content */
.scontainer {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-top: -10px;
}

/* Ensure images cover the container */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

/* Content styling */
.content {
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  position: relative;
}

.content h1 {
  font-size: 3em;
  margin: 0.5em 0;
  line-height: 1.2;
}

.content p {
  font-size: 1.2em;
  margin: 0.5em 0;
  line-height: 1.5;
}

.sign-up-btn {
  background-color: white;
  color: #007bff;
  padding: 0.5em 1em;
  border: none;
  border-radius: 25px;
  font-size: 1.2em;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1em;
  display: inline-block;
}

/* Carousel controls (left and right arrows) */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-controls i {
  font-size: 2.5em;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .content h1 {
      font-size: 2em;
  }

  .content p {
      font-size: 1em;
  }

  .sign-up-btn {
      font-size: 1em;
  }

  .carousel-controls i {
      font-size: 2em;
  }
}

/* Tablet and small desktop styles */
@media (max-width: 1024px) {
  .content h1 {
      font-size: 2.5em;
  }

  .content p {
      font-size: 1.1em;
  }
}

/* Larger screens (desktop) */
@media (min-width: 1025px) {
  .content h1 {
      font-size: 3.5em;
  }

  .content p {
      font-size: 1.3em;
  }

  .sign-up-btn {
      font-size: 1.2em;
  }

  .carousel-controls i {
      font-size: 3em;
  }
}


/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Title and subtitle styling */
.title {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 10px;
  color: #0c3572;
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 40px;
}

/* Products Section */
.products-section {
  padding: 40px;
  max-width: 1800px;
  margin: auto;
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Scrolling Wrapper */
.products-scrolling-wrapper {
  overflow: hidden;
  width: 100%;
}

.products-scroll {
  display: flex;
  animation: scrollLeft 15s linear infinite;
}

/* Product Card Styling */
.product-card {
  background-color: #f7f7fb;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  flex-shrink: 0;
  width: 300px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Background image on backside */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/bg ban');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  border-radius: 12px;
}

/* Ensuring content appears on top */
.product-card > * {
  position: relative;
  z-index: 1;
}

/* Image */
.product-image {
  width: 100%;
  height: auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Product Info */
.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h2 {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.5;
}

/* Scrolling Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Design */

/* Large screens (1025px and above) */
@media (min-width: 1025px) {
  .products-section {
    padding: 40px;
  }

  .product-card {
    width: 300px;
    margin: 0 20px;
  }

  .product-info h2 {
    font-size: 1.8rem;
  }

  .product-info p {
    font-size: 1rem;
  }
}

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
  .products-section {
    padding: 20px;
  }

  .products-scroll {
    gap: 20px;
  }

  .product-card {
    width: 250px;
    margin: 10px;
  }

  .product-info h2 {
    font-size: 1.6rem;
  }

  .product-info p {
    font-size: 0.9rem;
  }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
  .products-section {
    padding: 15px;
  }

  .products-scroll {
    gap: 15px;
  }

  .product-card {
    width: 220px;
    margin: 10px;
  }

  .product-info h2 {
    font-size: 1.4rem;
  }

  .product-info p {
    font-size: 0.9rem;
  }
}

/* Extra small devices (below 400px) */
@media (max-width: 400px) {
  .products-section {
    padding: 10px;
  }

  .product-card {
    width: 180px;
    margin: 5px;
  }

  .product-info h2 {
    font-size: 1.2rem;
  }

  .product-info p {
    font-size: 0.8rem;
  }
}


/* General Section Styling */
.info-section {
  padding: 40px 20px; /* Adjusted padding for better space on mobile */
  max-width: 1200px;
  margin: 0 auto;
}

/* Info Rows Default State */
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Reverse Layout for Alternate Rows */
.info-row.reverse {
  flex-direction: row-reverse; /* Reverses text and image layout */
}

/* Animation Class */
.info-row.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Text Styling */
.info-text {
  flex: 1;
  margin-right: 20px;
}

.info-row.reverse .info-text {
  margin-right: 0;
  margin-left: 20px;
}

.info-text h2 {
  font-size: 1.8rem;
  color: #0c3572; /* Primary color */
  margin-bottom: 10px;
}

.info-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Image Styling */
.info-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-image img {
  width: 100%;
  max-width: 500px; /* Maximum width for larger screens */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Responsive Design */

/* For screens up to 1200px (large tablets and small desktops) */
@media (max-width: 1200px) {
  .info-section {
    padding: 50px 20px;
  }

  .info-text h2 {
    font-size: 1.7rem;
  }

  .info-text p {
    font-size: 0.95rem;
  }

  .info-image img {
    max-width: 450px; /* Adjust image size for smaller screens */
  }
}

/* For tablets and smaller screens (up to 1024px) */
@media (max-width: 1024px) {
  .info-section {
    padding: 40px 15px;
  }

  .info-row {
    flex-direction: row; /* Ensures images stay on the right side */
    text-align: left;
  }

  .info-text {
    margin: 0 0 20px;
  }

  .info-image img {
    max-width: 80%;
    height: auto;
  }

  .info-text h2 {
    font-size: 1.6rem;
  }

  .info-text p {
    font-size: 1rem;
  }
}

/* For mobile devices (up to 768px) */
@media (max-width: 768px) {
  .info-section {
    padding: 30px 10px;
  }

  .info-row {
    flex-direction: row; /* Ensure right side image on mobile */
    text-align: left;
  }

  .info-text {
    margin: 0 0 20px;
  }

  .info-image img {
    max-width: 85%;
    height: auto;
  }

  .info-text h2 {
    font-size: 1.4rem;
  }

  .info-text p {
    font-size: 0.9rem;
  }
}

/* For extra small devices (below 480px) */
@media (max-width: 480px) {
  .info-section {
    padding: 20px;
  }

  .info-text h2 {
    font-size: 1.3rem;
  }

  .info-text p {
    font-size: 0.85rem;
  }

  .info-image img {
    max-width: 90%;
    height: auto;
  }
}


/* Fintech Startup Section */
.fintech-section {
  padding: 2rem;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -90px; /* Adjusted for better positioning */
  flex-wrap: wrap; /* Ensures proper wrapping on small screens */

}

.fintech-card {
  background-color: #e8e8ec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap; /* Ensures proper wrapping on small screens */
}

.fintech-text {
  font-family: "Georgia", serif;
  flex: 1;
  margin-right: 2rem;
}

.fintech-text h2 {
  font-family: "Georgia", serif;
  font-size: 2.5rem;
  color: #0c3572;
  margin-bottom: 1rem;
  font-weight: 700;
}

.fintech-text p {
  font-family: "Georgia", serif;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

/* Video Section */
.fintech-video {
  flex: 1;
  text-align: center;
}

.fintech-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .fintech-section {
    padding: 2rem 1rem;
  }

  .fintech-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .fintech-text {
    margin-right: 0;
    margin-bottom: 1rem;
    text-align: center;
  }

  .fintech-video {
    margin-top: 1rem;
  }

  .fintech-video video {
    width: 90%; /* Adjust width for tablet */
    max-width: 600px;
  }

  .fintech-text h2 {
    font-size: 2rem; /* Slightly smaller for tablet */
  }

  .fintech-text p {
    font-size: 1.1rem; /* Slightly smaller for tablet */
  }
}

@media (max-width: 768px) {
  .fintech-section {
    padding: 1.5rem 1rem;
  }

  .fintech-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .fintech-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .fintech-video {
    margin-top: 1rem;
  }

  .fintech-video video {
    width: 80%; /* Adjust width for smaller screens */
    max-width: 500px;
  }

  .fintech-text h2 {
    font-size: 1.8rem; /* Font size for mobile */
  }

  .fintech-text p {
    font-size: 1rem; /* Font size for mobile */
  }
}

@media (max-width: 480px) {
  .fintech-section {
    padding: 1.2rem;
  }

  .fintech-card {
    padding: 1rem;
  }

  .fintech-text h2 {
    font-size: 1.6rem; /* Font size for small mobile screens */
  }

  .fintech-text p {
    font-size: 0.9rem; /* Font size for small mobile screens */
  }

  .fintech-video video {
    width: 90%;
    max-width: 400px; /* Adjust for very small screens */
  }
}

/* Stats Section */
.stats-section {
  padding: 5rem 2rem;
  background-color: #ffffff;
  text-align: center;
  margin-top: -60px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.stats-card {
  font-family: "Georgia", serif;
  flex: 1;
  padding: 2rem; /* Increased padding for a better appearance */
  background-color: #0c3572;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 250px; /* Ensures a minimum width for better layout */
  text-align: center;
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.stats-card h3 {
  font-family: "Georgia", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.stats-card p {
  font-family: "Georgia", serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stats-card {
    margin-bottom: 2rem;
    width: 90%; /* Slightly smaller width on tablets */
  }
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stats-card {
    margin-bottom: 1.5rem;
    width: 90%; /* Ensures better alignment on mobile */
  }

  .stats-card h3 {
    font-size: 2.5rem; /* Slightly smaller for mobile */
  }

  .stats-card p {
    font-size: 1rem; /* Adjust font size for better readability */
  }
}

@media (max-width: 480px) {
  .stats-card {
    margin-bottom: 1rem;
    width: 95%; /* More space between cards on very small devices */
  }

  .stats-card h3 {
    font-size: 2rem; /* Adjust for even smaller screens */
  }

  .stats-card p {
    font-size: 0.9rem; /* Adjust font size */
  }
}


  
/* Features Section */
.features-section {
  padding: 4rem 2rem;
  background-color: #e8e8ec;
  text-align: center;
  margin-top: -50px;
}

.features-heading {
  font-family: "Georgia", serif;
  font-size: 1.8rem;
  color: #0c3572;
  margin-bottom: 1rem;
  font-weight: 600;
}

.features-subheading {
  font-family: "Georgia", serif;
  font-size: 1rem;
  color: #000000;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* Features Cards Container */
.features-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
}

/* Features Card Styling */
.features-card {
  flex: 1;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 250px; /* Ensure the card does not become too narrow */
  text-align: left; /* Align text to the left for better readability */
}

/* Card Hover Effects */
.features-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.features-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.features-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.features-card ul {
  list-style-type: none;
  padding: 0;
  font-size: 1rem;
}

.features-card ul li {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .features-card {
    margin-bottom: 2rem;
    width: 90%; /* Ensure the cards take up more space on tablet */
    text-align: center; /* Center align text for better appearance on tablets */
  }

  .features-heading {
    font-size: 2rem;
  }

  .features-subheading {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .features-card {
    margin-bottom: 1.5rem;
    width: 90%; /* Cards will take up 90% width on mobile */
    text-align: center; /* Ensure text is centered on mobile */
  }

  .features-heading {
    font-size: 2rem; /* Adjust font size for mobile */
  }

  .features-subheading {
    font-size: 1.1rem;
  }

  .features-card h2 {
    font-size: 1.6rem; /* Adjust title size on smaller screens */
  }

  .features-card p {
    font-size: 0.95rem; /* Reduce paragraph text size for readability */
  }
}

@media (max-width: 480px) {
  .features-card {
    margin-bottom: 1rem;
    width: 95%; /* More space between cards on very small devices */
  }

  .features-heading {
    font-size: 1.8rem; /* Adjust for very small screens */
  }

  .features-subheading {
    font-size: 1rem; /* Adjust subheading for very small screens */
  }

  .features-card h2 {
    font-size: 1.4rem; /* Adjust title size for small screens */
  }

  .features-card p {
    font-size: 0.9rem; /* Adjust paragraph text for mobile readability */
  }
}

  
  

.head h1 {
  color: #0c3572;
  margin-bottom: 20px;
  text-align: center;
}
.testimonial-container {
  display: flex;
  overflow: hidden;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.testimonial {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 300px;
  flex: 0 0 auto;
  margin-right: 20px;
}
.testimonial img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.testimonial p {
  color: #777;
  font-size: 14px;
  margin: 15px 0;
}
.testimonial h3 {
  color: #333;
  font-size: 18px;
  margin: 10px 0;
}
.testimonial .stars {
  color: #f39c12;
}
@keyframes scroll-left {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}
.scrolling-wrapper {
  display: flex;
  animation: scroll-left 20s linear infinite;
}


/* Header Styling */
.headerr {
  background-color: #ffffff;
  color: #0c3572;
  padding: 20px 0;
  margin-bottom: 20px;
}

.headerr h1 {
  margin: 0;
  font-size: 2rem;  /* Adjusted for better display */
  text-align: center;
  font-weight: bold;
}

/* Partner Logos Section */
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

/* Individual Partner Card */
.partner {
  flex: 1 1 150px;  /* Flexbox for responsive design */
  max-width: 150px;  /* Maximum width for each logo */
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner img {
  width: 100%;
  height: auto;  /* Adjusted to maintain aspect ratio */
  object-fit: contain;
  max-height: 100px;  /* Ensures logos do not get too big */
  transition: transform 0.3s ease;
}

.partner img:hover {
  transform: scale(1.05);  /* Small zoom effect on hover */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .partner {
    flex: 1 1 200px;  /* Adjust width for tablets */
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .headerr h1 {
    font-size: 1.8rem;  /* Adjust heading size for mobile */
  }

  .partners {
    padding: 0 15px;  /* Reduce padding for mobile screens */
  }

  .partner {
    flex: 1 1 150px;  /* Adjust the width of logos for smaller screens */
    max-width: 150px;
  }

  .partner img {
    max-height: 80px;  /* Reduce height for smaller screens */
  }
}

/* Very Small Screens (Mobile Portrait Mode) */
@media (max-width: 480px) {
  .headerr h1 {
    font-size: 1.6rem;  /* Further adjust heading size */
  }

  .partners {
    padding: 0 10px;  /* Even more reduced padding for small screens */
  }

  .partner {
    flex: 1 1 120px;  /* Logo width is further reduced */
    max-width: 120px;
  }

  .partner img {
    max-height: 60px;  /* Reduce the size of logos for very small screens */
  }
}
