* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Hide scrollbar for the entire page */
body, html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

body::-webkit-scrollbar, html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

h1,
h2,
h3,
p,
label,
input,
textarea,
button {
  font-family: inherit;
}

h1,
h2,
h3 {
  font-weight: 700;
}

p,
label,
input,
textarea,
button {
  font-weight: 400;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}


.home {
  position: relative;
  min-height: 100vh;
  background: none; /* remove direct background */
  padding-top: 8rem;
  overflow: visible;
  z-index: 0;
}

.home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
  z-index: -1; /* behind the content */
}

.logo {
  z-index: 10;
  align-self: center;
}

.logo img {
  height: 80px;
  width: 80px;
  margin: 0 9rem;
  background: #fff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex: 1;
  margin: 1rem 9rem;
}


.left-content {
  flex: 1;
  max-width: 600px;
  padding-right: 40px;
}

.headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: white;
  text-align: start;
}

.sub-headline {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  text-align: start;
}

.right-form {
  flex: 0 0 500px;
  background: white;
  border-radius: 4px;
  padding: 30px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.form-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 30px;
  width: 90%;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}



.radio-group label {
  display: flex;
  gap: 1rem;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  margin-top: 10px;
}

.form-group.full-width {
  width: 100%;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #666;
}

input[type="radio"] {
  accent-color: #3949ab;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background-color: #F3F4F7;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #3949ab;
}

textarea {
  height: 100px;
}

.submit-btn {
  width: inherit;
  background: #3949ab;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* margin-top: 20px; */
}

.submit-btn:hover {
  background: #1a237e;
}

.privacy-text {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
  margin-top: 15px;
}

.privacy-text a {
  color: #3949ab;
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Review Section */
.review-section {
    margin: 1rem 9rem; /* Match other sections */
    padding: 40px 0;
    background-color: #fff;
}

.review-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: visible;
}

.review-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

/* Review Image Styles */
.review-image {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    object-fit: contain;
}

.review-image:hover {
    transform: translateY(-2px);
}

/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-item {
    animation: fadeInUp 0.6s ease forwards;
}

.review-item:nth-child(1) { animation-delay: 0.1s; }
.review-item:nth-child(2) { animation-delay: 0.2s; }
.review-item:nth-child(3) { animation-delay: 0.3s; }
.review-item:nth-child(4) { animation-delay: 0.4s; }
.review-item:nth-child(5) { animation-delay: 0.5s; }

/* Additional hover effects */
.review-item a {
    position: relative;
    overflow: hidden;
}

.review-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.review-item a:hover::before {
    left: 100%;
}

/* Focus styles for accessibility */
.review-item a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Portfolio section */
.portfolio-section {
  /* background: #f8f8f8; */
  padding: 4rem 0;
}

.common-heading h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.portfolio-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
}

.swiper.portfolio-swiper {
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 1rem 0;
  
}

.swiper-wrapper {
  display: flex;
  gap: 20px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}

.swiper-slide img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  max-width: unset;
  max-height: unset;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}

.swiper-slide img:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  transform: scale(1.03);
}

.swiper-button-prev, .swiper-button-next {
  color: #333;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding: 0;
  border: none;
}

.swiper-button-prev:after, .swiper-button-next:after {
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  margin-bottom: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1010;
}

.lightbox-nav {
  color: #333;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  z-index: 1010;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }



/* Technology section */
.technology-section {
  padding: 80px 0;
}

.subtitle-with-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.subtitle-with-lines .subtitle {
  color: #666;
  font-weight: 500;
}

.subtitle-with-lines::before,
.subtitle-with-lines::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #222C89;
  max-width: 80px;
}

.sub-heading {
  text-align: center;
}

header .subtitle {
  color: #666;
}

header h1 {
  font-size: 2rem;
  margin-top: 0.5rem;
}

header h1 span {
  color: #222C89;
}

.technology-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2rem;
  margin: 1rem 9rem;
  flex-wrap: wrap;
}

.stack-section {
  flex: 1 1 600px;
}

.stack-category {
  margin-bottom: 2rem;
}

.stack-category h2 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 35px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1.2rem;
  justify-items: center;
}

.tech-item {
  width: 100px;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  cursor: pointer;
  color: #222C89;
}

.tech-item:hover {
  background-color: #727ABA;
  color: white;
}

.tech-item img {
  max-width: 40px;
}

.tech-item p {
  margin-top: 0.4rem;
  font-size: 0.75rem;
}

.technology-stack-image {
  flex: 1 1 400px;
  text-align: center;
}

.technology-stack-image img {
  max-width: 100%;
  height: auto;
}

/* Service Section */
.why-choose {
  padding: 80px 2rem;
  text-align: center;
}

.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 9rem;
}

.reasons article {
  padding-top: 1rem;
  text-align: left;
}

.reasons .number {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.reasons h3 {
  color: #014aad;
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  display: inline-block;
  border-bottom: 2px solid #E0E3F5;
  padding-bottom: 0.2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: .5rem 7rem;
}

.stats div {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #000;
}

.stat-number.stat-number-93 {
  color: #014aad;
}

/* Other services */
.service-container {
  padding: 80px 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.subtitle {
  color: #28a745;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.highlight {
  color: #222C89;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 4rem 9rem;
}

.service-item {
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: width 3s ease;
}

.service-item:hover {
  background-color: #E0E3F4;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.service-description {
  color: #666;
  font-size: 20px;
  line-height: 1.5;
}

/* Contact form (centered version) */
.contact-section {
  margin: 0 auto;
  padding: 80px 0;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  background: #fff;
}

.contact-form {
  padding: 40px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.desktop-form {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 4px;
  padding: 30px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
}

.form-group {
  width: 100%;
}

.radio-group {
  display: inline-flex;
  gap: 1em;
  align-items: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #2c3e50;
  line-height: 1.2;
}

.expert-highlight {
  color: #222C89;
  font-weight: 600;
}

.office-location {
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.office-location:last-child {
  border-bottom: none;
}

.office-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
}

.office-address {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.right-form-end {
  border: none;
}

footer {
  background-color: #111;
  color: #fff;
  padding: 2rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 min(9rem, 11vw);
  max-width: 100%;
}

.footer-left {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
}

.footer-left .logo {
  max-width: 90px;
}

.footer-patient {
  font-size: 1.2rem;
  white-space: nowrap;
}

.footer-center {
  flex: 1;
  text-align: center;
}

.footer-center a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-center a:hover {
  text-decoration: underline;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.footer-right a {
  color: #fff;
  margin-left: 15px;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #0af;
}

.main-section h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}

.img-shadow {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.main-section h1 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}

/* Full-width section */
.main-section {
  min-height: 100vh;
  padding: 80px 20px;
  /* background: #E0E3F5; */
  max-width: 100vw;
  overflow-x: hidden;
}

/* Roadmap Grid Layout */
.roadmap-grid {
  display: grid;
  grid-template-columns: 1.5fr 3fr 1.5fr;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 600px;
  align-items: center;
  overflow: hidden;
}

/* Roadmap Modules */
.roadmap-modules {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Roadmap Content */
.roadmap-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

/* MODULES design styles (Column 1) */
.modules-canvas {
  width: 331px;
  height: 507px;
  /* background: #E0E3F5; */
  border-radius: 20px;
  position: relative;
}

.modules-circle {
  width: 155px;
  height: 155px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px  rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.modules-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #252525;
}

.curved-path {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.curved-path svg {
  width: 100%;
  height: 100%;
}

.step-marker {
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #252525;
  position: absolute;
  z-index: 15;
}

.step-01 { top: 140px; left: 160px; }
.step-02 { top: 195px; left: 215px; }
.step-03 { top: 290px; left: 210px; }
.step-04 { top: 340px; left: 155px; }

.module-card {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 12;
}

.card-01 {
  top: 21px;
  right: 54px;
  transform: rotate(-8deg);
}

.card-02 {
  top: 125px;
  right: -32px;
}

.card-03 {
  top: 305px;
  right: -20px;
  transform: rotate(11deg);
}

.card-04 {
  top: 400px;
  right: 70px;
  transform: rotate(15deg);
}

.icon {
  width: 40px;
  height: 40px;
  stroke: #252525;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.end-dot {
  width: 12px;
  height: 12px;
  background: #666;
  border-radius: 50%;
  position: absolute;
  z-index: 20;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dot-start {
  top: 138px;
  left: 126px;
}
.dot-between-1-2 { top: 169px; left: 203px; }
.dot-between-2-3 { top: 253px; left: 236px; }
.dot-between-3-4 { top: 333px; left: 196px; }
.dot-end {
  top: 357px;
  left: 125px;
}

.icon-overlay {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.card-01 .icon-overlay {
  transform: translate(-50%, -50%) rotate(8deg);
}

.card-02 .icon-overlay {
  transform: translate(-50%, -50%) rotate(0deg);
}

.card-03 .icon-overlay {
  transform: translate(-50%, -50%) rotate(-11deg);
}

.card-04 .icon-overlay {
  transform: translate(-50%, -50%) rotate(-15deg);
}

.icon-overlay img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* Mirrored version styles */
.mirrored .modules-circle {
  left: 60%; /* Mirror the horizontal position */
}

.mirrored .curved-path {
  left: 60%; /* Mirror the horizontal position */
}

/* Mirrored step markers */
.step-01-mirrored { top: 140px; right: 160px; }
.step-02-mirrored { top: 195px; right: 215px; }
.step-03-mirrored { top: 290px; right: 210px; }
.step-04-mirrored { top: 340px; right: 155px; }

/* Mirrored module cards */
.card-01-mirrored {
  top: 21px;
  left: 54px;
  transform: rotate(-65deg);
}

.card-02-mirrored {
  top: 135px;
  left: -40px;
  transform: rotate(-132deg);
}

.card-03-mirrored {
  top: 294px;
  left: -29px;
  transform: rotate(134deg);
}

.card-04-mirrored {
  top: 405px;
  left: 85px;
  transform: rotate(57deg);
}

/* Mirrored end dots */
.dot-start-mirrored {
  top: 138px;
  right: 126px;
}
.dot-between-1-2-mirrored {
  top: 169px;
  right: 203px;
}
.dot-between-2-3-mirrored {
  top: 253px;
  right: 236px;
}
.dot-between-3-4-mirrored {
  top: 333px;
  right: 196px;
}
.dot-end-mirrored {
  top: 357px;
  right: 125px;
}

/* Counter-rotate icons for mirrored cards */
.card-01-mirrored .icon-overlay {
  transform: translate(-50%, -50%) rotate(65deg);
}

.card-02-mirrored .icon-overlay {
  transform: translate(-50%, -50%) rotate(132deg);
}

.card-03-mirrored .icon-overlay {
  transform: translate(-50%, -50%) rotate(-134deg);
}

.card-04-mirrored .icon-overlay {
  transform: translate(-50%, -50%) rotate(-57deg);
}

/* Roadmap content styles */
.roadmap-col-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.roadmap__box--content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.roadmap__box--content .content {
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.roadmap__box--content .content:hover {
  transform: translateY(-2px);
}

.roadmap__box--content .title {
  font-size: 18px;
  font-weight: 700;
  color: #2f3c9c;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.roadmap__box--content .text {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

/* Updated placeholder styles for columns 2-3 (no cards) */
.content-section {
  text-align: center;
  width: 100%;
  max-width: 300px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-section h3 {
  color: #252525;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.content-section p {
  color: #2f3c9c;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.content-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Responsive design for large screens */
@media (max-width: 1200px) {
  .four-column-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Desktop-specific rules to hide mobile elements */
@media (min-width: 769px) {
  .popup-form {
    display: none !important;
  }

  .mobile-cta-btn,
  .mobile-contact-btn,
  .mobile-sticky-footer {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 40px 0;
    max-width: 100vw;
  }
  .desktop-form {
    padding: 20px 10px;
  }
}

.contact-container {
  /* width: 100vw; */
  /* max-width: 100vw; */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #f8f9fa;
}

@media (max-width: 600px) {
  .contact-container {
    padding: 0;
  }
}

.roadmap-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}
.roadmap-content-grid .roadmap__box--content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 900px) {
  .roadmap-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Make header non-sticky for mobile */
@media (max-width: 768px) {
  .sticky-header {
    position: static;
  }
  
  .home {
    padding-top: 2rem;
  }
}
