/* ===== CSS CUSTOM PROPERTIES (DESIGN TOKENS) ===== */
:root {
  /* Colors */
  --color-primary: #332c6d;
  --color-secondary: #19b3ec;
  --color-white: #ffffff;
  --color-black-100: #000000;
  --color-black-gray: #666666;
  --color-bg-light-gray: #f3f3f3;

  /* Font Sizes */
  --font-size-xs: 12px;
  --font-size-sm: 16px;
  --font-size-lg: 20px;
  --font-size-2xl: 32px;
  --font-size-3xl: 48px;
  --font-size-4xl: 48px;

  /* Line Heights */
  --line-height-xs: 22px;
  --line-height-sm: 25px;
  --line-height-lg: 30px;
  --line-height-2xl: 38px;
  --line-height-3xl: 54px;
  --line-height-4xl: 54px;

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;

  /* Border Radius */
  --border-radius-sm: 16px;
  --border-radius-lg: 32px;
  --border-radius-full: 100px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

body {
  font-family: 'Google Sans', 'Montserrat', sans-serif;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  color: var(--color-black-100);
  background-color: var(--color-bg-light-gray);
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
span,
p,
a,
ul,
li,
button,
strong {
  margin: 0;
  padding: 0;
}

/* ===== TYPOGRAPHY SYSTEM ===== */
.text-xs {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}

.text-lg {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
}

.text-2xl {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-2xl);
}

.text-3xl {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-3xl);
}

.font-regular {
  font-weight: var(--font-weight-regular);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

.font-semibold {
  font-weight: var(--font-weight-semibold);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-white {
  color: var(--color-white);
}

.text-black {
  color: var(--color-black-100);
}

.text-gray {
  color: var(--color-black-gray);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-light-gray {
  background-color: var(--color-bg-light-gray);
}

.rounded-sm {
  border-radius: var(--border-radius-sm);
}

.rounded-lg {
  border-radius: var(--border-radius-lg);
}

.rounded-full {
  border-radius: var(--border-radius-full);
}

/* ===== HEADER STYLES ===== */
.container-custom {
  width: 1204px;
  max-width: 1204px;
  margin: 0 auto;
}

.main-header {
  background: var(--color-white);
  padding: 10px 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100px;
  position: sticky;
  top: 0;
  z-index: 99;
}

.logo-container img {
  height: 80px;
  width: auto;
}

.logo-container img:focus-visible {
  outline: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: none;
}

.nav-link:hover {
  color: var(--color-black-100);
}

.nav-link.active-nav {
  color: var(--color-black-100);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--color-primary);
  padding: var(--spacing-md);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-white);
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.mobile-menu-btn img {
  width: 15px;
  height: 15px;
  margin-left: auto;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding-top: 74px;
}

.mobile-nav-links li {
  margin-bottom: 28px;
  position: relative;
  padding-left: 12px;
}

.mobile-nav-links li:last-child {
  margin-bottom: 0;
}

.mobile-nav-links li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-nav-links .nav-link {
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

/* ===== BUTTON STYLES ===== */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-xs);
  padding: 4px var(--spacing-md);
  border: none;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: max-content;
}

.btn-primary:hover {
  background: #2a2358;
  transform: translateY(-1px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 72px 0 60px;
  max-width: 1204px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-3xl);
  margin-bottom: 22px;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 0px;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(144, 25, 124, 0.4) 0%, rgba(51, 44, 109, 0.4) 100%);
  mix-blend-mode: color;
  pointer-events: none;
}

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

.hero-overlay-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: var(--color-white);
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-3xl);
  text-align: center;
  z-index: 1;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-2xl);
  margin-bottom: 60px;
}

.content-text {
  flex: 1;
  max-width: 732px;
}

.content-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  color: var(--color-black-gray);
  margin-bottom: var(--spacing-lg);
}

.content-description strong {
  color: var(--color-black-gray);
  font-size: var(--font-size-lg);
  font-style: normal;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-lg);
}

.industry-cards {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.industry-card-tall {
  width: 184px;
  height: 320px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--color-black-gray);
}

.industry-card-tall img,
.industry-card-short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-cards-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 184px;
}

.industry-card-short {
  width: 100%;
  height: 150px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--color-black-gray);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--color-white);
  padding: var(--spacing-sm);
  text-align: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
}

/* ===== TECH PROJECTS SECTION ===== */
.section-head-container {
  margin-bottom: 60px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-black-100);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-black-gray);
}

.tech-projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: var(--spacing-lg);
}

.tech-project-card {
  position: relative;
  height: max-content;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: #444;
}

.tech-project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-project-info {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--color-white);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  width: 250px;
}

.tech-project-title {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  color: var(--color-black-100);
  margin-bottom: var(--spacing-lg);
}

.tech-miceedeck-logo {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.tech-nextrip-logo {
  height: 36px;
  width: 100%;
  object-fit: contain;
  object-position: left;
}

/* 
.project-logo {
    height: 100px;
    width: 174px;
    object-fit: contain;
} */
.micedeck-logo {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.nexttrip-logo {
  height: 40px;
  width: 100%;
  object-fit: contain;
}

/* ===== USPs SECTION ===== */
.usps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.usp-card {
  background: var(--color-secondary);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  color: var(--color-white);
}

.usp-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-lg);
}

.usp-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-sm);
}

/* ===== ENDEAVOUR SECTION ===== */
.endeavour-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  padding-right: 57px;
}

.endeavour-image {
  width: 430px;
  height: 500px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-right: -57px;
  z-index: 1;
}

.endeavour-content {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  margin-left: -57px;
  z-index: 2;
  position: relative;
}

∂ç .endeavour-list {
  list-style: none;
  margin: var(--spacing-lg) 0;
}

.endeavour-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
}

.endeavour-label strong {
  color: var(--color-black-100);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-lg);
}

/* ===== PARTNERSHIPS SECTION ===== */
.partnerships-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.Partnerships-section {
  margin-bottom: 100px;
}

.partnership-card {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xl);
}

.partnership-logo img {
  height: 100%;
  width: 100%;
}

.partnership-logo {
  height: 38px;
  width: 148px;
}

.partnership-info h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black-gray);
  margin-bottom: 4px;
}

.partnership-info p {
  font-size: var(--font-size-sm);
  color: var(--color-black-gray);
}

/* ===== FOOTER STYLES ===== */
.main-footer {
  background: var(--color-black-gray);
  padding: 13px 0px;
  color: var(--color-white);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: unset;
  color: #fff;
}

.footer-contact img {
  width: 22px;
  height: auto;
}

.footer-right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-cta-title {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-2xl);
  text-align: right;
}

.footer-cta-text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  text-align: right;
  margin-bottom: 0px;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  /* hiding this 2 just for now as we dont have actual social links */
  visibility: hidden;
  pointer-events: none;
}

.social-links img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--font-size-sm);
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
}

.footer--powered-logo {
  width: 67px;
}

.footer--powered-logo img {
  height: 16px;
  width: 100%;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991.9808px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .container-custom {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (min-width:200px) and (max-width: 1023px) {
  /* Mobile Layout Adjustments */

  .container-custom {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .section-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0px;
    line-height: var(--line-height-sm);
  }

  h2.section-title.mb-4 {
    margin-bottom: 10px !important;
  }

  .section-subtitle {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-xs);
  }

  .section-header {
    margin-bottom: var(--spacing-md);
  }

  .section-head-container {
    margin-bottom: var(--spacing-xl);
  }

  .main-header {
    padding: 8px 16px;
    height: 52px;
  }

  .menu-connectus a.btn-outline-primary {
    padding: 4px 29px;
  }

  .logo-container img {
    height: 36px;
  }

  .hero-section {
    padding: 32px 16px;
  }

  .hero-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-bottom: 10px;
  }

  .hero-image-container {
    height: 200px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 0px;
  }

  .content-description strong {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    font-weight: var(--font-weight-semibold);
  }

  .hero-overlay-text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    bottom: 8px;
    left: 12px;
  }

  .content-section {
    flex-direction: column;
    gap: var(--spacing-md);
    padding: 0 0;
    margin-bottom: 32px;
  }

  .industry-cards {
    gap: var(--spacing-sm);
  }

  .industry-card-tall {
    width: auto;
    flex: 1;
    height: 90px;
    border-radius: var(--border-radius-sm);
  }

  .industry-cards-group {
    width: auto;
    flex: 1;
  }

  .industry-card-short {
    height: 90px;
  }

  .industry-card-label {
    font-size: var(--font-size-xs);
    padding: 2px var(--spacing-sm);
    line-height: var(--line-height-xs);
  }

  .content-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    margin-bottom: var(--spacing-md);
  }

  .partnership-info h3 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-sm);
    color: var(--color-black-gray);
    margin-bottom: 0;
  }

  .partnership-info p {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    color: var(--color-black-gray);
    font-weight: var(--font-weight-medium);
  }

  .tech-projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tech-project-card {
    height: max-content;
    border-radius: var(--border-radius-sm);
  }

  .tech-project-info {
    padding: var(--spacing-md);
    margin: 0;
    max-width: 190px;
    border-radius: var(--border-radius-sm);
  }

  .tech-project-title {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
  }

  .tech-miceedeck-logo {
    height: 80px;
    width: 80px;
    object-fit: contain;
  }

  .tech-nextrip-logo {
    height: 22px;
  }

  .project-logo {
    height: 28px;
  }

  .usps-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    overflow-x: auto;
    display: flex;
    margin-bottom: var(--spacing-xl);
    /* width: calc(100% + 20px); */
    margin-inline: -16px;
    padding-inline: 16px;

  }

  .usp-card {
    min-width: 200px;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
  }

  .usp-icon {
    width: 32px;
    height: 32px;
    margin-bottom: var(--spacing-md);
  }

  .usp-text {
    font-size: var(--font-size-xs);
  }

  .endeavour-section {
    flex-direction: column;
    padding: 0 0;
    margin-right: 0px;
    align-items: flex-start;
  }

  .endeavour-image {
    width: 50%;
    height: 294px;
    margin-right: 0px;
    border-radius: var(--border-radius-sm);
  }

  .endeavour-content {
    margin-left: 0;
    padding: var(--spacing-md);
    position: absolute;
    left: 25%;
    width: 70%;
    border-radius: var(--border-radius-sm);
  }

  .endeavour-label strong {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    font-weight: var(--font-weight-bold);
  }

  .endeavour-list li {
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-xs);
  }

  .partnerships-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .partnership-card {
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
  }

  .Partnerships-section {
    margin-bottom: var(--spacing-xl);
  }

  .partnership-logo {
    height: 28px;
    width: 109px;
  }

  .main-footer {
    padding: 13px 16px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xl);
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-right-section {
    align-items: center;
    text-align: center;
  }

  .footer-cta-title {
    font-size: var(--font-size-sm);
    text-align: center;
  }

  .footer-cta-text {
    font-size: var(--font-size-xs);
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .footer-links {
    font-size: var(--font-size-xs);
  }

  .footer-powered {
    font-size: var(--font-size-xs);
  }
}

/* ===== UTILITY CLASSES FOR ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out forwards;
}

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

.slide-up {
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== ACCESSIBILITY ===== */
.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;
}

/* ===== FOCUS STATES ===== */
.btn-primary:focus button:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ===== ABOUT US PAGE STYLES ===== */
.about-page-content {
  max-width: 1204px;
  margin: 0 auto;
  padding: 60px 0;
  padding-bottom: 100px;
}

.breadcrumb-section {
  padding: 0 0px;
  margin-bottom: 0px;
}

.breadcrumb-text {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
  color: var(--color-black-gray);
  padding-top: 12px;
}

.breadcrumb-home {
  color: var(--color-black-gray);
  font-size: var(--font-size-xs);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-xs);
  text-decoration: none;
}

.breadcrumb-text .current {
  color: var(--color-black-100);
}

.about-hero {
  margin-bottom: 60px;
}

.about-title {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-3xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-black-100);
  margin-bottom: 16px;
}

.about-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  color: var(--color-black-gray);
}

.about-description strong {
  font-weight: var(--font-weight-semibold);
}

.services-section {
  margin-bottom: 60px;
}

.services-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-black-100);
  text-align: left;
  margin-bottom: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0px;
}

.service-card {
  position: relative;
  height: 330px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

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

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(51, 44, 109, 0.9), rgba(51, 44, 109, 0));
  padding: var(--spacing-lg);
  border-bottom-left-radius: var(--border-radius-lg);
  border-bottom-right-radius: var(--border-radius-lg);
}

.service-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-lg);
  color: var(--color-white);
  text-align: center;
}

.mission-vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.mission-card,
.vision-card {
  background: var(--color-secondary);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  color: var(--color-white);
}

.mission-vision-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.mission-vision-icon {
  width: 48px;
  height: 48px;
}

.mission-vision-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
}

.mission-vision-content {
  padding-left: 55px;
}

.mission-vision-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-sm);
}

.geo-bandwidth-section {
  background: var(--color-white);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  margin-bottom: 60px;
}

.geo-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-black-100);
  text-align: left;
  margin-bottom: 24px;
}

.operating-units {
  margin-bottom: 20px;
}

.operating-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-lg);
  color: var(--color-black-gray);
  margin-bottom: 8px;
}

.operating-description {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-sm);
  color: var(--color-black-gray);
}

.offices-section {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.offices-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-lg);
  color: var(--color-black-gray);
  width: 236px;
  flex-shrink: 0;
}

.offices-grid {
  display: flex;
  gap: 20px;
  flex: 1;
}

.office-card {
  position: relative;
  flex: 1;
  padding-bottom: 29px;
}

.office-image {
  width: 100%;
  height: 140px;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  margin-bottom: -29px;
  position: relative;
  z-index: 2;
}

.office-label {
  background: var(--color-bg-light-gray);
  height: 68px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 10px;
  border-bottom-left-radius: var(--border-radius-lg);
  border-bottom-right-radius: var(--border-radius-lg);
  z-index: 1;
  position: relative;
}

.office-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-sm);
  color: var(--color-primary);
}

.credentials-section {
  display: flex;
  gap: 20px;
  align-items: center;
}

.credentials-image {
  width: 558px;
  height: 308px;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
}

.credentials-content {
  flex: 1;
}

.credentials-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-black-100);
  margin-bottom: 10px;
}

.credentials-list {
  list-style: none;
  margin: 0;
  padding-left: 10px;
}

.credentials-list li {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-sm);
  color: var(--color-black-gray);
  margin-bottom: 0px;
  position: relative;
  padding-left: 20px;
}

.credentials-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-black-gray);
}

/* ===== MOBILE ABOUT US STYLES ===== */
@media (min-width:200px) and (max-width: 1023px) {
  .about-page-content {
    padding: 32px 16px;
  }

  .about-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-bottom: 2px;
    font-weight: var(--font-weight-medium);
  }

  .about-hero {
    margin-bottom: var(--spacing-xl);
  }

  .services-title {
    display: none;
  }

  .about-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
  }

  .services-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 0px;
    padding-inline: 16px;
    margin-inline: -16px;
  }

  .services-section {
    margin-bottom: var(--spacing-xl);
  }

  .mission-vision-section {
    margin-bottom: var(--spacing-xl);
  }

  .service-card {
    min-width: 160px;
    height: 210px;
    border-radius: var(--border-radius-sm);
  }

  .service-overlay {
    padding: 12px;
    border-bottom-left-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
  }

  .service-title {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    font-weight: var(--font-weight-bold);
  }

  .mission-vision-section {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mission-card,
  .vision-card {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
  }

  .mission-vision-header {
    gap: 8px;
  }

  .mission-vision-icon {
    width: 32px;
    height: 32px;
  }

  .mission-vision-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    font-weight: var(--font-weight-semibold);
  }

  .mission-vision-content {
    padding-left: 37px;
  }

  .mission-vision-text {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .geo-bandwidth-section {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
  }

  .geo-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
  }

  .operating-title {
    font-size: var(--font-size-sm);
  }

  .operating-description {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .offices-section {
    flex-direction: column;
    gap: 8px;
  }

  .offices-title {
    width: 100%;
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
  }

  .offices-grid {
    gap: 8px;
    overflow-x: auto;
    width: 100%;
    /* width: calc(100% + 30px); */
  }

  .office-card {
    min-width: 100px;
    flex-shrink: 0;
    padding-bottom: 0;
  }

  .office-image {
    height: 100px;
    border-radius: var(--border-radius-sm);
  }

  .office-label {
    border-bottom-left-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
  }

  .office-name {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .credentials-section {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .credentials-image {
    width: 100%;
    height: 190px;
    border-radius: var(--border-radius-sm);
  }

  .credentials-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
  }

  .credentials-list li {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    padding-left: 18px;
  }
}

/* ===== WHY US PAGE STYLES ===== */
.why-us-page-content {
  max-width: 1204px;
  margin: 0 auto;
  padding: 60px 0;
  padding-bottom: 100px;
}

.why-us-hero {
  margin-bottom: 60px;
}

.why-us-title {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-3xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-black-100);
  margin-bottom: 16px;
}

.why-us-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  color: var(--color-black-gray);
}

.why-us-description .highlight {
  font-weight: var(--font-weight-semibold);
}

.mt-10 {
  margin-top: 10px;
}

.hero-image-wrapper {
  height: 350px;
  margin-bottom: 24px;
}

.hero-image-banner {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
}

.team-cards-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.team-card {
  background: var(--color-secondary);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  color: var(--color-white);
}

.team-card-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  text-align: left;
  margin-bottom: 16px;
}

.team-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-card-list li {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-sm);
  margin-bottom: 4px;
  position: relative;
  padding-left: 24px;
}

.team-card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-white);
}

.infra-bandwidth-section {
  margin-bottom: 60px;
}

.infra-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-black-100);
  text-align: left;
  margin-bottom: 24px;
}

.infra-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.infra-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.infra-icon {
  width: 48px;
  height: 48px;
}

.infra-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-sm);
  color: var(--color-black-gray);
}

.exclusivity-section {
  background: var(--color-white);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--border-radius-lg);
}

.exclusivity-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-black-100);
  margin-bottom: 24px;
}

.exclusivity-content-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
}

.exclusivity-image {
  width: 562px;
  height: 308px;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
}

.exclusivity-text {
  flex: 1;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-sm);
  color: var(--color-black-gray);
}

.exclusivity-text p {
  margin-bottom: 12px;
}

.exclusivity-text p:last-child {
  margin-bottom: 0;
}

.reverse-row {
  flex-direction: row;
}

/* ===== MOBILE WHY US STYLES ===== */
@media (min-width:200px) and (max-width: 1023px) {
  .why-us-page-content {
    padding: 32px 16px;
  }

  .why-us-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    font-weight: var(--font-weight-medium);
    margin-bottom: 2px;
  }

  .why-us-hero {
    margin-bottom: var(--spacing-xl);
  }

  .hero-image-wrapper {
    height: 160px;
    margin-bottom: 32px;
  }

  .why-us-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
  }

  .hero-image-banner {
    height: 100%;
    border-radius: var(--border-radius-sm);
  }

  .team-cards-section {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 32px;
  }

  .team-card {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
  }

  .team-card-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-lg);
    margin-bottom: 4px;
  }

  .team-card-list li {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-xs);
    padding-left: 18px;
    margin-bottom: 0;
  }

  .infra-bandwidth-section {
    padding: 0 0;
    margin-bottom: 32px;
  }

  .infra-title {
    color: var(--color-black-100);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-sm);
    margin-bottom: 10px;
  }

  .infra-cards-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 0px;
    /* width: calc(100% + 20px); */
    padding-inline: 16px;
    margin-inline: -16px;
  }

  .infra-card {
    min-width: 200px;
    flex-shrink: inherit;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
    gap: var(--spacing-md);
  }

  .infra-icon {
    width: 32px;
    height: 32px;
  }

  .infra-text {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .exclusivity-section {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
  }

  .exclusivity-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-bottom: 16px;
  }

  .exclusivity-content-row {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
  }

  .exclusivity-content-row:last-child {
    margin-bottom: 0;
  }

  .exclusivity-image {
    width: 100%;
    height: auto;
    aspect-ratio: 562/308;
    border-radius: var(--border-radius-sm);
  }

  .exclusivity-text {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .reverse-row {
    flex-direction: column-reverse;
  }
}

/* ===== FOUNDERS STORY PAGE STYLES ===== */
.founders-page-content {
  max-width: 1204px;
  margin: 0 auto;
  padding: 60px 0;
}

.founders-hero {
  margin-bottom: 60px;
}

.founders-title {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-3xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-black-100);
  margin-bottom: 16px;
}

.founders-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  color: var(--color-black-gray);
  font-weight: var(--font-weight-regular);
}

.founders-description strong {
  font-weight: var(--font-weight-semibold);
}

.founding-members-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-black-100);
  margin-bottom: 60px;
}

.founder-card {
  background: var(--color-white);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  margin-bottom: 60px;
}

.founder-profile {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.founder-image-container {
  position: relative;
  width: 335px;
  height: 308px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.founder-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(25, 179, 236, 1) 0%, rgba(25, 179, 236, 0.5) 100%);
  z-index: 1;
}

.founder-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-lg);
}

.founder-name-title {
  /* margin-bottom: var(--spacing-lg); */
}

.founder-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-lg);
  color: var(--color-black-100);
  display: block;
}

.founder-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-lg);
  color: var(--color-black-gray);
  display: block;
}

.founder-bio {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-sm);
  color: var(--color-black-gray);
}

.founder-bio p {
  margin-bottom: 12px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

.founder-bio strong {
  font-weight: var(--font-weight-bold);
}

.founder-social {
  display: flex;
  align-items: center;
}

.founder-linkedin {
  width: 32px;
  height: 32px;
  display: block;
}

/* ===== MOBILE FOUNDERS STORY STYLES ===== */
@media (min-width:200px) and (max-width: 1023px) {
  .founders-page-content {
    padding: 32px 16px;
  }

  .founders-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-bottom: 2px;
  }

  .founders-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
  }

  .founding-members-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-bottom: 32px;
  }

  .founder-card {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
    margin-bottom: 32px;
  }

  .founder-profile {
    flex-direction: column;
    gap: 8px;
  }

  .founder-profile-header {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-end;
    margin-bottom: 8px;
  }

  .founder-image-container {
    width: 110px;
    height: 120px;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
  }

  .founder-name-title {
    flex: 1;
    margin-bottom: 0;
  }

  .founder-name {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
  }

  .founder-title {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
  }

  .founder-info {
    gap: 4px;
  }

  .founder-bio {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .founder-linkedin {
    width: 24px;
    height: 24px;
  }

  .founders-hero {
    margin-bottom: 32px;
  }


}

/* ===== TECH PROJECTS PAGE STYLES ===== */
.tech-projects-page-content {
  max-width: 1204px;
  margin: 0 auto;
  padding: 60px 0;
}

.tech-hero {
  margin-bottom: 60px;
}

.tech-title {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-4xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-black-100);
  margin-bottom: 16px;
}

.tech-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  color: var(--color-black-gray);
  font-weight: var(--font-weight-regular);
}

.tech-description .highlight {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.tech-description strong {
  font-weight: var(--font-weight-semibold);
}

/* Hero Image Section */
.tech-hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 60px;
}

.tech-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

/* Tech Projects Grid - Desktop */
.tech-projects-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}

.tech-project-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 0px 0px 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.techprojectswrapper .tech-project-card {
  padding: 24px;
  padding-bottom: 0;
}

.techprojectswrapper .project-content-wrapper {
  min-height: 220px;
}

.tech-project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  
}

.tech-project-img .project-logo {
  height: 100%;
  width: auto;
  object-fit: cover;
}

/* 
.tech-project-img {
  height: 40px;
} */

.tech-project-img-full-width .project-logo {
  width: 100%;
}

.project-logo.nextrip {
  height: 50px;
  width: 246px;
}

.project-tag {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--border-radius-lg);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-lg);
  min-width: 230px;
  text-align: left;
  flex-shrink: 0;
}

.project-tag strong {
  font-weight: var(--font-weight-bold);
}

.project-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-title {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  color: var(--color-black-100);
  font-weight: var(--font-weight-semibold);
}

.project-content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.project-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  align-self: flex-start;
}

.project-description {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-sm);
  color: var(--color-black-gray);
}

.project-image {
  width: 200px;
  height: 181px;
  object-fit: cover;
  flex-shrink: 0;
}

.project-image.nextrip {
  height: 187px;
  width: 199px;
}

/* Tech Values Section */
.tech-values-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.values-intro {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-sm);
  color: var(--color-black-gray);
}

.values-intro p:first-child {
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
}

.values-grid {
  display: flex;
  gap: 20px;
}

.value-card {
  background: var(--color-secondary);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.value-card.fixed-width {
  width: 204px;
  flex: none;
}

.value-card.narrow {
  width: 185px;
  flex: none;
}

.value-icon {
  width: 48px;
  height: 48px;
}

.value-text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-lg);
}

/* ===== MOBILE TECH PROJECTS STYLES ===== */
@media (min-width:200px) and (max-width: 1023px) {
  .tech-projects-page-content {
    padding: 32px 16px;
  }

  .tech-hero {
    margin-bottom: 32px;
  }

  .tech-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-bottom: 2px;
    font-weight: var(--font-weight-medium);
  }

  .tech-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
  }

  .tech-description strong {
    font-weight: var(--font-weight-bold);
  }

  /* Hero Image - Mobile */
  .tech-hero-image {
    height: 200px;
    margin-bottom: 32px;
  }

  .tech-hero-image img {
    height: 200px;
    border-radius: var(--border-radius-sm);
  }

  /* Tech Projects - Mobile */
  .tech-projects-grid {
    flex-direction: column;
    gap: 16px;
    margin-bottom: var(--spacing-md);
  }

  .tech-project-card {
    width: 100%;
    padding: 0px 0px 0 0px;
    border-radius: var(--border-radius-sm);
    gap: 16px;
    position: relative;
  }

  .tech-project-image {
    height: auto;
  }

  /* .tech-project-header {
    align-items: flex-start;
  } */

  .project-logo {
    height: 60px;
    width: 104px;
  }

  .project-logo.nextrip {
    height: 30px;
    width: 148px;
  }

  .project-tag {
    padding: 8px;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    width: auto;
    min-width: auto;
  }

  .project-content {
    gap: 8px;
    position: relative;
  }

  .project-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
  }

  .project-content-wrapper {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    position: relative;
  }

  .project-text-content {
    width: 100%;
    gap: 16px;
    padding-bottom: 0;
  }

  .project-description {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .project-image {
    /* position: absolute; */
    bottom: 0;
    right: 0;
    width: 155px;
    height: 140px;
    border-radius: var(--border-radius-sm) 0 var(--border-radius-sm) 0;
  }

  .project-image.nextrip {
    width: 149px;
    height: 140px;
  }

  /* Values Section - Mobile */
  .tech-values-section {
    gap: 10px;
  }

  .values-intro {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .values-intro p:first-child {
    margin-bottom: 12px;
  }

  .values-grid {
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* width: calc(100% + 20px); */
    padding-inline: 16px;
    margin-inline:-16px ;
  }

  .values-grid::-webkit-scrollbar {
    display: none;
  }

  .value-card {
    min-width: 120px;
    flex-shrink: 0;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    gap: 16px;
  }

  .value-card.fixed-width,
  .value-card.narrow {
    width: min-content;
    min-width: 120px;
  }

  .value-icon {
    width: 32px;
    height: 32px;
  }

  .value-text {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    font-weight: var(--font-weight-bold);
  }

  .techprojectswrapper .project-content-wrapper {
    min-height: unset;
  }
}

/* ===== CONNECT US PAGE STYLES ===== */
.connect-page-content {
  padding: 60px 0 100px;
}

.connect-hero {
  margin-bottom: 48px;
}

.connect-title {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-4xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-black-100);
  margin-bottom: 16px;
}

.connect-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  color: var(--color-black-gray);
  font-weight: var(--font-weight-regular);
}

.connect-description strong {
  font-weight: var(--font-weight-semibold);
}

.connect-description .bold {
  font-weight: var(--font-weight-bold);
}

/* Connect Content Section */
.connect-content-section {
  display: flex;
  height: 400px;
  align-items: flex-start;
  gap: 0;
}

.connect-image {
  flex: 1;
  height: 100%;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
}

.connect-info-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 24px 32px 24px 40px;
  width: 592px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.connect-info-content {
  width: 528px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  padding-bottom: 24px;
}

.solutions-header {
  padding-bottom: 10px;
}

.solutions-title {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-2xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-secondary);
  margin: 0;
}

.solutions-subtitle {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin: 0;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.contact-item.center-aligned {
  align-items: center;
}

.contact-item .email,
.contact-item .phone {
  color: var(--color-black-gray);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-sm);
  text-decoration: none;
}

.contact-icon {
  background: var(--color-secondary);
  padding: 0px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-icon img {
  width: 100%;
  height: 100%;
}

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  color: var(--color-black-gray);
}

.contact-details .company-name {
  font-weight: var(--font-weight-bold);
}

.contact-details .address {
  font-weight: var(--font-weight-medium);
}

.contact-details .email,
.contact-details .phone {
  font-weight: var(--font-weight-semibold);
}

/* ===== MOBILE CONNECT US STYLES ===== */
@media (min-width:200px) and (max-width: 1023px) {
  .connect-page-content {
    padding: 32px 16px;
  }

  .contact-item .email,
  .contact-item .phone {
    color: var(--color-black-gray);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-xs);
  }

  .footer-bottom p.text-sm,
  .footer-links a {
    color: var(--color-white);
    text-align: center;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-xs);
  }

  .connect-hero {
    margin-bottom: 32px;
  }

  .connect-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-bottom: 2px;
    font-weight: var(--font-weight-medium);
  }

  .connect-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
  }

  .connect-description strong {
    font-weight: var(--font-weight-bold);
  }

  /* Connect Content - Mobile */
  .connect-content-section {
    flex-direction: column;
    height: auto;
    gap: 32px;
  }

  .connect-image {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius-sm);
  }

  .connect-info-card {
    width: 100%;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    gap: 16px;
    height: auto;
  }

  .connect-info-content {
    width: 100%;
    padding-bottom: 0;
    gap: 16px;
  }

  .solutions-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
  }

  .solutions-subtitle {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-2xl);
  }

  .contact-icon {
    width: 30px;
    height: 30px;
  }

  /* 
  .contact-icon img {
    width: 20px;
    height: 20px;
  } */

  .contact-details {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }
}

/* ===== TERMS PAGE STYLES ===== */
.terms-page-content {
  max-width: 1204px;
  margin: 0 auto;
  padding: 60px 0 100px;
}

.terms-hero {
  margin-bottom: 48px;
}

.terms-title {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-4xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-black-100);
  margin: 0;
}

.terms-subtitle {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-black-100);
  margin: 16px 0 0 0;
}

/* Terms Content Card */
.terms-content-card {
  background: var(--color-white);
  padding: 24px 40px 24px 40px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.terms-section-title {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-black-gray);
  margin: 0;
}

.terms-section-content {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-black-gray);
  margin: 0;
}

.terms-list {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-black-gray);
  margin: 0;
  padding-left: 24px;
  list-style-type: disc;
}

.terms-list li {
  margin-bottom: 0;
}

.terms-nested-list {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-black-gray);
  margin: 0;
  padding-left: 24px;
  list-style-type: disc;
}

.terms-nested-list li {
  margin-bottom: 0;
}

/* ===== MOBILE TERMS STYLES ===== */
@media (min-width:200px) and (max-width: 1023px) {
  .terms-page-content {
    padding: 32px 16px;
  }

  .terms-hero {
    margin-bottom: 32px;
  }

  .terms-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    font-weight: var(--font-weight-medium);
  }

  .terms-subtitle {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  /* Terms Content - Mobile */
  .terms-content-card {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    gap: 20px;
  }

  .terms-section-title {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    font-weight: var(--font-weight-bold);
  }

  .terms-section-content {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    font-weight: var(--font-weight-medium);
  }

  .terms-list {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .terms-nested-list {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */
.privacy-page-content {
  max-width: 1204px;
  margin: 0 auto;
  padding: 60px 0 100px;
}

.privacy-hero {
  margin-bottom: 48px;
}

.privacy-title {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-4xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-black-100);
  margin: 0;
}

.privacy-subtitle {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-black-100);
  margin: 16px 0 0 0;
}

/* Privacy Content Card */
.privacy-content-card {
  background: var(--color-white);
  padding: 24px 40px 24px 40px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.privacy-section-title {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-black-gray);
  margin: 0;
}

.privacy-section-content {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-black-gray);
  margin: 0;
}

.privacy-section-content p {
  margin-bottom: 12px;
}

.privacy-section-content p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-black-gray);
  margin: 0;
  padding-left: 24px;
  list-style-type: disc;
  margin-bottom: 12px;
}

.privacy-list li {
  margin-bottom: 0;
}

.privacy-nested-list {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-black-gray);
  margin: 0;
  padding-left: 24px;
  list-style-type: disc;
}

.privacy-nested-list li {
  margin-bottom: 0;
}

.privacy-links {
  color: var(--color-primary);
  text-decoration: none;
  transition: .3s all ease;
}

.privacy-links:hover {
  text-decoration: underline;
}

/* ===== MOBILE PRIVACY STYLES ===== */
@media (min-width:200px) and (max-width: 1023px) {

  .footer-logo-section {
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .social-links {
    margin-top: 0;
  }

  .footer-contact {
    order: 3;
    margin: 0 auto;
    margin-top: 8px;
    display: none;
  }

  .footer-contact img {
    width: 20px;
    height: 20px;
  }

  .privacy-page-content {
    padding: 32px 16px;
  }

  .privacy-hero {
    margin-bottom: 32px;
  }

  .privacy-title {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    font-weight: var(--font-weight-medium);
  }

  .privacy-subtitle {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  /* Privacy Content - Mobile */
  .privacy-content-card {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    gap: 20px;
  }

  .privacy-section-title {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    font-weight: var(--font-weight-bold);
  }

  .privacy-section-content {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    font-weight: var(--font-weight-medium);
  }

  .privacy-list {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }

  .privacy-nested-list {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .credentials-section {
    align-items: flex-start;
  }

  .infra-card {
    flex-shrink: inherit;
  }

  .team-cards-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .techprojectswrapper {
    flex-direction: row;
  }

  .tech-projects-grid {
    flex-direction: row;
  }

  .value-card.fixed-width,
  .value-card.narrow {
    width: 120px;
    min-width: 120px;
  }

  .connect-content-section {
    flex-direction: row;
    gap: 0;
  }

  .connect-image {
    width: 50%;
    height: 100%;
    object-fit: cover;
    min-height: -webkit-fill-available;
  }

  .connect-info-card {
    width: 50%;
  }

  .mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1250px) {
  .container-custom {
    width: 100%;
    max-width: 100%;
    padding: 0 20px !important;
  }

  .hero-section {
    width: 100%;
    max-width: 100%;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .values-grid {
    overflow-x: auto;
  }

  .value-card {
    min-width: 185px;
  }

  .techprojectswrapper .project-logo.nextrip {
    width: 180px;
  }

  .techprojectswrapper .project-logo {
    width: 150px;
  }

  .techprojectswrapper .project-content-wrapper {
    min-height: 300px;
  }

  .exclusivity-image {
    width: 50%;
  }

  .connect-info-card,
  .connect-image {
    width: 50%;
    flex: none;
  }

  .footer-links {
    gap: 10px;
    white-space: nowrap;
  }

  .footer-bottom p.text-sm {
    font-size: 12px;
  }

  .connect-info-content {
    width: 100%;
  }

}