/* This rule creates the fixed, semi-transparent logo background for the entire website. */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSIjRkZEQjk5Ii8+CjxjaXJjbGUgY3g9IjEwMCIgY3k9IjEwMCIgcj0iODAiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIi8+CjxjaXJjbGUgY3g9IjEwMCIgY3k9IjEwMCIgcj0iOTAiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSI2IiBmaWxsPSJub25lIi8+CjxyZWN0IHg9IjQwIiB5PSI4NSIgd2lkdGg9IjEyMCIgaGVpZ2h0PSIzMCIgcng9IjE1IiBmaWxsPSIjMzMzMzMzIi8+Cjx0ZXh0IHg9IjEwMCIgeT0iMTA1IiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSIgZm9udC1mYW1pbHk9IkFyaWFsLCBzYW5zLXNlcmlmIiBmb250LXNpemU9IjE0IiBmb250LXdlaWdodD0iYm9sZCI+UExBVEUyUEVPUExFPC90ZXh0Pgo8dGV4dCB4PSIxMDAiIHk9IjE0MCIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0iIzMzMzMzMyIgZm9udC1mYW1pbHk9IkFyaWFsLCBzYW5zLXNlcmlmIiBmb250LXNpemU9IjEwIj5ST0JJTiBGT09EPC90ZXh0Pgo8cG9seWdvbiBwb2ludHM9Ijc1LDY1IDg1LDY1IDg1LDQwIDExNSw0MCAxMTUsNjUgMTI1LDY1IDEwMCw4NSIgZmlsbD0iIzMzMzMzMyIvPgo8cG9seWdvbiBwb2ludHM9Ijg1LDUwIDk1LDUwIDk1LDQ1IDEwNSw0NSAxMDUsNTAgMTE1LDUwIDEwMCw2NSIgZmlsbD0iI0ZGREI5OSIvPgo8Y2lyY2xlIGN4PSI2NSIgY3k9IjEyNSIgcj0iMyIgZmlsbD0iIzMzMzMzMyIvPgo8Y2lyY2xlIGN4PSI3NSIgY3k9IjEyNSIgcj0iMyIgZmlsbD0iIzMzMzMzMyIvPgo8Y2lyY2xlIGN4PSI4NSIgY3k9IjEyNSIgcj0iMyIgZmlsbD0iIzMzMzMzMyIvPgo8Y2lyY2xlIGN4PSI5NSIgY3k9IjEyNSIgcj0iMyIgZmlsbD0iIzMzMzMzMyIvPgo8Y2lyY2xlIGN4PSIxMDUiIGN5PSIxMjUiIHI9IjMiIGZpbGw9IiMzMzMzMzMiLz4KPGNpcmNsZSBjeD0iMTE1IiBjeT0iMTI1IiByPSIzIiBmaWxsPSIjMzMzMzMzIi8+CjxjaXJjbGUgY3g9IjEyNSIgY3k9IjEyNSIgcj0iMyIgZmlsbD0iIzMzMzMzMyIvPgo8Y2lyY2xlIGN4PSIxMzUiIGN5PSIxMjUiIHI9IjMiIGZpbGw9IiMzMzMzMzMiLz4KPC9zdmc+');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
}
.hero-section {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    padding: 30px 0 17px;
}


.header {
    display: flex;
    width: 100%;
    max-width: 1330px;
    align-items: center;
    gap: 20px;
    letter-spacing: 0.22px;
    flex-wrap: wrap;
    justify-content: space-between;
    font: 600 18px/1 Inter, sans-serif;
}

.header a {
    text-decoration: none;
}

@media (max-width: 991px) {
    .header {
        max-width: 100%;
    }
}

.logo-container {
    align-self: stretch;
    display: flex;
    gap: 29px;
    font-size: 18px;
    color: #000;
    white-space: nowrap;
    letter-spacing: 0.28px;
    line-height: 1;
    margin: auto 0;
}

@media (max-width: 991px) {
    .logo-container {
        white-space: initial;
    }
}

.logo-container {
  display: flex; /* Use flexbox to arrange items in a row */
  align-items: center; /* Vertically centers items in the container */
  /* Remove text-align: center; as it's not needed for inline arrangement */
  font-family: Arial, sans-serif; /* Use a similar-looking font */
}

.logo-image {
  width: 150px; /* Adjust the width to match the size in the image */
  height: auto;
  border-radius: 16px; /* Creates the smooth rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Adds a subtle shadow for depth */
  margin-right: 20px; /* Add some space between the image and the text */
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #170f49; /* A dark navy blue color for the text */
  margin-top: 0; /* Reset margin-top as it's no longer needed for vertical spacing */

  /* Apply transform for rotation */
    transform: rotate(-90deg) translateX(-75px) translateY(-25px);

  transform-origin: left center; /* Pivot point for the rotation */
  white-space: nowrap; 
  /* Prevent text from wrapping after rotation */
}
.nav-menu {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 40px 54px;
    color: #000;
    font-weight: 500;
    justify-content: start;
    flex-wrap: wrap;
    margin: auto 0;
}

.nav-menu a {
    color: #000;
}

@media (max-width: 991px) {
    .nav-menu {
        max-width: 100%;
    }
}

.nav-item {
    align-self: stretch;
    margin: auto 0;
}

.auth-buttons {
    display: flex;
    gap: 40px 47px;
}

.sign-in-btn {
    color: #000;
    margin: auto 0;
}

.sign-up-btn {
    border-radius: 13px;
    background-color: #267dff;
    color: #fff;
    padding: 20px 31px;
}

@media (max-width: 991px) {
    .sign-up-btn {
        padding: 0 20px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    position: relative;
    min-height: 2891px;
    margin-top: 90px;
    width: 100%;
    padding-top: 6px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-content {
        max-width: 100%;
        margin-top: 40px;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-wrapper {
    position: relative;
    margin-left: 13px;
    width: 100%;
    max-width: 1573px;
}

@media (max-width: 991px) {
    .hero-wrapper {
        max-width: 100%;
    }
}

.hero-columns {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .hero-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
}

.hero-left-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
    margin-left: 0px;
}

@media (max-width: 991px) {
    .hero-left-column {
        width: 100%;
    }
}

.hero-text-container {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    font-family: Inter, sans-serif;
}

@media (max-width: 991px) {
    .hero-text-container {
        max-width: 100%;
        margin-top: 40px;
    }
}

.order-confirmation {
    align-self: end;
    display: flex;
    width: 264px;
    max-width: 100%;
    flex-direction: column;
    font-size: 12px;
    color: #000;
    font-weight: 400;
}

.order-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 44px;
    align-self: end;
}

.order-text-wrapper {
    align-self: start;
    display: flex;
    align-items: start;
}

.order-check-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 103px;
    border-radius: 0px 0px 0px 0px;
    margin-top: 11px;
    max-width: 100%;
}

.order-text {
    flex-basis: auto;
}

.hero-headline {
    color: rgba(0, 0, 0, 0.75);
    font-size: 61px;
    font-weight: 800;
    line-height: 77px;
    letter-spacing: 0.8px;
    margin: 0 0 0 40px;
    width: 841px;
}

@media (max-width: 991px) {
    .hero-headline {
        max-width: 100%;
        font-size: 40px;
        line-height: 54px;
    }
}

.hero-image {
    position: relative;
}

.hero-right-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 18%;
    margin: -80px 0 0 170px;
}

.hero-rectangle {
    width: 411px;
    height: 369px;
    top: 150px;
    position: absolute;
}

.hero-img {
    height: 690px;
    position: absolute;
    top: -67px;
    left: -164px;
}

@media (max-width: 991px) {
    .hero-right-column {
        width: 100%;
    }
}

.customer-section {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-self: stretch;
    margin: auto 0;
}

@media (max-width: 991px) {
    .customer-section {
        margin-top: 40px;
    }
}

.customer-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #000;
    justify-content: space-between;
    font: 500 18px Inter, sans-serif;
}

.customer-text {
    align-self: end;
    margin-top: 39px;
}

.customer-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 58px;
    align-self: start;
}

.customer-avatars {
    align-self: start;
    display: flex;
    margin-top: 13px;
}

.customer-avatar {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 42px;
}

@media (max-width: 991px) {
    .customer-avatar {
        margin-right: -10px;
    }
}
.contact-overlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); /* dim background */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* ensures it's above everything */
}

.contact-form-box {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  position: relative;
  z-index: 10000;
}

.close-button {
  position: absolute;
  top: 10px; right: 15px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}


.cta-section {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1453px;
    align-items: flex-start;
    gap: 40px 100px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cta-section {
        max-width: 100%;
    }
}

.cta-content {
    align-self: start;
    flex-grow: 1;
    flex-basis: auto;
}

@media (max-width: 991px) {
    .cta-content {
        max-width: 100%;
    }
}

.cta-columns {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .cta-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
}

.cta-left-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 65%;
    margin-left: 0px;
}

@media (max-width: 991px) {
    .cta-left-column {
        width: 100%;
    }
}

.cta-text-container {
    display: flex;
    margin-top: 21px;
    flex-grow: 1;
    flex-direction: column;
    font-family: Inter, sans-serif;
    line-height: 45px;
}

@media (max-width: 991px) {
    .cta-text-container {
        max-width: 100%;
        margin-top: 40px;
    }
}

.cta-description {
    color: rgba(0, 0, 0, 0.65);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.28px;
    margin: 5px 0 0 40px;
    line-height: 30px;
}

@media (max-width: 991px) {
    .cta-description {
        max-width: 100%;
    }
}

.cta-button {
    border-radius: 15px;
    background-color: #267dff;
    align-self: start;
    margin: 20px 0 0 40px;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    padding: 10px 34px;
    text-decoration: none;
}

@media (max-width: 991px) {
    .cta-button {
        padding: 0 20px;
    }
}

.cta-right-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 35%;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .cta-right-column {
        width: 100%;
    }
}

.location-container {
    display: flex;
    flex-direction: column;
    color: #000;
    letter-spacing: 0.54px;
    font: 400 18px/20px Inter, sans-serif;
}

@media (max-width: 991px) {
    .location-container {
        margin-top: 40px;
    }
}

.location-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 72px;
}

.location-text {
    align-self: end;
    margin-top: 5px;
}

.cta-image {
    aspect-ratio: 0.99;
    object-fit: contain;
    object-position: center;
    width: 99px;
    border-radius: 0px 0px 0px 0px;
    align-self: end;
    margin-top: 195px;
}

@media (max-width: 991px) {
    .cta-image {
        margin-top: 40px;
    }
}
.process-header {
    position: relative;
    text-align: center;
    margin-top: 40px;
    font:  48px 'Unbounded', sans-serif; /* Matches values-section styling */
    font-family: Unbounded, sans-serif;
}

.process-title {
    font-size: 48px;
    margin-bottom: 10px; /* Space between title and divider */
}

.process-divider {
    margin-top: -35px; /* Pull divider upward to overlap nicely */
}

@media (max-width: 991px) {
    .process-header {
        font-size: 40px; /* Reduce font size on smaller screens */
    }

    .process-title {
        font-size: 40px; /* Match header size for mobile */
    }

    .process-divider {
        margin-top: -50px; /* Slightly less negative on smaller screens */
    }
}

.process-section {
  position: relative;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.2);
  align-self: stretch;
  display: flex;
  margin-top: 15px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 76px 70px;
  font: 400 26px Unbounded, sans-serif;
  overflow: hidden; /* Ensure no horizontal scroll */
}

.process-steps {
  position: relative;
  width: 100%;
  display: flex;
  font-size: 2em;
  font-weight: 500;
  white-space: nowrap;
  animation: rolling-horizontal 5s linear infinite;
  gap: 100px; /* spacing between items */
}

.process-steps .step {
  display: inline-block;
  flex-shrink: 0;
  color: #000;
  background: transparent;
}

@keyframes rolling-horizontal {
  0% {
    transform: translateX(100%); /* Start right outside container */
  }
  100% {
    transform: translateX(-100%); /* Move fully left outside container */
  }
}

.about-section {
    position: relative;
    margin-top: 40px;
    width: 100%;
    max-width: 1404px;
}

@media (max-width: 991px) {
    .about-section {
        max-width: 100%;
    }
}

.about-columns {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .about-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
}

.about-left-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 42%;
    margin-left: 0px;
}

@media (max-width: 991px) {
    .about-left-column {
        width: 100%;
    }
}

.about-image {
    aspect-ratio: 1.06;
    object-fit: contain;
    object-position: center;
    width: 100%;
    flex-grow: 1;
}

@media (max-width: 991px) {
    .about-image {
        max-width: 100%;
        margin-top: 40px;
    }
}

.about-right-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .about-right-column {
        width: 100%;
    }
}

.about-content {
    position: relative;
    display: flex;
    margin-top: 64px;
    flex-direction: column;
}

@media (max-width: 991px) {
    .about-content {
        max-width: 100%;
        margin-top: 40px;
    }
}

.about-header {
    align-self: end;
    display: flex;
    flex-direction: column;
    font-family: Unbounded, sans-serif;
    font-weight: 300;
}

.about-title {
    font-size: 40px;
    text-align: right;
    align-self: end;
}

@media (max-width: 991px) {
    .about-title {
        margin-right: 6px;
    }
}

.about-divider {
    margin-top: -32px;
}

@media (max-width: 991px) {
    .about-divider {
        font-size: 40px;
    }
}

.about-description {
    color: #000;
    text-align: right;
    margin-top: 14px;
    font: 400 24px Inter, sans-serif;
}

@media (max-width: 991px) {
    .about-description {
        max-width: 100%;
    }
}

.values-section {
    position: relative;
    text-align: center;
    margin-top: 40px;
    font: 300 48px Unbounded, sans-serif;
}

@media (max-width: 991px) {
    .values-section {
        font-size: 40px;
    }
}

.values-divider {
    margin-top: -75px;
}

@media (max-width: 991px) {
    .values-divider {
        font-size: 40px;
    }
}

.values-content {
    position: relative;
    display: flex;
    margin-top: 15px;
    width: 100%;
    max-width: 1404px;
    align-items: start;
    gap: 40px 90px;
    color: #746d6d;
    text-align: center;
    justify-content: start;
    flex-wrap: wrap;
    font: 400 24px Inter, sans-serif;
}

@media (max-width: 991px) {
    .values-content {
        max-width: 100%;
    }
}

.value-item {
    flex-grow: 1;
    width: 323px;
}

.get-involved-section {
    position: relative;
    z-index: 10;
    display: flex;
    width: 100%;
    max-width: 1401px;
    align-items: center;
    gap: 40px 417px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 189px 0 -12px;
}

@media (max-width: 991px) {
    .get-involved-section {
        max-width: 100%;
        margin: 40px 0 10px;
    }
}

.get-involved-content {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    justify-content: start;
    flex-grow: 1;
    width: 380px;
    margin: auto 0;
}

@media (max-width: 991px) {
    .get-involved-content {
        max-width: 100%;
    }
}

.get-involved-header {
    display: flex;
    max-width: 100%;
    width: 475px;
    flex-direction: column;
    justify-content: start;
}

.get-involved-title {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

@media (max-width: 991px) {
    .get-involved-title {
        max-width: 100%;
    }
}

.get-involved-heading {
    font: 700 48px Unbounded, sans-serif;
}

@media (max-width: 991px) {
    .get-involved-heading {
        font-size: 40px;
    }
}

.get-involved-subtitle {
    color: #746d6d;
    margin-top: -27px;
    font: 700 44px Plus Jakarta Sans, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .get-involved-subtitle {
        max-width: 100%;
    }
}

.get-involved-cards {
    display: flex;
    margin-top: 57px;
    width: 100%;
    max-width: 475px;
    flex-direction: column;
    justify-content: start;
}

@media (max-width: 991px) {
    .get-involved-cards {
        max-width: 100%;
        margin-top: 40px;
    }
}

.card {
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0px 2px 80px rgba(0, 0, 0, 0.25);
    display: flex;
    width: 100%;
    align-items: center;
    gap: 30px;
    justify-content: start;
    padding: 30px;
    margin-bottom: 22px;
}

@media (max-width: 991px) {
    .card {
        max-width: 100%;
        padding: 0 20px;
    }
}

.card-icon {
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    display: flex;
    min-height: 100px;
    gap: 10px;
    width: 100px;
    height: 100px;
    margin: auto 0;
    padding: 0 10px;
}

.card-icon-image {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 47px;
    align-self: stretch;
    margin: auto 0;
}

.card-text {
    align-self: stretch;
    color: #1c1c1c;
    margin: auto 0;
    font: 700 24px Plus Jakarta Sans, -apple-system, Roboto, Helvetica, sans-serif;
}

.get-involved-image {
    aspect-ratio: 0.72;
    object-fit: contain;
    object-position: center;
    width: 380px;
    border-radius: 30px;
    align-self: stretch;
    min-width: 240px;
    flex-grow: 1;
    margin: auto 0;
}

@media (max-width: 991px) {
    .get-involved-image {
        max-width: 100%;
    }
}
.faq-section {
    font-family: Arial, sans-serif;
    background-color: transparent; /* Changed to transparent to allow the card's background to show */
    padding: 60px 20px;
    color: black;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;

    /* Applied card and boundary styles from .join-us-section */
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.2);
    padding: 40px; /* Added internal padding to keep content away from the edges */
}

/* Heading for the FAQ section */
.faq-heading {
    text-align: center;
    font-size: 3rem;
    color: #4455cc; /* A bright, vibrant color */
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Styling for each individual FAQ item */
.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

/* Styling for the clickable question button */
.faq-question {
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 0;
   
   
   
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-size: 1.3em;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.faq-question:hover {
    color: #4455cc;
}

/* Styling for the plus/minus icon */
.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* When the answer is open, rotate the icon to be a minus */
.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

/* Styling for the collapsible answer content */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 10px;
    color: #222; /* Dark gray/black for high contrast */
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* When the answer is active, display it */
.faq-answer.open {
    max-height: 500px; /* A value large enough to show all content */
    padding-bottom: 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
   color: #4455cc;
    font-size: 1rem;
}


.meet-founders {
    text-align: center;
    border-radius: 30px; 
    margin: 50px auto;
    max-width: 1120px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.2);
    
    font-family: 'Poppins', sans-serif;
    padding: 40px; 
}

.meet-founders h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 1px 1px 2px rgba(90, 100, 178, 0.4);
    
}
.founders-divider {
    margin-top: -75px;
}

@media (max-width: 991px) {
    .founders-divider {
        font-size: 40px;
    }
}

.meet-founders .founder-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0 10px;
}

.meet-founders .founder-card {
    background-color: #ffffff;
    border-radius: 35px;
    padding: 30px 25px 40px 25px;
    width: 280px;
    box-shadow: 0 10px 20px rgba(90, 100, 178, 0.15);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.meet-founders .founder-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(90, 100, 178, 0.35);
}

.founder-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #4455cc;
    background: linear-gradient(135deg, #d9e4ff, #b3c4fc);
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(68, 85, 204, 0.4);
    transition: border-color 0.3s ease;
}

.meet-founders .founder-card:hover .founder-image {
    border-color: #1a237e;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
}

.meet-founders .founder-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.meet-founders .founder-card p {
    font-size: 1em;
    color: #5a5a8a;
    margin: 0 0 15px 0;
    font-style: italic;
}

.founder-social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: background-color 0.3s ease;
        color: #666;
}

.social-link:hover {
    background-color: #446EEB; /* Example hover color */
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: #666;
}

.social-link.linkedin:hover {
    background-color: #0077B5;
}

.social-link.linkedin:hover .social-icon {
    fill: white;
}

.social-link.instagram:hover {
    background-color: #E4405F;
}

.social-link.instagram:hover .social-icon {
    fill: white;
}

.social-link.github:hover {
    background-color: #333;
}

.social-link.github:hover .social-icon {
    fill: white;
}



.join-us-section {
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    min-height: 438px;
    width: 100%;
    max-width: 1401px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .join-us-section {
        max-width: 100%;
        margin-top: 40px;
    }
}

.join-us-content {
    z-index: 0;
    display: flex;
    width: 787px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.join-us-title {
    font: 300 48px Unbounded, sans-serif;
}

@media (max-width: 991px) {
    .join-us-title {
        font-size: 40px;
    }
}
.join-us-divider {
    display: block;      
    width: auto;         
}

.join-us-description {
    color: #746d6d;
    text-align: center;
    margin-top: 14px;
    font: 400 24px Plus Jakarta Sans, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .join-us-description {
        max-width: 100%;
    }
}

.join-us-buttons {
    z-index: 0;
    display: flex;
    margin-top: 41px;
    align-items: start;
    gap: 40px;
    color: #fff;
    text-align: center;
    justify-content: center;
    font: 500 16px Inter, sans-serif;
}

@media (max-width: 991px) {
    .join-us-buttons {
        margin-top: 40px;
    }
}

.join-us-button {
    z-index: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    overflow: hidden;
    justify-content: center;
    padding: 12px 28px 12px 24px;
    border-radius: 10px;
    background: linear-gradient(104deg, #C6F1F7 0%, #446EEB 35.85%, #B877FF 73.69%, #C2E9CD 99.58%);
    box-shadow: 0px 4px 8px 0px rgba(26, 52, 108, 0.80) inset;
}

.join-us-buttons a {
    text-decoration: none;
    color: #dedede;
    font: 500 16px Inter, sans-serif;
}

@media (max-width: 991px) {
    .join-us-button {
        padding: 0 20px;
    }
}

.join-us-button-text {
    align-self: stretch;
    margin: auto 0;
}

.footer-divider {
    background-color: #eff0f6;
    margin-top: 71px;
    width: 1440px;
    max-width: 100%;
    height: 1px;
    border: 1px solid #eff0f6;
}

@media (max-width: 991px) {
    .footer-divider {
        margin-top: 40px;
    }
}
.footer {
    /* Use a fluid width of 100% to fill the container, up to the max-width */
    width: 100%;

    /* Centers the container horizontally */
    margin: 44px auto 0;

    /* Sets the maximum width for larger screens */
    max-width: 1056px;

    /* Display as a grid for content layout */
    display: grid;
    /* Removed justify-items: center; as it was centering content within the grid,
     * which caused the misalignment. The content will now be aligned to the left
     * within the footer container. */
}

@media (max-width: 991px) {
    .footer {
        margin-top: 40px;
    }
}

.footer-columns {
    gap: 20px;
    display: flex;
   
}

@media (max-width: 991px) {
    .footer-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
}

.footer-left-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 22%;
    margin-left: 0px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .footer-left-column {
        width: 100%;
    }
}

.footer-logo {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    color: #170f49;
    white-space: nowrap;
    font: 700 29px/1 Inter, sans-serif;
}

@media (max-width: 991px) {
    .footer-logo {
        margin-top: 40px;
        white-space: initial;
    }
}

.footer-logo-image {
    aspect-ratio: 1.29;
    object-fit: contain;
    object-position: center;
    width: 132px;
    max-width: 100%;
    align-self: center;
    border-radius: 12px; /* smooth rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* subtle depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth hover effect */
    
    /* Optional: slight scale on hover for interactivity */
}

.footer-logo-text {
    font-feature-settings: "liga" off, "clig" off;
    margin-top: 11px;
    margin-left: 50px;
}
 .social-icons-container {
             display: flex;
             justify-content: center;
             align-items: center;
             gap: 12px;
             margin: 20px 0;
         }

         .social-icons-container .social-link {
             display: flex;
             align-items: center;
             justify-content: center;
             width: 35px;
             height: 35px;
             background: #f5f5f5;
             border-radius: 50%;
             text-decoration: none;
             border: 1px solid #ddd;
         }

         .social-icons-container .social-icon {
             width: 18px;
             height: 18px;
             fill: #666;
         }

         .social-icons-container .linkedin:hover { background: #0077B5; }
         .social-icons-container .linkedin:hover .social-icon { fill: white; }
         .social-icons-container .twitter:hover { background: #1DA1F2; }
         .social-icons-container .twitter:hover .social-icon { fill: white; }
         .social-icons-container .instagram:hover { background: #E4405F; }
         .social-icons-container .instagram:hover .social-icon { fill: white; }
         .social-icons-container .facebook:hover { background: #1877F2; }
         .social-icons-container .facebook:hover .social-icon { fill: white; }
         .social-icons-container .youtube:hover { background: #FF0000; }
         .social-icons-container .youtube:hover .social-icon { fill: white; }
         .social-icons-container .github:hover { background: #333; }
         .social-icons-container .github:hover .social-icon { fill: white; }

.footer-right-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 78%;
    margin-left: 80px;
}

@media (max-width: 991px) {
    .footer-right-column {
        width: 100%;
    }
}

.footer-content {
    display: flex;
    margin-top: 12px;
    flex-grow: 1;
    align-items: start;
    gap: 40px 84px;
    color: #6f6c90;
    justify-content: start;
    flex-wrap: wrap;
    font: 400 18px/1 Plus Jakarta Sans, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .footer-content {
        max-width: 100%;
        margin-top: 40px;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: start;
    flex-grow: 1;
    width: 89px;
}

.footer-link {
    display: flex;
    align-items: start;
    white-space: nowrap;
    justify-content: start;
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .footer-link {
        white-space: initial;
    }
}

.footer-link-text {
    font-feature-settings: "liga" off, "clig" off;
    align-self: stretch;
    gap: 6px;
}

@media (max-width: 991px) {
    .footer-link-text {
        white-space: initial;
    }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 213px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: start;
    margin-bottom: 22px;
}

@media (max-width: 991px) {
    .footer-contact-item {
        white-space: initial;
    }
}

.footer-contact-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    align-self: stretch;
    margin: auto 0;
}

.footer-contact-text {
    font-feature-settings: "liga" off, "clig" off;
    align-self: stretch;
    margin: auto 0;
}

.footer-bottom-divider {
    background-color: #d9dbe9;
    margin: 57px auto 0 auto;   /* Center horizontally with auto left/right margins */
    width: 90%;                 /* Responsive width instead of fixed 1241px */
    max-width: 1241px;          /* Max width constraint */
    height: 1px;
    border: 1px solid #d9dbe9;
    position: static;           /* Remove relative positioning and left offset */
}

@media (max-width: 991px) {
    .footer-bottom-divider {
        margin-top: 40px;
        width: 100%;            /* Full width on smaller screens */
    }
}

.footer-copyright {
    color: #6f6c90;
    font-feature-settings: "liga" off, "clig" off;
    margin: 25px auto 0 auto;   /* Center horizontally with auto margins */
    font: 400 18px/2 DM Sans, sans-serif;
    text-align: center;         /* Center text inside container */
    max-width: 1241px;
    width: 90%;                 /* Responsive width */
}

@media (max-width: 991px) {
  /* Global Layout & Typography Adjustments */
  body {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header,
  .hero-columns,
  .cta-columns,
  .process-steps,
  .about-columns,
  .get-involved-section,
  .join-us-buttons,
  .footer-columns,
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Use a consistent gap for vertical spacing */
  }

  /* Header & Navigation */
  .header,
  .nav-menu,
  .logo-container,
  .auth-buttons {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .nav-menu {
    gap: 20px;
  }
  .logo-container,
  .footer-logo {
    white-space: normal;
  }
  .sign-up-btn {
    padding: 15px 20px; /* Adjust padding for mobile button */
  }

  /* Hero Section */
  .hero-content {
    margin-top: 40px;
    padding: 0 10px;
  }
  .hero-left-column,
  .hero-right-column,
  .cta-left-column,
  .cta-right-column,
  .about-left-column,
  .about-right-column,
  .get-involved-content,
  .footer-left-column,
  .footer-right-column {
    width: 100%;
    margin: 0;
  }
  .hero-headline {
    font-size: 32px;
    line-height: 40px;
    margin: 0;
    text-align: center;
  }
  .hero-img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 20px;
  }
  .hero-rectangle {
    display: none;
  }

  /* CTA Section */
  .cta-text-container,
  .cta-description,
  .cta-button {
    margin-left: 0;
    text-align: center;
  }
  .cta-button {
    align-self: center;
  }

  /* Process Section */
  .process-header,
  .process-title {
    font-size: 36px;
  }
  .process-divider {
    margin-top: -30px;
  }
  .process-step {
    width: 100%;
    text-align: center;
  }
  .process-section {
    padding: 20px;
  }

  /* About Section */
  .about-title {
    font-size: 32px;
  }
  .about-description {
    text-align: center;
  }
  .about-header,
  .about-content {
    align-self: center;
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
  .about-image {
    width: 90%;
    margin: 0 auto;
  }

  /* Values Section */
  .values-section {
    font-size: 36px;
  }

  /* Get Involved Section */
  .get-involved-heading {
    font-size: 36px;
  }
  .get-involved-subtitle {
    margin-top: 10px;
  }
  .card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }
  .card-icon {
    margin: 0;
  }
  .card-text {
    font-size: 20px;
  }
  .get-involved-image {
    width: 100%;
    height: auto;
  }

  /* Founders Section */
  .meet-founders h2 {
    font-size: 2.5rem;
  }
  .meet-founders .founder-card {
    width: 100%;
  }

  /* Join Us Section */
  .join-us-section {
    padding: 20px;
  }
  .join-us-title {
    font-size: 32px;
    text-align: center;
  }
  .join-us-description {
    font-size: 18px;
  }
  .join-us-button {
    width: 80%;
  }

  /* Footer */
  .footer {
    padding: 0 20px;
  }
  .footer-logo-text {
    margin-left: 0;
  }
  .footer-links,
  .footer-contact {
    width: 100%;
    align-items: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
  .footer-bottom-divider {
    width: 90%;
  }
  .footer-copyright {
    font-size: 16px;
  }
}
/* Chatbot Button */
#p2p-chatbot-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #16a34a;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: none;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 9999;
}

/* Chatbot Box */
#p2p-chatbot-box {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 340px;
  background: white;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  overflow: hidden;
}

/* Header */
#p2p-chatbot-header {
  background: #16a34a;
  color: white;
  padding: 14px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Messages */
#p2p-chatbot-messages {
  padding: 12px;
  height: 320px;
  overflow-y: auto;
  font-size: 14px;
  background: #f9fafb;
}

/* Input */
#p2p-chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#p2p-chatbot-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

#p2p-chatbot-input button {
  background: #16a34a;
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
}

/* Messages */
.p2p-bot {
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  width: fit-content;
  max-width: 85%;
}

.p2p-user {
  background: #dcfce7;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  margin-left: auto;
  width: fit-content;
  max-width: 85%;
}

#p2p-close {
  cursor: pointer;
}
/* Floating Chat Button */
#p2p-chatbot-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #FEC64E, #FEC64E);
  color: white;
  border: none;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 28px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 15px #872bff, 0 0 30px #ff4ecd;
  animation: pulseGlow 2s infinite;
}

/* Glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px #872bff; }
  50% { box-shadow: 0 0 25px #ff4ecd; }
  100% { box-shadow: 0 0 10px #872bff; }
}

/* Chatbot Box */
#p2p-chatbot-box {
  position: fixed;
  bottom: 110px;
  right: 25px;
  width: 420px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  display: none;
  box-shadow: 0 0 25px #FEC64E;
  overflow: hidden;
  z-index: 999;
  animation: popUp 0.4s ease;
}

/* Pop animation */
@keyframes popUp {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#p2p-chatbot-header {
  background: linear-gradient(135deg, #FEC64E, #FEC64E);
  color: white;
  padding: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#p2p-chatbot-messages {
  height: 260px;
  padding: 12px;
  overflow-y: auto;
  font-size: 20px;
  color: #000;
}

#p2p-chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#p2p-chatbot-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 0 0 0 18px;
}

#p2p-chatbot-input button {
  background: linear-gradient(135deg, #FEC64E, #FEC64E);
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 0 0 18px 0;
}

/* Welcome Bubble */
#welcome-popup {
  position: fixed;
  bottom: 100px;
  right: 100px;
  background: white;
  padding: 12px 18px;
  border-radius: 20px;
  box-shadow: 0 0 20px #FEC64E;
  font-size: 14px;
  animation: floatBubble 2s infinite;
}

@keyframes floatBubble {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
/* Floating Welcome Text */
#p2p-welcome-text {
  position: fixed;
  bottom: 35px;
  right: 110px; /* places it to LEFT of chatbot icon */
  background: #ffffff;
  color: #000;
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  font-size: 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  max-width: 260px;
  animation: floatBubble 2s infinite;
  z-index: 999;
}

/* Floating animation */
@keyframes floatBubble {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
/* Chatbot background image */
#p2p-chatbot-messages {
  position: relative;
  background: 
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url("./assets/[Original size] Black & Blue Modern Geometric Financial Company Logo(26) 1.png");
  
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#p2p-chatbot-box {
  border: 2px solid #FEC64E;
  box-shadow: 0 0 30px rgba(254,198,78,0.8);
}
.sign-btn {
  border-radius: 13px;
  background: linear-gradient(135deg, #267dff, #7c3aed);
  color: #fff;
  padding: 14px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.sign-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(38,125,255,0.4);
}
/* Rounded container like reference image */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;

  border-radius: 999px;        /* makes full circular pill shape */
  backdrop-filter: blur(10px);
  
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 25px rgba(0,0,0,0.15);

  width: fit-content;         /* wraps tightly around items */
}

/* Make each item feel boxed */
.nav-menu a {
  padding: 10px 22px;
  border-radius: 999px;       /* circular buttons */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Get Involved Card Hover Animation */
.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-12px);   /* move card upward */
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);  /* stronger shadow */
}
