body {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  height: 100%;
  cursor: default;
}
@media (max-width: 1100px) {
  body {
    height: 100%;
    overflow: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1100px) {
  html {
    height: 100%;
    scroll-snap-type: y mandatory;
  }
}

.page-content {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .page-content {
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
}

.service-stripe {
  position: relative;
  height: 100%;
  flex: 0.3;
  min-width: 70px;
  transition: flex 0.5s ease, width 0.5s ease;
  cursor: default;
  overflow-y: hidden; /* Hide scrollbar when collapsed */
  overflow-x: hidden;
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: rgba(0, 0, 147, 0.2) rgba(0, 0, 0, 0.05); /* For Firefox */
  background: linear-gradient(var(--gradient-angle, 135deg), var(--bg-start, #000), var(--bg-end, #000));
  box-shadow: -8px 0 15px -5px rgba(0, 0, 0, 0.35);
  z-index: 1; /* Base z-index for proper shadow layering */
  --highlight-start: attr(data-highlight-start);
  --highlight-end: attr(data-highlight-end);
  --bg-start: attr(data-bg-start);
  --bg-end: attr(data-bg-end);
  --text-color: attr(data-text-color);
  --border-color: attr(data-border-color);
}
@media (max-width: 1100px) {
  .service-stripe {
    flex: none;
    height: 100vh;
    width: 100%;
    cursor: default;
    scroll-snap-align: start;
    overflow-y: auto; /* Keep vertical scrolling on mobile */
    box-shadow: 0 -8px 15px -5px rgba(0, 0, 0, 0.35); /* Shadow on top for mobile view */
  }
}
.service-stripe:hover, .service-stripe.service-stripe-active {
  flex: 6;
  cursor: default;
  overflow-y: auto; /* Show scrollbar when expanded */
  z-index: 2; /* Raise z-index when active so shadow appears on top */
}
.service-stripe:hover .service-content, .service-stripe.service-stripe-active .service-content {
  opacity: 1;
  pointer-events: auto;
}
.service-stripe:hover .vertical-title, .service-stripe.service-stripe-active .vertical-title {
  opacity: 0;
}
@media (max-width: 1100px) {
  .service-stripe:hover, .service-stripe.service-stripe-active {
    flex: none;
    cursor: default;
  }
}

.vertical-title {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: opacity 0.3s ease;
  height: 300px;
}
@media (max-width: 1100px) {
  .vertical-title {
    display: none;
  }
}
.vertical-title span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  transform: rotate(-90deg) translateY(50%);
  transform-origin: left bottom;
  background: linear-gradient(135deg, var(--button-start, #fff), var(--button-end, #fff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
  letter-spacing: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  white-space: nowrap;
}

/* Fixed-width content wrapper to maintain line breaks */
.service-content {
  position: absolute;
  z-index: 2;
  max-width: 800px;
  left: 0;
  top: 0;
  height: 100%;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: var(--text-color, #fff);
  pointer-events: none;
  box-sizing: border-box;
  overflow: visible;
  will-change: opacity;
  background: transparent;
  /* Ensure links are always clickable */
}
.service-content a {
  pointer-events: auto;
}
@media (max-width: 1100px) {
  .service-content {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    opacity: 1;
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    pointer-events: auto;
    padding: 2rem 1rem;
    background: transparent;
  }
}

.service-logo {
  width: 150px;
  min-width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  margin-top: 20vh; /* Changed from 2rem to 20vh for 30% from top */
  position: relative;
  flex-shrink: 0;
  align-self: flex-start;
}
@media (max-width: 1100px) {
  .service-logo {
    width: 100%;
    min-width: auto;
    height: auto;
    margin-right: 0;
    margin-bottom: 1.5rem;
    align-self: center;
    margin-top: 10vh; /* Reduced from 15vh to 10vh to further decrease distance from top */
  }
}
.service-logo img {
  max-width: 75%; /* Scaled from 100% to 75% */
  max-height: 75%; /* Scaled from 100% to 75% */
  object-fit: contain;
}
@media (max-width: 1100px) {
  .service-logo img {
    max-width: 90px; /* Scaled from 120px to 90px (75% of 120px) */
  }
}

.service-info {
  width: 550px; /* Fixed width that never changes */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  padding-right: 2rem;
  box-sizing: border-box;
  margin-top: 20vh; /* Changed from 2rem to 20vh for 30% from top */
}
@media (max-width: 1100px) {
  .service-info {
    width: 100%;
    min-width: auto;
    max-height: none;
    padding-right: 0;
    margin-top: 1rem; /* Reduced from 1.5rem to 1rem to further decrease distance from top */
  }
}
.service-info h2 {
  font-size: 3rem;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--button-start, #fff), var(--button-end, #fff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
  line-height: 1.2;
  white-space: normal;
}
@media (max-width: 1100px) {
  .service-info h2 {
    font-size: 2.5rem;
  }
}
.service-info .service-link {
  color: inherit;
  background: linear-gradient(135deg, var(--button-start, #fff), var(--button-end, #fff));
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}
.service-info .service-link:hover {
  text-decoration: none;
  transform: translateX(3px);
}
.service-info .service-link:hover .highlight {
  text-decoration: underline;
}
.service-info p {
  font-size: 1.2rem;
  margin: 0 0 2rem;
  line-height: 1.6;
  width: 100%;
  white-space: normal;
}
@media (max-width: 1100px) {
  .service-info p {
    font-size: 1.1rem;
  }
}
.service-info p a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}
.service-info p a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: var(--text-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.service-info p a:hover {
  color: var(--text-color);
}
.service-info p a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

#home-stripe .service-info {
  margin-top: 5vh;
}

/* Move scrollbar styling to service-stripe */
.service-stripe::-webkit-scrollbar {
  width: 8px;
}

.service-stripe::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.service-stripe::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 147, 0.2);
  border-radius: 4px;
}

.service-stripe::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 147, 0.3);
}

/* Remove the service-info scrollbar styles since we moved them to service-stripe */
.service-info::-webkit-scrollbar,
.service-info::-webkit-scrollbar-track,
.service-info::-webkit-scrollbar-thumb,
.service-info::-webkit-scrollbar-thumb:hover {
  display: none;
}

.service-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--button-start, #fff), var(--button-end, #fff));
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: var(--button-text, #fff);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-position 0.5s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  align-self: flex-start;
  pointer-events: auto;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .service-button {
    align-self: center;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
}
.service-button:hover {
  background-position: 100% 100%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.partner-logos {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem; /* Decreased from 1.5rem to reduce space from heading */
  margin-bottom: 3rem; /* Added to increase space below logos */
  width: 100%;
  box-sizing: border-box;
  /* Medium-sized devices */
  /* Small mobile devices */
}
@media (max-width: 1100px) and (min-width: 768px) {
  .partner-logos {
    justify-content: center;
    gap: 1.8rem; /* More space than mobile, less than desktop */
    padding: 1rem;
    margin-top: 0.8rem; /* More space than mobile, less than desktop */
    margin-bottom: 2rem; /* More space than mobile, less than desktop */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .partner-logos {
    justify-content: center;
    gap: 1.2rem; /* Smallest gap for mobile */
    padding: 1rem;
    margin-top: 0.5rem; /* Smallest margin for mobile */
    margin-bottom: 1.5rem; /* Smallest margin for mobile */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.partner-logos a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.partner-logos a:hover {
  transform: translateY(-5px);
}
.partner-logos img {
  min-width: 40px;
  max-width: 100px;
  min-height: 30px; /* Increased from 40px to make logos bigger */
  max-height: 45px;
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: brightness(0.95) contrast(0.95);
  /* Medium-sized devices */
  /* Small mobile devices */
}
@media (max-width: 1100px) and (min-width: 768px) {
  .partner-logos img {
    height: 40px; /* Intermediate size between desktop and mobile */
    max-width: 85px; /* Intermediate size between desktop and mobile */
    min-height: auto;
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .partner-logos img {
    height: 25px; /* Smallest size for mobile */
    max-width: 60px; /* Smallest size for mobile */
    min-height: auto;
    min-width: auto;
  }
}
.partner-logos img:hover {
  filter: brightness(1.1) contrast(1.05);
}

/* New styles for enhanced text formatting */
.intro-text {
  margin-bottom: 2rem;
  width: 100%;
  min-width: 650px; /* Match service-info width */
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .intro-text {
    min-width: auto;
    width: 100%;
  }
}

.tagline {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--text-color, #000);
  width: 100%;
  box-sizing: border-box;
}
.tagline strong {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--button-start, #000);
}
@media (max-width: 1100px) {
  .tagline {
    font-size: 1.2rem;
  }
  .tagline strong {
    font-size: 1.3rem;
  }
}
.tagline.emphasis {
  text-align: center;
  margin: 2.5rem auto;
  padding: 1.5rem;
  background-color: rgba(0, 0, 147, 0.05);
  border-radius: 8px;
  max-width: 85%; /* Reduce width from 100% to 85% */
  /* Reduce font size for the text below the strong heading */
  font-size: 1rem;
}
.tagline.emphasis strong {
  font-size: 1.2rem; /* Reduced from 1.6rem */
  display: block;
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .tagline.emphasis strong {
    font-size: 1.3rem; /* Reduced from 1.4rem */
  }
}
@media (max-width: 1100px) {
  .tagline.emphasis {
    font-size: 1.1rem;
    max-width: 90%; /* Slightly wider on mobile but still contained */
    padding: 1.2rem; /* Slightly less padding on mobile */
  }
}

.section-heading {
  position: relative;
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--button-start, #000);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 0, 147, 0.2);
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .section-heading {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.8rem;
  }
}

.services-list {
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0 2rem;
  width: 100%;
  box-sizing: border-box;
}
.services-list li {
  position: relative;
  padding: 0.25rem 0 0.25rem 2.2rem; /* Reduced from 0.4rem top/bottom padding */
  font-size: 1.2rem;
  line-height: 1.3; /* Decreased from 1.4 to make more compact */
  white-space: normal; /* Prevent text from reflowing */
  margin-bottom: 0.2rem; /* Reduced from 0.4rem */
}
.services-list li .emoji {
  position: absolute;
  left: 0;
  top: 0.3rem; /* Adjusted to align with reduced padding */
  font-size: 1.2rem;
}
.services-list .highlight {
  font-weight: 600;
  color: var(--button-start, #000);
}
@media (max-width: 1100px) {
  .services-list {
    margin: 1rem 0 1.5rem;
  }
  .services-list li {
    font-size: 1.1rem;
    padding: 0.25rem 0 0.25rem 2rem; /* Reduced from 0.35rem */
    margin-bottom: 0.15rem; /* Reduced from original value */
  }
  .services-list li .emoji {
    top: 0.25rem; /* Adjusted to match new padding */
    font-size: 1.1rem;
  }
}
.services-list.checkmark-list li .emoji {
  color: #00b300; /* Green color for checkmarks */
}

.access-info {
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 147, 0.05);
  border-left: 3px solid var(--button-start, #000093);
  border-radius: 0 4px 4px 0;
  width: 100%;
  box-sizing: border-box;
  white-space: normal; /* Prevent text from reflowing */
}
@media (max-width: 1100px) {
  .access-info {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
  }
}

.cta-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 2rem 0;
}
.cta-container .service-button {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
}
@media (max-width: 1100px) {
  .cta-container .service-button {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
  }
}

/* Remove hover-specific content settings in stripe hover to ensure clean transition */
.service-stripe:hover .service-content,
.service-stripe-active .service-content {
  /* Only handle opacity/visibility, not positioning */
  left: 0;
  top: 0;
  transform: none;
}

/* Privacy link styling */
.privacy-link {
  width: 100%;
  text-align: left;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  /* Medium-sized devices */
  /* Small mobile devices */
}
@media (max-width: 1100px) and (min-width: 768px) {
  .privacy-link {
    margin-top: 0.8rem; /* Intermediate spacing */
    margin-bottom: 3rem; /* Intermediate spacing */
    text-align: center;
  }
}
@media (max-width: 767px) {
  .privacy-link {
    margin-top: 0.5rem; /* Smallest spacing */
    margin-bottom: 4rem; /* Largest bottom spacing as requested */
    text-align: center;
  }
}
.privacy-link a {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.privacy-link a:hover {
  color: rgba(0, 0, 147, 0.8);
  border-bottom: 1px solid rgba(0, 0, 147, 0.5);
}

/* Corner logo styling */
.corner-logo {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1000; /* Ensures the logo stays on top of other content */
  margin: 0; /* Reset margins */
  transform: translate3d(0, 0, 0); /* Force GPU acceleration */
  -webkit-transform: translate3d(0, 0, 0); /* Safari-specific */
  /* Create larger container with room for shadow */
}
.corner-logo:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  z-index: -1;
}
.corner-logo img {
  position: relative;
  max-width: 120px; /* Reduced size */
  height: auto;
  opacity: 0.9; /* Slight transparency for better integration */
  display: block; /* Prevent any inline display issues */
  /* Multiple shadow techniques for better cross-browser support */
  -webkit-filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.5)); /* Safari-specific */
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.5)); /* Standard */
  /* Add specific styles for WebKit */
  transform: translateZ(0); /* Force GPU acceleration */
  -webkit-transform: translateZ(0); /* Safari-specific */
  -webkit-backface-visibility: hidden; /* Prevent visual artifacts */
}
@media (max-width: 1100px) {
  .corner-logo {
    display: none; /* Hide logo completely on mobile */
  }
}

/*# sourceMappingURL=main.css.map */