:root {
  --primary-color: #9c42f8;
  --primary-dark: #7a2fd1;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f9f9f9;
  --transition: all 0.3s ease;
}

.services-hero {
  height: 70vh;
  min-height: 550px;
  max-height: 700px;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 2rem;
  overflow: hidden;
}

.services-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('resources/images/serviceshero.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.services-hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.hero-text {
  max-width: 800px;
}

.typing-text {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.services-hero h1 {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.text-button {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.text-button i {
  transition: all 0.3s ease;
}

.text-button:hover {
  color: var(--primary-color);
}

.text-button:hover i {
  transform: translateX(5px);
}

.purple-text {
  color: var(--primary-color);
}

/* Typing Animation */
.cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .services-hero {
    padding: 6rem 1rem 2rem;
    height: 75vh;
    min-height: 500px;
  }

  .typing-text {
    font-size: 2.5rem;
  }

  .services-hero h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 5rem 0.5rem 1.5rem;
    height: 65vh;
    min-height: 450px;
  }

  .typing-text {
    font-size: 2rem;
  }

  .services-hero h1 {
    font-size: 2.2rem;
  }

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

  .hero-carousel-container {
    padding: 0.8rem 1rem;
    max-width: 100%;
  }

  .hero-tech-logo {
    width: 45px;
    height: 30px;
  }

  .hero-carousel-track {
    gap: 1rem;
  }

  .hero-carousel-track > div {
    gap: 1rem;
    animation: heroScroll 30s linear infinite;
  }
}

/* Hero Tech Carousel */
.hero-carousel-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  padding: 1rem 2rem;
  z-index: 2;
}

.hero-carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.hero-carousel-track > div {
  display: flex;
  gap: 1.5rem;
  animation: heroScroll 25s linear infinite;
  min-width: max-content;
}

@keyframes heroScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

.hero-tech-logo {
  width: 60px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: brightness(1.2);
}

.hero-tech-logo:hover {
  opacity: 0.9;
}

.services-container {
  position: relative;
  background: linear-gradient(135deg, #9c42f8 0%, #6c1dc5 100%);
  padding: 60px 40px;
  border-radius: 24px;
  margin: 40px auto;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.services-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.25) 1.2px, transparent 1.2px),
    radial-gradient(rgba(255,255,255,0.12) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.iphone-wrapper {
  position: relative;
  width: 320px;
  height: 640px;
  z-index: 1;
}

.iphone-frame {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.iphone-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.wallpaper {
  width: 90%;
  height: 95%;
  object-fit: cover;
  pointer-events: none;
}

.app-grid {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-gap: 20px 10px;
  padding: 50px 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  z-index: 4;
  text-align: center;
}

.app-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.app-icon-wrapper:hover {
  transform: scale(1.05);
}

.app-icon-wrapper.active .ios-icon {
  transform: scale(0.95);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.ios-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.ios-icon i {
  font-size: 28px;
  color: white;
}

.app-icon-wrapper span {
  font-size: 12px;
  color: white;
  max-width: 100px;
  line-height: 1.3;
  white-space: normal;
  height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app-icon-wrapper[data-service="solution-architecture"] .ios-icon {
  background: linear-gradient(135deg, #FF6B6B 0%, #EE5253 100%);
}

.app-icon-wrapper[data-service="custom-development"] .ios-icon {
  background: linear-gradient(135deg, #4834D4 0%, #686DE0 100%);
}

.app-icon-wrapper[data-service="sap-development"] .ios-icon {
  background: linear-gradient(135deg, #20BF6B 0%, #26DE81 100%);
}

.app-icon-wrapper[data-service="project-management"] .ios-icon {
  background: linear-gradient(135deg, #F97F51 0%, #FA8231 100%);
}

.app-icon-wrapper[data-service="business-analysis"] .ios-icon {
  background: linear-gradient(135deg, #1B9CFC 0%, #0ABDE3 100%);
}

.app-icon-wrapper[data-service="startup-bootstrapping"] .ios-icon {
  background: linear-gradient(135deg, #8854D0 0%, #A55EEA 100%);
}

.app-icon-wrapper[data-service="cloud-solutions"] .ios-icon {
  background: linear-gradient(135deg, #45AAF2 0%, #2D98DA 100%);
}

.app-icon-wrapper[data-service="ai-integration"] .ios-icon {
  background: linear-gradient(135deg, #FC427B 0%, #FD7272 100%);
}

.service-details {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  color: #2D3436;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-details h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #6C1DC5;
}

.service-details p {
  line-height: 1.6;
  color: #636E72;
  margin-bottom: 1rem;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 10px 30px rgba(156, 66, 248, 0.3);
  animation: iconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-icon-large i {
  font-size: 2rem;
  color: white;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(156, 66, 248, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(156, 66, 248, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.feature-badge:nth-child(1) { animation-delay: 0.1s; }
.feature-badge:nth-child(2) { animation-delay: 0.2s; }
.feature-badge:nth-child(3) { animation-delay: 0.3s; }

.feature-badge:hover {
  background: rgba(156, 66, 248, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(156, 66, 248, 0.3);
}

.feature-badge i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.feature-badge span {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.process-section {
  position: relative;
  padding: 100px 40px;
  background: #fff;
}

.process-section:nth-child(even) {
  background: #F8F9FA;
}

.process-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.process-header {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.process-header h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #2D3436;
}

.process-header p {
  font-size: 1.2rem;
  color: #636E72;
  max-width: 800px;
  margin: 0 auto;
}

.process-flow {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.process-flow.reveal {
  opacity: 1;
  transform: translateY(0);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.step-content {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6C1DC5 0%, #8A2BE2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.step-features li {
  margin: 10px 0;
  color: #636E72;
}

.step-features li i {
  color: #6C1DC5;
  margin-right: 10px;
}

.step-connector {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -50px;
  z-index: 1;
}

.connector-path {
  fill: none;
  stroke: #6C1DC5;
  stroke-width: 2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-path 1.5s ease forwards 0.5s;
}

.startup-journey {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.startup-journey.reveal {
  opacity: 1;
  transform: translateY(0);
}

.journey-path {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.journey-path::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B6B 0%, #FF6B6B 50%, #e0e0e0 50%, #e0e0e0 100%);
  z-index: 0;
  transform: translateY(-50%);
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 140px;
}

.milestone-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.milestone-icon i {
  font-size: 24px;
  color: #636E72;
  transition: all 0.3s ease;
}

.milestone h4 {
  font-size: 0.9rem;
  color: #2D3436;
  margin: 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.milestone.active .milestone-icon {
  border-color: #FF6B6B;
  background: #FF6B6B;
}

.milestone.active .milestone-icon i {
  color: white;
}

.milestone:hover .milestone-icon {
  transform: translateY(-5px);
  border-color: #FF6B6B;
}

.milestone:hover h4 {
  color: #FF6B6B;
}

.journey-details {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.detail-card {
  display: none;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.detail-card h3 {
  color: #2D3436;
  margin: 0 0 20px;
  font-size: 1.5rem;
}

.detail-content {
  color: #636E72;
}

.detail-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.detail-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.detail-list li i {
  color: #FF6B6B;
  margin-right: 10px;
}

.agile-cycle {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 40px auto;
}

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #6C1DC5 0%, #8A2BE2 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(108, 29, 197, 0.2);
}

.cycle-center i {
  font-size: 24px;
  margin-bottom: 5px;
  animation: rotate 10s linear infinite;
}

.cycle-center span {
  font-size: 14px;
  line-height: 1.2;
}

.cycle-phase {
  position: absolute;
  width: 100px;
  text-align: center;
}

.phase-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.phase-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C1DC5;
  font-size: 24px;
  margin-bottom: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cycle-phase span {
  color: #2D3436;
  font-weight: 500;
}

.cycle-phase:hover .phase-content {
  transform: translateY(-5px);
}

.cycle-phase:hover .phase-icon {
  background: #6C1DC5;
  color: white;
}

.cycle-phase.develop {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-phase.test {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.cycle-phase.deploy {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-phase.adapt {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cycle-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.cycle-progress {
  stroke-dasharray: 502.4;
  stroke-dashoffset: 502.4;
  animation: drawCircle 2s ease forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.methodology-phases {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.methodology-phases.reveal {
  opacity: 1;
  transform: translateY(0);
}

.initial-phase, .final-phase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.phase-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-5px);
}

.phase-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6C1DC5 0%, #8A2BE2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.phase-card:hover .phase-icon {
  transform: scale(1.1);
}

.phase-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.phase-list li {
  margin: 10px 0;
  color: #636E72;
}

.phase-list li i {
  color: #6C1DC5;
  margin-right: 10px;
  font-size: 14px;
}

.cycle-container {
  margin: 60px 0;
  display: flex;
  justify-content: center;
}

.cycle-diagram {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 40px auto;
}

.cycle-phase {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100px;
  text-align: center;
}

.cycle-phase.develop {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-phase.test {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.cycle-phase.deploy {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-phase.adapt {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.cycle-phase:hover {
  transform: scale(1.1);
}

.cycle-phase.develop:hover {
  transform: translateX(-50%) scale(1.1);
}

.cycle-phase.test:hover {
  transform: translateY(-50%) scale(1.1);
}

.cycle-phase.deploy:hover {
  transform: translateX(-50%) scale(1.1);
}

.cycle-phase.adapt:hover {
  transform: translateY(-50%) scale(1.1);
}

.cycle-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 1;
}

.cycle-track {
  fill: none;
  stroke: #E0E0E0;
  stroke-width: 2;
}

.cycle-path {
  fill: none;
  stroke: #6C1DC5;
  stroke-width: 2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: progress 2s ease forwards;
}

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #6C1DC5 0%, #8A2BE2 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(108, 29, 197, 0.2);
}

.cycle-center i {
  font-size: 24px;
  margin-bottom: 5px;
}

.cycle-center span {
  font-size: 14px;
  line-height: 1.2;
}

.cycle-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C1DC5;
  font-size: 24px;
  margin-bottom: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cycle-phase:hover .cycle-icon {
  background: #6C1DC5;
  color: white;
}

.cycle-phase span {
  color: #2D3436;
  font-weight: 500;
}

.cycle-track {
  fill: none;
  stroke: #E0E0E0;
}

.cycle-path {
  fill: none;
  stroke: #6C1DC5;
  animation: progress 2s ease forwards;
}

@media (max-width: 992px) {
  .cycle-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .cycle-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .cycle-phase span {
    font-size: 12px;
  }

  .cycle-center {
    width: 80px;
    height: 80px;
  }

  .cycle-center i {
    font-size: 20px;
  }

  .cycle-center span {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .agile-cycle {
    width: 350px;
    height: 350px;
  }

  .cycle-svg {
    width: 250px;
    height: 250px;
  }

  .phase-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .agile-cycle {
    width: 300px;
    height: 300px;
  }

  .cycle-svg {
    width: 200px;
    height: 200px;
  }

  .phase-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .cycle-phase span {
    font-size: 12px;
  }

  .cycle-center {
    width: 80px;
    height: 80px;
  }

  .cycle-center i {
    font-size: 20px;
  }

  .cycle-center span {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .services-container {
    padding: 30px 20px;
    margin: 20px;
  }

  .iphone-wrapper {
    width: 280px;
    height: 560px;
  }

  .ios-icon {
    width: 50px;
    height: 50px;
  }

  .ios-icon i {
    font-size: 24px;
  }

  .service-details {
    margin-top: 20px;
    padding: 20px;
  }

  .process-section {
    padding: 60px 20px;
  }

  .process-header h2 {
    font-size: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .journey-path {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin-left: 40px;
  }

  .journey-path::before {
    top: 0;
    bottom: 0;
    left: -20px;
    width: 2px;
    height: auto;
  }

  .milestone {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }

  .milestone-icon {
    margin: 0 20px 0 0;
  }

  .milestone h4 {
    text-align: left;
  }

  .detail-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat {
    padding: 20px;
    background: #F8F9FA;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .services-container {
    padding: 20px 15px;
  }

  .iphone-wrapper {
    width: 240px;
    height: 480px;
  }

  .ios-icon {
    width: 45px;
    height: 45px;
  }

  .ios-icon i {
    font-size: 20px;
  }
}

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f2f2;
}

.startup-diagram {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 60px auto;
}

.startup-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #FF6B6B 0%, #EE5253 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(238, 82, 83, 0.2);
}

.startup-center i {
  font-size: 28px;
  margin-bottom: 8px;
}

.startup-center span {
  font-size: 14px;
  line-height: 1.2;
}

.startup-phase {
  position: absolute;
  width: 200px;
  text-align: center;
}

.phase-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B6B;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.startup-phase:hover .phase-icon {
  background: #FF6B6B;
  color: white;
  transform: scale(1.1);
}

.startup-phase h4 {
  color: #2D3436;
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
}

.startup-phase p {
  color: #636E72;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.startup-phase:hover p {
  opacity: 1;
  transform: translateY(0);
}

.phase-1 { top: 0; left: 50%; transform: translateX(-50%); }
.phase-2 { top: 12%; right: 12%; }
.phase-3 { top: 40%; right: 0; }
.phase-4 { bottom: 40%; right: 0; }
.phase-5 { bottom: 12%; right: 12%; }
.phase-6 { bottom: 0; left: 50%; transform: translateX(-50%); }
.phase-7 { bottom: 12%; left: 12%; }

.startup-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 1;
}

.progress-track {
  fill: none;
  stroke: #E0E0E0;
  stroke-width: 2;
}

.progress-path {
  fill: none;
  stroke: #FF6B6B;
  stroke-width: 2;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  animation: progress 2s ease forwards;
}

.phase-details {
  margin: 40px auto 0;
  text-align: center;
}

.detail-description {
  color: #636E72;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .startup-diagram {
    width: 500px;
    height: 500px;
  }

  .startup-phase {
    width: 160px;
  }

  .startup-progress {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .startup-diagram {
    width: 400px;
    height: 400px;
  }

  .startup-phase {
    width: 140px;
  }

  .startup-phase .phase-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .startup-progress {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .startup-diagram {
    width: 300px;
    height: 300px;
  }

  .startup-phase {
    width: 120px;
  }

  .startup-phase .phase-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .startup-phase h4 {
    font-size: 0.9rem;
  }

  .startup-phase p {
    font-size: 0.8rem;
  }

  .startup-progress {
    width: 250px;
    height: 250px;
  }

  .startup-center {
    width: 80px;
    height: 80px;
  }

  .startup-center i {
    font-size: 24px;
  }

  .startup-center span {
    font-size: 12px;
  }
}

@keyframes draw-path {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes iconBounce {
  0% {
    transform: scale(0.3) rotate(-10deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

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

@media (max-width: 768px) {
  .service-icon-large {
    width: 60px;
    height: 60px;
  }
  
  .service-icon-large i {
    font-size: 1.5rem;
  }
  
  .service-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-badge {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* Revolutionary Project Methodology Section */
.process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(156, 66, 248, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(156, 66, 248, 0.05) 0%, transparent 50%),
    linear-gradient(45deg, transparent 49%, rgba(156, 66, 248, 0.02) 50%, transparent 51%);
  pointer-events: none;
}

.process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header .process-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 40px rgba(156, 66, 248, 0.3);
  animation: pulse 2s infinite;
}

.process-header .process-icon i {
  font-size: 3rem;
  color: white;
}

.process-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.process-header p {
  font-size: 1.3rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Methodology Stats */
.methodology-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: inline-block;
}

.stat-unit {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Methodology Navigator */
.methodology-navigator {
  margin: 6rem 0 4rem;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.nav-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.nav-header p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.methodology-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.method-tab {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 150px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.method-tab:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.method-tab.active {
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  color: white;
  border-color: var(--primary-color);
}

.method-tab i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.method-tab span {
  font-weight: 600;
  font-size: 1.1rem;
}

.method-tab small {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Methodology Content */
.methodology-content {
  display: none;
  animation: fadeInUp 0.6s ease;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.methodology-content.active {
  display: block;
}

.method-overview {
  margin-bottom: 3rem;
}

.overview-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.overview-card h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.overview-card p {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.method-benefits {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.benefit-tag {
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(156, 66, 248, 0.3);
}

/* Sprint Timeline */
.sprint-timeline {
  margin: 3rem 0;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.timeline-header h4 {
  font-size: 1.8rem;
  color: #1e293b;
  font-weight: 700;
}

.timeline-controls {
  display: flex;
  gap: 0.5rem;
}

.timeline-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

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

.phase-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.phase-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.phase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.phase-item .phase-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.phase-item h5 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.phase-item p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.phase-duration {
  background: rgba(156, 66, 248, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.phase-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phase-deliverables span {
  background: rgba(34, 197, 94, 0.1);
  color: #059669;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Agile Tools */
.agile-tools {
  margin: 3rem 0;
}

.agile-tools h4 {
  font-size: 1.8rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tool-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tool-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tool-card h5 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tool-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Lean Cycle */
.lean-cycle {
  margin: 3rem 0;
}

.cycle-visualization {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
}

.cycle-step {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cycle-step:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cycle-step.build {
  grid-column: 1;
  grid-row: 1;
}

.cycle-step.measure {
  grid-column: 3;
  grid-row: 1;
}

.cycle-step.learn {
  grid-column: 2;
  grid-row: 3;
}

.cycle-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

.cycle-arrow.right {
  grid-column: 2;
  grid-row: 1;
}

.cycle-arrow.down {
  grid-column: 3;
  grid-row: 2;
  transform: rotate(90deg);
}

.cycle-arrow.left {
  grid-column: 1;
  grid-row: 2;
  transform: rotate(180deg);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.cycle-step h5 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cycle-step p {
  color: #64748b;
  margin-bottom: 1rem;
}

.cycle-step ul {
  list-style: none;
  padding: 0;
}

.cycle-step li {
  color: #64748b;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.cycle-step li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Waterfall Phases */
.waterfall-phases {
  margin: 3rem 0;
}

.phase-flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.waterfall-phase {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.waterfall-phase:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.phase-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 2rem;
  flex-shrink: 0;
}

.phase-details h5 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.phase-details p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.phase-timeline {
  background: rgba(156, 66, 248, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

/* AI Features */
.ai-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.ai-feature {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ai-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.ai-feature h5 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.ai-feature p {
  color: #64748b;
  line-height: 1.6;
}

/* Success Metrics Dashboard */
.success-metrics {
  margin: 6rem 0 4rem;
  text-align: center;
}

.success-metrics h3 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
  font-weight: 700;
}

.metrics-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.metric-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.metric-value .value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.metric-value .unit {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.metric-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.metric-trend {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.metric-trend.up {
  color: #059669;
}

.metric-trend.down {
  color: #dc2626;
}

/* Methodology CTA */
.methodology-cta {
  margin: 4rem 0;
  text-align: center;
}

.cta-content {
  border-radius: 30px;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(156, 66, 248, 0.3);
}

.cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}

.cta-btn.primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
/* Sticky Tab Bar for Mobile */
.sticky-tab-bar {
  position: fixed;
  top: 85px; /* Below navbar with some spacing */
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(156, 66, 248, 0.1);
  z-index: 998; /* Below navbar (which is 1000) */
  padding: 0.8rem 1rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none; /* Hidden by default */
  opacity: 0;
  visibility: hidden;
}

/* Show sticky tabs only on mobile */
@media (max-width: 768px) {
  .sticky-tab-bar {
    display: block;
  }
  
  .sticky-tab-bar.active {
    opacity: 1;
    visibility: visible;
  }
}

.sticky-tab-bar.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.2rem;
}

.sticky-tabs::-webkit-scrollbar {
  display: none;
}

.sticky-tab {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(156, 66, 248, 0.2);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: auto;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  flex-shrink: 0;
}

.sticky-tab:hover {
  transform: translateY(-2px);
  border-color: #9c42f8;
  box-shadow: 0 4px 12px rgba(156, 66, 248, 0.2);
}

.sticky-tab.active {
  background: linear-gradient(135deg, #9c42f8, #8b5cf6);
  color: white;
  border-color: #9c42f8;
  box-shadow: 0 4px 12px rgba(156, 66, 248, 0.3);
}

.sticky-tab i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sticky-tab span {
  font-weight: 600;
}

/* Agile Week Selection Sticky Tab Bar (Mobile Only) */
.sticky-tab-bar.week-selector {
  top: 145px; /* Below main methodology sticky tab bar */
  background: rgba(156, 66, 248, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: none; /* Hidden by default */
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 768px) {
  .sticky-tab-bar.week-selector {
    display: block;
  }
  
  .sticky-tab-bar.week-selector.active {
    opacity: 1;
    visibility: visible;
  }
}

.sticky-tab-bar.week-selector.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Week tab styling */
.week-tab {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.week-tab:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.week-tab.active {
  background: rgba(255, 255, 255, 0.9);
  color: #9c42f8;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Hide original timeline controls on mobile when sticky week selector is active */
@media (max-width: 768px) {
  .timeline-controls {
    display: none;
  }
}

@media (max-width: 768px) {
  .methodology-stats {
    grid-template-columns: 1fr;
  }
  
  .metrics-dashboard {
    grid-template-columns: 1fr;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-features {
    grid-template-columns: 1fr;
  }
  
  .phase-track {
    grid-template-columns: 1fr;
  }

  /* Hide main section tabs on mobile since we have sticky tabs */
  .methodology-tabs,
  .recruitment-tabs,
  .startup-tabs {
    display: none !important;
  }
  
  /* Also hide individual tab buttons just to be sure */
  .method-tab,
  .recruitment-tab,
  .startup-tab {
    display: none !important;
  }

  /* Removed recruitment and startup tab styles since they're hidden on mobile */
  
  /* Mobile instructions for navigation */
  .methodology-navigator .nav-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .methodology-navigator .nav-header::after {
    content: "Use the tabs at the top of your screen to switch between methodologies.";
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-style: italic;
  }
  
  .recruitment-navigator .nav-header::after {
    content: "Use the tabs at the top of your screen to navigate through our recruitment process.";
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-style: italic;
  }
  
  .startup-navigator .nav-header::after {
    content: "Use the tabs at the top of your screen to explore our startup partnership phases.";
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-style: italic;
  }

  /* Adjust section spacing for sticky tabs */
  .process-section {
    scroll-margin-top: 140px;
  }
}

/* Client Bespoke Methodology Styles */
.bespoke-approach {
  margin: 3rem 0;
}

.approach-header {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-header h4 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.approach-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.bespoke-steps {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.bespoke-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.bespoke-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(156, 66, 248, 0.3);
}

.step-content h5 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-elements {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.element {
  background: rgba(156, 66, 248, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(156, 66, 248, 0.2);
}

.methodology-combinations {
  margin: 4rem 0;
}

.methodology-combinations h4 {
  font-size: 2rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.combination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.combination-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.combination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.combo-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.combo-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  background: rgba(156, 66, 248, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.combination-card h5 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.combination-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

.bespoke-benefits {
  margin: 4rem 0;
}

.bespoke-benefits h4 {
  font-size: 2rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  background: rgba(156, 66, 248, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-item h5 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Methodology CTA */
.methodology-cta {
  margin: 4rem 0;
  text-align: center;
}

/* Startup Bootstrapping Process Section */
.startup-program {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.startup-program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, transparent 49%, rgba(59, 130, 246, 0.02) 50%, transparent 51%);
  pointer-events: none;
}

.startup-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  animation: pulse 2s infinite;
}

/* Startup Navigator */
.startup-navigator {
  margin: 6rem 0 4rem;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.startup-navigator .nav-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.startup-navigator .nav-header p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.startup-tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.startup-tab {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.startup-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.startup-tab.active {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.startup-tab i {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.startup-tab span {
  font-weight: 600;
  font-size: 0.9rem;
}

.startup-tab small {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 500;
}

/* Startup Content */
.startup-content {
  display: none;
  animation: fadeInUp 0.6s ease;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.startup-content.active {
  display: block;
}

.phase-overview {
  margin-bottom: 3rem;
}

.phase-overview .overview-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.phase-overview .overview-card h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.phase-overview .overview-card p {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.phase-benefits {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.phase-benefits .benefit-tag {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Phase Details */
.phase-details {
  margin: 3rem 0;
}

.startup-program .detail-icon {
  background: rgba(59, 130, 246, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.startup-program .phase-item:hover .detail-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  transform: scale(1.1);
}

.startup-program .detail-icon i {
  font-size: 1.8rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.startup-program .phase-item:hover .detail-icon i {
  color: white;
}

.startup-program .detail-icon i {
  font-size: 1.5rem;
}

.startup-program .detail-icon {
  width: 60px;
  height: 60px;
}

/* Responsive Design for Startup Section */
@media (max-width: 768px) {
  .startup-tabs {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .startup-tab {
    min-width: auto;
    padding: 1rem 1.5rem;
    width: 100%;
    max-width: 200px;
  }



  .detail-icon {
    width: 60px;
    height: 60px;
  }

  .detail-icon i {
    font-size: 1.5rem;
  }

  /* Bespoke methodology responsive */
  .bespoke-step {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    align-self: center;
  }

  .combination-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .combo-icon {
    gap: 0.5rem;
  }

  .combo-icon i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .process-header h2 {
    font-size: 2.5rem;
  }
  
  .methodology-stats {
    grid-template-columns: 1fr;
  }
  
  .methodology-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .phase-track {
    grid-template-columns: 1fr;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-features {
    grid-template-columns: 1fr;
  }
  
  .metrics-dashboard {
    grid-template-columns: 1fr;
  }
  
  .cycle-visualization {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .cycle-step.build,
  .cycle-step.measure,
  .cycle-step.learn {
    grid-column: 1;
    grid-row: auto;
  }
  
  .cycle-arrow {
    transform: rotate(90deg) !important;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Bespoke methodology responsive */
  .bespoke-step {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    align-self: center;
  }

  .combination-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .combo-icon {
    gap: 0.5rem;
  }

  .combo-icon i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  /* Startup section responsive */
  .startup-tabs {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .startup-tab {
    min-width: auto;
    padding: 1rem 1.5rem;
    width: 100%;
    max-width: 200px;
  }



  .detail-icon {
    width: 60px;
    height: 60px;
  }

  .detail-icon i {
    font-size: 1.5rem;
  }
}

.startup-program .detail-icon i {
  color: white;
}

/* Tech Recruitment Section Styles */
.tech-recruitment {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  position: relative;
  overflow: hidden;
}

.tech-recruitment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%233b82f6" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.15;
  z-index: 0;
}

.recruitment-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.recruitment-navigator {
  margin: 4rem 0;
}

.recruitment-navigator .nav-header {
  text-align: center;
  margin-bottom: 3rem;
}

.recruitment-navigator .nav-header h3 {
  font-size: 2.2rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.recruitment-navigator .nav-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.recruitment-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.recruitment-tab {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.recruitment-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.recruitment-tab:hover::before {
  left: 100%;
}

.recruitment-tab i {
  font-size: 1.8rem;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  display: block;
  transition: all 0.3s ease;
}

.recruitment-tab span {
  font-weight: 600;
  color: #1e293b;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.recruitment-tab small {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
}

.recruitment-tab:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.recruitment-tab.active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.recruitment-tab.active i,
.recruitment-tab.active span,
.recruitment-tab.active small {
  color: white;
}

/* Recruitment Content */
.recruitment-content-wrapper {
  position: relative;
  width: 100%;
}

.recruitment-content {
  display: none;
  animation: fadeInUp 0.6s ease;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.recruitment-content.active {
  display: block;
}

/* Recruitment Section Detail Icons */
.tech-recruitment .detail-icon {
  background: rgba(59, 130, 246, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.tech-recruitment .phase-item:hover .detail-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: scale(1.1);
}

.tech-recruitment .detail-icon i {
  font-size: 1.8rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.tech-recruitment .phase-item:hover .detail-icon i {
  color: white;
}

/* Responsive Design for Recruitment Section */
@media (max-width: 768px) {
  .recruitment-tabs {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .recruitment-tab {
    min-width: auto;
    padding: 1rem 1.5rem;
    width: 100%;
    max-width: 200px;
  }

  /* Recruitment section responsive detail icons */
  .tech-recruitment .detail-icon {
    width: 60px;
    height: 60px;
  }

  .tech-recruitment .detail-icon i {
    font-size: 1.5rem;
  }
}

/* Ensure recruitment phase-track uses full width */
.tech-recruitment .phase-details {
  width: 100%;
}

.tech-recruitment .phase-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  justify-content: stretch;
}

/* Enhanced visibility for recruitment phase items */
.tech-recruitment .phase-item {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(59, 130, 246, 0.1) !important;
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.08) !important;
  z-index: 1;
  position: relative;
}

.tech-recruitment .phase-item:hover {
  background: rgba(255, 255, 255, 1) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.15) !important;
  transform: translateY(-10px) !important;
}

.tech-recruitment .phase-item h5 {
  color: #1e293b !important;
  font-weight: 700 !important;
}

.tech-recruitment .phase-item p {
  color: #475569 !important;
  font-weight: 500 !important;
}

/* Mobile responsive for recruitment phase-track */
@media (max-width: 768px) {
  .tech-recruitment .phase-track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tech-recruitment .phase-item {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.12) !important;
  }
}

/* CTA Section Styles */
.cta-section {
  padding: 2rem 0;
  background: white;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent;
}

.company-cta {
  text-align: center;
  background: linear-gradient(135deg, #9c42f8 0%, #7a2fd1 100%);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(156, 66, 248, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-circle-1 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.cta-circle-2 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -75px;
  left: -75px;
  animation: float 8s ease-in-out infinite reverse;
}

.cta-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-icon i {
  font-size: 2rem;
  color: white;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button.primary {
  background: white;
  color: #9c42f8;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
  background: #f8f9ff;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Mobile responsive styles for CTA section */
@media (max-width: 768px) {
  .cta-section {
    padding: 1.5rem 0;
  }
  
  .cta-section .container {
    padding: 0 1rem;
  }
  
  .company-cta {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .cta-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .cta-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .company-cta {
    padding: 1rem;
    margin: 0 0.5rem;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-text {
    font-size: 0.95rem;
  }
  
  /* Fix overview card heading overflow on small screens */
  .overview-card h3,
  .phase-overview .overview-card h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 1rem;
  }
}

/* Tech Recruitment Header Styling */
.tech-recruitment .process-header .process-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.tech-recruitment .process-header h2 {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== DARK MODE STYLES ===== */
[data-theme="dark"] {
  --bg-light: #1a1a1a;
  --text-dark: #e5e5e5;
  --text-light: #b3b3b3;
}

/* Hero Section Dark Mode */
[data-theme="dark"] .services-hero-background::before {
  background: rgba(0, 0, 0, 0.7); /* Slightly darker overlay for dark mode */
}

[data-theme="dark"] .hero-title {
  color: #ffffff;
}

[data-theme="dark"] .hero-subtitle {
  color: #e5e5e5;
}

/* Services Container Dark Mode */
[data-theme="dark"] .services-container {
  background: linear-gradient(135deg, #2d1b3d 0%, #1a1a1a 100%);
}

[data-theme="dark"] .services-container::before {
  background-image:
    radial-gradient(rgba(255,255,255,0.1) 1.2px, transparent 1.2px),
    radial-gradient(rgba(255,255,255,0.05) 1.2px, transparent 1.2px);
}

/* Body Dark Mode */
[data-theme="dark"] body {
  background: #1a1a1a;
}

/* App Icons Dark Mode */
[data-theme="dark"] .app-icon-wrapper span {
  color: #ffffff;
}

[data-theme="dark"] .ios-icon {
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

[data-theme="dark"] .app-icon-wrapper.active .ios-icon {
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

/* Service Details Box Dark Mode */
[data-theme="dark"] .service-details {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e5e5e5;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .service-details h2 {
  color: #c084fc;
}

[data-theme="dark"] .service-details p {
  color: #b3b3b3;
}

/* AI Feature Cards Dark Mode */
[data-theme="dark"] .ai-feature {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .ai-feature:hover {
  background: rgba(55, 55, 55, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .ai-feature h5 {
  color: #ffffff;
}

[data-theme="dark"] .ai-feature p {
  color: #b3b3b3;
}

/* Service Cards Dark Mode */
[data-theme="dark"] .service-card {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e5e5e5;
}

[data-theme="dark"] .service-card:hover {
  background: rgba(55, 55, 55, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .service-card h3 {
  color: #ffffff;
}

[data-theme="dark"] .service-card p {
  color: #b3b3b3;
}

/* Process Sections Dark Mode */
[data-theme="dark"] .process-section {
  background: #1a1a1a;
}

[data-theme="dark"] .process-header {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .process-header h2 {
  color: #ffffff;
}

[data-theme="dark"] .process-header p {
  color: #b3b3b3;
}

/* Navigator Tabs Dark Mode */
[data-theme="dark"] .navigator {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-tab {
  background: rgba(60, 60, 60, 0.8);
  color: #b3b3b3;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-tab:hover {
  background: rgba(80, 80, 80, 0.9);
  color: #ffffff;
}

[data-theme="dark"] .nav-tab.active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

[data-theme="dark"] .overview-card {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .overview-card h3 {
  color: #ffffff;
}

[data-theme="dark"] .overview-card p {
  color: #b3b3b3;
}

[data-theme="dark"] .benefits-list li {
  color: #e5e5e5;
}

[data-theme="dark"] .benefits-list li::before {
  color: var(--primary-color);
}

/* Phase Items Dark Mode */
[data-theme="dark"] .phase-item {
  background: rgba(45, 45, 45, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .phase-item:hover {
  background: rgba(55, 55, 55, 0.95) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .phase-item h4 {
  color: #ffffff;
}

[data-theme="dark"] .phase-item p {
  color: #b3b3b3;
}

[data-theme="dark"] .phase-duration {
  background: rgba(156, 66, 248, 0.2);
  color: #c084fc;
}

[data-theme="dark"] .phase-deliverables span {
  background: rgba(34, 197, 94, 0.3);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

/* Timeline Buttons Dark Mode */
[data-theme="dark"] .timeline-btn {
  background: rgba(60, 60, 60, 0.8);
  color: #e5e5e5;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .timeline-btn:hover {
  background: rgba(80, 80, 80, 0.9);
  color: #ffffff;
  border-color: var(--primary-color);
}

[data-theme="dark"] .timeline-btn.active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* Benefit Tags Dark Mode */
[data-theme="dark"] .phase-benefits .benefit-tag {
  background: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

/* Method Tabs Dark Mode */
[data-theme="dark"] .method-tab {
  background: rgba(45, 45, 45, 0.9);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .method-tab:hover {
  background: rgba(55, 55, 55, 0.9);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .method-tab.active {
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  color: white;
  border-color: var(--primary-color);
}

/* Recruitment Tabs Dark Mode */
[data-theme="dark"] .recruitment-tab {
  background: rgba(45, 45, 45, 0.9);
  border: 2px solid rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(20px);
}

[data-theme="dark"] .recruitment-tab::before {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

[data-theme="dark"] .recruitment-tab i {
  color: #60a5fa;
}

[data-theme="dark"] .recruitment-tab span {
  color: #ffffff;
}

[data-theme="dark"] .recruitment-tab small {
  color: #b3b3b3;
}

[data-theme="dark"] .recruitment-tab:hover {
  background: rgba(55, 55, 55, 0.9);
  border-color: #60a5fa;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

[data-theme="dark"] .recruitment-tab.active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

/* Startup Tabs Dark Mode */
[data-theme="dark"] .startup-tab {
  background: rgba(45, 45, 45, 0.9);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .startup-tab:hover {
  background: rgba(55, 55, 55, 0.9);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .startup-tab.active {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

[data-theme="dark"] .startup-tab i {
  color: inherit;
}

[data-theme="dark"] .startup-tab span {
  color: inherit;
}

[data-theme="dark"] .startup-tab small {
  color: inherit;
  opacity: 0.8;
}

/* Waterfall Phase Dark Mode */
[data-theme="dark"] .waterfall-phase {
  background: rgba(45, 45, 45, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .waterfall-phase:hover {
  background: rgba(55, 55, 55, 0.95) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .waterfall-phase h4 {
  color: #ffffff;
}

[data-theme="dark"] .waterfall-phase p {
  color: #b3b3b3;
}

/* Bespoke Step Dark Mode */
[data-theme="dark"] .bespoke-step {
  background: rgba(45, 45, 45, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(20px);
}

[data-theme="dark"] .bespoke-step:hover {
  background: rgba(55, 55, 55, 0.95) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .bespoke-step h4 {
  color: #ffffff;
}

[data-theme="dark"] .bespoke-step p {
  color: #b3b3b3;
}

[data-theme="dark"] .bespoke-step .step-content h5 {
  color: #ffffff;
}

[data-theme="dark"] .bespoke-step .step-content ul li {
  color: #b3b3b3;
}

/* Step Content Dark Mode */
[data-theme="dark"] .step-content {
  background: rgba(45, 45, 45, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .step-content:hover {
  background: rgba(55, 55, 55, 0.95) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .step-content h5 {
  color: #ffffff !important;
}

[data-theme="dark"] .step-content p {
  color: #b3b3b3 !important;
}

[data-theme="dark"] .step-content ul li {
  color: #b3b3b3 !important;
}

/* Approach Header Dark Mode */
[data-theme="dark"] .approach-header h4 {
  color: #ffffff;
}

[data-theme="dark"] .approach-header p {
  color: #ffffff;
}

/* Phase Details Dark Mode */
[data-theme="dark"] .phase-details h5 {
  color: #ffffff;
}

[data-theme="dark"] .phase-details p {
  color: #ffffff;
}

/* Methodology Combinations Dark Mode */
[data-theme="dark"] .methodology-combinations h4 {
  color: #ffffff;
}

/* Bespoke Benefits Dark Mode */
[data-theme="dark"] .bespoke-benefits h4 {
  color: #ffffff;
}

/* Tool Cards Dark Mode */
[data-theme="dark"] .tool-card {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .tool-card:hover {
  background: rgba(55, 55, 55, 0.95);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .tool-card h5 {
  color: #ffffff;
}

[data-theme="dark"] .tool-card p {
  color: #b3b3b3;
}

[data-theme="dark"] .agile-tools h4 {
  color: #ffffff;
}

/* Cycle Elements Dark Mode */
[data-theme="dark"] .cycle-step {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e5e5e5;
}

[data-theme="dark"] .cycle-step h4 {
  color: #ffffff;
}

[data-theme="dark"] .cycle-arrow {
  color: var(--primary-color);
}

/* Sticky Tab Bar Dark Mode */
[data-theme="dark"] .sticky-tab-bar {
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .sticky-tab {
  background: rgba(60, 60, 60, 0.8);
  color: #b3b3b3;
}

[data-theme="dark"] .sticky-tab.active {
  background: var(--primary-color);
  color: #ffffff;
}

[data-theme="dark"] .sticky-tab:hover {
  background: rgba(80, 80, 80, 0.9);
  color: #ffffff;
}

/* CTA Section Dark Mode */
[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, #2d1b3d 0%, #1a1a1a 100%);
}

[data-theme="dark"] .cta-content h2 {
  color: #ffffff;
}

[data-theme="dark"] .cta-content p {
  color: #e5e5e5;
}

/* Recruitment Section Blue Theme Dark Mode */
[data-theme="dark"] .tech-recruitment {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .tech-recruitment .navigator {
  background: rgba(30, 41, 59, 0.9);
}

[data-theme="dark"] .tech-recruitment .nav-tab {
  background: rgba(51, 65, 85, 0.8);
  border-color: rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .tech-recruitment .nav-tab.active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: #3b82f6;
}

[data-theme="dark"] .tech-recruitment .overview-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .tech-recruitment .phase-item {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.15) !important;
}

[data-theme="dark"] .tech-recruitment .phase-item:hover {
  background: rgba(51, 65, 85, 0.95) !important;
  border-color: rgba(59, 130, 246, 0.4) !important;
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.25) !important;
}

[data-theme="dark"] .tech-recruitment .phase-item h5 {
  color: #ffffff !important;
}

[data-theme="dark"] .tech-recruitment .phase-item p {
  color: #b3b3b3 !important;
}

[data-theme="dark"] .feature-badge span{
  color: #ffffff;
}

[data-theme="dark"] .nav-header h3 {
  color: #ffffff;
}

[data-theme="dark"] .nav-header p {
  color: #ffffff;
}

[data-theme="dark"] .phase-item h5 {
  color: #ffffff;
}

[data-theme="dark"] .timeline-header h4 {
  color: #ffffff;
}