/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Instrument', sans-serif;
  line-height: 1.6;
  color: #222;
  overflow-x: hidden;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navy-bg {
  background-color: #272A63;
  color: white;
}

.dark-bg {
  background-color: #1A1A1A;
  color: white;
}

.light-blue-text {
  color: #308299;
}

.navy-text {
  color: #272A63;
}

.img-placeholder {
  background-color: #e5e7eb;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.875rem;
  min-height: 200px;
}

.icon-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  min-height: unset;
}

/* Image styles */
.logo {
  height: 40px;
  width: auto;
}

.roadblock-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
}

h1, h2, h3 {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.25;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: left;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: #308299;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #3a9ad3;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.bullet {
  color: #308299;
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

section {
  padding: 3rem 3rem;
}

/* Hero Section */
.hero {
  padding: 0;
}
.navbar-section{
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}

/* Header and Navigation */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
}

.logo-container {
  padding-top: 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  font-family: "Roboto Condensed", sans-serif;
}

.nav-link:hover {
  color: #308299;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
  transition: all 0.3s ease;
}

.hero-content {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 4rem;
}

/* Business Roadblocks */
.roadblocks {
  background-color: white;
  padding: 5rem 3rem;
}

.roadblocks-header {
  text-align: center;
  margin-bottom: 3rem;
}

.roadblocks-header h2 {
  text-align: center;
  color: #000;
  margin-bottom: 2rem;
  font-size: 2.8rem;
}

/* New Roadblocks Cards Layout */
.roadblocks-cards-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.roadblock-card-new {
  flex: 1;
  background-color: #272A63;
  color: white;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadblock-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.roadblock-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.roadblocks-partner {
  text-align: center;
  margin-top: 2rem;
  padding: 0 2rem;
}

.roadblocks-partner h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #000;
}

.roadblocks-partner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.roadblocks-highlight {
  font-weight: bold;
  color: #2C4880;
}

/* Responsive styles for roadblocks section */
@media (max-width: 992px) {
  .roadblocks-cards-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .roadblock-card-new {
    min-height: 120px;
  }
  
  .roadblocks-partner h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .roadblocks {
    padding: 3rem 0.5rem;
  }
  
  .roadblocks-header h2 {
    font-size: 2.2rem;
    font-weight: 1000;
    text-align: left;
  }
  
  .roadblock-card-new {
    padding: 1.5rem;
  }
  
  .roadblock-title {
    font-size: 1.9rem;
  }

  .roadblocks-partner{
    text-align: left;
    padding: 0;
  }

  .roadblocks-partner h3 {
    font-size: 2.5rem;
     text-align: left;
  }
  
  .roadblocks-partner p {
    font-size: 1rem;
  }
}

.team-img {
  max-width: 100%;
}

  .work-with-image{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .bold-text {
    font-weight: 700;
    color: #272A63;
  }
  
  /* AARRR Framework */
  .our-approach{
    text-align: center;
  }
  .framework-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
    gap: 1.5rem;
  }
  
  .framework-card {
    
    padding: 1.5rem 0rem;
    text-align: center;
  }
  
  .framework-card h3 {
    color: #308299;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .framework-card p {
    font-size: 1.1rem;
  }
  .white-letter{
    color: white;
  }
  
  /* Services Section */
  .services {
    padding: 4rem 3rem;
    text-align: center;
  }

  .services h2 {
    text-align: left;
    font-size: 2.5rem;
  }
  
  .services-container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .services-nav {
    display: block;
  }
  
  .services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  
  .services-nav-btn.prev {
    left: 10px;
  }
  
  .services-nav-btn.next {
    right: 10px;
  }
  
  .services-slider {
    display: flex;
    overflow-x: hidden;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    gap: 1.5rem;
    justify-content: flex-start;
  }
  
  .services-slider::-webkit-scrollbar {
    display: none;
  }
  
  .service-card {
    flex: 0 0 220px;
    background-color: #EAEFFA;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-card img {
    width: 240px;
    margin-bottom: 1.5rem;
    object-fit: contain;
  }
  
  .service-card h3 {
    color: #272A63;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Instrument', sans-serif;;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    line-height: 1.5;
  }

/* Testimonials Section */
.testimonials {
  background-color: #F4F4F4;
  overflow: hidden;
}

.testimonials h2{
  text-align: center;
  margin-bottom: 2rem;
}
.testimonial-container {
  position: relative;
}

.testimonial-slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  color: white;
  text-align: center;
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 0.5rem;
}

.testimonial-card {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: #2C4880;
  border-radius: 24px;
  padding: 3rem 4rem;
  height: 100%;
}
.testimonial-big-text{
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.testimonial-stat {
  color: #308299;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-quote {
  max-width: 460px;
  margin-bottom: 1rem;
}

.testimonial-author {
  opacity: 0.8;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-position {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #308299;
  width: 1.5rem;
  border-radius: 0.75rem;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: white;
  padding: 4rem 3rem;
}

.why-choose-us h2 {
  margin-bottom: 2.5rem;
  text-align: center;
  color: #272A63;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.reason-card {
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: center;
  gap: 3rem;
  background-color: #272A63;
  border-radius: 24px;
  padding: 1.5rem;
  color: white;
  text-align: left;
}

.reason-card h3 {
  font-size: 2.3rem;
  margin-bottom: 0;
}

.reason-icon {
  width: 3rem;
}

/* Comparison Section */
.comparison {
  padding: 4rem 3rem 6rem;
  background-color: #1A1A1A;
  color: white;
}

.comparison-container{
  margin-top: 2rem;
display: flex;
align-items: center;
gap: 3rem;
}
.comparison-header h2{
  text-align: center;
}
.comparison-subtitle {
  font-size: 1.2rem;
  text-align: center;
}

.comparison-table-container {
  max-width: 800px;
  margin: 0 auto;
}

.comparison-columns {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1.7fr;
  gap: 1rem;
}

.comparison-features, .comparison-typical, .comparison-unchained {
  display: flex;
  flex-direction: column;
}

.feature-header, .column-header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem;
}
.feature-header{
  height: 130px;
}

.column-header {
  font-size: 1.2rem;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1px;
}
.comparison-typical {
  background-color: #2d2d2d;
  border-radius: 24px;
  padding: 40px 20px;
  justify-content: center;
}

.comparison-unchained{
  background-color: #272A63;
  border-radius: 24px;
  padding: 40px 20px;
  flex-direction: column;
  justify-content: center;
}

.ug-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.25rem;
}

.ug-u, .ug-g {
  font-size: 1.5rem;
  font-weight: 700;
  color: #308299;
}

.feature-item, .column-item {
  height: 100px;
  align-items: center;
  padding: 0.5rem;
  color: #fff;
}

.comparison-features .feature-item {
  justify-content: flex-start;
  font-weight: bold;
  color: #8A8A8A;
}

.comparison-typical .column-item, .comparison-unchained .column-item {
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.comparison-typical .column-item {
  display: flex;
  background-color: #2d2d2d;
  border-bottom: 1px solid #8A8A8A;

}

.comparison-unchained .column-item {
  background-color: #272A63;
  border-bottom: 1px solid #8A8A8A;
  color: white;
}

.column-item.last {
  border: none;
}

.light-blue-text {
  color: #308299;
}

/* Who We Work With Section */
.who-we-work-with {
  background-color: #f5f5f5;
  padding: 4rem 3rem;
}
.who-we-work-with h2{
  text-align: center;
}


.work-with-header {
  text-align: center;
  margin-bottom: 3rem;
}

.work-with-header h2 {
  margin-bottom: 1rem;
}

.work-with-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.work-with-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.work-with-characteristics h3,
.work-with-industries h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #308299;
  font-size: 1.4rem;
}

.characteristics-grid,
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.characteristic-card,
.industry-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.characteristic-card:hover,
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.characteristic-icon,
.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #308299;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: white;
}

.characteristic-content p,
.industry-content p {
  margin-bottom: 0;
  font-weight: 500;
}

/* Who We Work With Section */
.who-we-work-with {
  padding: 4rem 0;
  background-color: #fff;
}

.who-we-work-with-header h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.who-we-work-with-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.who-we-work-with-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Client Types Cards */
.client-types-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  height: 100%;
}

.client-type-card {
  padding: 2rem 1.5rem;
  border-radius: 24px;
  text-align: center;
  height: 170px; /* Fixed height for equal sizing */
  display: flex;
  align-items: center;
  justify-content: center;
}

.navy-card {
  background-color: #272A63;
  color: white;
}

.client-type-title {
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0;
}

/* Industries Section */
.industries-section {
  margin-bottom: 3rem;
}

.industries-section h3 {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #272A63;
  font-weight: 700;
}

.industries-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.industries-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  flex: 1;
}

.industry-card {
  padding: 2rem 1.5rem;
  border-radius: 24px;
  text-align: center;
  height: 120px; /* Fixed height for equal sizing */
  display: flex;
  align-items: center;
  justify-content: center;
}

.light-card {
  background-color: #EAEFFA;
  color: #272A63;
}

.industry-title {
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0;
}

.work-with-image {
  display: flex;
  justify-content: center;
  flex: 1;
}

.work-with-image img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  max-height: 400px;
}

.work-with-image img:hover {
  transform: scale(1.02);
}

/* Responsive styles for Who We Work With section */
@media (max-width: 992px) {
  .industries-wrapper {
    flex-direction: column;
  }
  
  .industries-container {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  
  .client-types-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .client-types-container,
  .industries-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .who-we-work-with {
    padding: 3rem 0.5rem;
  }
  
  .client-types-container,
  .industries-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .client-type-card,
  .industry-card {
    padding: 1.5rem 1rem;
  }
  
  .who-we-work-with-intro {
    margin-bottom: 2rem;
    text-align: left;
  }
  
  .industries-section {
    margin-bottom: 2rem;
  }
}
  
  .characteristics-grid,
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  

/* Final CTA Section */
.final-cta {
  background-color: #272A63;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
  color: white;
  line-height: 1.1;
}

.cta-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: center;
}

.light-blue-text {
  color: #308299;
}

.cta-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
  font-weight: 400;
}

.btn-cta {
  background-color: #3A8A9E;
  color: white;
  font-weight: 500;
  padding: 0.75rem 2.5rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-size: 1.125rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  min-width: 220px;
  text-align: center;
}

.btn-cta:hover {
  background-color: #2d7080;
}

/* Footer */
.footer {
  background-color: #231F20;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}
.footer-content.big{
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.footer-col {
  flex: 1;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo-img {
  max-width: 200px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-link:hover {
  color: #308299;
}

.legal-nav {
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  gap: 0.5rem;
  font-weight: 500;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
    gap: 1rem;
  }

  .legal-nav {
    margin-top: 0;
  }
}

/* Mobile Comparison Styles */
.desktop-comparison {
  display: block;
}

.mobile-comparison {
  display: none;
}

.mobile-comparison-header {
  text-align: center;
  margin-bottom: 2rem;
}

.mobile-comparison-content {
  display: flex;
  flex-direction: column;
}

.mobile-comparison-block {
  background-color: #2d2d2d;
  border-radius: 24px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.mobile-comparison-block.unchained {
  background-color: #272A63;
}

.mobile-column-header {
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  line-height: 1.5;
}

.mobile-column-header.unchained {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.mobile-column-header.unchained::before {
  content: "Unchained";
  color: white;
}

.mobile-column-header.unchained::after {
  content: "Growth";
  color: #308299;
}

.mobile-feature-row {
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #8A8A8A;
  padding-bottom: 1rem;
}

.mobile-feature-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.mobile-feature-row h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #8A8A8A;
  margin-bottom: 0.5rem;
}

.mobile-feature-row p {
  margin-bottom: 0;
  line-height: 1.4;
}

.mobile-comparison-block.unchained .mobile-feature-row p {
  color: white;
}

.mobile-comparison-block.unchained .mobile-feature-row p strong {
  display: block;
  margin-bottom: 0.5rem;
}

.hero-small-text{
  font-size: 2.85rem;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .client-type-card,
  .industry-card {
    height: 150px;
  }
  
  .hero-small-text{
    font-size: 2.3rem;
  }
  .hero-content{
    align-items: start;
    text-align: left;
  }
  h1 {
    font-size:3rem;
  }
  h2{
    font-size:2.5rem;
  }
  section, .services, .why-choose-us,.comparison{
    padding: 3rem 0.5rem;
  }
  .roadblocks-grid, .framework-grid, .reasons-grid, .work-with-grid{
    grid-template-columns: 1fr;
  }
  
  /* Mobile Navigation */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: #272A63;
    width: 100%;
    height: 100vh;
    z-index: 10;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding-top: 4rem;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    display: block;
    margin: 1.5rem 0;
    font-size: 1.2rem;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 20;
  }
  
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .site-header {
    padding: 1rem 0;
  }
  
  .logo-container img {
    max-width: 180px;
  }

  .our-approach{
    text-align: left;
  }
  .framework-card{
    padding: 0;
    text-align: left;
  }
  .framework-card h3{
    margin-bottom: 5px;
  }
  .services-slider{
    display: grid;
  }
  .services-nav{
    display: none !important;
  }
  .testimonials h2{
    text-align: left;
  }
  .testimonial-big-text{
    font-size: 1.8rem;
  }
  .testimonial-card{
    padding: 2rem;
  }
  .why-choose-us h2{
    text-align: left;
  }
  .mobile-comparison-header{
    text-align: left;
  }
  .comparison-header h2{
    text-align: left;
  }
  .work-with-grid{
    gap: 0;
  }
  .footer-content{
    grid-template-columns: 1fr;
  }
  .footer-content.big{
    grid-template-columns: 1fr;
  }
  .cta-actions{
    flex-flow: column;
  }
  
  /* Show mobile comparison and hide desktop version */
  .desktop-comparison {
    display: none;
  }
  
  .mobile-comparison {
    display: block;
  }
}