
    :root {
      --theme-primary: #0d5a6f;
      --theme-primary-dark: #094757;
      --theme-accent: #dbe7e5;
      --theme-title: #123a2f;
      --theme-body: #4b616f;
      --bg-light: #f7fbf9;
      --card-white: #f7fbf9;
      --border-light: #dbe7e5;
      --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.08);
      --max-width: 1200px;
    }

    body {
      background-color: var(--bg-light);
      font-family: 'Poppins', sans-serif;
    }

    .hero-icon-cluster {
      position: absolute;
      left: 75%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: min(460px, 42vw);
      aspect-ratio: 1;
      z-index: 3;
      pointer-events: none;
    }

    .hero-orbit-core {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle at 35% 35%, #e4f8f1 0%, #7fc8b3 45%, #0d5a6f 100%);
      border: 1px solid rgba(13, 90, 111, 0.45);
      box-shadow: 0 0 0 6px rgba(13, 90, 111, 0.12), 0 0 16px rgba(13, 90, 111, 0.26);
      z-index: 2;
    }

    .hero-orbit {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px dashed rgba(13, 90, 111, 0.16);
      animation: orbitSpin 44s linear infinite;
    }

    .hero-orbit.orbit-inner {
      inset: 14%;
      animation-duration: 32s;
      animation-direction: reverse;
      border-color: rgba(13, 90, 111, 0.2);
    }

    .hero-orbit-item {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: rotate(calc((360deg / var(--count)) * var(--i))) translateX(var(--radius));
      transform-origin: 0 0;
    }

    .hero-orbit-item::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: calc(var(--radius) - 36px);
      height: 1px;
      background: linear-gradient(90deg, rgba(13, 90, 111, 0.44), rgba(13, 90, 111, 0.16));
      transform: translate(-100%, -50%);
      transform-origin: right center;
      z-index: 0;
    }

    .hero-icon-chip {
      position: relative;
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      border: 1px solid rgba(13, 90, 111, 0.26);
      background: rgba(7, 46, 58, 0.42);
      opacity: 0.62;
      backdrop-filter: blur(1px);
      box-shadow: 0 8px 16px rgba(7, 34, 43, 0.22);
      animation: iconCounterSpin 44s linear infinite;
      z-index: 1;
    }

    .orbit-inner .hero-icon-chip {
      width: 48px;
      height: 48px;
      animation-duration: 32s;
      animation-direction: reverse;
    }

    .hero-icon-chip i {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(13, 90, 111, 0.34);
      color: #d2f0e3;
      opacity: 0.74;
      font-size: 1rem;
      flex: 0 0 auto;
    }

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

      to {
        transform: rotate(360deg);
      }
    }

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

      to {
        transform: rotate(-360deg);
      }
    }

    @media (max-width: 991px) {
      .hero-icon-cluster {
        position: static;
        transform: none;
        width: min(320px, 82vw);
        margin-inline: auto;
        margin-top: 14px;
        aspect-ratio: 1;
      }

      .hero-orbit.orbit-inner {
        display: none;
      }

      .hero-icon-chip {
        width: 44px;
        height: 44px;
      }

      .hero-icon-chip i {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
      }
    }

    .page-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Section */
    .header-features-section {
      padding: 60px 0;
    }

    .section-header {
      text-align: left;
      margin-bottom: 50px;
      position: relative;
    }

    .section-header h1 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--theme-title);
      margin-bottom: 15px;
    }

    .section-header h2 {
      color: #04242d;
      font-weight: 700;
      font-size: 2.2rem;
      margin: 0;
      letter-spacing: 0.5px;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--theme-body);
      margin-bottom: 40px;
      margin-left: 0;
      margin-right: 0;
    }

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

    .feature-card {
      background: var(--card-white);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: var(--shadow-light);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-light);
    }

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

    .feature-icon {
      width: 50px;
      height: 50px;
      background: var(--theme-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      margin: 0 auto 15px;
    }

    .feature-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--theme-title);
      margin: 0;
    }

    /* About & Project Scope Section */
    .about-scope-section {
      padding: 60px 0;
      background:
        url("../../assets/img/right-triangle-bg.png") right center/contain no-repeat,
        linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbf9 0%, #f4fbf8 100%);
      background-size: auto, 52px 52px, 52px 52px, auto;
      position: relative;
      overflow: hidden;
    }

    .two-column-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .scope-column h2 {
      color: #04242d;
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }

    .scope-column h2::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #0d5a6f, #145a72, #0d5a6f);
      background-size: 200% 100%;
      border-radius: 2px;
      animation: underlineGradientShimmer 3s ease-in-out infinite;
      box-shadow: 0 0 15px rgba(13, 90, 111, 0.2);
    }

    .scope-column:hover h2::after {
      animation: underlineGradientShimmer 2s ease-in-out infinite;
      box-shadow: 0 0 20px rgba(13, 90, 111, 0.4);
    }

    .scope-column p {
      font-size: 1rem;
      color: var(--theme-body);
      line-height: 1.8;
      margin-bottom: 15px;
    }

    .scope-bullets {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    /* 
    .scope-bullets li {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
      line-height: 1.6;
    }

    .scope-bullets li::before {
      content: "✓";
      color: #0d5a6f;
      font-size: 0.9rem;
      font-weight: bold;
      flex-shrink: 0;
    }

    .scope-card:hover .scope-bullets li {
      color: #04242d;
      transform: translateX(3px);
    } */

    /* System Integration Card Style */
    .scope-card {
      background:
        linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbf9 0%, #f4fbf8 100%);
      background-size: 20px 20px, 20px 20px, auto;
      border-radius: 12px;
      padding: 35px 28px;
      border: 1px solid #dbe7e5;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      overflow: hidden;
    }

    .scope-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #0d5a6f, transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .scope-card:hover {
      background:
        linear-gradient(90deg, rgba(13, 90, 111, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbf9 0%, #eaf4ef 100%);
      background-size: 20px 20px, 20px 20px, auto;
      border-color: #0d5a6f;
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(13, 90, 111, 0.08);
    }

    .scope-card:hover::before {
      opacity: 1;
    }

    .scope-card>* {
      position: relative;
      z-index: 1;
    }

    .scope-card-header {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 10px;
    }

    .scope-card-icon {
      width: 44px;
      height: 44px;
      background: #eaf4ef;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0d5a6f;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .scope-card-title-group h2 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      padding: 0;
      font-size: 1.3rem;
      color: #04242d;
      font-weight: 700;
      letter-spacing: -0.3px;
      margin-bottom: 12px;
    }

    .scope-card-title-group h2::after {
      display: none;
    }

    .scope-card-description {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.6;
      margin: 0 0 20px 0;
    }

    .hidden {
      display: none;
    }

    /* Animated Glassy Features Section */
    .features-section-wrapper {
      position: relative;
      padding: 60px 0;
      margin-top: -80px;
      background: linear-gradient(135deg, #ffffff 0%, rgba(13, 90, 111, 0.02) 100%);
    }

    .animated-features-container {
      position: relative;
      margin-bottom: 60px;
    }

    .feature-cards-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      position: relative;
      z-index: 2;
      justify-content: flex-start;
      align-items: center;
    }

    .glassy-feature-card {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.06) 0%, rgba(13, 90, 111, 0.03) 100%);
      border: 1px solid rgba(13, 90, 111, 0.16);
      border-radius: 12px;
      padding: 10px 16px;
      text-align: center;
      box-shadow: none;
      transition: all 0.2s ease;
      position: relative;
      overflow: hidden;
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 8px;
      white-space: nowrap;
    }

    .glassy-feature-card:hover {
      transform: translateY(-2px);
      border-color: rgba(13, 90, 111, 0.28);
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.12) 0%, rgba(13, 90, 111, 0.08) 100%);
    }

    .feature-glow {
      display: none;
    }

    .feature-icon-glassy {
      width: 28px;
      height: 28px;
      /* background: linear-gradient(135deg, var(--theme-primary) 0%, rgba(13, 90, 111, 0.8) 100%); */
      border: none;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #337486;
      font-size: 1rem;
      margin: 0;
      box-shadow: none;
      animation: none;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    .glassy-feature-card h3 {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--theme-title);
      margin: 0;
      position: relative;
      z-index: 1;
      letter-spacing: 0.2px;
    }

    .animated-dot {
      position: absolute;
      width: 6px;
      height: 6px;
      background: rgba(13, 90, 111, 0.2);
      border-radius: 50%;
      opacity: 0.3;
      animation: orbitDot 8s linear infinite;
    }

    .animated-dot:nth-child(1) {
      top: 5%;
      left: 10%;
      animation-delay: 0s;
    }

    .animated-dot:nth-child(2) {
      top: 15%;
      right: 8%;
      animation-delay: 2s;
    }

    .animated-dot:nth-child(3) {
      bottom: 10%;
      left: 5%;
      animation-delay: 4s;
    }

    .animated-dot:nth-child(4) {
      bottom: 20%;
      right: 10%;
      animation-delay: 6s;
    }

    @keyframes orbitDot {

      0%,
      100% {
        opacity: 0.3;
        transform: translate(0, 0) scale(1);
      }

      25% {
        opacity: 0.6;
        transform: translate(20px, -20px) scale(1.2);
      }

      50% {
        opacity: 0.3;
        transform: translate(-20px, 20px) scale(1);
      }

      75% {
        opacity: 0.6;
        transform: translate(-10px, -30px) scale(1.2);
      }
    }

    /* Enhanced Scope Bullets with Unique Graphics */
    .scope-bullets {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .scope-bullets li {
      padding-left: 40px;
      position: relative;
      margin-bottom: 5px;
      color: var(--theme-body);
      line-height: 1.8;
      font-weight: 500;
      font-size: 13px;
    }

    .scope-bullets li::before {
      content: "●";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      color: var(--theme-primary);
      font-weight: 800;
      font-size: 1.2rem;
      animation: bulletBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    @keyframes bulletBounce {
      0% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
      }

      100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
      }
    }

    .scope-bullets li i:nth-child(1)::before {
      animation-delay: 0.1s;
    }

    .scope-bullets li i:nth-child(2)::before {
      animation-delay: 0.2s;
    }

    .scope-bullets li:nth-child(3)::before {
      animation-delay: 0.3s;
    }

    .scope-bullets li:nth-child(4)::before {
      animation-delay: 0.4s;
    }

    .scope-bullets li:nth-child(5)::before {
      animation-delay: 0.5s;
    }

    .scope-bullets li:nth-child(6)::before {
      animation-delay: 0.6s;
    }

    .scope-bullets li:nth-child(7)::before {
      animation-delay: 0.7s;
    }

    .scope-bullets li:nth-child(8)::before {
      animation-delay: 0.8s;
    }

    /* Challenges & Solutions Timeline Section */
    .timeline-section {
      padding: 80px 0;
      background:
        /* url("../assets/img/triangle-bg.png") left center/contain no-repeat, */
        linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbf9 0%, #f4fbf8 100%);
      position: relative;
      overflow: visible;
      border-top: 1px solid rgba(13, 90, 111, 0.18);
      border-bottom: 1px solid rgba(13, 90, 111, 0.18);
    }

    /* Animated bubbles background */
    .timeline-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    .bubble {
      position: absolute;
      bottom: -100px;
      background: radial-gradient(circle at 30% 30%, rgba(13, 90, 111, 0.2), rgba(13, 90, 111, 0.05));
      border: 1px solid rgba(13, 90, 111, 0.1);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      animation: float 20s infinite ease-in-out;
    }

    @keyframes float {
      0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(1);
      }

      10% {
        opacity: 0.6;
      }

      50% {
        opacity: 0.8;
        transform: translateX(100px) scale(1.1);
      }

      90% {
        opacity: 0.6;
      }

      100% {
        bottom: 120vh;
        opacity: 0;
        transform: translateX(-100px) scale(0.8);
      }
    }

    .bubble:nth-child(1) {
      width: 100px;
      height: 100px;
      left: 10%;
      animation-delay: 0s;
      animation-duration: 18s;
    }

    .bubble:nth-child(2) {
      width: 60px;
      height: 60px;
      left: 20%;
      animation-delay: 3s;
      animation-duration: 22s;
    }

    .bubble:nth-child(3) {
      width: 80px;
      height: 80px;
      left: 35%;
      animation-delay: 6s;
      animation-duration: 20s;
    }

    .bubble:nth-child(4) {
      width: 50px;
      height: 50px;
      left: 50%;
      animation-delay: 1s;
      animation-duration: 24s;
    }

    .bubble:nth-child(5) {
      width: 120px;
      height: 120px;
      left: 65%;
      animation-delay: 4s;
      animation-duration: 21s;
    }

    .bubble:nth-child(6) {
      width: 70px;
      height: 70px;
      left: 80%;
      animation-delay: 2s;
      animation-duration: 19s;
    }

    .bubble:nth-child(7) {
      width: 90px;
      height: 90px;
      left: 90%;
      animation-delay: 5s;
      animation-duration: 23s;
    }

    .timeline-section .container-fluid {
      width: 80%;
    }

    /* .timeline-section .section-header {
      margin-bottom: 60px;
      text-align: center;
    } */

    /* .timeline-section .section-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #0d5a6f 0%, #0d8fa3 50%, #145a72 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    } */

    .timeline-container {
      position: relative;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto auto auto;
      gap: 30px 25px;
      align-items: stretch;
      padding: 60px 40px;
    }

    /* Horizontal center line spanning all columns */
    .timeline-line {
      position: relative;
      grid-column: 1 / -1;
      grid-row: 2;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg,
          transparent 0%,
          #0d8fa3 10%,
          #0d8fa3 90%,
          transparent 100%);
      box-shadow:
        0 0 20px rgba(13, 143, 163, 0.4),
        0 0 40px rgba(13, 143, 163, 0.2),
        inset 0 0 10px rgba(13, 143, 163, 0.3);
      margin: 0;
      animation: expandLine 0.9s ease-out forwards;
      opacity: 0;
      z-index: 2;
    }

    /* Challenge cards - All in top row */
    .timeline-item.timeline-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      position: relative;
      animation: slideIn 0.6s ease-out forwards;
      opacity: 0;
      grid-row: 1;
    }

    .timeline-item.timeline-left:nth-of-type(1) {
      grid-column: 1;
      animation-delay: 0.1s;
    }

    .timeline-item.timeline-left:nth-of-type(3) {
      grid-column: 2;
      animation-delay: 0.2s;
    }

    .timeline-item.timeline-left:nth-of-type(5) {
      grid-column: 3;
      animation-delay: 0.3s;
    }

    .timeline-item.timeline-left:nth-of-type(7) {
      grid-column: 4;
      animation-delay: 0.4s;
    }

    /* Vertical connector from Challenge to center line */
    .timeline-item.timeline-left::after {
      content: "";
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 60px;
      background: linear-gradient(180deg, #0d8fa3 0%, #0d8fa3 100%);
      animation: connectDown 0.8s ease-out forwards;
      opacity: 0;
      z-index: 1;
    }

    .timeline-item.timeline-left:nth-of-type(1)::after {
      animation-delay: 0.5s;
    }

    .timeline-item.timeline-left:nth-of-type(3)::after {
      animation-delay: 0.6s;
    }

    .timeline-item.timeline-left:nth-of-type(5)::after {
      animation-delay: 0.7s;
    }

    .timeline-item.timeline-left:nth-of-type(7)::after {
      animation-delay: 0.8s;
    }

    /* Solution cards - All in bottom row */
    .timeline-item.timeline-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      position: relative;
      animation: slideIn 0.6s ease-out forwards;
      opacity: 0;
      grid-row: 3;
    }

    .timeline-item.timeline-right:nth-of-type(2) {
      grid-column: 1;
      animation-delay: 0.5s;
    }

    .timeline-item.timeline-right:nth-of-type(4) {
      grid-column: 2;
      animation-delay: 0.6s;
    }

    .timeline-item.timeline-right:nth-of-type(6) {
      grid-column: 3;
      animation-delay: 0.7s;
    }

    .timeline-item.timeline-right:nth-of-type(8) {
      grid-column: 4;
      animation-delay: 0.8s;
    }

    /* Vertical connector from center line to Solution */
    .timeline-item.timeline-right::before {
      content: "";
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 60px;
      background: linear-gradient(180deg, #0d8fa3 0%, #0d8fa3 100%);
      animation: connectUp 0.8s ease-out forwards;
      opacity: 0;
      z-index: 1;
    }

    .timeline-item.timeline-right:nth-of-type(2)::before {
      animation-delay: 0.9s;
    }

    .timeline-item.timeline-right:nth-of-type(4)::before {
      animation-delay: 1s;
    }

    .timeline-item.timeline-right:nth-of-type(6)::before {
      animation-delay: 1.1s;
    }

    .timeline-item.timeline-right:nth-of-type(8)::before {
      animation-delay: 1.2s;
    }

    .timeline-node {
      display: none;
    }

    .glass-card {
      width: 100%;
      height: auto;
      min-height: 280px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbf9 0%, #f4fbf8 100%);
      background-size: 20px 20px, 20px 20px, auto;
      border-radius: 12px;
      border: 1px solid #dbe7e5;
      box-shadow: 0 8px 24px rgba(13, 90, 111, 0.08);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      overflow: visible;
    }

    .glass-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #0d5a6f, transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .glass-card:hover::before {
      opacity: 1;
    }

    .glass-card:hover {
      background:
        linear-gradient(90deg, rgba(13, 90, 111, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbf9 0%, #eaf4ef 100%);
      background-size: 20px 20px, 20px 20px, auto;
      transform: translateY(-4px);
      border-color: #0d5a6f;
      box-shadow: 0 12px 32px rgba(13, 90, 111, 0.12);
    }

    .card-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
      text-transform: capitalize;
      backdrop-filter: blur(8px);
      border: 1px solid;
      margin-bottom: 0;
      height: 30px;
      min-width: 100px;
      padding: 0 5px;
    }

    .card-badge i {
      font-size: 0.9rem;
    }

    .challenge-badge {
      background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.08));
      color: #c82333;
      border-color: rgba(220, 53, 69, 0.25);
      box-shadow: 0 0 15px rgba(220, 53, 69, 0.15);
    }

    .solution-badge {
      background: linear-gradient(135deg, rgba(13, 143, 163, 0.15), rgba(13, 175, 207, 0.08));
      color: #0d8fa3;
      border-color: rgba(13, 143, 163, 0.25);
      box-shadow: 0 0 15px rgba(13, 143, 163, 0.15);
    }

    .glass-card h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #04242d;
      margin: 12px 0 8px 0;
      line-height: 1.3;
      letter-spacing: -0.3px;
      text-overflow: ellipsis;
      overflow: hidden;
    }

    .glass-card p {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
      margin: 0;
      flex-grow: 1;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

    .challenge-card {
      border-left: 3px solid rgba(220, 53, 69, 0.2);
    }

    .challenge-card:hover {
      border-left-color: rgba(220, 53, 69, 0.5);
      background: linear-gradient(135deg,
          rgba(255, 255, 255, 0.97) 0%,
          rgba(255, 245, 245, 0.92) 100%);
    }

    .solution-card {
      border-left: 3px solid rgba(13, 143, 163, 0.2);
    }

    .solution-card:hover {
      border-left-color: rgba(13, 143, 163, 0.5);
      background: linear-gradient(135deg,
          rgba(255, 255, 255, 0.97) 0%,
          rgba(245, 253, 255, 0.92) 100%);
    }

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

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

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-60px);
      }

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

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(60px);
      }

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

    @keyframes connectDown {
      from {
        opacity: 0;
        height: 0;
      }

      to {
        opacity: 1;
        height: 60px;
      }
    }

    @keyframes connectUp {
      from {
        opacity: 0;
        height: 0;
      }

      to {
        opacity: 1;
        height: 60px;
      }
    }

    @keyframes expandLine {
      from {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: center;
      }

      to {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: center;
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .timeline-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 40px;
        gap: 25px 20px;
      }

      .timeline-item.timeline-left:nth-of-type(1) {
        grid-column: 1;
      }

      .timeline-item.timeline-left:nth-of-type(3) {
        grid-column: 2;
      }

      .timeline-item.timeline-left:nth-of-type(5) {
        grid-column: 1;
        grid-row: 1;
      }

      .timeline-item.timeline-left:nth-of-type(7) {
        grid-column: 2;
        grid-row: 1;
      }

      .timeline-item.timeline-right:nth-of-type(2) {
        grid-column: 1;
      }

      .timeline-item.timeline-right:nth-of-type(4) {
        grid-column: 2;
      }

      .timeline-item.timeline-right:nth-of-type(6) {
        grid-column: 1;
      }

      .timeline-item.timeline-right:nth-of-type(8) {
        grid-column: 2;
      }

      .timeline-line {
        margin: 30px 0;
      }

      .glass-card {
        height: auto;
        min-height: 260px;
      }
    }

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

      .timeline-section .section-header h2 {
        font-size: 1.8rem;
      }

      .timeline-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 20px;
        align-items: stretch;
        justify-items: center;
      }

      .timeline-line {
        display: none;
      }

      .timeline-item.timeline-left,
      .timeline-item.timeline-right {
        grid-column: 1 !important;
        grid-row: auto !important;
        padding: 0 !important;
        margin-bottom: 5px;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
        align-self: stretch;
      }

      /* Add spacing between challenge-solution pairs */
      .timeline-item.timeline-right:nth-of-type(2),
      .timeline-item.timeline-right:nth-of-type(4),
      .timeline-item.timeline-right:nth-of-type(6),
      .timeline-item.timeline-right:nth-of-type(8) {
        margin-bottom: 25px;
      }

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

      .glass-card {
        width: 100%;
        height: auto;
        min-height: 240px;
        padding: 25px;
        border-radius: 12px;
      }

      .card-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
        margin-bottom: 10px;
      }

      .glass-card h4 {
        font-size: 1rem;
        margin: 10px 0 8px 0;
      }

      .glass-card p {
        font-size: 0.9rem;
        line-height: 1.5;
      }

      /* Enhanced mobile pair styling */
      .challenge-card {
        border-left: 4px solid #dc3545;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 245, 0.95) 100%);
      }

      .solution-card {
        border-left: 4px solid #0d8fa3;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 253, 255, 0.95) 100%);
        margin-top: -3px;
      }
    }

    @media (max-width: 480px) {
      .timeline-section {
        padding: 40px 0;
      }

      .timeline-section .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
      }

      .timeline-section .section-header h2 {
        font-size: 1.4rem;
      }

      .timeline-container {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 15px;
        align-items: stretch;
        justify-items: center;
      }

      .timeline-line {
        display: none;
      }

      /* Add larger spacing between challenge-solution pairs on mobile */
      .timeline-item.timeline-right:nth-of-type(2),
      .timeline-item.timeline-right:nth-of-type(4),
      .timeline-item.timeline-right:nth-of-type(6),
      .timeline-item.timeline-right:nth-of-type(8) {
        margin-bottom: 20px;
      }

      .timeline-item.timeline-left,
      .timeline-item.timeline-right {
        grid-column: 1 !important;
        grid-row: auto !important;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
        align-self: stretch;
      }

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

      .glass-card {
        height: auto;
        min-height: 220px;
        padding: 20px;
        border-radius: 10px;
      }

      .card-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        margin-bottom: 8px;
      }

      .card-badge i {
        font-size: 0.8rem;
      }

      .glass-card h4 {
        font-size: 0.95rem;
        margin: 8px 0 6px 0;
        line-height: 1.3;
        letter-spacing: -0.3px;
      }

      .glass-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
      }

      /* Strong visual separation for mobile vertical pairs */
      .challenge-card {
        border-left-width: 3px;
        border-left-color: #dc3545;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 245, 245, 0.97) 100%);
      }

      .solution-card {
        border-left-width: 3px;
        border-left-color: #0d8fa3;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 253, 255, 0.97) 100%);
        margin-top: -2px;
      }
    }

    .card-dot {
      display: none;
    }

    .card-dot {
      position: relative;
      width: 100%;
      padding: 24px;
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(13, 90, 111, 0.02) 0%, rgba(13, 90, 111, 0.01) 100%),
        linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        #ffffff;
      background-size: auto, 52px 52px, 52px 52px, auto;
      overflow: hidden;
      box-shadow:
        0 2px 4px rgba(13, 90, 111, 0.04),
        0 8px 16px rgba(13, 90, 111, 0.08),
        0 16px 32px rgba(13, 90, 111, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(13, 90, 111, 0.05);
      border: 1px solid rgba(13, 90, 111, 0.08);
      transition: all 0.3s ease;
    }

    .card-dot:hover {
      box-shadow:
        0 4px 8px rgba(13, 90, 111, 0.06),
        0 12px 24px rgba(13, 90, 111, 0.12),
        0 20px 40px rgba(13, 90, 111, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(13, 90, 111, 0.08);
      border-color: rgba(13, 90, 111, 0.15);
      transform: translateY(-2px);
    }

    .card-dot::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
      background-size: 18px 18px;
      transition: transform 0.5s ease;
      z-index: 0;
      pointer-events: none;
    }

    .card-dot:hover::before {
      transform: scale(1.15);
      background-position: 6px 6px;
      background-size: 18px 18px;
    }

    .service-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      z-index: 1;
    }

    .service-grid::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 0.2px;
      background: linear-gradient(to bottom, transparent, rgba(44, 67, 66, .35), transparent);
    }

    .service-stack-elements {
      position: relative;
      z-index: 1;
      background:
        linear-gradient(135deg, rgba(13, 90, 111, 0.01) 0%, rgba(13, 90, 111, 0) 100%);
      text-align: left;
      padding: 24px;
      border-bottom: 1px solid rgba(44, 67, 66, .25);
      transition: all 0.3s ease;
    }

    .service-stack-elements:hover {
      background:
        linear-gradient(135deg, rgba(13, 90, 111, 0.03) 0%, rgba(13, 90, 111, 0.01) 100%);
    }

    .service-stack-elements::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .service-stack-elements:hover::before {
      opacity: 1;
    }

    .service-grid>div:nth-child(odd) {
      border-right: 1px solid rgba(44, 67, 66, .25);
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.015) 0%, transparent 100%);
    }

    .service-grid>div:nth-child(even) {
      background: linear-gradient(135deg, transparent 0%, rgba(13, 90, 111, 0.01) 100%);
    }

    .service-grid>div:nth-child(1),
    .service-grid>div:nth-child(2) {
      border-bottom: 1px solid rgba(44, 67, 66, .25);
    }

    .service-grid>div:nth-child(3),
    .service-grid>div:nth-child(4) {
      border-bottom: none;
    }

    .service-stack-elements h5 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #04242d;
      margin: 0 0 8px 0;
      line-height: 1.4;
      letter-spacing: -0.2px;
      transition: color 0.3s ease;
    }

    .service-stack-elements:hover h5 {
      color: #0d5a6f;
    }

    .service-stack-elements p {
      font-size: 0.95rem;
      color: var(--theme-body);
      line-height: 1.6;
      margin: 0;
      transition: color 0.3s ease;
    }

    .service-stack-elements:hover p {
      color: #333;
    }

    .challenges-grid {
      display: none;
    }

    .challenge-card {
      /* background: var(--card-white); */
      border-radius: 10px;
      padding: 30px;
      box-shadow: var(--shadow-light);
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
      text-align: center;
    }

    .challenge-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      border-color: var(--theme-primary);
    }

    .challenge-icon {
      width: 60px;
      height: 60px;
      background: #dbe7e5;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.8rem;
      color: #0d8fa3;
    }

    .challenge-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--theme-title);
      margin-bottom: 12px;
    }

    .challenge-card p {
      /* font-size: 0.95rem; */
      color: var(--theme-body);
      line-height: 1.6;
      margin: 0;
    }

    /* Solution Section */
    .solution-section {
      padding: 60px 0;
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .solution-card {
      /* background: var(--card-white); */
      border-radius: 10px;
      padding: 30px;
      box-shadow: var(--shadow-light);
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
    }

    .solution-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(13, 90, 111, 0.15);
      border-color: var(--theme-primary);
    }

    .solution-icon {
      width: 45px;
      height: 45px;
      background: var(--theme-primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .solution-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--theme-title);
      margin-bottom: 12px;
    }

    .solution-card p {
      /* font-size: 0.95rem; */
      color: var(--theme-body);
      line-height: 1.6;
      margin: 0;
    }

    /* Outcome & Impact Section */
    .outcome-section {
      padding: 60px 0;
      background:
        url("../../assets/img/triangle-bg.png") left center/contain no-repeat,
        linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbf9 0%, #f4fbf8 100%);
      background-size: auto, 52px 52px, 52px 52px, auto;
      position: relative;
      overflow: hidden;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-bottom: 0;
    }

    .outcome-content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .outcome-left {
      display: flex;
      flex-direction: column;
    }

    .outcome-right {
      display: flex;
      flex-direction: column;
    }

    .stat-card {
      background:
        linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbf9 0%, #f4fbf8 100%);
      background-size: 20px 20px, 20px 20px, auto;
      border-radius: 12px;
      padding: 50px 30px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(13, 90, 111, 0.08);
      border: 1px solid #dbe7e5;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      border-color: #0d8fa3;
      box-shadow: 0 12px 32px rgba(13, 90, 111, 0.12);
    }

    .stat-percentage {
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--theme-primary);
      margin-bottom: 15px;
    }

    .stat-label {
      font-size: 1.1rem;
      color: var(--theme-body);
      line-height: 1.6;
      margin: 0;
      font-weight: 600;
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .highlight-card {
      background: linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbf9 0%, #f4fbf8 100%);
      background-size: 20px 20px, 20px 20px, auto;
      border-radius: 12px;
      padding: 30px;
      border: 1px solid #dbe7e5;
      box-shadow: 0 8px 24px rgba(13, 90, 111, 0.08);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      overflow: hidden;
      animation: highlightCardFadeIn 0.6s ease-out forwards;
      transform: translateY(-6px);
      border-color: #0d8fa3;
      box-shadow: 0 12px 32px rgba(13, 90, 111, 0.12), 0 20px 50px rgba(13, 90, 111, 0.08);
      /* box-shadow: 0 4px 16px rgba(13, 90, 111, 0.1); */
      transform: translateY(-4px)
    }

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

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

    .highlight-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #0d5a6f, transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .highlight-card:hover::before {
      opacity: 1;
    }

    .highlight-card>* {
      position: relative;
      z-index: 1;
    }

    .highlight-card:hover {
      transform: translateY(-6px);
      border-color: #0d8fa3;
      box-shadow: 0 12px 32px rgba(13, 90, 111, 0.12), 0 20px 50px rgba(13, 90, 111, 0.08);
      box-shadow: 0 4px 16px rgba(13, 90, 111, 0.1);
      transform: translateY(-4px);
    }

    .highlight-icon-title {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .highlight-icon {
      width: 44px;
      height: 44px;
      border: 2px solid #0d8fa3;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0d8fa3;
      font-size: 1.4rem;
      transition: all 0.3s ease;
      flex-shrink: 0;
      background: #dbe7e5;
    }

    .highlight-icon i {
      display: block;
    }

    .highlight-icon::before {
      content: none;
    }

    .highlight-card:hover .highlight-icon {
      background: #0d8fa3;
      color: white;
      transform: scale(1.05);
    }

    .highlight-title {
      font-weight: 700;
      color: #04242d;
      font-size: 1.1rem;
      margin: 0;
      line-height: 1.3;
    }

    .highlight-card {
      margin-top: 0;
      font-size: 0.9rem;
      color: #123a2f;
      line-height: 1.6;
      margin: 0;
      font-weight: 400;
    }

    /* Back Button */
    .back-button-container {
      text-align: center;
      margin-top: 50px;
      padding-top: 40px;
      border-top: 1px solid var(--border-light);
    }

    .back-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 8px;
      background: var(--theme-primary);
      color: white;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid var(--theme-primary);
    }

    .back-button:hover {
      background: white;
      color: var(--theme-primary);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {

      .features-grid,
      .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature-cards-grid {
        gap: 11px;
      }

      .solution-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid,
      .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .highlight-card {
        padding: 25px;
      }

      .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
      }

      .section-header h1 {
        font-size: 2rem;
      }

      .two-column-grid {
        gap: 30px;
      }

      .scope-card-header {
        gap: 15px;
      }

      .scope-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
      }

      .scope-card-title-group h2 {
        font-size: 1.4rem;
      }

      .outcome-content-wrapper {
        gap: 40px;
      }

      .hex-wrapper {
        max-width: 500px;
        height: auto;
        min-height: 500px;
      }

      .hex-wrapper svg {
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {

      .features-grid,
      .challenges-grid,
      .solution-grid,
      .stats-grid,
      .highlights-grid {
        grid-template-columns: 1fr;
      }

      .outcome-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .outcome-left,
      .outcome-right {
        width: 100%;
      }

      .hex-wrapper {
        max-width: 100%;
        height: auto;
        min-height: 400px;
        margin: 0 auto;
      }

      .hex-wrapper svg {
        max-width: 100%;
        height: auto;
      }

      .feature-cards-grid {
        gap: 10px;
      }

      .two-column-grid {
        grid-template-columns: 1fr;
      }

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

      .service-grid::before,
      .card-dot::after {
        display: none;
      }

      .service-grid>div {
        border-right: none !important;
        border-bottom: none !important;
      }

      .card-dot {
        padding: 20px;
      }

      .service-stack-elements {
        padding: 20px;
      }

      .scope-card {
        padding: 25px;
      }

      .scope-card-header {
        gap: 12px;
      }

      .scope-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
      }

      .scope-card-title-group h2 {
        font-size: 1.2rem;
      }

      .highlight-card {
        padding: 20px;
      }

      .highlight-icon {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
      }

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

      .highlight-card p {
        font-size: 0.85rem;
      }

      .section-header h1 {
        font-size: 1.5rem;
      }

      .section-header p {
        font-size: 1rem;
      }

      .stat-percentage {
        font-size: 2.5rem;
      }

      .header-features-section,
      .about-scope-section,
      .features-section-wrapper,
      .challenges-section,
      .solution-section,
      .outcome-section {
        padding: 40px 0;
      }

      .scope-bullets li {
        padding-left: 35px;
        margin-bottom: 15px;
      }

      .scope-bullets li::before {
        width: 22px;
        height: 22px;
      }

      .glassy-feature-card {
        padding: 8px 12px;
        font-size: 0.85rem;
      }

      .feature-icon-glassy {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
      }

      .glassy-feature-card h3 {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .outcome-content-wrapper {
        gap: 20px;
      }

      .hex-wrapper {
        min-height: 350px;
        height: 350px;
        margin-bottom: 20px;
      }

      .hex-wrapper svg {
        max-width: 90%;
      }

      .label-outer {
        font-size: 12px;
        letter-spacing: 0.4px;
      }

      .label-inner {
        font-size: 14px;
        letter-spacing: 0.6px;
      }

      .label-center {
        font-size: 11px;
        letter-spacing: 0.8px;
      }

      .highlight-card {
        padding: 15px;
      }

      .highlight-icon-title {
        gap: 12px;
      }

      .highlight-icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
      }

      .highlight-title {
        font-size: 0.9rem;
      }

      .highlight-card p {
        font-size: 0.8rem;
        line-height: 1.4;
      }
    }

    /* Title Bottom Line Styling */
    .section-header h2::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 120px;
      height: 4px;
      background: linear-gradient(90deg, #0d5a6f, #145a72, #0d5a6f);
      background-size: 200% 100%;
      border-radius: 2px;
      animation: underlineGradientShimmer 3s ease-in-out infinite;
      box-shadow: 0 0 20px rgba(13, 90, 111, 0.3);
    }

    .section-header:hover h2::after {
      animation: underlineGradientShimmer 2s ease-in-out infinite;
      box-shadow: 0 0 30px rgba(13, 90, 111, 0.5);
    }

    @keyframes underlineGradientShimmer {
      0% {
        background-position: 0% center;
        transform: scaleX(0.8);
      }

      50% {
        background-position: 100% center;
        transform: scaleX(1);
      }

      100% {
        background-position: 200% center;
        transform: scaleX(0.8);
      }
    }

    /* Hexagon SVG Styles */
    .hex-wrapper {
      max-width: 100%;
      width: 100%;
      min-height: 600px;
      height: 600px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hex-wrapper svg {
      width: 100%;
      height: 100%;
      max-width: 900px;
      max-height: 900px;
    }

    /* Text Labels - Outer segments */
    .label-outer {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 700;
      fill: white;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeInScale 0.8s ease-out forwards;
    }

    /* Text Labels - Inner segments */
    .label-inner {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 800;
      fill: white;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeInScale 0.8s ease-out forwards;
    }

    /* Text Labels - Center */
    .label-center {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 800;
      fill: white;
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: 0;
      animation: centerfadeInScale 1s ease-out forwards;
    }

    /* Segment animation */
    .outer-seg {
      opacity: 0;
      animation: segmentSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: segmentDraw 1.2s ease-out forwards;
    }

    .inner-seg {
      opacity: 0;
      animation: segmentSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      stroke-dasharray: 500;
      stroke-dashoffset: 500;
      animation: segmentDraw 1.2s ease-out forwards;
    }

    polygon {
      opacity: 0;
      animation: centerPulse 1.5s ease-out forwards;
    }

    /* Gradient animation */
    @keyframes gradientFlow {
      0% {
        stop-color: #0d5a6f;
      }

      50% {
        stop-color: #0d8fa3;
      }

      100% {
        stop-color: #0d5a6f;
      }
    }

    #innerGrad stop,
    #outerGrad stop,
    #centerGrad stop {
      animation: gradientFlow 4s ease-in-out infinite;
    }

    #innerGrad stop:first-child {
      animation-delay: 0s;
    }

    #innerGrad stop:last-child {
      animation-delay: 0.5s;
    }

    #outerGrad stop:first-child {
      animation-delay: 1s;
    }

    #outerGrad stop:last-child {
      animation-delay: 1.5s;
    }

    #centerGrad stop:first-child {
      animation-delay: 2s;
    }

    #centerGrad stop:last-child {
      animation-delay: 2.5s;
    }

    /* Keyframe animations */
    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: scale(0.8);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes centerfadeInScale {
      from {
        opacity: 0;
        transform: scale(0.7);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes segmentSlideIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

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

    @keyframes segmentDraw {
      from {
        stroke-dashoffset: 1000;
        opacity: 0;
      }

      to {
        stroke-dashoffset: 0;
        opacity: 1;
      }
    }

    @keyframes centerPulse {
      0% {
        opacity: 0;
        transform: scale(0.5);
        filter: drop-shadow(0 0 0px rgba(13, 90, 111, 0));
      }

      70% {
        opacity: 1;
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(13, 90, 111, 0.6));
      }

      100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(13, 90, 111, 0.3));
      }
    }

    /* Hover effects */
    .outer-seg:hover {
      filter: brightness(1.2);
      stroke-width: 1.5;
    }

    .inner-seg:hover {
      filter: brightness(1.15);
      stroke-width: 1.5;
    }

    .label-outer:hover,
    .label-inner:hover {
      filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
      animation: textGlow 0.6s ease-in-out infinite;
    }

    @keyframes textGlow {

      0%,
      100% {
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
      }

      50% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
      }
    }

    /* Intersection Observer - pause animations initially */
    .hex-wrapper.hidden-animation svg {
      visibility: hidden;
    }

    .hex-wrapper.animate-on-view svg {
      visibility: visible;
    }

    .hex-wrapper.hidden-animation * {
      animation: none !important;
      opacity: 0;
    }

    /* .hex-wrapper.animate-on-view .outer-seg,
    .hex-wrapper.animate-on-view .inner-seg,
    .hex-wrapper.animate-on-view polygon,
    .hex-wrapper.animate-on-view text,
    .hex-wrapper.animate-on-view g {
      animation: fadeUp 0.8s ease forwards;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

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

    .hex-wrapper.animate-on-view .outer-seg {
      animation: fadeUp 0.8s ease forwards;
    }

    .hex-wrapper.animate-on-view .inner-seg {
      animation: fadeUp 0.8s ease forwards;
    } */
