/* Skip to main content link - visually hidden until focused */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 12px 20px;
  background-color: #41B8E8;
  color: white;
  font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.3s ease;
  border-radius: 0 0 4px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-group-section-left-box {
  width: 330px;
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid #41B8E8;
  outline-offset: 2px;
}

/* Banner Group Component Styles */
.banner-group {
  border-radius: 0;
  height: 450px;
  padding: 1em 5em 1em;
  font-family:
    Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
}

.banner-container {
  display: flex;
  max-width: 100%;
  gap: 1%;
}

.banner-content-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 56%;
}

.banner-content-wrapper {
  margin-top: 40px;
  margin-right: 30px;
}

.banner-main-heading {
  color: rgba(109, 110, 110, 1);
  font-size: 42px;
  font-weight: 500;
  margin: 0;
}

.banner-content-details {
  display: flex;
  margin-top: 40px;
  width: 717px;
  max-width: 100%;
  flex-direction: column;
  align-items: start;
  font-size: 16px;
}

.banner-description {
  color: #383838;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin: 0;
}

.banner-brand-name {
  font-weight: 500;
}

.banner-cta-button {
  border-radius: 29px;
  border: 3px solid rgba(107, 201, 239, 1);
  background-color: transparent;
  margin-top: 25px;
  padding: 16px 27px;
  font-size: 14px;
  color: rgba(139, 139, 139, 1);
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.3s;
  font-family: inherit;
}

/* Tooltip text styling */
.banner-cta-button::after, .YourJourney-cta::after {
    content: "Coming soon";
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

/* Arrow pointing up to the button */
.banner-cta-button::before, .YourJourney-cta::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

/* Show tooltip and arrow on hover */
.banner-cta-button:hover::after, .YourJourney-cta:hover::after,
.banner-cta-button:hover::before, .YourJourney-cta:hover::before {
    opacity: 1;
    visibility: visible;
}

.banner-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 201, 239, 0.5);
}

.banner-navigation-links {
  align-self: stretch;
  display: flex;
  margin-top: 100px;
  align-items: stretch;
  gap: 62px;
  color: rgba(164, 164, 164, 1);
  font-weight: 500;
  flex-wrap: wrap;
}

.banner-nav-link {
  flex-grow: 1;
  flex-shrink: 1;
  color: rgba(164, 164, 164, 1);
  text-decoration: none;
  transition: color 0.3s;
}

.banner-nav-link:hover {
  color: rgba(107, 201, 239, 1);
}

.banner-active-link {
  color: rgba(107, 201, 239, 1);
  font-weight: 600;
}

.banner-pillars-link {
  width: 84px;
}

.banner-journey-link {
  width: 114px;
}

.banner-impact-link {
  width: 167px;
}

.banner-image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  line-height: normal;
  width: 40%;
  max-width: 43%;
  overflow: hidden;
}

.banner-image {
  aspect-ratio: 1.0;
  object-fit: contain;
  object-position: center;
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
  height: auto;
  scale: 1.2;
  transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.banner-vert-nav-ul-bullet {
  padding: 0;
}

.banner-vert-nav-purple-bullet {
  display: block;
  background-color: #786CB2;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  margin-bottom: 7px;
}

.banner-vert-nav-blue-bullet {
  display: block;
  background-color: #4799D1;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  margin-bottom: 7px;
}

.banner-vert-nav-lblue-bullet {
  display: block;
  background-color: #7CCFBD;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  margin-bottom: 7px;
}

.banner-vert-nav-grey-bullet {
  display: block;
  background-color: #BFBFBF;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  margin-bottom: 7px;
}

/* Navigation styles */ 
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white; /* or your desired background color */
  z-index: 1000; /* ensure it stays above other content */
  transition: box-shadow 0.3s ease-in-out;
}

/* Add shadow only when scrolled - works with scroll event script */
.header.scrolled {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navigation {
  font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  width: 100%;
}

.navigation-wrapper {
  display: flex;
  width: 90%;
  padding: 12px 70px 19px;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.navigation-container {
  display: flex;
  margin-left: 17px;
  width: 100%;
  max-width: 1607px;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu-section {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 40px 68px;
  color: #383838;
  font-weight: 400;
  flex-wrap: wrap;
}

.company-logo {
  aspect-ratio: 4.55;
  object-fit: contain;
  object-position: center;
  width: 109px;
  align-self: stretch;
  flex-shrink: 0;
  max-width: 100%;
}

.nav-link {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #41B8E8;
}

/* Add underline effect */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #41B8E8; /* Same blue color */
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%; /* Expand the underline on hover */
}

/* Ensure active state has similar styling */
.nav-link.active {
  font-weight: 600;
  color: #41B8E8;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link.active-nav-link {
  color: #41B8E8; /* Change to match your primary color */
}

.nav-link.active-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #41B8E8; /* Match your primary color */
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scaleX(0.5);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.contact-section {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 34px;
  color: rgba(109, 110, 110, 1);
  font-weight: 400;
  position: relative;
  
}

/* Create a tooltip element for the login button */
.contact-section::after {
  content: "Coming soon";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}


/* Show tooltip on hover over the contact section */
.contact-section:hover::after {
  opacity: 1;
  visibility: hidden;
}

/* Add arrow pointing up to the icon */
.contact-section::before {
  content: "";
  position: absolute;
  bottom: -9px; /* Position arrow closer to the button */
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

/* Show arrow on hover */
.contact-section:hover::before {
  opacity: 1;
  visibility: hidden;
}

.contact-link:hover,
.contact-link:focus {
  color: rgba(89, 90, 90, 1);
}

.contact-icon {
  aspect-ratio: 2.55;
  object-fit: contain;
  object-position: center;
  width: 102px;
  flex-shrink: 0;
  max-width: 100%;
  position: relative;
  cursor: pointer;
}

/* Community Styles ------ */

.community-landing-page {
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
}

.community-section {
  padding: 0 4.3vw 0 6vw;
  margin-top: -11px;
  margin-left: 39px;
  max-width: 1659px;
  margin: 0 auto;
}

.community-content {
  display: flex;
  gap: 1%;
}

.community-message-column {
  width: 60%;
}

.community-message-container {
  display: flex;
  flex-direction: column;
}

.community-heading {
  font-size: 40px;
  color: rgba(116, 116, 116, 1);
  font-weight: 400;
  margin: 0;
}

.community-emphasis {
  font-weight: 600;
  color: rgba(116, 116, 116, 1);
}

.community-form-input,
.community-form-textarea {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.89);
  border: 1px solid rgba(154, 154, 154, 1);
  width: 90%;
  margin-top: 12px;
  padding: 10px 20px;
}

.community-form-input:first-of-type {
  margin-top: 48px;
}

.community-form-textarea {
  height: 85px;
  resize: vertical;
}

.community-image-column {
  width: 40%;
}

.community-image {
  width: 100%;
  margin-top: 7vh;
  object-fit: contain;
  vertical-align: bottom;
}

/* Footer Styles */
.community-footer {
  background-color: rgba(49, 49, 49, 1);
  padding-left: 6vw;
  padding-right: 4.3vw;
  color: white;
}

.community-footer-content {
  display: flex;
  gap: 17%;
}

.community-company-info {
  flex-shrink: 0;
  padding-top: 66px;
  width: 18%;
}

.community-footer-logo {
  width: 100%;
  height: auto;
}

.community-contact-info {
  font-style: normal;
  margin-top: 34px;
  font-size: 14px;
}

.community-contact-info p {
  margin: 12px 0;
}

.community-footer-sections {
  flex-grow: 1;
  display: flex;
  gap: 15%;
}

.community-footer-nav {
  width: 25%;
  padding-top: 36px;
}

.community-nav-separator {
  background-color: rgba(85, 85, 85, 1);
  height: 2px;
  width: 100%;
}

.community-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.community-nav-link {
  color: rgba(219, 219, 219, 1);
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  display: block;
  margin-top: 12px;
  transition: color 0.3s ease;
}

.community-nav-link:hover {
  color: white;
}

.community-social-section {
  width: 42%;
}

.community-social-heading {
  color: rgba(219, 219, 219, 1);
  font-size: 14px;
  font-weight: 300;
  margin-top: 26px;
}

.community-social-image {
  max-width: 144%;
  padding-left: 0%;
  margin:-1%;
}

.community-social-links {
  display: flex;
  gap: 19px;
  margin-top: 22px;
  margin-bottom: 35px;
}

.community-social-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(149, 149, 149, 1);
  border-radius: 50%;
  transition: border-color 0.3s ease;
}

.community-social-icon.community-facebook {
  border-radius: 0;
}

.community-social-link:hover .community-social-icon {
  border-color: white;
}

.community-copyright {
  font-size: 12px;
  font-weight: 300;
  color: rgba(219, 219, 219, 1);
  padding-bottom: 20px;
  padding-top: 10px;
}

/* RWImpact Group Component Styles */

/* Main container styles */
.RWI-impact-group {
  padding: 150px 60px 0px;
  font-family: Montserrat,-apple-system, Roboto, Helvetica, sans-serif;
}

.RWI-impact-container {
  display: flex;
  gap: 20px;
}

.about-group-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 60px;
}

/* Sidebar styles */
.RWI-impact-sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 25%;
}

.RWI-sidebar-content {
  display: flex;
  margin-top: -7px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.RWI-impact-title {
  color: rgba(109, 110, 110, 1);
  font-size: 40px;
  font-weight: 600;
  align-self: start;
  margin: 0;
}

.RWI-impact-title-light {
  font-weight: 400;
}

/* Impact categories section */
.RWI-impact-categories {
  display: flex;
  margin-top: 40px;
  align-items: stretch;
  gap: 30px;
}

/* Color indicators container */
.RWI-color-indicators {
  border-color: rgba(112, 112, 112, 1);
  border-style: solid;
  border-width: 1px;
  padding: 3px 4px 10px;
}

/* Individual color indicators */
.RWI-indicator {
  display: flex;
  width: 8px;
  flex-shrink: 0;
  height: 52px;
}

.RWI-indicator-green {
  background-color: rgba(60, 159, 138, 1);
  margin-top: 4px;
}

.RWI-indicator-teal {
  background-color: rgba(60, 156, 159, 1);
  margin-top: 4px;
}

.RWI-indicator-cyan {
  background-color: rgba(44, 183, 188, 1);
  margin-top: 4px;
}

/* Category list styles */
.RWI-category-list {
  display: flex;
  margin: auto 0;
  flex-direction: column;
  align-items: start;
  font-size: 14px;
  color: #383838;
  font-weight: 400;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  width: 20vw;
  list-style-type: none;
  margin: auto 0;
}

.RWI-category-item {
  width: 100%;
}

.RWI-category-resilience {
  z-index: 10;
  margin-top: 10px;
}

.RWI-category-economic {
  align-self: stretch;
  margin-top: 30px;
}

.RWI-category-housing {
  margin-top: 37px;
}

.RWI-category-health {
  margin-top: 43px;
}

.RWI-category-tech {
  margin-top: 34px;
  width: 269px;
}

.RWI-category-financial {
  margin-top: 27px;
}

.RWI-category-mobility {
  margin-top: 42px;
}

.RWI-category-planning {
  align-self: stretch;
  margin-top: 42px;
}

.RWI-category-education {
  margin-top: 33px;
}

/* Main content area */
.RWI-impact-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 68%;
  margin-left: auto;
}

.RWI-main-content {
  flex-grow: 1;
}

/* Image container */
.RWI-impact-image {
  aspect-ratio: 4.55;
  object-fit: contain;
  object-position: center;
  width: 96%;
}

/* Description section */
.RWI-impact-description {
  margin-top: 100px;
  width: 983px;
  max-width: 100%;
}

.RWI-description-container {
  display: flex;
  gap: 20px;
}

/* Description text column */
.RWI-description-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
}

.RWI-description-text {
  color: #383838;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* Quote column */
.RWI-quote-column {
  display: flex;
  align-items: flex-end;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
  margin-bottom: 5px;
}

.RWI-impact-quote {
  display: table-cell;
  vertical-align: bottom;
  color: rgba(109, 110, 110, 1);
  font-size: 25px;
  font-weight: 400;
  margin-bottom:0;
}

/* Bottom divider */
.RWI-content-divider {
  background-color: rgba(237, 237, 237, 1);
  display: flex;
  margin-top: 50px;
  flex-shrink: 0;
  height: 5px;
}

.about-group-diagram-content {
  width: 64%;
}

.about-group-subheading {
  margin-right: 0;
  margin-left: auto;
  width: 20%;
  padding-right: 40px;
  padding-bottom: 20px;
}

.about-group-content {
  display: flex;
  padding-top: -35px;
}

/* Bottom divider */
.about-group-content-divider {
  background-color: rgba(237, 237, 237, 1);
  display: flex;
  margin-top: 0;
  flex-shrink: 0;
  height: 5px;
  width: 95%;
}

/* hover RWI card Styles*/
/* Main container */

.hovercard-category-container {
  display: flex;
  background-color: white;
  position: relative;
  left: auto;
  bottom: auto;
  width: 75vw;
}

.hovercard-category-container.resilience {
  display: none; /* Hide by default */
  width:65vw;
  position: relative;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 100;
}

.hovercard-category-container.economic {
  display: none; /* Hide by default */
  width:65vw;
  position: relative;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 100;
}

.hovercard-category-container.housing {
  display: none; /* Hide by default */
  width:65vw;
  position: relative;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 100;
}
.RWI-intro-content {
  display: block;
}

/* Hover state */
.RWI-category-resilience:hover ~ .RWI-main-content .hovercard-category-container.resilience {
  display: flex;
}

.RWI-category-resilience:hover ~ .RWI-impact-categories {
  width: 8px;
  transition: width 0.3s ease;
}


.RWI-category-economic:hover ~ .RWI-main-content .hovercard-category-container.economic {
  display: flex;
}

.RWI-category-housing:hover ~ .RWI-main-content .hovercard-category-container.housing {
  display: flex;
  }

.hovercard-resilience-section {
  height:84vh;
}

.hovercard-resilience-container {
  display: flex;
  width: 85%;
  max-width: 1302px;
  margin-left: 5%;
  margin-right: auto;
  position: relative;
  gap: 108px;
  z-index:80;
}

/* Content section */
.hovercard-content-wrapper {
  flex: 1;
  padding: 70px 0 0;
  position: relative;
}

.hovercard-accent-marker {
  width: 9px;
  height: 10px;
  position: absolute;
  top: 70px;
  background-color: #3c9f8a;
}

.hovercard-section-title {
  color: #545454;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 300;
  margin-top: 25px;
  margin-bottom: 40px;
  max-width: 370px;
}

.hovercard-section-description {
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  max-width: 587px;
  margin-bottom: 60px;
}

.hovercard-see-more-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #afafaf;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hovercard-see-more-link:hover,
.hovercard-see-more-link:focus {
  color: #545454;
}

.hovercard-see-more-link:hover .hovercard-arrow-icon path,
.hovercard-see-more-link:hover .hovercard-line-icon path,
.hovercard-see-more-link:focus .hovercard-arrow-icon path,
.hovercard-see-more-link:focus .hovercard-line-icon path {
  stroke: #545454;
  transition: stroke 0.3s ease;
}

.hovercard-see-more-link:focus {
  outline: 2px solid #3c9f8a;
  outline-offset: 2px;
}

.hovercard-arrow-icon,
.hovercard-line-icon {
  transition: transform 0.3s ease;
}

.hovercard-see-more-link:hover .hovercard-arrow-icon,
.hovercard-see-more-link:focus .hovercard-arrow-icon {
  transform: translateX(3px);
}

.hovercard-divider-top {
  width: 100%;
  height: 5px;
  position: absolute;
  top: 40px;
  background-color: #ededed;
  z-index: 80;
}

.hovercard-divider-bottom {
  width: 100%;
  height: 5px;
  position: absolute;
  top: auto;
  bottom: 140px;
  z-index: 80;
  margin-top: auto;
  margin-bottom: -100px;
  background-color: #ededed;

}

/* Image section */
.hovercard-image-wrapper {
  width: 300px;
  height: 600px;
  flex-shrink: 0;
}

.hovercard-meeting-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* about group styles */
.about-group-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: rgba(109, 110, 110, 1);
  width: 100%;
  max-width: 100%;
  padding-top: 150px;
}

.about-group-main-heading {
  width: 30%;
  font-size: 30px;
  font-weight: 400;
  align-self: start;
  z-index: 10;
  padding-left: 70px;
  padding-top: 35px;
 }

.about-group-main-heading strong {
  font-weight: 600;
}

.about-group-divider {
  min-height: 1px;
  width: 100%;
  border: none;
  margin-top: 5vh;
}

.about-group-divider-blue {
  background-color: rgba(78, 189, 234, 1);
  margin-top: 14px;
}

.about-group-divider-purple {
  background-color: rgba(109, 98, 171, 1);
  margin-top: 14px;
}

.about-group-divider-teal {
  background-color: rgba(101, 198, 175, 1);
  margin-top: 14px;
}

.about-group-content-row {
  display: flex;
  margin-top: 0vh;
  max-width: 1394px;
  align-items: stretch;
  gap: 305px;
  justify-content: space-between;
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 18px;
}

.about-group-section-title-column {
  width: 40vw;
}

.about-group-section-text-column {
  width: 55vw;
}

.about-group-section-heading {
  font-size: 18px;
  font-weight: 400;
  color: #383838;
  align-self: start;
  max-width: 53%;
}

.about-group-section-text {
  font-size: 14px;
  color: #383838;
  font-weight: 400;
  width: 39vw;
  padding-right: 70px;
}

.about-group-section-text strong {
  font-weight: 500;
}

/* Specific adjustments for the leadership section heading */
.about-group-content-row:nth-child(4) .about-group-section-heading {
  width: 256px;
}

/* Differentiator Styles */

/* Base styles */
.differentiator-praxxi-different-group {
  height: 75vh;
  padding: 150px 120px 19px 70px;
  font-family:
    Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
  border-radius: 0;
}

.differentiator-praxxi-different-group .differentiator-container {
  display: flex;
  gap: 20px;
  position: absolute;
  top: 0;
}

.differentiator-praxxi-different-group .differentiator-bold-text {
  font-weight: 600;
}

/* Intro column styles */
.differentiator-intro-column {
  width: 45%;
}

.differentiator-intro-content {
  margin-top: 33px;
  font-weight: 400;
}

.differentiator-main-heading {
  color: rgba(109, 110, 110, 1);
  font-size: 30px;
  font-weight: 400;
  margin: 0;
}

.differentiator-main-description {
  color: #383838;
  font-size: 16px;
  margin-top: 42px;
  line-height: 22px;
}

.differentiator-main-description-p2 {
  color: #383838;
  font-size: 16px;
  margin-top: 10px;
  line-height: 22px
}


/* Content column styles */
.differentiator-content-column {
  width: 78%;
}

.differentiator-content-wrapper {
  width: 100%;
  height: 500px;
  padding-left: 20px;
}

/* Leadership column styles */

.differentiator-methodology-color-card {
  position: relative;
  width: 18vw;
  height: 60vh;
  background-color: rgba(60, 159, 138, 1);
  border-radius: 10px;
}

.differentiator-outcomes-outer-card {
  position: relative;
  width: 18vw;
  height: 60vh;
  background-color: rgba(102, 92, 161, 1);
  border-radius: 10px;
}

.differentiator-leadership-card {
  position: relative;
  width: 18vw;
  height: 60vh;
  border-radius: 10px;
  background-color: rgba(46, 141, 180, 1);
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.differentiator-m-card {
  position: relative;
  width: 18vw;
  height: 60vh;
  border-radius: 10px;
  background-color:rgba(60, 159, 138, 1);
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.differentiator-o-card {
  position: relative;
  width: 18vw;
  height: 60vh;
  border-radius: 10px;
  background-color:rgba(102, 92, 161, 1);
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}


.differentiator-leadership-card.differentiator-white-background {
  background-color: white;
  position: relative;
  width: 18vw;
  box-shadow: none;
}


.differentiator-leadership-card-inner {
position: relative;
transition: transform 0.8s;
transform-style: preserve-3d;
}

.differentiator-leadership-column-inner {
  position: relative;
  width: 18vw;
  height: 60vh;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.differentiator-leadership-card:hover .differentiator-leadership-card-inner {
  transform: rotateY(180deg);
}

.differentiator-leadership-content-front, .differentiator-leadership-content-back {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.differentiator-leadership-content-front {
  margin-top: auto;
  margin-bottom: auto;
  align-self: stretch;
}

.differentiator-leadership-content-back {
  margin-top: auto;
  margin-bottom: auto;
  align-self: stretch;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
  transform: rotateY(180deg);
}

.differentiator-leadership-inner {
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  padding: 20px 15px;
  flex-direction: column;
  align-items: stretch;
  height: 100;
  margin: 10px;
  height:100%;
}

.differentiator-leadership-title {
  align-self: flex-start;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.differentiator-leadership-title.differentiator-backcard-title {
  color: white;
  margin-top: 0px;
  margin-bottom: 0px;
  align-self: center;
  line-height: 23px;
}

.differentiator-leadership-title:not(:first-child) {
  margin-top: 30px;
}

.differentiator-leadership-description {
  font-size: 13px;
  font-weight: 400;
  margin-top: auto;
  margin-bottom: auto;
}

.differentiator-source-link {
  text-decoration: underline;
  font-size: 8px;
  color: inherit;
}

/* Methodology column styles */
.differentiator-methodology-column {
  width: 18vw;
  margin-left: 0px;
}

.differentiator-methodology-content {
  margin-top: auto;
  margin-bottom: auto;
  align-self: stretch;
}

.differentiator-methodology-card {
  position: relative;
  width: 18vw;
  height: 60vh;
  border-radius: 10px;
  background-color: rgba(60, 159, 138, 1);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.differentiator-methodology-card-greenbackground {
  background-color: rgba(255, 255, 255, 1);
}

.differentiator-card-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: flex-end;
  margin-right: 15px;
}

.differentiator-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 15px;
}

.differentiator-card-content-top-half {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.differentiator-card-content-bottom-half {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.differentiator-card-title {
  margin-top: auto; /* Pushes title to bottom of top half */
  color: #545454;
  font-size: 20px;
  font-weight: 600;
}

.differentiator-card-description {
  margin-top: auto; /* Pushes description to bottom of bottom half */
  font-size: 13px;
  font-weight: 400;
}

.differentiator-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.differentiator-card-content-top-half {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.differentiator-card-title {
  color: #545454;
  font-size: 20px;
  font-weight: 600;
  margin-top: auto; /* This pushes the title to the bottom */
  margin-bottom: 20px;
}

.differentiator-card-divider-blue {
  background-color: rgba(44, 147, 188, 1);
  height: 3px;
  margin-top: 0px;
}

.differentiator-card-divider-purple {
  background-color: rgba(102, 92, 161, 1);
  height: 3px;
  margin-top: 0px;
}

.differentiator-card-divider-green {
  background-color: rgba(60, 159, 138, 1);
  height: 3px;
  margin-top: 0px;
}

.differentiator-card-description {
  color: rgba(109, 110, 110, 1);
  font-size: 13px;
  font-weight: 400;
  margin-top: 53px;
}

/* Outcomes column styles */
.differentiator-outcomes-column {
  width: 18vw;
  margin-left: 0px;
}

.differentiator-outcomes-wrapper {
  flex-grow: 1;
}

.differentiator-outcomes-text-column {
  width: 100%;
}

.differentiator-leadership-text-column {
  width: 100%;
}

.differentiator-outcomes-card {
  width: 18vw;
  height: 60vh;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 10;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 13px;
  padding-bottom: 23px;
  flex-direction: column;
  align-self: stretch;
  align-items: stretch;
}

.differentiator-outcomes-title {
  color: rgba(102, 92, 161, 1);
}

.differentiator-leadership-title {
  color: rgba(44, 147, 188, 1);
}

.differentiator-back-title {
  color: white;
}

.differentiator-outcomes-card .differentiator-card-content {
  padding: 0 15px;
  margin-bottom: 0;
}

.differentiator-outcomes-card .differentiator-card-description {
  margin-top: 40px;
}

.differentiator-image-column {
  width: 50%;
  margin-left: auto;
  z-index: -10;
}

.differentiator-background-image-container {
  height: 70vh;
  top: 0;
  position: relative;
}

.differentiator-background-image {
  object-fit: contain;
  background-image: url("https://cdn.builder.io/api/v1/image/assets/2c546f0613c94668964a0f265b74220f/5094d1aaf592b093c72895cc521c9151e3e1489b8cf566bedc97954c11b6fa89?placeholderIfAbsent=true");
  object-position: center;
  background-size: 300px;
  height: 100%;
  background-position-x: right;
  background-repeat: no-repeat;
}

/* Interactive elements */
.differentiator-card-title,
.differentiator-source-link {
  transition: color 0.3s ease;
}

.differentiator-source-link:hover,
.differentiator-source-link:focus {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.differentiator-methodology-card:hover,
.differentiator-outcomes-card:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.differentiator-methodology-card,
.differentiator-outcomes-card {
  transition: transform 0.3s ease;
}

.differentiator-card-icon {
  transition: transform 0.3s ease;
}

.differentiator-methodology-card:hover .differentiator-card-icon,
.differentiator-outcomes-card:hover .differentiator-card-icon {
  transform: rotate(10deg);
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid rgba(46, 141, 180, 0.5);
  outline-offset: 2px;
}

/* Your Journey Styles*/
/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: rgba(109, 110, 110, 1);
}

/* Journey Section */
.YourJourney-section {
  border-radius: 0;
  padding-top: 150px
}

.YourJourney-position-outer-container{
  position: relative;
}

.YourJourney-container {
  display: flex;
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
  margin-left: 70px;
  margin-bottom: 0;
}

.YourJourney-leftbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 330px;
  margin-top: 10px;
  font-weight: 400;
  z-index: 20; /* Ensures the left box is above the journey-1-content */
}

.YourJourney-title {
  color: rgba(109, 110, 110, 1);
  font-size: 40px;
  width: 241px;
  font-weight: 400;
}

.YourJourney-title-bold {
  font-weight: 600;
}

.YourJourney-description {
  color: #383838;
  font-size: 16px;
  align-self: stretch;
  margin-top: 43px;
  line-height: 22px;
}

.YourJourney-cta {
  border-radius: 29px;
  border: 3px solid rgba(107, 201, 239, 1);
  background-color: transparent;
  margin-top: 38px;
  padding: 16px 27px;
  font-size: 14px;
  color: rgba(139, 139, 139, 1);
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.3s;
  font-family: inherit;
  position: relative;
}

.YourJourney-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 201, 239, 0.5);
}

.YourJourney-cta:hover {
  background-color: rgba(107, 201, 239, 0.1);
  transform: scale(1.05);
}
.YourJourney-cta:focus-visible {
  outline: 2px solid rgba(107, 201, 239, );
  outline-offset: 2px;
}

/* Journey Steps (Right Section) */
.YourJourney-rightbox {
  width: 56%;
}

.YourJourney-steps-container {
  display: flex;
  padding-left: 25px;
  gap: 0;
  height: 100%;
}

/* Common Step Styles */
.YourJourney-step-1, .YourJourney-step-2, .YourJourney-step-3 {
  display: flex;
  flex-direction: column;
}

.YourJourney-step-content {
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 1;
  padding: 105px 31px;
  align-items: flex-start;
}

.YourJourney-middle-step-content {
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 1;
  padding: 105px 62px;
  align-items: flex-start;
}

.YourJourney-step-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.YourJourney-step-number {
  position: relative;
  color: rgba(193, 193, 193, 1);
  font-size: 18px;
  font-weight: 600;
  z-index: 1;
}

.YourJourney-step-title {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  align-self: stretch;
  margin-top: 12px;
  z-index: 1;
}

.YourJourney-step-description {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  margin-top: 11px;
  z-index: 1;
}

.YourJourney-step-arrow {
  aspect-ratio: 1.23;
  object-fit: contain;
  object-position: center;
  width: 16px;
  margin-top: 16px;
  z-index: 1;
}

/* Middle Step Styles */
.YourJourney-middle-step {
  margin: auto 0;
}

.YourJourney-step-circle {
  background-color: rgba(217, 217, 217, 1);
  border-radius: 50%;
  display: flex;
  padding: 11px 4px 91px 4px;
  flex-direction: column;
  align-items: flex-start;
  aspect-ratio: 1;
}

.YourJourney-step-image {
  aspect-ratio: 1.31;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 50%;
}

/* Last Step Styles */
.YourJourney-last-step {
  background-color: rgba(217, 217, 217, 1);
  border-radius: 50%;
  display: flex;
  margin: auto;
  width: 100%;
  padding: 4px 5px 93px 58px;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
}

.YourJourney-step-header {
  z-index: 10;
  display: flex;
  align-items: stretch;
  gap: 53px;
}

.YourJourney-step-title-container {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 50%;
  aspect-ratio: 1.218;
  width: 162px;
  padding-top: 102px;
  padding-bottom: 16px;
  font-size: 20px;
  color: rgba(109, 110, 110, 1);
  font-weight: 500;
}

/* Loading Circle Component Styles */
:root {
  --loading-circle-size: 300px;
}

.loading-circle {
  width: var(--loading-circle-size);
  height: var(--loading-circle-size);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 32px;
  left: -50px;
  margin: auto;
}

/* Size variants */
.loading-circle.small {
  --loading-circle-size: 100px;
}

.loading-circle.medium {
  --loading-circle-size: 200px;
}

.loading-circle.large {
  --loading-circle-size: 300px;
}

.loading-circle-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-circle-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-svg {
  animation: rotate 35s linear infinite;
}

/* Contact-us styles */

.contact-us-section {
  padding-top: 150px;
}

.contact-us-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* Main content section */
.contact-us-main-content {
  padding: 20px 70px;
  position: relative;
}

.contact-us-join-heading {
  color: #747474;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  max-width: 60%;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-us-bold-text {
  font-weight: 700;
}

.contact-us-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 60%; /* Changed from 953px to 60% */
  width: 60%; /* Added width property */
}

.contact-us-form-group {
  position: relative;
  margin-bottom: 8px; /* Add spacing between form groups */
}

/* Input field styling */
.contact-us-form-input {
  height: 41px;
  border-radius: 20px;
  border: 1px solid #9a9a9a;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.89);
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Textarea styling */
.contact-us-form-textarea {
  height: 100px; /* Increased from 85px for better writing space */
  border-radius: 20px;
  border: 1px solid #9a9a9a;
  padding: 15px 20px; /* More consistent padding with input fields */
  resize: none;
  background-color: rgba(255, 255, 255, 0.89);
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus states for form elements */
.contact-us-form-input:focus,
.contact-us-form-textarea:focus {
  outline: none;
  border-color: #41B8E8;
  box-shadow: 0 0 0 2px rgba(65, 184, 232, 0.2);
}

/* Submit button container - for proper alignment */
.contact-us-button-container {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

.contact-us-form-input[type="email"]:valid {
  border-color: rgba(60, 159, 138, 1);
  box-shadow: 0 0 0 1px rgba(60, 159, 138, 1);
}

.contact-us-form-input[type="email"]:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
  box-shadow: 0 0 0 1px #e74c3c;
}

.contact-us-form-input[type="email"]:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 1px #3498db;
}

.contact-us-form-textarea {
  height: 85px;
  border-radius: 20px;
  border: 1px solid #9a9a9a;
  padding: 20px;
  resize: none;
  background-color: rgba(255, 255, 255, 0.89);
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

.contact-us-submit-button {
  margin-top: 0px;
  height: 41px;
  border-radius: 20px;
  border: none;
  background-color: #747474;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  padding: 0 30px;
}

.contact-us-submit-button:hover {
  background-color: #5a5a5a;
  border-color: #9a9a9a;
}

.contact-us-decorative-image {
  position: absolute;
  right: 130px;
  top: 35px;
  width: 20%;
  height: calc(100% + 15%);
  z-index: -10;
  object-fit: contain; /* Changed from 'cover' to 'contain' to show full image */
  object-position: right top; /* Align image to the right top */
}

/* Footer section */
.contact-us-footer {
  padding: 48px 180px 72px;
  background-color: rgba(0, 0, 0, 0.69);
}

.contact-us-footer-content {
  display: flex;
  justify-content: space-between;
}

.contact-us-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-us-logo {
  width: 327px;
  height: 72px;
  opacity: 0.97;
}

.contact-us-contact-info {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
}

.contact-us-email {
  margin-bottom: 10px;
}

.contact-us-footer-nav {
  margin-right: auto;
  margin-left: 100px;
}

.contact-us-nav-divider {
  width: 225px;
  height: 2px;
  margin-bottom: 20px;
  background-color: #555;
}

.contact-us-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.contact-us-nav-link {
  color: #dbdbdb;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-us-nav-link:hover,
.contact-us-nav-link:focus {
  color: #ffffff;
  text-decoration: underline;
}

.contact-us-social-section {
  text-align: right;
  padding-top: 100px;
}

.contact-us-social-heading {
  color: #dbdbdb;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: left; /* Changed from text-align: right */
}

.contact-us-social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.contact-us-social-icon {
  display: block;
  text-decoration: none;
}

.contact-us-icon-placeholder {
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid #959595;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.contact-us-social-icon:hover .contact-us-icon-placeholder,
.contact-us-social-icon:focus .contact-us-icon-placeholder {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Form validation and message styles */
.contact-us-form-group-error .contact-us-form-input,
.contact-us-form-group-error .contact-us-form-textarea {
  border-color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.05);
}

.contact-us-error-message {
  color: rgba(102, 92, 161, 1);
  font-size: 12px;
  margin-top: 4px;
  padding-left: 20px;
}

.contact-us-form-message {
  padding: 12px 20px;
  max-width: 60%;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.contact-us-form-message-success {
  background-color: rgba(46, 204, 113, 0.1);
  border: 1px solid #2ecc71;
  color: #27ae60;
}

.contact-us-form-message-info {
  background-color: rgba(52, 152, 219, 0.1);
  border: 1px solid #3498db;
  color: #2980b9;
}

.contact-us-form-message-error {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid #e74c3c;
  color: #c0392b;
}

.contact-us-form-message-hiding {
  opacity: 0;
  transform: translateY(-10px);
}

.contact-us-submit-button-loading {
  background-color: #8a8a8a;
  cursor: not-allowed;
}

.contact-us-spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-left: 8px;
  vertical-align: middle;
}

/* Add after your existing @keyframes rotate {...} */

@keyframes rotate-first {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-second {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg); /* 360 + 45 */
  }
}

/* contact-us */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-third {
  0% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(450deg); /* 360 + 90 */
  }
}

/* Update the circle-svg classes */
.circle-svg.first {
  animation: rotate-first 35s linear infinite;
}

.circle-svg.second {
  animation: rotate-second 35s linear infinite;
}

.circle-svg.third {
  animation: rotate-third 35s linear infinite;
}

/* Animation for the rotating circle */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Accessibility - ensure focus visibility */
.loading-circle:focus {
  outline: 2px solid #58c1aa;
  outline-offset: 4px;
}

/* Add subtle pulse animation to enhance visual feedback */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.loading-circle:hover .circle-svg path:last-child {
  animation: pulse 1.5s ease-in-out infinite;
}

.YourJourney-connecting-line {
  display: flex;
  justify-content: center;
  padding: 187px 0px;
  max-width: fit-content;
  margin-right: 1.5%;
  margin-left: 0.2%;
}  

.YourJourney-brand-logo {
  aspect-ratio: 45.45;
  object-fit: contain;
  object-position: center;
  max-width: 91px;
  display: block;
  align-items: center;
}

.loading-circle:hover .circle-svg path:last-child {
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-circle-inner-text {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1;
  padding-top: 133px;
  padding-right: 50px;
  padding-bottom: 105px;
  padding-left: 31px;
  align-items: flex-start;
}

.section.journey-1-container, .section.journey-1-container {
  display: none !important;
  position: relative;
  overflow: hidden;

}

/* Main container */
.journey-1-container, .journey-2-container, .journey-3-container {
  display: none;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  gap: 170px;
  position: relative;
  overflow: hidden;
}

section.journey-1-container, .journey-2-container, .journey-3-container {
    position: relative;
    overflow: hidden;
}

section.journey-1-container::before,
section.journey-1-container::after,
section.journey-2-container::before,
section.journey-2-container::after, 
section.journey-3-container::before,
section.journey-3-container::after   {
    content: '';
    position: absolute; /* Changed from fixed to absolute */
    left: 0;
    right: 0;
    height: 40vh;
    pointer-events: none;
    z-index: 2;
}

section.journey-1-container::before,
section.journey-2-container::before,
section.journey-3-container::before {
    top: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 40%,
        rgba(255, 255, 255, 0) 100%
    );
}

section.journey-1-container::after, 
section.journey-2-container::after,
section.journey-3-container::after {
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 40%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* Left section - Journey intro */
.journey-1-intro, .journey-2-intro, .journey-3-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 90vh; /* This ensures full viewport height */
  padding: 2rem;
  box-sizing: border-box;
  gap: 20px;
  max-width: 336px;
}

.journey-1-intro, .journey-2-intro, .journey-3-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  box-sizing: border-box;
  /* Remove text-align: center */
}

.journey-1-title, .journey-2-title, .journey-3-title {
  font-size: 48px;
  color: #545454;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 2rem;
}

.journey-1-title, .journey-2-title, .journey-3-title {
  margin-bottom: 2rem;
  /* Add max-width to maintain left alignment within a reasonable reading width */
  max-width: 800px;
  font-size: 35px;
    font-weight: 600;
}

.journey-1-description, .journey-2-description, .journey-3-description {
  font-size: 14px;
  color: #868686;
  line-height: 1.5;
  max-width: 600px; /* Optional: limits text width for better readability */
  margin: 0 auto 2rem;
}

.journey-1-description, .journey-2-description, .journey-3-description {
  max-width: 600px;
  margin-bottom: 2rem;
}

.journey-1-cta, .journey-2-cta, .journey-3-cta {
  width: 195px;
  height: 45px;
  border: 3px solid #6bc9ef;
  border-radius: 22.5px;
  color: #8b8b8b;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.journey-1-cta, .journey-2-cta, .journey-3-cta {
  margin-top: 1rem;
  align-self: flex-start; /* Align button to the left */
}

.journey-1-cta:hover, .journey-2-cta:hover, .journey-3-cta:hover {
  background-color: #e6f7fc;
}

.journey-1-cta:focus, .journey-2-cta:focus, .journey-3-cta:focus {
  outline: 2px solid #45bae9;
  outline-offset: 2px;
}

/* Right section - Journey content */
.journey-1-content, .journey-2-content, .journey-3-content {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  min-height: unset; /* Match container height */
}

/* Add styles for journey-2-content and journey-3-content similar to journey-1-content */
.journey-2-content, .journey-3-content {
  display: none; /* Hidden by default */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 10;
}

/* Add visible state for journey content sections */
.journey-2-content.visible, .journey-3-content.visible {
  display: flex;
}

/* Add this to match the behavior of journey-1-content */
.YourJourney-rightbox .journey-2-content, 
.YourJourney-rightbox .journey-3-content {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 10;
}

/* Add visible state for journey content in rightbox */
.YourJourney-rightbox .journey-2-content.visible,
.YourJourney-rightbox .journey-3-content.visible {
  display: flex;
}

.journey-1-circle-background, .journey-2-circle-background, .journey-3-circle-background {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Perfect centering */
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 17%, white 32%, white 70%, transparent, 90%, transparent 100%);
}

.journey-1-details, .journey-2-details, .journey-3-details {
  position: relative;
  z-index: 1;
  padding: 40px;
  padding-bottom: 0;
  width: 35vw;
  max-width: 35vw;
  margin: 0 auto; /* Center the content */
}

/* Style specific behaviors for step transitions */
.YourJourney-steps-container.hidden {
  display: none;
}

/* Ensure SVG maintains aspect ratio */

/* Journey steps */
.journey-1-steps, .journey-2-steps, .journey-3-steps {
  display: flex;
  align-items: center; /* Align items vertically in the center */
  justify-content: space-between; /* Evenly distribute items */
  margin-bottom: 60px;
  margin-top: 20px;
  width: 100%; /* Take full width */
  max-width: 800px; /* Optional: limit maximum width */
}

.journey-1-step-item, .journey-2-step-item, .journey-3-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* For label positioning */
  flex: 0 0 auto; /* Prevent icons from growing/shrinking */
}

.journey-1-step-icon, .journey-2-step-icon, .journey-3-step-icon {
  width: 70px;
  height: 70px;
  margin: 0; /* Remove bottom margin */
  align-content: center;
}

.journey-1-step-line, .journey-2-step-line, .journey-3-step-line {
  flex: 1; /* Allow lines to grow and fill space */
  margin: 0 20px; /* Add equal spacing around lines */
}

.journey-1-step-line svg, .journey-2-step-line svg, .journey-3-step-line svg {
  width: 100%; /* Make SVG fill the line container */
  height: 100%;
}

.journey-1-step-label, .journey-2-step-label, .journey-3-step-label {
  font-size: 12px;
  font-weight: 700;
  color: #6d6e6e;
  position: absolute;
  top: 100%; /* Position below the icon */
  margin-top: 20px;
  white-space: nowrap; /* Prevent label from wrapping */
}

/* Journey navigation */
.jouney-2-navigation-container, .journey-3-navigation-container {
  display:flex;
  flex-direction: row;
}

.journey-1-navigation, .journey-2-navigation, .journey-3-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.journey-1-next-step, .journey-2-next-step, .journey-3-next-step {
  color: #3c9f8a;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.journey-2-previous-step {
  align-self: flex-start;
  color: #9659D8;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.journey-3-previous-step {
  color: #3c9f8a;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.journey-1-next-step:hover, .journey-2-next-step:hover {
  color: #58c1aa;
}

.journey-1-next-step:focus, .journey-2-next-step:focus {
  outline: 2px solid #58c1aa;
  outline-offset: 2px;
}

.journey-1-dots, .journey-2-dots, .journey-3-dots {
  color: #838383;
  font-size: 12px;
  font-weight: 600;
  align-self: center;
  text-align: center;
}

.journey-1-dots-container, .journey-2-dots-container, .journey-3-dots-container {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.journey-1-dot, .journey-2-dot, .journey-3-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.journey-1-dot:hover,
.journey-1-dot:focus, 
.journey-2-dot:hover,
.journey-2-dot:focus, 
.journey-3-dot:hover,
.journey-3-dot:focus {
  transform: scale(1.5);
  outline: none;
}

.journey-1-dot-purple, .journey-2-dot-purple, .journey-3-dot-purple {
  background-color: #6155a5;
}

.journey-1-dot-teal, .journey-2-dot-teal, .journey-3-dot-teal {
  background-color: #58c1aa;
}

.journey-1-dot-blue, .journey-2-dot-blue, .journey-3-dot-blue {
  background-color: #45bae9;
}

.journey-steps-description-container  {
  padding-top: 10px;
  padding-left: 10px;
}

.journey-steps-title-container {
  padding-top: 10px;
  padding-left: 10px; 
}

.journey-2-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

.journey-3-navigation-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

.journey-2-previous-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.journey-2-next-step {
  color: #41BBe8;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; /* Pushes the element to the right */
}

.circle-svg.journey-circle {
  height: 730px;
  animation: rotate 35s linear infinite;
}

.step-1-image-container {
display: flex;
flex-direction: column;
position: relative;
aspect-ratio: 1;
width: 100%;
padding: 18px 1px;
align-items: flex-start;
justify-content: center;
}

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

.icon-wrapper {
position: relative;
background-color: rgba(255, 255, 255, 1);
display: flex;
padding: 0 5px;
flex-direction: column;
align-items: center;
justify-content: center;
width: 31px;
height: 31px;
margin-left: 2px;
}

.feature-icon {
aspect-ratio: 1.04;
object-fit: contain;
object-position: center;
margin-left: 6px;
width: 23px;
}

.journey-3-step-icon {
width: 62px;
height: 61px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.journey-3-step-icon .image-container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}

.journey-3-step-icon .responsive-image {
width: 100%;
height: 100%;
object-fit: contain;
}

.journey-3-steps {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 60px;
width: 100%;
max-width: 800px;
position: relative;
}

.journey-3-step-item {
display: flex;
flex-direction: column;
align-items: center;
width: 62px;
position: relative;
}

.journey-3-step-line, journey-2-step-line, journey-1-step-line {
flex: 1;
display: flex;
align-items: center;
height: 2px;
margin: 0 20px;
position: relative;
}

/* Gradient line styles */
.gradient-line-1a {
left: 0; /* Change from 50% */
transform: none; /* Remove translateX */
top: 0; /* Change from 50% */
width: 100%; /* Change from fixed width */
height: 2px; /* Set fixed height */
background: linear-gradient(90deg, #DAD4FE 0%, #9388D0 100%);
}

.gradient-line-1b {
left: 0; /* Change from 50% */
transform: none; /* Remove translateX */
top: 0; /* Change from 50% */
width: 100%; /* Change from fixed width */
height: 2px; /* Set fixed height */
background: linear-gradient(90deg, #8878E2 0%, #4C4288 100%);
}

.gradient-line-2a {
position: absolute;
left: 0; /* Change from 50% */
transform: none; /* Remove translateX */
top: 0; /* Change from 50% */
width: 100%; /* Change from fixed width */
height: 2px; /* Set fixed height */
background: linear-gradient(90deg, #D4FEF1 0%, #76BAA4 100%);
}

.gradient-line-2b {
position: absolute;
left: 0; /* Change from 50% */
transform: none; /* Remove translateX */
top: 0; /* Change from 50% */
width: 100%; /* Change from fixed width */
height: 2px; /* Set fixed height */
background: linear-gradient(90deg, #76BAA4 0%, #508775 100%);
}

.gradient-line-3a {
position: absolute;
left: 0; /* Change from 50% */
transform: none; /* Remove translateX */
top: 0; /* Change from 50% */
width: 100%; /* Change from fixed width */
height: 100%; /* Change from 2px */
background: linear-gradient(90deg, #d4f3fe 0%, #90a7f4 100%);
}

.gradient-line-3b {
position: absolute;
left: 0; /* Change from 50% */


transform: none; /* Remove translateX */
top: 0; /* Change from 50% */
width: 100%; /* Change from fixed width */
height: 100%; /* Change from 2px */
background: linear-gradient(90deg, #90a7f4 0%, #4F93C5 100%);
}

.journey-3-step-line svg {
width: 100%;
height: 100%;
}

.journey-3-step-icon {
width: 62px;
height: 61px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.journey-3-step-label {
font-size: 12px;
font-weight: 700;
color: #545454;
text-align: center;
position: absolute;
bottom: -30px;
width: 100%;
}

.journey-2-step-line {
flex: 1;
display: flex;
align-items: center;
height: 2px;
margin: 0 20px;
position: relative;
}

.gradient-line-2a {
position: absolute;
left: 0;
transform: none;
top: 0;
width: 100%;
height: 2px; /* Set fixed height */
background: linear-gradient(90deg, #D4FEF1 0%, #76BAA4 100%);
}

/* Add this to your stylesheet */
.contact-email-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email-link:hover {
  color: #41B8E8;
  text-decoration: underline;
}

.contact-us-form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #747474;
}

.about-group-section-left-box-description {
color: #383838;
font-size: 16px;
align-self: stretch;
margin-top: 10px;
line-height: 22px;
}

/* Background color variants for about-me-person-background */
.about-me-person-background-purple {
    background-color: rgba(109, 98, 171, 1); /* Original purple color */
    transition: background-color 0.3s ease;
}

.about-me-person-background-purple:hover {
    background-color: rgba(99, 88, 161, 1); /* Slightly darker purple on hover */
}

.about-me-person-background-blue {
    background-color: rgba(65, 184, 232, 1); /* Blue color from logo */
    transition: background-color 0.3s ease;
}

.about-me-person-background-blue:hover {
    background-color: rgba(55, 174, 222, 1); /* Slightly darker blue on hover */
}

.about-me-person-background-green {
    background-color: rgba(60, 159, 138, 1); /* Green color from logo */
    transition: background-color 0.3s ease;
}

.about-me-person-background-green:hover {
    background-color: rgba(50, 149, 128, 1); /* Slightly darker green on hover */
}

/* This ensures the specific rules take precedence over the generic rule */
.about-me-person-background.about-me-person-background-green:hover {
    background-color: rgba(50, 149, 128, 1) !important;
}

.about-me-person-background.about-me-person-background-blue:hover {
    background-color: rgba(55, 174, 222, 1) !important;
}


/* Accessibility enhancements */
:focus {
  outline: 2px solid #6155a5;
  outline-offset: 2px;
}

/* For screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.YourJourney-rightbox .journey-1-content {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 10;
}

/* Navigation hover effects to match active state */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

/* Hover effect styling that matches active state */
.nav-link:hover:not(.nav-link-active) {
  color: #41B8E8;
}

.nav-link:hover:not(.nav-link-active)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #41B8E8;
  animation: navFadeIn 0.3s ease;
}

/* Ensure hover doesn't show when item is already active */
.nav-link-active:hover::after {
  animation: none;
}


.contact-us-image-container {
    max-width: 953px;
    position: relative;
    margin: 0 auto;
    margin-top: -25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: visible !important; /* Override to allow highlights to show beyond bounds */
}

.contact-us-image-container:focus-within {
    outline: none;
}

.contact-us-responsive-image {
    aspect-ratio: 1.46;
    object-fit: contain;
    object-position: center;
    width: 100%;
    transition: opacity 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    border: none;
    background: transparent;
}

.contact-us-responsive-image:hover {
    filter: brightness(1.05) contrast(1.02);
}

.contact-us-responsive-image:focus {
    outline: none;
}

.contact-us-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.contact-us-zoom-indicator {
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.contact-us-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

map area {
    cursor: pointer;
}

area[title]:hover:after {
    content: attr(title);
    position: absolute;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    z-index: 100;
}


/* Debug styles for image map areas - red circles */
.map-area-debug-overlay {
    position: absolute;
    border: 2px solid red;
    background-color: rgba(255, 0, 0, 0.2);
    pointer-events: none;
    z-index: 100;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-highlight-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 50;
    overflow: visible; /* Ensure container allows overflow */
}

.contact-us-area-highlight {
    position: absolute;
    border: 4px solid #41B8E8; /* Changed from 3px to 4px */
    background-color: rgba(65, 184, 232, 0.2);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0; /* Start invisible */
    transition: opacity 0.2s ease; /* Smooth transition */
    z-index: 100;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    /* animation: pulse 2s infinite; */
}


/* Make sure tooltips transition smoothly too */
.contact-us-area-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 100;
}


/* Modal styles */
.contact-us-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  overflow: auto;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  }

.contact-us-modal.show {
  opacity: 1;
  display: flex;
}

.contact-us-modal-content {
  background-color: #fff;
  margin: 10% auto;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.contact-us-modal.show .contact-us-modal-content {
  transform: translateY(0);
}

.contact-us-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.contact-us-modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
}

.contact-us-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  border: none;
  background: transparent;
  cursor: pointer;
}

.contact-us-modal-close:hover {
  color: #333;
}

.contact-us-modal-body {
  padding: 20px;
  line-height: 1.5;
  }



/* Hero Section Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.6;
}

/* Main wrapper */
.about-me-person-wrapper {
    padding-top: 139px;
    position: relative;
}



/* Person background container */
.about-me-person-background {
    background-color: rgba(109, 98, 171, 1);
    display: flex;
    width: 100%;
    padding: 0 70px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: background-color 0.3s ease;
}





/* Person content container */
.about-me-person-content {
    z-index: 10;
    margin: -139px 0 -155px 0;
    width: 1212px;
    max-width: 100%;
    position: relative;
}



/* Content grid layout */
.about-me-content-grid {
    gap: 20px;
    display: flex;
    align-items: center;
    min-height: 500px;
}



/* Testimonial column */
.about-me-testimonial-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 50%;
    margin-left: 0;
}



/* Testimonial quote styling */
.about-me-testimonial-quote {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 1.4;;
    font-weight: 500;
    margin: auto 0;
    align-self: stretch;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    quotes: """ """ "'" "'";
}





/* Image column */
.about-me-image-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 50%;
    margin-left: 200px;
    margin-right: 40px;
}



/* Person image styling */
.about-me-person-image {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-radius: 50%;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-me-person-image.loaded {
    opacity: 1;
    transform: translateY(0);
}

.about-me-person-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.about-me-person-image:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

/* Info section */
.about-me-info-section {
    display: flex;
    padding-left: 70px;
    margin-top: 50px;
    width: 595px;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    color: rgba(83, 83, 83, 1);
}

/* Info content container */
.about-me-info-content {
    display: flex;
    flex-direction: column;
}

/* Section title */
.about-me-section-title {
    font-size: 30px;
    font-weight: 500;
    align-self: flex-start;
    margin: 0;
    color: rgba(83, 83, 83, 1);
    transition: color 0.3s ease;
}

.about-me-section-title:hover {
    color: rgba(109, 98, 171, 1);
}

/* Section description */
.about-me-section-description {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.about-me-section-description:hover {
    color: rgba(63, 63, 63, 1);
}

/* Call-to-action button */
.about-me-cta-button {
    background-color: rgba(109, 98, 171, 1);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.about-me-cta-button:hover {
    background-color: rgba(99, 88, 161, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 98, 171, 0.3);
}

.about-me-cta-button:focus {
    outline: 2px solid rgba(109, 98, 171, 0.8);
    outline-offset: 2px;
}

.about-me-cta-button:active,
.about-me-cta-button.clicked {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(109, 98, 171, 0.3);
}

.about-me-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.about-me-cta-button:hover::before {
    width: 100%;
    height: 100%;
}

/* Social icons container */
.about-me-social-icons {
    position: absolute;
    right: 60px;
    top: 62%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

/* Individual social icon */
.about-me-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
}

.about-me-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-me-social-icon:active {
    transform: scale(0.95);
}

.about-me-social-icon i {
    font-size: 20px;
}

/* Tooltip for social icons */
.about-me-social-icon .tooltip {
    position: absolute;
    right: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-me-social-icon:hover .tooltip {
    opacity: 1;
    right: 55px;
}

/* Accessibility enhancements */
.about-me-keyboard-navigation *:focus {
    outline: 2px solid rgba(109, 98, 171, 1);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Add this to your CSS */
.about-group-container[data-view-state="profile"] .about-me-person-wrapper {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    opacity: 1;
    animation: fadeIn 0.4s ease-in-out;
}



/* This ensures that the profile is visible when shown */
.about-group-container[data-view-state="profile"] .about-me-person-wrapper,
.about-group-container[data-view-state="profile"] .about-me-person-wrapper[style*="display:none"],
.about-group-container[data-view-state="profile"] .about-me-person-wrapper[style*="display: none"] {
    display: flex !important; /* The !important is needed to override inline styles */
}

/* Add to your CSS */
.profile-hidden {
    display: none !important;
}

.about-group-container[data-view-state="profile"] .about-me-person-wrapper:not(.profile-hidden) {
    display: flex !important;
}

/* Add this to your style.css */
.about-group-container[data-view-state="profile"] .about-me-person-wrapper {
    cursor: pointer;
}

/* Add a subtle hover effect */
.about-group-container[data-view-state="profile"] .about-me-person-wrapper:hover {
    opacity: 0.95;
}

/* Add a small hint text at the bottom of profile */
.about-group-container[data-view-state="profile"] .about-me-person-wrapper::after {
    content: "Click anywhere to close";
    display: block;
    text-align: center;
    padding: 8px;
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

/* Override the base background color for specific color variants */
.about-me-person-background.about-me-person-background-green {
    background-color: rgba(60, 159, 138, 1) !important; /* Green color */
}

.about-me-person-background.about-me-person-background-blue {
    background-color: rgba(65, 184, 232, 1) !important; /* Blue color */
}

.about-me-person-background.about-me-person-background-purple {
    background-color: rgba(109, 98, 171, 1) !important; /* Purple color */
}

/* Base styling for the LinkedIn icon without color specifics */
.about-me-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
}

/* Remove the purple color from base class */
.about-me-social-icon i {
    font-size: 20px;
    /* Color removed from here */
}
/* Enhanced LinkedIn icon styling to override browser defaults */
.about-me-social-icon i.fab.fa-linkedin-in {
    color: inherit !important; /* Force inherit color from parent */
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Make sure the LinkedIn icon gets the correct color */
.about-me-person-background-purple + .about-me-info-section + .about-me-social-icons .about-me-social-icon i {
    color: rgba(109, 98, 171, 1) !important; /* Purple color */
}

.about-me-person-background-green + .about-me-info-section + .about-me-social-icons .about-me-social-icon i {
    color: rgba(60, 159, 138, 1) !important; /* Green color */
}

.about-me-person-background-blue + .about-me-info-section + .about-me-social-icons .about-me-social-icon i {
    color: rgba(65, 184, 232, 1) !important; /* Blue color */
}

/* Hover states for the icons */
.about-me-person-background-purple + .about-me-info-section + .about-me-social-icons .about-me-social-icon:hover i {
    color: rgba(99, 88, 161, 1) !important; /* Darker purple on hover */
}

.about-me-person-background-green + .about-me-info-section + .about-me-social-icons .about-me-social-icon:hover i {
    color: rgba(50, 149, 128, 1) !important; /* Darker green on hover */
}

.about-me-person-background-blue + .about-me-info-section + .about-me-social-icons .about-me-social-icon:hover i {
    color: rgba(55, 174, 222, 1) !important; /* Darker blue on hover */
}


@media (max-width: 1280px) {
  .YourJourney-leftbox {
    width: 240px;
    
  }
}

/* Responsive styles for Thinkpad Alcely */
@media (max-width: 1257px) and (min-width: 1201px){
  .contact-us-section {
    padding-top: 240px;

  }
  
}

/* Add these styles to your style.css file */
@media screen and (max-width: 1200px) {
  .navigation-container {
    flex-wrap: nowrap; /* Prevent wrapping to next line */
    align-items: center;
  }
  
  .menu-section {
    flex-wrap: nowrap; /* Prevent wrapping inside menu */
    overflow-x: auto; /* Enable horizontal scrolling */
    -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    white-space: nowrap; /* Prevent text wrapping */
    gap: 20px; /* Reduce gap between items */
    padding-right: 10px; /* Add space for scrolling */
  }
  
  .menu-section::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari/Opera */
  }
  
  .nav-link {
    padding: 0 6px; /* Reduce horizontal padding */
  }
  
  .contact-section {
    flex-shrink: 0; /* Prevent contact section from shrinking */
  }

  .loading {
      text-align: center;
      padding: 40px;
      font-style: italic;
  }
  .blog-error {
      text-align: center;
      color: #e74c3c;
      padding: 40px;
  }
  .blog-category {
      display: inline-block;
      background: #f8f9fa;
      padding: 4px 10px;
      border-radius: 4px;
      margin-right: 8px;
      margin-bottom: 8px;
      font-size: 0.85rem;
      color: #666;
  }
}

@media (max-width: 1025px) {
  .YourJourney-container {
    flex-direction: column;
  }

  .differentiator-content-wrapper {
    height: 430px;
  }

  .differentiator-praxxi-different-group {
      padding-top: 90px !important;
  }

  .about-group-section {
    height: unset;
  }

  .contact-us-section {
    padding-top: 0px;
  }

  .differentiator-outcomes-card,
  .differentiator-leadership-card,
  .differentiator-m-card,
  .differentiator-o-card {
    height: 60vh;
  }

  .differentiator-praxxi-different-group,
  .differentiator-background-image-container {
    height: 62vh;
  }

}

@media (max-width: 991px) {
  .YourJourney-section {
    padding-top: 420px;
    padding-left: 50px;
    height: unset;  
  }

  .differentiator-outcomes-card,
  .differentiator-leadership-card,
  .differentiator-m-card,
  .differentiator-o-card {
    height: 13vh;
  }

  .differentiator-praxxi-different-group,
  .differentiator-background-image-container {
    height: 15vh;
  }

  .differentiator-leadership-title.differentiator-backcard-title {
    margin-top: 0px;
    font-size: 14px;
  }

  .contact-us-visually-hidden {
    font-size: 14px;
  }

  .contact-us-section {
    width: unset;
  }

  section.journey-1-container::before,
  section.journey-1-container::after,
  section.journey-2-container::before,
  section.journey-2-container::after, 
  section.journey-3-container::before,
  section.journey-3-container::after   {
      height: 15vh;
  }

  .icon-wrapper {
    margin-left: 0;
  } 

  .journey-1-step-description, .journey-2-step-description, .journey-3-step-description {
    padding-left: 40px;
    margin-top: 10px;
    font-size: 14px;
  }

  .journey-1-step-icon, .journey-2-step-icon, .journey-3-step-icon {
    width: 60px;
    height: 60px;
    margin: 0; /* Remove bottom margin */
    align-content: center;
  }

  .step-1-image-container {
    width: 90%;
    padding: 0;
  }

  .journey-1-navitation-container, .journey-2-navigation-container, .journey-3-navigation-container  {
    padding: 20px 0px 0px 0px;
  }

  .circle-svg.journey-circle {
    width: 600px;
    height: 600px;
    animation: rotate 35s linear infinite;
    min-width: 600px;
    min-height: 600px;
  }

  .journey-1-intro, .journey-2-intro, .journey-3-intro  {
    display: none;
  }

  .contact-us-bold-text {
    display: inline-block;
  }

  .loading-circle {
    position: relative;
    top: 0;
    left: -55px;
    width: 300px;
    aspect-ratio: 1;
  }

  .loading-circle-inner-text {
    padding: 103px 74px 232px 300px;
    align-items: flex-start;
  }

  .YourJourney-step-number {
    font-size: 14px;
  }

    .YourJourney-brand-logo {
    rotate: 90deg;
    max-width: 80px;
    margin-left: 0;
    position: relative;
    left: 0;
    transform: none;
  }

  .YourJourney-connecting-line {
    position: relative;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .RWI-description-container {
    flex-direction: column;
    gap: 2px;
  }

  .RWI-description-column {
    width: 100%;
    padding: 0;
  }

  .RWI-impact-group {
    height: unset;
    padding-left: 60px;
    padding-right: 0;
    padding-top: 20px;
  }

  .RWI-category-item {
    width: 80vw;
  }

  .community-section {
    padding: 0 20px;
    max-width: 100%;
  }

  .community-content {
    flex-direction: column;
  }

  .community-message-column,
  .community-image-column {
    width: 100%;
  }

  .community-heading {
    font-size: 40px;
    margin-top: 40px;
  }

  .community-image {
    margin-top: 40px;
  }

  .community-footer {
    padding: 40px 20px;
  }

  .community-footer-sections {
    flex-direction: column;
  }

  .community-footer-nav,
  .community-social-section {
    width: 100%;
  }

  .community-nav-list {
    margin-top: 40px;
  }

  .community-social-content {
    margin-top: 40px;
  }

/* Navigation Styles ------ */

  .navigation-wrapper {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 0px;
  }

  .navigation-container {
    max-width: 100%;
    gap: 0;
  }

  .menu-section {
    max-width: 100%;
  }

  /* responsive Banner styles */
  .banner-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .banner-content-column {
    width: 100%;
  }

  .banner-content-wrapper {
    max-width: 100%;
    margin-top: 30px;
    margin-right: 0px;
    
  }

  .banner-main-heading {
    max-width: 100%;
    font-size: 30px;
  }

  .banner-content-details {
    margin-top: 40px;
  }

  .banner-description {
    max-width: 100%;
  }

  .banner-cta-button {
    padding: 16px 20px;
    margin-top: 20px;
    position: relative;
    cursor: pointer;
  }



  .banner-navigation-links {
    max-width: 100%;
    margin-top: 40px;
    gap: 40px;
  }

  .banner-image-column {
    width: 100%;
    margin-left: 0;
    height: auto;
  }

  .banner-image {
    max-width: 100%;
    margin-top: 40px;
  }

  .journey-1-container, .journey-2-container, .journey-3-container {
    max-width: 991px;
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .journey-1-circle-background, .journey-2-circle-background, .journey-3-circle-background {
    width: 1000px;
    height: unset;
  }

  .journey-1-steps, .journey-2-steps, .journey-3-steps {
    align-items: center;
    gap: 0px;
  }

/* RWImpact-Group Styles*/

  .RWI-impact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0;  }

  .about-group-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0;  }

  .RWI-impact-sidebar {
    width: 100%;
  }

  .RWI-sidebar-content {
    margin-top: 0px;
  }

  .RWI-impact-title {
    font-size: 30px;
  }

  .RWI-impact-categories {
    margin-top: 25px;
    width: 8px;
  }

  .RWI-category-economic {
    margin-right: 10px;
    margin-top: 40px;
  }

  .RWI-category-health {
    margin-top: 40px;
  }

  .RWI-category-mobility {
    margin-top: 40px;
  }

  .RWI-category-planning {
    margin-top: 40px;
  }

  .RWI-impact-main {
    width: 100%;
    margin-left: 0;
  }

  .RWI-main-content {
    max-width: 100%;
    margin-top: 40px;
  }

  .RWI-impact-image {
    max-width: 100%;
  }

  .RWI-impact-description {
    margin-top: 40px;
  }

  .RWI-description-text {
    margin-top: 0px;
    padding-right:10px;
  }

  .RWI-quote-column {
    width: 100%;
    margin-left: 0;
  }


  .RWI-impact-quote {
    margin-top: 40px;
    font-size: 18px;
  }

  .RWI-content-divider {
    max-width: 100%;
    margin-top: 20px;
  }

  /* Hovercars for RWI Styles*/
  .hovercard-resilience-container {
    flex-direction: column;
    width: 100%;
    gap: 40px;
  }

  .hovercard-content-wrapper {
    padding: 40px 20px;
  }

  .hovercard-image-wrapper {
    width: 100%;
    height: 400px;
  }

  .hovercard-section-title {
    font-size: 24px;
    margin-top: 50px;
  }

  .hovercard-accent-marker {
      left: 23px;
  }  

  .hovercard-divider-bottom {
      bottom: 215px;
  }

/* about group responsive styles */

  .about-group-section {
    height: unset;
    padding-left:60px;
    padding-right: 0;
    padding-top: 50px;
  }

  .about-group-main-heading {
    width: unset;
    max-width: 100%;
    font-size: 30px;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 0px;
  }

  .about-group-section-heading {
    max-width: unset;
    width: 80vw;
  }

  .about-group-divider {
    max-width: 100%;
    margin-top: 0;
  }

  .about-group-content-row {
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    width: unset; 
    padding: 0;
  }

  .about-group-section-text {
    width: 100%;
    margin-top: 0px;
    padding-right: 10px;
  }

  .about-group-section-text-column {
    width: 100%;
    margin-left: 0;
  }

  .differentiator-praxxi-different-group {
    padding-left: 55px;
    height: unset;
  }

  .differentiator-praxxi-different-group .differentiator-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1;
    width: 80vw;
    height: auto; 
  }

  .differentiator-container {
    position: relative;
    bottom: auto;
  }

  .differentiator-leadership-card.differentiator-white-background {
    width: 80vw;
  }

  .differentiator-content-column {
    width: 100%;
    margin-left: 0;
    position: relative;
  }

  .differentiator-intro-column {
    padding-bottom: 20px;
  }

  .differentiator-intro-column,
  .differentiator-content-column,
  .differentiator-leadership-column,
  .differentiator-methodology-column,
  .differentiator-outcomes-column,
  .differentiator-outcomes-text-column,
  .differentiator-outcomes-image-column {
    width: 100%;
    margin-left: 0;
  }

  .differentiator-intro-content {
    margin-top: -3vh;
  }

  .differentiator-main-heading {
    width: 65%;
  }

  .differentiator-main-description {
    color: #383838;
    font-size: 16px;
    margin-top: 20px;
  }

  .differentiator-main-description-p2 {
    color: #383838;
    font-size: 16px;
    margin-top: 8px;
  }


  .differentiator-leadership-description {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 12px;
  }

  .no-text-break {
    white-space: pre;
  }

  .differentiator-leadership-content-back {
    margin-top: 0px;
  }

  .differentiator-leadership-title:not(:first-child) {
    margin-top: 15px;
  }

  .differentiator-methodology-content {
    margin-top: 40px;
  }

  .differentiator-methodology-card {
    padding-bottom: 100px;
  }

  .differentiator-leadership-card {
    width: 80vw;
  }

  .differentiator-m-card {
    width: 80vw;
  }

  .differentiator-o-card {
    width: 80vw;
  }

  .differentiator-leadership-card .differentiator-white-background {
    width:90vw;
  }

  .differentiator-card-icon {
    margin-right: 10px;
  }

  .differentiator-card-content {
    margin-bottom: 10px;
    padding: 0 20px;
    margin-top: 0px;
  }

  .differentiator-card-description {
    margin-top: 40px;
  }

  .differentiator-outcomes-wrapper {
    margin-top: 36px;
  }

  .differentiator-outcomes-card .differentiator-card-description {
    margin-top: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .YourJourney-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 5vh;
    margin-left: 0px;
  }

  .YourJourney-leftbox {
    width: 100%;
    margin-top: 0;
  }

  .YourJourney-title {
    font-size: 30px;
  }

  .YourJourney-description {
    margin-top: 40px;
  }

  .YourJourney-cta {
    padding: 16px 20px;
    margin-left: 0px;
  }

  .YourJourney-rightbox {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 75px;
    padding-bottom: 50px; 
  }

  .YourJourney-steps-container {
    flex-direction: column;
    padding-left: 0px;
    text-align: center;
  }

  .YourJourney-step-content {
    padding: 0px 20px;
    height:300px;
  }

    .YourJourney-step-content .loading-circle {
    position: relative;
    left: auto;
    margin: 0 auto;
    top: 0;
  }

    .loading-circle-container,
  .loading-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .YourJourney-step-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
  }


  .YourJourney-step-circle {
    padding-right: 20px;
    margin-top: 40px;
  }

  .YourJourney-last-step {
    margin-top: 40px;
    padding-left: 20px;
  }

  .YourJourney-step-title-container {
    padding-top: 100px;
  }

  .journey-1-navigation, .journey-2-navigation, .journey-3-navigation {
    gap: 20px;
  }

  .journey-1-step-title, .journey-2-step-title, .journey-3-step-title {
    font-size: 1.1em;
    text-align:center;
  }

  .banner-image-column {
    max-width: 100%;
    display: none;
  }

  /* Responsive styles for contact-us 991px */
  .contact-us-main-content {
    padding-top: 30px;
    padding-left: 60px;
    padding-right: 0px;
    padding-bottom: 40px;
  }

  .contact-us-contact-form {
    max-width: 88%;
    width: 88%;
  }

  .contact-us-form-input,
   .contact-us-form-textarea {
    font-size: 16px; /* Larger text on mobile for better readability */
   }


  .contact-us-join-heading {
    font-size: 30px;
  }

  .contact-us-footer {
    padding: 40px;
  }

  .contact-us-footer-content {
    flex-direction: column;
  }

  .contact-us-logo {
    width: 200px;
    height: auto;
  }

  .contact-us-nav-link {
    font-size: 10px;
  }

  .contact-us-social-icons {
    justify-content: center;
  }

  .differentiator-outcomes-card {
    width: 80vw;
  }

  .differentiator-content-wrapper {
    padding-left: 0;
  }

  .contact-us-responsive-image {
      max-width: 100%;
  }

  .contact-us-image-container {
      margin: 0 16px;
  }

  .about-me-person-wrapper {
      padding-top: 100px;
  }

  .about-me-person-background {
      max-width: 100%;
      padding: 0 20px;
  }

  .about-me-person-content {
      margin-bottom: 10px;
      margin-top: 0px;
  }

  .about-me-content-grid {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      min-height: auto;
  }

  .about-me-testimonial-column {
      width: 100%;
  }

  .about-me-testimonial-quote {
      max-width: 100%;
      margin-top: 20px;
      font-size: 16px;
      line-height: 1.5;
  }

  /* Section title and description sizes for tablets */
  .about-me-section-title {
    font-size: 26px;
  }
  
  .about-me-section-description {
    font-size: 18px;
    line-height: 1.5;
  }

  .about-me-image-column {
      width: 100%;
      margin-left: 0;
  }

  .about-me-person-image {
      max-width: 100%;
      margin-top: 40px;
  }

  .about-me-info-section {
      margin: 40px 20px 0 20px;
      width: auto;
  }

  .about-me-section-description {
      max-width: 100%;
      font-size: 20px;
  }

  .about-me-social-icons {
      right: 20px;
      top: auto;
      bottom: 20px;
      flex-direction: row;
  }
  
  .about-me-social-icon .tooltip {
      right: auto;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
  }
  
  .about-me-social-icon:hover .tooltip {
      right: auto;
      bottom: 55px;
  }

    .about-group-content {
    flex-direction: column;
  }
}

@media (max-width: 912px) {
  .YourJourney-section {
    padding-top: 510px;
  }

  .YourJourney-righbox {
    width: 84% !important;
  }

  .loading-circle-inner-text {
    padding-left: 350px;
    
  }
}

@media (max-width: 855px) {
  .differentiator-content-wrapper {
  height: 765px;
}

  .differentiator-praxxi-different-group {
    padding-top: 30px !important;
  }

  .about-group-subheading {
    width: 70%;
    padding-right: 0;
    padding-top: 10px;
  }

  .YourJourney-section {
    padding-top: 510px;
  }
}

@media (max-width: 768px) {
  .differentiator-content-wrapper {
    height: 670px;
  }

    .differentiator-outcomes-card,
  .differentiator-leadership-card,
  .differentiator-m-card,
  .differentiator-o-card {
    height: 20vh;
  }

  .differentiator-praxxi-different-group,
  .differentiator-background-image-container {
    height: 22vh;
  }

  .contact-us-image-container:hover {
      transform: none;
      box-shadow: none;
  }

  .contact-us-image-overlay {
      display: none;
  }

  .YourJourney-section {
    padding-top: 640px;
  }
}

@media (max-width: 540px) {
  .differentiator-content-wrapper {
    height: 550px;
  }

  .YourJourney-section {
    padding-top: 630px;
  }

  .loading-circle-inner-text {
    padding-left: 162px;
    padding-right: 12px;
  }

  .differentiator-outcomes-card,
  .differentiator-leadership-card,
  .differentiator-m-card,
  .differentiator-o-card {
    height: 23vh;
  }

  .differentiator-praxxi-different-group,
  .differentiator-background-image-container {
    height: 25vh;
  }
}

@media (max-width: 480px) {
  /* height of differentiator cards wrapper */
  .differentiator-content-wrapper {
    height: 620px;
  }

  .differentiator-outcomes-card,
  .differentiator-leadership-card,
  .differentiator-m-card,
  .differentiator-o-card {
    height: 22vh;
  }

  .differentiator-praxxi-different-group,
  .differentiator-background-image-container {
    height: 22vh;
  }

  .loading-circle {
    height: 300px;
    aspect-ratio: 1;
    margin: 0;
    scale: 73%
  }

  .about-me-info-section {
    margin-top: 20px !important;
    margin-right: 50px !important;
    padding-left: 0px !important;
  }

  .about-me-social-icons {
    right: 0 !important;
    left: auto;
  }


  .about-me-testimonial-quote {
      font-size: 14px; /* Further reduced size for smallest screens */
      line-height: 1.4;
  }

  /* Smaller section title and description for mobile phones */
  .about-me-section-title {
    font-size: 22px;
    line-height: 1.1;
  }
  
  .about-me-section-description {
    font-size: 16px;
    line-height: 1.4;
  }


  .contact-us-decorative-image {
    right: 30px;
  }

  .YourJourney-steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .YourJourney-step-background, 
  .YourJourney-step-number,
  .YourJourney-step-descrition {
    align-self: center;
  }

  .YourJourney-step-title {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    align-self: stretch;
    margin-top: 0;
    z-index: 1;
    align-self: center;
  }

  .contact-us-contact-form {
    max-width: 90%;
    width: 90%;
  }
  
  .contact-us-form-label {
    font-size: 13px;
  }

  .about-group-diagram-content {
    margin-top: 20px;
    width: 110%;
  }

  .about-group-subheading {
    width: 70%;
    padding-right: 0;
    padding-top: 10px;
  }

  .contact-us-section {
    padding-top: 50px;
  }

  .YourJourney-step-arrow {
    aspect-ratio: 1.23;
    object-fit: contain;
    object-position: center;
    width: 16px;
    margin-top: 0;
    z-index: 1;
    align-self: center;
  }

    /* More precise alignment for mobile screens */
  .YourJourney-connecting-line {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
  }

    .YourJourney-brand-logo {
    rotate: 90deg;
    max-width: 80px;
    margin-left: 0;
    position: relative;
    left: 0;
    transform: none;
  }

  .loading-circle-inner-text {
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: 1;
    padding-top: 69px;
    padding-right: 90px;
    padding-bottom: 232px;
    padding-left: 90px;
    align-items: flex-start;
  }

  .about-group-content {
    flex-direction: column;
  }

  .YourJourney-section {
    padding-top: 650px;
    padding-left: 50px;
    height: unset;  
  }

  .journey-1-details, .journey-2-details, .journey-3-details {
    position: relative;
    z-index: 1;
    padding: 0px;
    padding-bottom: 0;
    width: unset;
    max-width: unset;
    margin: 0 auto; /* Center the content */
  }

  
  .differentiator-outcomes-card {
    width: 80vw;
    height: 20vh;
  }

  :root {
    --loading-circle-size: 200px;
  }
  
  .navigation-container {
    position: relative;
    gap: 0;
  }

  .menu-section {
    display: none; /* Hide the regular menu */
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    width: 200px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
    flex-direction: column;
    gap: 20px;
  }

  .menu-section.active {
    display: flex;
  }

  .hamburger-menu {
    display: block; /* Show hamburger icon */
    position: absolute;
    left: 20px; /* Changed from right: 20px */
    top: 20px;
    width: 25px;
    height: 22px;
    cursor: pointer;
    z-index: 1000;
  }

  .hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #747474;
    transition: .3s all ease;
  }

  .hamburger-menu span:nth-child(1) { top: 0; }
  .hamburger-menu span:nth-child(2) { top: 10px; }
  .hamburger-menu span:nth-child(3) { top: 20px; }

  /* Active hamburger state */
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }

  .company-logo {
    margin-left: 30px; /* Added to create space for hamburger menu */
  }

  .menu-section {
    position: absolute;
    top: 60px;
    left: 0; /* Changed from right: 0 */
    background-color: white;
    width: 200px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
    flex-direction: column;
    gap: 20px;
  }

  .contact-section {
    gap: 8px; /* Hide the contact section on mobile */
  }

  .banner-group {
    padding: 10px 0px 0 55px;
    height: 60vh;
    width: 95vw;
  }

  .banner-navigation-links {
    display: none; /* Hide the navigation links on mobile */
  }

  .contact-us-footer-content {
    gap: 0;
  }

  .YourJourney-step-content {
    padding: 0;
    height: 240px;
    align-self: center;
  }

  .YourJourney-container {
    margin-top: 140px;
  }

   .YourJourney-rightbox {
    width: 85%;
  }

  .contact-us-footer-nav {
    margin: unset;
    margin-top: 10px;
  }

  .contact-us-nav-links {
    display: none;
    flex-direction: row;
    gap: 50px;
  }

  .contact-us-social-section {
    padding-top: 40px; 
  }

  .contact-us-social-heading {
    font-size: 12px;
  }
}

@media (max-width: 413px) {
  .differentiator-praxxi-different-group {
    padding-top: 0px !important;
  }
}

@media (max-width: 394px) {
  .differentiator-praxxi-different-group {
    padding-top: 20px !important;
  }  

    .differentiator-outcomes-card,
  .differentiator-leadership-card,
  .differentiator-m-card,
  .differentiator-o-card {
    height: 20vh;
  }

  .differentiator-praxxi-different-group,
  .differentiator-background-image-container {
    height: 22vh;
  }

  .about-group-subheading {
    width: 100%;
  }     

    .YourJourney-section {
    padding-top: 640px;
  }

  .differentiator-content-wrapper {
    height: 565px;
  }
  
  .YourJourney-section {
    padding-top: 580px;
  }
}

@media (max-width: 380px) {
  .differentiator-praxxi-different-group {
    padding-top: 150px !important;
  }

  .differentiator-content-wrapper {
    height: 620px;
  }

  .differentiator-outcomes-card,
  .differentiator-leadership-card,
  .differentiator-m-card,
  .differentiator-o-card {
    height: 28vh;
  }

  .differentiator-praxxi-different-group,
  .differentiator-background-image-container {
    height: 30vh;
  }

  .YourJourney-section {
      padding-top: 780px;
  }

}

@media (max-width: 360px) {
  .YourJourney-section {
    padding-top: 860px;
  }
}

@media (max-width: 350px) {
  .differentiator-praxxi-different-group {
    padding-top: 180px;
  }

  .differentiator-background-image {
    width: 265px;
  }

  .differentiator-main-heading {
    width: 100%;
  }
  
  .YourJourney-rightbox {
    padding-top: 25px;
  }

  .YourJourney-section {
    padding-top: 470px;
  }

  .contact-us-section {
    padding-top: 0px;
  }

  .contact-us-decorative-image {
    right: 12px;
  }

  .about-group-section {
      padding-top: 10px;
  }

  .RWI-quote-column {
    margin-bottom: 0;
  }

  
  .RWI-impact-group {
    padding-top: 0px;
    padding-left: 50px;
  }

  .YourJourney-rightbox {
    padding-bottom: 20px;
  }    

  .RWI-impact-image {
    max-width: 90%;
  }

  .banner-group, 
  .about-group-section {
    padding-left: 50px;
  }

  .differentiator-praxxi-different-group {
    padding-left: 50px;
    padding-top: 45px !important;
  }

}

@media (max-width: 344px) {
  .YourJourney-section {
    padding-top: 750px;
  }

  /* height of differentiator cards wrapper */
  .differentiator-content-wrapper {
    height: 800px;
  }
}


/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .YourJourney-cta {
    transition: none;
  }
}

/* High contrast mode support */
@media (forced-colors: active) {
  .YourJourney-cta {
    border: 3px solid CanvasText;
  }
}

@keyframes rotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-us-image-container:focus-within {
        outline: 3px solid #000;
        outline-offset: 2px;
    }

    .about-me-person-background {
        background-color: rgba(0, 0, 0, 1);
    }

    .about-me-testimonial-quote {
        color: rgba(255, 255, 255, 1);
        background-color: rgba(0, 0, 0, 0.8);
    }

    .about-me-cta-button {
        background-color: rgba(0, 0, 0, 1);
        border: 2px solid rgba(255, 255, 255, 1);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .contact-us-image-container,
  .contact-us-responsive-image,
  .contact-us-image-overlay,
  .contact-us-zoom-indicator {
      transition: none;
  }

  .contact-us-image-container:hover {
      transform: none;
  }


  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
  }

  .about-me-person-image:hover,
  .about-me-cta-button:hover {
      transform: none;
  }

  .contact-us-modal, .contact-us-modal_content {
    transition: none;
  }
}

/* Print styles */
@media print {
    .about-me-person-wrapper {
        padding-top: 0;
    }

    .about-me-person-background {
        background-color: transparent;
        border: 1px solid #000;
    }

    .about-me-testimonial-quote {
        color: #000;
    }

    .about-me-cta-button {
        display: none;
    }
}
