
  .section {
    padding: var(--space-2xl) 0; /* Consistent section spacing */
    position: relative;
    overflow: hidden;
    z-index: 1; /* Ensure content is above orbs */

  }

  /* Utility Styles */
  .gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }



  /* Page Header Section (SOLUTIONS) */
  #solutions .page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
  }

  #solutions .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(106, 130, 251, 0.15); /* Slightly stronger badge color */
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(106, 130, 251, 0.3);
  }

  #solutions .headline {
    font-size: 3.8em;
    font-weight: 800;
    margin-bottom: var(--space-md);
    line-height: 1.1;
  }

  #solutions .sub {
    font-size: 1.3em;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #solutions .hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap; /* Allow buttons to wrap */
  }

  /* Orbs for background decoration */
  .orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2; /* Softer opacity */
    filter: blur(100px); /* More blur */
    transform: translateZ(0); /* Hardware acceleration */
  }

  .orb.one {
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    top: 10%;
    left: 5%;
    animation: orb-move-one 18s infinite alternate ease-in-out;
  }

  .orb.two {
    width: 350px;
    height: 350px;
    background-color: var(--accent-color);
    bottom: 15%;
    right: 10%;
    animation: orb-move-two 22s infinite alternate ease-in-out;
  }

  @keyframes orb-move-one {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 120px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
  }

  @keyframes orb-move-two {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -60px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
  }

  /* Section Headers (shared) */
  .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-header .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(106, 130, 251, 0.15);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(106, 130, 251, 0.3);
  }

  .section-header h2 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-light);
  }

  .section-header .lead {
    font-size: 1.15em;
    color: var(--text-muted);
  }

  /* Core Solutions Grid */
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
  }

  .solution-card {
    background-color: var(--bg-medium-dark);
    border-radius: 12px;
    padding: var(--space-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
  }

  .solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border-color: var(--primary-color); /* Highlight border on hover */
  }

  .solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(106, 130, 251, 0.3), rgba(252, 92, 125, 0.3)); /* Gradient background */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    box-shadow: 0 5px 20px rgba(106, 130, 251, 0.2);
  }

  .solution-icon i {
    font-size: 2.5em;
    color: #fff; /* White icon color */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }

  .solution-card h3 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
  }

  .solution-card p {
    font-size: 1em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1; /* Allows text to push button down */
  }

  .solution-features {
    margin-bottom: var(--space-md);
  }

  .solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 8px;
  }

  .solution-features li i {
    color: #2ea043; /* Green checkmark */
    font-size: 1.1em;
  }

  /* Success Stories (Projects Grid) */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
  }

  .project-card {
    background-color: var(--bg-medium-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
  }

  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border-color: var(--primary-color);
  }

  .case-study-image {
    height: 220px;
    overflow: hidden;
    position: relative;
  }

  .case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .project-card:hover .case-study-image img {
    transform: scale(1.05);
  }

  .case-study-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .case-study-content h3 {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
  }

  .case-study-content p {
    font-size: 0.95em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
  }

  .case-study-metrics {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .metric {
    background-color: rgba(106, 130, 251, 0.1);
    border: 1px solid rgba(106, 130, 251, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    text-align: center;
    min-width: 100px;
  }

  .metric-value {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
  }

  .metric-label {
    font-size: 0.85em;
    color: var(--text-muted);
    display: block;
  }

  .case-study-content .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(46, 160, 67, 0.15); /* Example tag color */
    color: #2ea043;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(46, 160, 67, 0.3);
  }

  /* How We Work - Engagement Models */
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }

  .grid-3 .item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background-color: var(--bg-medium-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--space-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .grid-3 .item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
  }

  .grid-3 .item .avatar {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Ensure icon doesn't shrink */
    background: linear-gradient(45deg, rgba(252, 92, 125, 0.2), rgba(106, 130, 251, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  }

  .grid-3 .item .avatar i {
    font-size: 1.8em;
    color: var(--primary-color);
  }

  .grid-3 .item h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
  }

  .grid-3 .item p {
    font-size: 0.9em;
    color: var(--text-muted);
  }


  /* How We Work - Delivery Framework */
  .mission-vision-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
  }

  .mission-vision-card {
    background-color: var(--bg-medium-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--space-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border-color: var(--primary-color);
  }

  .card-icon-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .mission-icon, .vision-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .mission-icon {
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.3), rgba(255, 69, 0, 0.3)); /* Orange tones */
  }
  .vision-icon {
    background: linear-gradient(45deg, rgba(60, 179, 113, 0.3), rgba(0, 128, 0, 0.3)); /* Green tones */
  }

  .mission-icon i, .vision-icon i {
    font-size: 2.5em;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }

  .mission-vision-card h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-light);
  }

  .mission-vision-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .mission-vision-card .card-content p {
    font-size: 1em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
  }

  .mission-points-list .point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 8px;
  }

  .mission-points-list .point i {
    color: #2ea043; /* Green checkmark */
    font-size: 1.1em;
  }

  /* Reveal Animations (for content appearing on scroll) */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .section {
      padding: var(--space-xl) 0;
    }
    #solutions .headline {
      font-size: 3em;
    }
    .section-header h2 {
      font-size: 2.5em;
    }
    .solutions-grid, .projects-grid, .grid-3, .mission-vision-grid-professional {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--space-md);
    }
    #solutions .hero-actions {
      flex-direction: column;
    }
    .btn-large {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .section {
      padding: var(--space-lg) 0;
    }
    #solutions .page-header-content {
      padding: 40px 0;
    }
    #solutions .headline {
      font-size: 2.4em;
    }
    #solutions .sub {
      font-size: 1.1em;
    }
    .section-header h2 {
      font-size: 2em;
    }
    .grid-3, .mission-vision-grid-professional {
      grid-template-columns: 1fr;
    }
    .solution-card, .project-card, .mission-vision-card, .grid-3 .item {
      padding: var(--space-md);
    }
    .solution-icon, .mission-icon, .vision-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      margin-bottom: var(--space-sm);
    }
    .solution-icon i, .mission-icon i, .vision-icon i {
      font-size: 2em;
    }
    .solution-card h3, .mission-vision-card h3 {
      font-size: 1.5em;
    }
    .project-card h3 {
      font-size: 1.4em;
    }
    .case-study-image {
      height: 180px;
    }
  }

  @media (max-width: 480px) {
    #solutions .headline {
      font-size: 1.8em;
    }
    .section-header h2 {
      font-size: 1.6em;
    }
    .btn {
      font-size: 14px;
      padding: 10px 20px;
    }
    .btn-large {
      padding: 12px 25px;
      font-size: 16px;
    }
    .hero-badge, .section-header .pill, .case-study-content .tag {
      font-size: 12px;
      padding: 6px 10px;
    }
  }