/* Hero Section Styles */
.btn-primary {
  font-weight: 400 !important;
  font-size: 1rem !important;
}
.highlight {
  font-weight: 600;
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  max-height: 489px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('./images/hero\ Section.png');
  /* Placeholder for background image - user will add their own */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
} */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle-blue {
  color: var(--primary-color);
  font-weight: 600;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 112, 192, 0.3);
}

.hero-btn-secondary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.hero-btn-secondary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 112, 192, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .hero-content {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-description br {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
  }

  .hero-content {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Strategic Benefits Section */
.strategic-benefits-section {
  padding: 80px 0;
}

.benefits-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.benefits-description {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Strategic Benefits Section */
.strategic-benefits-section {
  padding: 80px 0 240px 0;
  position: relative;
  overflow: visible;
}

.lens-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  gap: 150px;
  /* height: 500px; */
}

.background-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 2px solid rgba(0, 122, 159, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
  z-index: 5;
  align-items: flex-start;
}

.right-column {
  align-items: flex-end;
}

.strategy-item {
  width: 320px;
  height: 140px;
  background: #F1F2F2;
  border-radius: 80px 80px 80px 80px;
  padding: 20px 25px;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  align-items: center;
}

.strategy-item:hover {
  transform: translateY(-5px);
  border-color: #007A9F;
}

.strategy-content {
  text-align: left;
}


.strategy-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}


.strategy-description {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

.center-circle {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #007A9F 0%, #005f7a 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 122, 159, 0.3);
  z-index: 10;
  border: 4px solid white;
  position: relative;
}

.center-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.center-text {
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Connecting Lines */
.left-column .strategy-item:nth-child(2)::after {
  content: '';
  position: absolute;
  right: -180px;
  top: 50%;
  width: 180px;
  height: 1.5px;
  background: linear-gradient(90deg, #007A9F 0%, #007A9F 90%, transparent 100%);
  transform: translateY(-50%);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.left-column .strategy-item:nth-child(2)::before {
  content: '←';
  position: absolute;
  right: -6px;
  top: 50.7%;
  font-size: 18px;
  color: #007A9F;
  font-weight: 700;
  transform: translateY(-50%);
  z-index: 7;
}

.right-column .strategy-item:nth-child(2)::after {
  content: '';
  position: absolute;
  left: -180px;
  top: 50%;
  width: 180px;
  height: 1.5px;
  background: linear-gradient(-90deg, #007A9F 0%, #007A9F 90%, transparent 100%);
  transform: translateY(-50%);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.right-column .strategy-item:nth-child(2)::before {
  content: '→';
  position: absolute;
  left: -6px;
  top: 50.5%;
  font-size: 18px;
  color: #007A9F;
  font-weight: 700;
  transform: translateY(-50%);
  z-index: 7;
}

.left-column .strategy-item:nth-child(1)::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  width: 100px;
  height: 1.5px;
  background: #007A9F;
  transform: translateY(-50%);
  border-radius: 2px;
}

.left-column .strategy-item:nth-child(1)::before {
  content: '';
  position: absolute;
  right: -150px;
  top: 32.9%;
  width: 1.5px;
  height: 133px;
  rotate: -50deg;
  background: linear-gradient(180deg, #007A9F 0%, #007A9F 80%, transparent 100%);
  border-radius: 2px;
  transform: translateX(50%);
}

.right-column .strategy-item:nth-child(1)::after {
  content: '';
  position: absolute;
  left: -100px;
  top: 50%;
  width: 100px;
  height: 1.5px;
  background: #007A9F;
  transform: translateY(-50%);
  border-radius: 2px;
}

.right-column .strategy-item:nth-child(1)::before {
  content: '';
  position: absolute;
  left: -150px;
  top: 33.1%;
  width: 1.5px;
  height: 132px;
  rotate: 50deg;
  background: linear-gradient(180deg, #007A9F 0%, #007A9F 80%, transparent 100%);
  border-radius: 2px;
  transform: translateX(-50%);
}

.left-column .strategy-item:nth-child(3)::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  width: 100px;
  height: 1.5px;
  background: #007A9F;
  transform: translateY(-50%);
  border-radius: 2px;
}

.left-column .strategy-item:nth-child(3)::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 25.8%;
  width: 1.5px;
  height: 142px;
  rotate: 56.888deg;
  background: linear-gradient(0deg, #007A9F 0%, #007A9F 80%, transparent 100%);
  border-radius: 2px;
  transform: translateX(50%) translateY(-100%);
}

.right-column .strategy-item:nth-child(3)::after {
  content: '';
  position: absolute;
  left: -100px;
  top: 50%;
  width: 100px;
  height: 1.5px;
  background: #007A9F;
  transform: translateY(-50%);
  border-radius: 2px;
}

.right-column .strategy-item:nth-child(3)::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 33.5%;
  width: 1.5px;
  height: 131px;
  rotate: -48.888deg;
  background: linear-gradient(0deg, #007A9F 0%, #007A9F 80%, transparent 100%);
  border-radius: 2px;
  transform: translateX(-50%) translateY(-100%);
}

.left-column .strategy-item:nth-child(1) .corner-dot,
.left-column .strategy-item:nth-child(3) .corner-dot {
  position: absolute;
  right: 0px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #007A9F;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 7;
}

.right-column .strategy-item:nth-child(1) .corner-dot {
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #007A9F;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 7;
}

.right-column .strategy-item:nth-child(3) .corner-dot {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #007A9F;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 7;
}

.left-column .strategy-item:nth-child(1) .corner-arrow,
.left-column .strategy-item:nth-child(3) .corner-arrow {
  position: absolute;
  right: -6px;
  top: 50.7%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #007A9F;
  font-weight: 700;
  z-index: 7;
}

.right-column .strategy-item:nth-child(1) .corner-arrow {
  position: absolute;
  left: -6px;
  top: 50.5%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #007A9F;
  font-weight: 700;
  z-index: 7;
}

.right-column .strategy-item:nth-child(3) .corner-arrow {
  position: absolute;
  left: -6px;
  top: 50.5%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #007A9F;
  font-weight: 700;
  z-index: 7;
}

.strategy-item:hover::after {
  background: #007A9F !important;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.left-column .strategy-item:nth-child(2):hover::before {
  transform: translateY(-50%) scale(1.2) !important;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.left-column .strategy-item {
  animation: fadeInLeft 0.6s ease forwards;
  opacity: 0;
}

.right-column .strategy-item {
  animation: fadeInRight 0.6s ease forwards;
  opacity: 0;
}

.left-column .strategy-item:nth-child(1) {
  animation-delay: 0.1s;
}

.left-column .strategy-item:nth-child(2) {
  animation-delay: 0.3s;
}

.left-column .strategy-item:nth-child(3) {
  animation-delay: 0.5s;
}

.right-column .strategy-item:nth-child(1) {
  animation-delay: 0.2s;
}

.right-column .strategy-item:nth-child(2) {
  animation-delay: 0.4s;
}

.right-column .strategy-item:nth-child(3) {
  animation-delay: 0.6s;
}

.center-circle {
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

/* Bottom Strategy Item - 7th Capsule */
.bottom-strategy {
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.bottom-strategy .strategy-item {
  animation: fadeInUp 0.6s ease 0.7s forwards;
  opacity: 0;
}

.bottom-strategy .strategy-item::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  width: 1.5px;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, #007A9F 20%, #007A9F 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.bottom-strategy .strategy-item .corner-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #007A9F;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 7;
}

.bottom-strategy .strategy-item .corner-arrow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #007A9F;
  font-weight: 700;
  z-index: 7;
}

@media (max-width: 1163px) {
  .lens-container {
    gap: 120px;
  }

  .strategy-item {
    width: 280px;
    height: 120px;
    padding: 15px 20px;
  }

  .background-circle {
    width: 280px;
    height: 280px;
  }

  .center-circle {
    width: 180px;
    height: 180px;
  }

  .left-column .strategy-item:nth-child(2)::after {
    width: 90px;
    right: -90px;
  }

  .right-column .strategy-item:nth-child(2)::after {
    width: 90px;
    left: -90px;
  }
}

@media (max-width: 1200px) and (min-width: 993px) {
  .background-circle {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 992px) {
  .strategic-benefits-section {
    padding: 60px 0 80px 0;
  }

  .lens-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 0 20px;
  }

  .background-circle {
    display: none;
  }

  .left-column,
  .right-column {
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  .strategy-item {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 120px;
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  .strategy-content {
    text-align: center !important;
    width: 100%;
  }

  .left-column .strategy-item::after,
  .left-column .strategy-item::before,
  .right-column .strategy-item::after,
  .right-column .strategy-item::before {
    display: none;
  }

  .corner-arrow {
    display: none;
  }

  .bottom-strategy {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: 400px;
  }

  .bottom-strategy .strategy-item::after {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .strategic-benefits-section {
    padding: 40px 0 60px 0;
  }

  .lens-container {
    gap: 20px;
    padding: 0 15px;
  }

  .strategy-item {
    max-width: 100%;
    min-height: 100px;
    padding: 15px;
    border-radius: 60px;
  }

  .strategy-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .strategy-description {
    font-size: 12px;
    line-height: 1.3;
  }

  .benefits-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .benefits-description {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .strategy-item {
    min-height: 90px;
    padding: 12px;
    border-radius: 50px;
  }

  .strategy-title {
    font-size: 13px;
  }

  .strategy-description {
    font-size: 11px;
  }

  .benefits-title {
    font-size: 1.4rem;
  }
}

/* Strategic Workforce Planning Process Section */
.swp-process-section {
  padding: 80px 0;
  background: #e8f4f8;
  position: relative;
}

.process-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.process-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.process-flow {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 100px;
}

.bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  width: 280px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 122, 159, 0.15);
  border-color: #007A9F;
}


.step-image {
  margin: 15px 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.step-icons {
  margin: 15px 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.skill-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.skill-icon.blue {
  background: #e3f2fd;
}

.skill-icon.orange {
  background: #fff3e0;
}

.skill-icon.purple {
  background: #f3e5f5;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d3436;
  margin: 10px 0 8px 0;
  line-height: 1.3;
}

.step-description {
  font-size: 13px;
  color: #636e72;
  line-height: 1.4;
  margin-bottom: 15px;
}

.step-tags {
  margin-top: auto;
}

.tag {
  background: #007A9F;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.step-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
}

.detail-box {
  background: #f1f3f4;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 10px;
  color: #5f6368;
  text-align: center;
}

/* Arrow Positioning */
.arrow-1-2 {
  position: absolute;
  top: 50px;
  left: 300px;
  z-index: 5;
}

.arrow-2-3 {
  position: absolute;
  top: 80px;
  left: 580px;
  z-index: 5;
}

.arrow-3-4 {
  position: absolute;
  top: 50px;
  left: 860px;
  z-index: 5;
}

.arrow-4-5 {
  position: absolute;
  top: -80px;
  right: 100px;
  z-index: 5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .top-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .arrow-1-2, .arrow-2-3, .arrow-3-4, .arrow-4-5 {
    display: none;
  }

  .process-step {
    width: 260px;
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .process-step {
    width: 100%;
    max-width: 300px;
    min-height: 280px;
    padding: 20px 15px;
  }

  .step-image {
    height: 80px;
  }

  .step-icons {
    height: 80px;
  }

  .process-title {
    font-size: 1.8rem;
  }

  .step-details {
    grid-template-columns: 1fr;
  }
}

/* Detailed Process Steps Section */
.detailed-process-section {
  padding: 80px 0;
  background: #ffffff;
}

.detailed-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.detailed-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Process Navigation */
.process-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  margin-top: 0;
  position: sticky;
  top: 2%;
  background: #ffffff;
  z-index: 100;
  padding: 100px 0 20px 0;
  margin-top: -100px;
  transition: all 0.3s ease;
}

/* Responsive top positioning for tablets and mobile */
@media (max-width: 991.98px) {
  .process-nav {
    top: 8%;
  }
}

.process-nav.hidden {
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
}

.nav-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.nav-step {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: 180px;
  height: 60px;
  background: #D9D9D9;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  margin-right: -20px;
  z-index: 1;
}

.nav-step:first-child {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  margin-left: 0;
}

.nav-step:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
  margin-right: 0;
}

.nav-step:hover {
  background: var(--primary-color);
  color: white;
  z-index: 2;
}

.nav-step.active {
  background: var(--primary-color);
  color: white;
  z-index: 3;
}

.nav-number {
  display: none;
}

.nav-label {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.detailed-step {
  margin-bottom: 80px;
}

.detailed-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.step-content {
  padding: 20px 0;
}

.step-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.step-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.step-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

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

.step-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007A9F;
  font-weight: bold;
  font-size: 1.4rem;
  top: 0;
}

.tools-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.tools-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

.tools-list li:last-child {
  margin-bottom: 0;
}

.tools-list strong {
  /* color: #007A9F; */
  font-weight: 600;
}

.step-image-container {
  padding: 20px;
  text-align: center;
}

.step-main-image {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .detailed-step {
    margin-bottom: 60px;
  }

  .step-heading {
    font-size: 1.6rem;
  }

  .detailed-title {
    font-size: 2rem;
  }

  .process-nav {
    padding: 15px 0;
    top: 8%;
  }

  .nav-steps {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 10px;
    overflow-x: visible;
  }

  .nav-step {
    margin-right: 0;
    height: 50px;
    font-size: 12px;
    /* Keep the same arrow shape for all tabs */
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  }

  .nav-label {
    font-size: 12px;
  }

  /* First row: 3 items */
  .nav-step:nth-child(2),
  .nav-step:nth-child(3),
  .nav-step:nth-child(4) {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
  }

  /* Second row: 2 items - keep same arrow shape */
  .nav-step:nth-child(5),
  .nav-step:nth-child(6) {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    /* Keep the same arrow shape - don't change clip-path */
  }
}

@media (max-width: 768px) {
  .step-heading {
    font-size: 1.4rem;
  }

  .step-text {
    font-size: 1rem;
  }

  .detailed-step {
    margin-bottom: 40px;
  }

  .synapsescope-tools {
    padding: 20px;
  }

  .detailed-title {
    font-size: 1.8rem;
  }

  .process-nav {
    padding: 10px 0;
  }

  .nav-steps {
    padding: 6px;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    max-width: 100%;
    gap: 10px;
  }

  .nav-step {
    padding: 10px 12px;
    height: 45px;
    margin-right: 0;
    font-size: 11px;
    /* Keep the same arrow shape for all tabs */
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  }

  /* First row: 3 items (steps 1, 2, 3) */
  .nav-step:nth-child(2),
  .nav-step:nth-child(3),
  .nav-step:nth-child(4) {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
  }

  /* Second row: 2 items (steps 4, 5) - keep same arrow shape */
  .nav-step:nth-child(5),
  .nav-step:nth-child(6) {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    /* Keep the same arrow shape - don't change clip-path */
  }

  .nav-label {
    font-size: 11px;
  }

  .nav-number {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .nav-steps {
    gap: 8px;
  }

  .nav-step {
    padding: 8px 10px;
    font-size: 10px;
    height: 42px;
    margin-right: 0;
    /* Keep the same arrow shape for all tabs */
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  }

  .nav-label {
    font-size: 9px;
  }

  .nav-number {
    font-size: 9px;
  }

  /* First row: 3 items */
  .nav-step:nth-child(2),
  .nav-step:nth-child(3),
  .nav-step:nth-child(4) {
    min-width: calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    flex: 0 0 calc(33.333% - 16px);
  }

  /* Second row: 2 items - keep same arrow shape */
  .nav-step:nth-child(5),
  .nav-step:nth-child(6) {
    min-width: calc(50% - 12px);
    max-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
    /* Keep the same arrow shape - don't change clip-path */
  }
}

@media (max-width: 480px) {
  .nav-label {
    font-size: 8px;
  }

  .nav-number {
    font-size: 8px;
  }

  .nav-step {
    padding: 6px 8px;
    height: 40px;
    font-size: 9px;
  }
}

/* SWP Process Section - Exact Image Match */
.swp-process-section {
  padding: 80px 0;
  background: #D3E9FF;
  position: relative;
  overflow: visible;
}

.process-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 15px;
}

.process-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.process-container {
  position: relative;
  height: 480px;
}

/* Step Elements - No Cards, Direct Text Placement */
.step-element {
  position: absolute;
  z-index: 10;
}

/* Step 1 - Left Side */
.step-1-element {
  top: 60px;
  left: 0px;
  width: 250px;
}

.step-1-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 15px;
}


.agile-tag {
  background: #6c5ce7;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

/* Step 2 - Bottom Left */
.step-2-element {
  bottom: 80px;
  left: 300px;
  width: 250px;
}

.step-2-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 15px;
}

.step-2-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}


/* Step 3 - Top Center */
.step-3-element {
  top: 30px;
  left: 54%;
  transform: translateX(-50%);
  width: 292px;
  /* text-align: center; */
}

.step-3-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.step-3-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 15px;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "item1 item2"
    "item3 item3"
    "item4 item5"
    "item6 item6";
  gap: 8px;
  font-size: 11px;
  justify-items: center;
}

.skill-tag:nth-child(1) {
  grid-area: item1;
}

.skill-tag:nth-child(2) {
  grid-area: item2;
}

.skill-tag:nth-child(3) {
  grid-area: item3;
}

.skill-tag:nth-child(4) {
  grid-area: item4;
}

.skill-tag:nth-child(5) {
  grid-area: item5;
}

.skill-tag:nth-child(6) {
  grid-area: item6;
}

.skill-tag {
  width: fit-content;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: 400;
}

/* Step 4 - Bottom Right */
.step-4-element {
  bottom: 30px;
  right: 200px;
  width: 250px;
}

.step-4-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.step-4-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 15px;
}

.team-illustration {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff3e0, #ffcc80);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}

/* Step 5 - Top Right */
.step-5-element {
  top: 30px;
  right: 0;
  width: 250px;
}

.step-5-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.step-5-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 15px;
}

/* New Strategic Benefits Section */
.new-strategic-benefits-section {
  padding: 80px 0;
  background: #ffffff;
}
.benefit-card {
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
  border-radius: 12px;
  padding: 14px 27px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #007A9F;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.benefit-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Responsive Design for New Benefits Section */
@media (max-width: 992px) {
  .new-strategic-benefits-section {
    padding: 60px 0;
  }  
  .benefit-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .new-strategic-benefits-section {
    padding: 40px 0;
  }
  
  .benefit-card {
    padding: 20px 18px;
  }
  
  .benefit-title {
    font-size: 1.1rem;
  }
  
  .benefit-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .benefit-card {
    padding: 18px 15px;
  }
  
  .benefit-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .benefit-description {
    font-size: 0.85rem;
  }
}

/* Curved Arrows */
.arrow {
  position: absolute;
  z-index: 5;
}

.arrow-1-to-2 {
  top: 298px;
  left: 106px;
  transform: rotate(224deg);
}

.arrow-2-to-3 {
  top: 30px;
  left: 344px;
  transform: rotate(343deg);
}

.arrow-3-to-4 {
  top: 271px;
  right: 443px;
  transform: rotate(196deg);
}

.arrow-4-to-5 {
  top: 69px;
  right: 256px;
  transform: rotate(298deg);
}

.arrow-svg {
  width: 200px;
  height: 80px;
}

.arrow-path {
  stroke: #000;
  stroke-width: 1.5;
  fill: none;
  opacity: 0.6;
}


/* Responsive Design for SWP Process */
@media (max-width: 1200px) {
  .process-container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .step-element {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 500px;
    margin: 0 auto;
    text-align: left !important;
  }

  .arrow {
    display: none;
  }

  .skills-bubble {
    display: block;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .swp-process-section {
    padding: 60px 0;
  }

  .process-title {
    font-size: 2rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/* SynapseScope Platform CTA Section */
.platform-cta-section {
  background: #05314E;
  color: white;
  position: relative;
  overflow: hidden;
}



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

.businessman-image {
  max-width: 100%;
  height: auto;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.cta-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 25px;
  color: white;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary {
  width: 100%;
  max-width: 210px;
}
/* Real Results Section */
.real-results-section {
  padding: 80px 0;
}

.results-title {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 60px;
}

.result-card {
  background: #F6F6F6;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #FFFFFF
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.result-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}



.result-description {
  font-size: 1rem;
  color: #636e72;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design for Results Section */
@media (max-width: 992px) {
  .real-results-section {
    padding: 60px 0;
  }

  .results-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .result-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

}

@media (max-width: 768px) {
  .results-title {
    font-size: 1.8rem;
  }

  .result-card {
    padding: 25px 15px;
  }


  .result-description {
    font-size: 0.95rem;
  }
}

/* Responsive Design for CTA Section */
@media (max-width: 992px) {
  .platform-cta-section {
    padding: 80px 0;
  }

  .cta-content {
    padding: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

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

@media (max-width: 768px) {
  .platform-cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Platform Preview Section */
.platform-preview-section {
  background: #F6F6F6;
  position: relative;
  overflow: hidden;
}

.platform-content {
  padding: 100px 0;
}

.platform-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2d3436;
  line-height: 1.2;
  margin-bottom: 40px;
}

.platform-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-btn {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.platform-mockup {
  position: relative;
  height: 500px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  margin-right: 0;
  padding-right: 0;
  width: 100%;
}

.platform-image-placeholder {
  margin-right: calc(-50vw + 100% - 0.75rem);
  padding-right: 0;
  position: relative;
  right: 0;
}

/* Responsive Design for Platform Preview */
@media (max-width: 992px) {
  

  .platform-content {
    padding: 0;
    margin-top: 40px;
    text-align: center;
  }

  .platform-title {
    font-size: 2.2rem;
  }

  .platform-buttons {
    justify-content: center;
  }

  .platform-mockup {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .platform-title {
    font-size: 1.8rem;
  }

  .platform-buttons {
    flex-direction: column;
    align-items: center;
  }

  .platform-btn {
    width: 100%;
    max-width: 300px;
  }

  .platform-mockup {
    height: 300px;
  }
}

/* Responsive Design for Benefits Section */
@media (max-width: 992px) {
  .benefits-layout {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
  }

  .center-hub {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 2rem auto;
    order: 1;
  }

  .benefit-item {
    position: relative;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .connecting-line {
    display: none;
  }

  .benefits-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .strategic-benefits-section {
    padding: 60px 0;
  }

  .benefits-title {
    font-size: 1.75rem;
  }

  .benefits-description {
    font-size: 1rem;
    padding: 0 20px;
  }

  .center-hub {
    width: 120px;
    height: 120px;
  }

  .hub-text {
    font-size: 0.8rem;
  }

  .benefit-card {
    padding: 1.25rem;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .benefit-description {
    font-size: 0.85rem;
  }
}