:root {
    --navy: #1a365d;
    --orange: #f97316;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: auto !important;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on all sections */
section, nav, footer, main, .navbar, .nav-container, .nav-links, .hero, .carousel-section, .pyramid-section, .industries-showcase-section, .results-section, .how-we-hire-section, .contact-section, .footer-container {
  box-sizing: border-box;
  max-width: 100vw;
  min-width: 0;
  overflow-x: hidden;
}

/* Fix unwanted right space on mobile for all elements */
* {
  box-sizing: border-box;
}

/* Remove horizontal scroll caused by absolutely/fixed positioned elements */
[style*="left: 100vw"], [style*="right: -100vw"], [style*="width: 100vw"] {
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
}

/* --- CRITICAL: Remove grid gap and force no overflow for industries-showcase-grid --- */
.industries-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem 1rem;
  box-sizing: border-box;
  overflow-x: visible;
}

@media (max-width: 900px) {
  .industries-showcase-grid {
    max-width: 100vw;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.5rem 2rem 0.5rem;
  }
}

.industry-showcase-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.industry-showcase-card img {
  max-width: 100%;
  height: auto;
  border-radius: 1.2rem;
  display: block;
}

/* Responsive fix for mobile: remove right margin/padding and force no overflow */
@media (max-width: 600px) {
  html, body {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    overflow-x: hidden;
    position: relative;
  }
  main, section, nav, footer, .navbar, .nav-container, .nav-links, .hero, .carousel-section, .pyramid-section, .industries-showcase-section, .results-section, .how-we-hire-section, .contact-section, .footer-container {
    max-width: 100vw;
    min-width: 0;
    overflow-x: hidden;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }
  .services-interactive-container,
  .industries-showcase-grid {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  /* Remove horizontal scroll from all children */
  * {
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }
}

/* Hide scrollbars on mobile for aesthetics */
@media (max-width: 600px) {
  body::-webkit-scrollbar {
    display: none;
  }
  body {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

h1, h2, h3, .carousel-title, .services-interactive-title, .pyramid-title, .industries-title, .contact-title, .footer-brand-name {
    font-family: 'Zen Dots', 'Nunito', sans-serif;
    letter-spacing: 0.01em;
}

/* Section Title Accent Style (matches .accent in hero) */
.how-we-hire-headline,
.services-interactive-title {
  font-family: 'Zen Dots', 'Nunito', sans-serif;
  font-size: 2.4rem !important;
  font-weight: 900;
  color: var(--orange) !important;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 0;
  -webkit-text-stroke: 0 !important;
}
@media (max-width: 900px) {
  .how-we-hire-headline,
  .services-interactive-title {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 600px) {
  .how-we-hire-headline,
  .services-interactive-title {
    font-size: 1.1rem !important;
  }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background: rgba(240, 240, 240, 0.80);
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 120px;
}

.navbar.scrolled .nav-container {
    min-height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 120px;
    width: auto;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
    transition: height 0.3s;
}

.navbar.scrolled .logo img {
    height: 64px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1rem;
    transition: color 0.2s, border-bottom 0.2s;
    padding: 0.5rem 0.25rem;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--navy);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, var(--navy) 60%, var(--orange) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px; /* Ensure hero starts below navbar */
    margin-bottom: 0;
}

.hero-bottom-gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    /* Gradient starts at 70% of hero height, transitions to white at the bottom */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 70%, #fff 100%);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 153, 255, 0.25); /* light blue with transparency */
    z-index: 1;
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero .accent {
    color: var(--orange);
}

.hero .tagline {
    font-size: 1.3rem;
    margin: 1.5rem 0 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

/* Set all section backgrounds to white except hero */
.carousel-section,
.pyramid-section,
.services-interactive-section,
.industries-hero,
.industries-list-section,
.industries-showcase-section,
.contact-section {
    background: var(--white) !important;
}

/* Results Section */
.results-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  background: #fff;
  padding: 4.5rem 0 3.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.results-headline {
  font-family: 'Zen Dots', 'Nunito', sans-serif;
  font-size: 2.4rem !important;
  font-weight: 900;
  color: var(--orange) !important;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 0;
  -webkit-text-stroke: 0 !important;
}
@media (max-width: 900px) {
  .results-headline {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 600px) {
  .results-headline {
    font-size: 1.1rem !important;
  }
}
.results-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.results-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  padding: 3.2rem 2.5rem 2.5rem 2.5rem;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 0.5rem;
  overflow: visible;
}
.results-card:before, .results-card:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: #f97316;
  z-index: 0;
}
.results-card:before {
  width: 60px;
  height: 60px;
  left: -30px;
  top: -30px;
  opacity: 0.7;
}
.results-card:after {
  width: 80px;
  height: 80px;
  right: -40px;
  bottom: -40px;
  opacity: 0.5;
}
.results-number {
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #181c23;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 0.1em;
}
.results-number .count {
  color: #181c23;
  font-size: 3.2rem;
  font-weight: 900;
  font-family: inherit;
  letter-spacing: 0.01em;
}
.results-desc {
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #6b7280;
  text-align: center;
  margin-top: 0.2rem;
  z-index: 1;
}
@media (max-width: 900px) {
  .results-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .results-card {
    min-width: 0;
    max-width: 98vw;
    width: 100%;
    padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  }
  .results-number, .results-number .count {
    font-size: 2.1rem;
  }
  .results-desc {
    font-size: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }
}

.hero-to-carousel-transition {
    width: 100vw;
    height: 160px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #111 100%);
    margin: 0;
    border: none;
    padding: 0;
}

.carousel-section {
    background: #181c23;
    color: #fff;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent !important;
}

.carousel-title {
    color: #f97316 !important;
    font-size: 2.4rem;
    font-weight: 900;
    margin: 2.5rem 0 1.5rem 0;
    letter-spacing: 0.02em;
    text-align: center;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1100px;
    min-height: 480px;
    background: transparent !important;
    border-radius: 0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    overflow: hidden;
    margin: 0 auto;
}

.carousel-arrow {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    font-size: 2.5rem;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(249,115,22,0.10);
    font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
    font-weight: 900;
}
.carousel-arrow.left::before {
    content: '<';
    font-size: 2.2rem;
    color: var(--orange);
    font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
    font-weight: 900;
}
.carousel-arrow.right::before {
    content: '>';
    font-size: 2.2rem;
    color: var(--orange);
    font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
    font-weight: 900;
}
.carousel-arrow:hover {
    background: rgba(249,115,22,0.12);
    color: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 4px 24px rgba(249,115,22,0.18);
}
.carousel-arrow.left:hover::before,
.carousel-arrow.right:hover::before {
    color: var(--orange);
}
.carousel-arrow.left { left: 8px; }
.carousel-arrow.right { right: 8px; }

.carousel-slides {
    display: flex;
    width: 100%;
    max-width: 100%;
    position: relative;
    transition: transform 0.5s;
}

.carousel-slide {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    height: 480px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    transition: transform 0.5s, opacity 0.5s, filter 0.5s;
    opacity: 0.5;
    filter: grayscale(0.7) blur(1px);
    transform: scale(0.92);
    pointer-events: none;
    background: transparent !important;
}
.carousel-slide.active {
    opacity: 1;
    filter: none;
    transform: scale(1.04);
    z-index: 2;
    pointer-events: auto;
    background: var(--white) !important;
}
.carousel-slide.prev, .carousel-slide.next {
    opacity: 0.8;
    transform: scale(0.97);
    z-index: 1;
}
.carousel-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: brightness(0.7);
}
.carousel-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
    color: #fff;
    padding: 2.5rem 3rem 2rem 3rem;
    box-sizing: border-box;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
.carousel-caption h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.7rem;
}
.carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    max-width: 600px;
}
.carousel-link {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.carousel-link:hover {
    color: #ffa726;
}

@media (max-width: 1200px) {
    .carousel-container {
        padding: 0 10px 30px 10px;
    }
    .carousel {
        max-width: 100%;
    }
}
@media (max-width: 900px) {
    .carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .carousel-title {
        font-size: 1.6rem;
    }
    .carousel-arrow.left { left: 8px; }
    .carousel-arrow.right { right: 8px; }
    .carousel-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}
@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    .carousel-title {
        font-size: 1.1rem;
    }
}

.footer {
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    padding: 0;
    margin-top: 0;
    font-size: 1rem;
    letter-spacing: 0.01em;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 1.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 1.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 2px 8px #0ff2);
}
.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--orange);
}
.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-nav a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s;
    font-size: 1rem;
}
.footer-nav a:hover {
    color: var(--orange);
    opacity: 1;
}
.footer-social {
    display: flex;
    gap: 1.1rem;
}
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(26,54,93,0.08);
    color: var(--orange);
    font-size: 1.5rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.footer-social-icon:hover {
    background: var(--orange);
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding-top: 1.2rem;
    font-size: 1rem;
    color: var(--navy);
    opacity: 0.85;
}
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .footer-container {
        padding: 2rem 1rem 1rem 1rem;
    }
    .footer-nav {
        gap: 1rem;
    }
}

.pyramid-section {
    background: var(--white);
    color: var(--navy);
    position: relative;
    padding: 4rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pyramid-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}
.pyramid-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}
.pyramid-level {
    color: #fff;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    margin: 0 auto;
    position: relative;
    border-radius: 12px 12px 0 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.pyramid-level:last-child {
    margin-bottom: 0 !important;
}
.pyramid-top {
    background: var(--navy);
    width: 60%;
    min-width: 220px;
    max-width: 320px;
    height: 60px;
    margin-bottom: 10px;
    z-index: 3;
    font-size: 1.15rem;
    border-radius: 18px 18px 0 0;
}
.pyramid-second {
    background: var(--orange);
    width: 80%;
    min-width: 260px;
    max-width: 400px;
    height: 70px;
    margin-bottom: 10px;
    z-index: 2;
    font-size: 1.13rem;
    border-radius: 18px 18px 0 0;
}
.pyramid-third {
    background: var(--navy);
    width: 100%;
    min-width: 300px;
    max-width: 480px;
    height: 80px;
    z-index: 1;
    font-size: 1.11rem;
    border-radius: 18px 18px 12px 12px;
    opacity: 0.7;
}
@media (max-width: 600px) {
    .pyramid-diagram {
        max-width: 98vw;
    }
    .pyramid-level, .pyramid-top, .pyramid-second, .pyramid-third {
        min-width: 0;
        max-width: 98vw;
        font-size: 0.98rem;
        height: auto;
        padding: 1.1rem 0.5rem;
    }
}

.services-interactive-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    padding: 4rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.services-interactive-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    width: 100%;
}
.services-list-column, .services-image-column {
    flex: 1 1 0;
    height: auto;
    min-width: 0;
    padding: 0;
    margin: 0;
}
.services-image-column {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 260px;
    max-width: 520px;
    padding: 0;
    margin: 0;
}
.service-image {
    width: 100%;
    height: 100%;
    max-width: 420px;
    min-height: 260px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    background: var(--navy);
    transition: opacity 0.3s;
    display: block;
    margin: 0;
    padding: 0;
}
.service-row {
    background: #000;
    color: var(--white);
    border-radius: 0;
    padding: 1.3rem 1.5rem 1.1rem 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    border: 2px solid transparent;
    position: relative;
}
.service-row.active, .service-row:hover {
    background: var(--orange);
    color: var(--white);
    border: 2px solid var(--orange);
    box-shadow: 0 4px 32px rgba(249,115,22,0.10);
    z-index: 2;
}
.service-row h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}
.service-row p {
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0.92;
}
@media (max-width: 900px) {
    .services-interactive-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .services-list-column, .services-image-column {
        max-width: 98vw;
        min-width: 0;
        height: auto;
    }
    .services-image-column {
        align-items: center;
    }
    .service-image {
        max-width: 98vw;
        height: 260px;
    }
}

.industries-hero {
    background: linear-gradient(120deg, var(--navy) 60%, var(--orange) 100%);
    color: #fff;
    text-align: center;
    padding: 4.5rem 1rem 2.5rem 1rem;
}
.industries-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
}
.industries-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.96;
    margin-bottom: 0.5rem;
}
.industries-list-section {
    background: #181c23;
    padding: 3.5rem 0 3rem 0;
    display: flex;
    justify-content: center;
}
.industries-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1100px;
    width: 100%;
    justify-content: center;
}
.industry-card {
    background: #23272f;
    color: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 2.2rem 2.2rem 1.7rem 2.2rem;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
    border: 2px solid transparent;
    position: relative;
}
.industry-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}
.industry-card p {
    font-size: 1.08rem;
    font-weight: 500;
    opacity: 0.93;
}
.industry-card.tech { border-left: 6px solid var(--orange); }
.industry-card.healthcare { border-left: 6px solid #00c3ff; }
.industry-card.fintech { border-left: 6px solid #7e3af2; }
.industry-card.retail { border-left: 6px solid #facc15; }
.industry-card.logistics { border-left: 6px solid #10b981; }
.industry-card:hover {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 8px 32px rgba(249,115,22,0.13);
    transform: translateY(-6px) scale(1.03);
    border-color: var(--orange);
    z-index: 2;
}
@media (max-width: 900px) {
    .industries-list-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .industry-card {
        min-width: 0;
        max-width: 98vw;
        width: 100%;
    }
}

.services-interactive-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.2rem;
    letter-spacing: 0.01em;
}

.contact-section {
    background: #181c23;
    color: #fff;
    position: relative;
    padding: 4rem 20px 3rem 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(249, 115, 22, 0.35); /* lighter, thinner orange border */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    margin-right: calc(-1 * (100vw - 100%) / 2);
    box-sizing: border-box;
}
.contact-container {
    display: flex;
    gap: 3.5rem;
    max-width: 1200px;
    width: 100%;
    align-items: stretch;
    justify-content: center;
}
.contact-info-column {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2.2rem;
    min-width: 260px;
    max-width: 420px;
}
.contact-title {
    color: var(--orange);
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}
.contact-details {
    font-size: 1.18rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
}
.contact-icon {
    font-size: 1.5rem;
    color: #00c3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.7em;
    height: 1.7em;
}
.contact-icon svg {
    width: 1.3em;
    height: 1.3em;
    display: block;
}
.contact-offices {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-office strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    display: block;
}
.contact-office {
    font-size: 1rem;
    color: #e5e7eb;
    font-weight: 500;
}
.contact-form-column {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    max-width: 100%; /* Allow full width on desktop */
    width: 100%; /* Ensure it fills available space */
}
.contact-form {
    background: #181c23;
    border-radius: 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
    padding: 2.5rem 2.2rem 2rem 2.2rem;
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-form label {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.contact-form input,
.contact-form textarea {
    border: none;
    border-radius: 0;
    padding: 0.8rem 1rem;
    font-size: 1.05rem;
    background: var(--white);
    color: var(--navy);
    font-family: inherit;
    margin-top: 0.2rem;
    margin-bottom: 0.1rem;
    outline: none;
    transition: box-shadow 0.2s, border 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 2px solid var(--orange);
    box-shadow: 0 2px 8px rgba(0,195,255,0.10);
}
.contact-btn {
    background: var(--orange);
    color: var(--white);
    font-size: 1.18rem;
    font-weight: 700;
    border: none;
    border-radius: 0;
    padding: 0.9rem 2.2rem;
    margin-top: 0.7rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,195,255,0.10);
}
.contact-btn:hover {
    background: var(--navy);
    color: var(--white);
}
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .contact-info-column, .contact-form-column {
        max-width: 98vw;
        min-width: 0;
    }
    .contact-form {
        max-width: 98vw;
    }
}

.section-transition {
    width: 100vw;
    height: 120px;
    margin: 0;
    border: none;
    padding: 0;
    position: relative;
    z-index: 2;
}
.section-transition.white-to-black {
    height: 320px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(24,28,35,0.85) 60%,
        #181c23 100%
    );
}
.section-transition.black-to-white {
    background: linear-gradient(to bottom, #181c23 0%, rgba(24,28,35,0.12) 40%, rgba(255,255,255,0.01) 60%, #fff 100%);
}

.industries-showcase-section {
    background: #232021;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking */
    justify-content: center;
    align-items: center;
    box-shadow: none !important;
}
.industries-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem 1rem;
  box-sizing: border-box;
  overflow-x: visible;
}

@media (max-width: 900px) {
  .industries-showcase-grid {
    max-width: 100vw;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.5rem 2rem 0.5rem;
  }
}

.industry-showcase-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.industry-showcase-card img {
  max-width: 100%;
  height: auto;
  border-radius: 1.2rem;
  display: block;
}

/* Animate image when hovered or when the underline in the previous text-card is expanded */
.industry-showcase-card.image-card:hover img,
.industry-showcase-card.text-card:hover + .industry-showcase-card.image-card img,
.industry-showcase-card.text-card:focus-within + .industry-showcase-card.image-card img,
.industry-showcase-card.text-card:hover ~ .industry-showcase-card.image-card img,
.industry-showcase-card.text-card:focus-within ~ .industry-showcase-card.image-card img {
    transform: scale(1.06);
    z-index: 2;
}
.industry-showcase-card h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    font-family: 'Zen Dots', 'Nunito', sans-serif;
}
.industry-underline {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin-bottom: 1.5rem;
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.industry-showcase-card.text-card:hover .industry-underline,
.industry-showcase-card.text-card:focus-within .industry-underline {
    width: 100%;
}
.industry-showcase-card p {
    font-size: 1.08rem;
    font-weight: 500;
    opacity: 0.93;
    margin-bottom: 2.2rem;
}
.industry-link {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.08rem;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.industry-link:hover {
    color: var(--white);
}
@media (max-width: 900px) {
    .industries-showcase-grid {
        grid-template-columns: 1fr;
    }
    .industry-showcase-card.image-card img,
    .industry-showcase-card {
        min-height: 220px;
        padding: 2rem 1.2rem;
    }
}

.industries-showcase-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
    padding: 3.5rem 2rem 0 2rem;
    text-align: center;
}
.industries-showcase-title {
  font-family: 'Zen Dots', 'Nunito', sans-serif;
  font-size: 2.4rem !important;
  font-weight: 900;
  color: var(--orange) !important;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 0;
  -webkit-text-stroke: 0 !important;
}
@media (max-width: 900px) {
  .industries-showcase-title {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 600px) {
  .industries-showcase-title {
    font-size: 1.1rem !important;
  }
}

/* HOW WE HIRE SECTION */
.how-we-hire-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  position: relative;
  z-index: 1;
}
.how-we-hire-headline {
  font-family: 'Zen Dots', 'Nunito', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 3px var(--orange);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 0;
}
.how-we-hire-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.how-we-hire-tab {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
  box-shadow: 0 2px 8px rgba(249,115,22,0.07);
  margin-bottom: 0.5rem;
}
.how-we-hire-tab.active,
.how-we-hire-tab:focus,
.how-we-hire-tab[aria-selected="true"] {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  z-index: 2;
}
.how-we-hire-tab:hover {
  background: #fff7f0;
  color: var(--orange);
  border-color: var(--orange);
}
.how-we-hire-tab:focus-visible {
  outline: 3px solid var(--navy);
}
.how-we-hire-tab-panels {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how-we-hire-tab-panel {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 1;
  z-index: 1;
}
.how-we-hire-tab-panel[hidden] {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.how-we-hire-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.how-we-hire-card-content {
  flex: 2 1 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.how-we-hire-step-title {
  font-family: 'Zen Dots', 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.how-we-hire-step-desc {
  font-size: 1.15rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 1.2rem;
}
.how-we-hire-step-list {
  list-style: disc inside;
  color: var(--orange);
  font-size: 1.08rem;
  font-weight: 700;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.how-we-hire-step-list li {
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.how-we-hire-card-images {
  flex: 1 1 180px;
  min-width: 120px;
  display: flex;
  flex-direction: row;
  gap: 1.1rem;
  align-items: flex-end;
  justify-content: flex-end;
}
/* Default image style for all tabs */
.how-we-hire-card-img {
  display: block;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,54,93,0.10);
  background: #fff7f0;
  border: 2px solid #fff3e0;
  transition: transform 0.2s, box-shadow 0.2s;
  object-fit: cover;
}
.how-we-hire-card-img:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 4px 24px rgba(249,115,22,0.18);
  z-index: 2;
}
/* Tab-specific image sizes and tweaks */
#how-we-hire-panel-1 .how-we-hire-card-img {
  width: 180px;
  height: 140px;
  object-fit: cover;
}
#how-we-hire-panel-2 .how-we-hire-card-img {
  width: 170px;
  height: 140px;
  object-fit: cover;
}
#how-we-hire-panel-3 .how-we-hire-card-img {
  width: 170px;
  height: 140px;
  object-fit: cover;
}
#how-we-hire-panel-4 .how-we-hire-card-img {
  width: 170px;
  height: 140px;
  object-fit: cover;
}
#how-we-hire-panel-5 .how-we-hire-card-img {
  width: 170px;
  height: 140px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .how-we-hire-card-images {
    justify-content: flex-start;
    gap: 0.7rem;
  }
  #how-we-hire-panel-1 .how-we-hire-card-img,
  #how-we-hire-panel-2 .how-we-hire-card-img,
  #how-we-hire-panel-3 .how-we-hire-card-img,
  #how-we-hire-panel-4 .how-we-hire-card-img,
  #how-we-hire-panel-5 .how-we-hire-card-img {
    width: 120px;
    height: 90px;
  }
}
@media (max-width: 600px) {
  #how-we-hire-panel-1 .how-we-hire-card-img,
  #how-we-hire-panel-2 .how-we-hire-card-img,
  #how-we-hire-panel-3 .how-we-hire-card-img,
  #how-we-hire-panel-4 .how-we-hire-card-img,
  #how-we-hire-panel-5 .how-we-hire-card-img {
    width: 80px;
    height: 60px;
  }
}