  body {
      overflow-x: hidden;
  }

  .about-hero {
      position: relative;
      min-height: 75vh;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      overflow: hidden;
      background: #04242d;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .about-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(90deg, rgba(13, 90, 111, 0.1) 1px, transparent 1px),
          linear-gradient(rgba(13, 90, 111, 0.1) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 1;
  }

  .about-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          radial-gradient(circle at 70% 30%, rgba(13, 90, 111, 0.12), transparent 40%),
          radial-gradient(circle at 85% 50%, rgba(13, 90, 111, 0.08), transparent 35%),
          radial-gradient(circle at 15% 80%, rgba(13, 90, 111, 0.1), transparent 45%);
      pointer-events: none;
      z-index: 2;
      animation: gradientBreathe 6s ease-in-out infinite;
  }

  @keyframes gradientBreathe {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0.7;
      }
  }

  .hero-cubes-container {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      width: 400px;
      height: 400px;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.5s ease;
  }

  .dt-svg {
      width: 300px;
      height: 300px;
      filter: drop-shadow(0 0 15px rgba(13, 90, 111, 0.4));
  }

  .dt-logo {
      width: 100px;
      height: 100px;
      object-fit: contain;
      opacity: 0.5;
      filter: drop-shadow(0 0 8px rgba(13, 90, 111, 0.2));
      transition: all 0.3s ease;
      animation: logoDrawing 2.5s ease-out both;
  }

  @keyframes logoDrawing {
      0% {
          opacity: 0;
          stroke-dasharray: 1000;
          stroke-dashoffset: 1000;
          transform: scale(0.8);
      }

      60% {
          opacity: 0.5;
          stroke-dashoffset: 0;
      }

      100% {
          opacity: 0.5;
          stroke-dashoffset: 0;
          transform: scale(1);
      }
  }

  .dt-text {
      display: none;
  }

  .dt-circle-border {
      display: none;
  }

  @keyframes drawPath {
      0% {
          stroke-dashoffset: 200;
          opacity: 0;
      }

      20% {
          opacity: 1;
      }

      80% {
          opacity: 1;
      }

      100% {
          stroke-dashoffset: 0;
          opacity: 0;
      }
  }

  @keyframes pulseStroke {

      0%,
      100% {
          stroke: rgba(13, 90, 111, 0.3);
      }

      50% {
          stroke: rgba(13, 90, 111, 0.7);
      }
  }

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

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

  @keyframes pulseText {

      0%,
      100% {
          opacity: 0.4;
          text-shadow: 0 0 20px rgba(13, 90, 111, 0.3);
      }

      50% {
          opacity: 0.8;
          text-shadow: 0 0 40px rgba(13, 90, 111, 0.6);
      }
  }

  /* Outer rotating circles */
  .hero-cubes-container::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border: 3px solid rgba(13, 90, 111, 0.3);
      border-radius: 50%;
      animation: rotateBorder 20s linear infinite;
  }

  .hero-cubes-container::after {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      border: 2px dashed rgba(13, 90, 111, 0.4);
      border-radius: 50%;
      animation: rotateBorder 15s linear infinite reverse;
  }

  .iso-cube {
      display: none;
  }



  .cube-face {
      display: none;
  }

  .about-hero .about-hero-content {
      position: relative;
      z-index: 3;
      color: #fff;
      text-align: left;
      /* padding: 3rem 2rem 3rem 4rem;
      max-width: 600px;
      margin: 0 0 0 5%; */
      animation: slideUpContent 0.8s ease-out;
      /* flex: 1; */
  }

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

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

  .about-hero .about-hero-content h1 {
      color: #fff;
      /* max-width: 50%; */
      margin: 0 0 1.5rem 0;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.2;
  }

  .about-hero .about-hero-content p {
      color: rgba(255, 255, 255, 0.85);
      max-width: 500px;
      margin: 0 0 2.5rem 0;
      font-weight: 300;
      letter-spacing: 0.3px;
      line-height: 1.8;
      font-size: 1rem;
  }

  /* Hero Section - Mobile Responsive */
  @media (max-width: 1024px) {
      .about-hero {
          min-height: 65vh;
      }

      .about-hero .about-hero-content {
          width: 100%;
          text-align: center;
      }

      .about-hero .about-hero-content h1 {
          width: 100%;
          font-size: clamp(2rem, 4vw, 3rem);
      }

      .about-hero .about-hero-content p {
          width: 100%;
          max-width: 100%;
          margin: 0 auto 2.5rem;
      }

      .hero-cubes-container {
          display: none;
      }
  }

  @media (max-width: 768px) {
      .about-hero {
          min-height: 55vh;
          padding: 2rem 0;
      }

      .about-hero .about-hero-content {
          width: 100%;
          padding: 0 1rem;
          text-align: center;
      }

      .about-hero .about-hero-content h1 {
          width: 100%;
          font-size: clamp(1.5rem, 3.5vw, 2.5rem);
          margin: 0 0 1rem 0;
      }

      .about-hero .about-hero-content p {
          width: 100%;
          max-width: 100%;
          margin: 0 auto 2rem;
          font-size: 0.95rem;
      }

      .hero-accent-nodes {
          display: none;
      }
  }

  @media (max-width: 480px) {
      .about-hero {
          min-height: 50vh;
          padding: 1.5rem 0;
      }

      .about-hero .about-hero-content h1 {
          width: 100%;
          font-size: clamp(1.25rem, 2.8vw, 2rem);
          margin: 0 0 0.8rem 0;
      }

      .about-hero .about-hero-content p {
          width: 100%;
          font-size: 0.9rem;
          margin: 0 auto 1.5rem;
      }
  }

  /* Geometric accent nodes */
  .hero-accent-nodes {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
  }

  .accent-node {
      position: absolute;
      width: 32px;
      height: 32px;
      background: transparent;
      border-radius: 50%;
      animation: nodePulse 3s ease-in-out infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: rgba(13, 90, 111, 0.7);
      text-shadow: 0 0 10px rgba(13, 90, 111, 0.5);
  }

  @keyframes nodePulse {

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

      50% {
          transform: scale(1.3);
          opacity: 1;
      }
  }

  .about-overview-section {
      position: relative;
      background:
          radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 45%),
          radial-gradient(circle at 92% 92%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 45%),
          #f5f8f6;
  }

  .company-showcase {
      position: relative;
      display: flex;
      align-items: center;
      gap: 3rem;
  }

  .company-content-left {
      flex: 1;
      z-index: 2;
      animation: slideInLeft 0.8s ease-out;
  }

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

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

  .company-content-left h3 {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #04242d;
      font-weight: 600;
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }

  .company-content-left p {
      color: #666;
      line-height: 1.8;
      font-size: 1rem;
      margin-bottom: 1rem;
      transition: color 0.3s ease;
  }

  .company-content-left p:last-of-type {
      margin-bottom: 1.5rem;
  }

  .company-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #0d5a6f, #04242d);
      color: white;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.35s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(13, 90, 111, 0.2);
  }

  .company-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(13, 90, 111, 0.35);
      background: linear-gradient(135deg, #04242d, #0d5a6f);
  }

  .company-visual {
      flex: 1;
      position: relative;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: slideInRight 0.8s ease-out;
  }

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

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

  .visual-circle-pattern {
      display: none;
  }

  .visual-accent-dots {
      display: none;
  }

  .graphic-boxes {
      position: relative;
      width: 280px;
      height: auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      justify-items: center;
      align-items: center;
      gap: 16px;
      padding: 20px 0;
  }

  .graphic-boxes .graphic-box-1 {
      grid-column: 1 / -1;
      justify-self: center;
  }

  .graphic-boxes .graphic-box-2 {
      grid-column: 1;
  }

  .graphic-boxes .graphic-box-3 {
      grid-column: 2;
  }

  .graphic-boxes .graphic-box-4 {
      grid-column: 1;
  }

  .graphic-boxes .graphic-box-5 {
      grid-column: 2;
  }

  .graphic-box {
      position: relative;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(13, 90, 111, 0.15);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 246, 0.95));
      border: 1px solid rgba(13, 90, 111, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      font-weight: 600;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .graphic-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.05), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 1;
  }

  .graphic-box:hover {
      transform: translateY(-12px) scale(1.08);
      box-shadow: 0 25px 60px rgba(13, 90, 111, 0.35);
      background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 251, 250, 1));
  }

  .graphic-box:hover::before {
      opacity: 1;
  }

  .graphic-box i {
      position: relative;
      z-index: 2;
      transition: all 0.5s ease;
      filter: drop-shadow(0 2px 8px rgba(13, 90, 111, 0.2));
  }

  .graphic-box:hover i {
      transform: scale(1.2) rotate(5deg);
      filter: drop-shadow(0 4px 12px rgba(13, 90, 111, 0.35));
  }

  .graphic-box-1 {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.1), rgba(13, 90, 111, 0.05));
      color: #0d5a6f;
  }

  .graphic-box-2 {
      width: 110px;
      height: 110px;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.15), rgba(13, 90, 111, 0.08));
      color: #04242d;
  }

  .graphic-box-3 {
      width: 105px;
      height: 105px;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.12), rgba(13, 90, 111, 0.06));
      color: #0d5a6f;
  }

  .graphic-box-4 {
      width: 95px;
      height: 95px;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.08), rgba(13, 90, 111, 0.03));
      color: #145a72;
  }

  .graphic-box-5 {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.1), rgba(13, 90, 111, 0.04));
      color: #0d5a6f;
  }

  @media (max-width: 1024px) {
      .company-showcase {
          flex-direction: column;
          gap: 2rem;
      }

      .company-visual {
          width: 100%;
      }

      .company-content-left h3 {
          font-size: 1.3rem;
      }
  }

  /* color: #04242d;
      font-weight: 600;
      margin-bottom: 2.5rem;
    } */

  .company-content {
      padding-right: 2rem;
  }

  .company-content h3 {
      color: #04242d;
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .modern-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1.1rem;
      flex-shrink: 0;
  }

  .badge-1 {
      background: linear-gradient(135deg, #0d5a6f, #04242d);
      color: #fff;
  }

  .badge-2 {
      background: linear-gradient(135deg, #04242d, #0d5a6f);
      color: #fff;
  }

  .badge-3 {
      background: linear-gradient(135deg, #0d5a6f, #145a72);
      color: #fff;
  }

  .company-content p {
      color: #666;
      line-height: 1.8;
      font-size: 1rem;
      margin-bottom: 1.5rem;
  }

  .company-divider {
      height: 2px;
      background: linear-gradient(90deg, #0d5a6f, rgba(13, 90, 111, 0.2));
      margin: 2rem 0;
  }

  .what-we-do-title {
      color: #04242d;
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .overview-card {
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
      box-shadow: 0 12px 35px rgba(4, 36, 45, 0.08);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.95));
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      border-radius: 18px;
      padding: 2.5rem 2.5rem;
      margin-bottom: 2rem;
      backdrop-filter: blur(15px);
  }

  .overview-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(90deg, rgba(13, 90, 111, 0.04) 1px, transparent 1px),
          linear-gradient(rgba(13, 90, 111, 0.04) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .overview-card::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -50%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.15), transparent);
      border-radius: 50%;
      pointer-events: none;
      animation: float 6s ease-in-out infinite;
      transition: all 0.5s ease;
  }

  @keyframes float {

      0%,
      100% {
          transform: translate(0, 0);
      }

      50% {
          transform: translate(-20px, -20px);
      }
  }

  .overview-card:hover {
      box-shadow: 0 25px 60px rgba(13, 90, 111, 0.25), 0 0 30px rgba(13, 90, 111, 0.1);
      transform: translateY(-8px);
      border-color: rgba(13, 90, 111, 0.3);
      background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 252, 250, 1));
  }

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

  .overview-card:hover::after {
      animation: float 3s ease-in-out infinite;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.25), transparent);
      width: 300px;
      height: 300px;
  }

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

  .overview-card h5 {
      color: #04242d;
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 12px;
      letter-spacing: 0.3px;
      transition: all 0.4s ease;
  }

  .overview-card:hover h5 {
      color: #0d5a6f;
      transform: translateX(5px);
  }

  .overview-card p {
      color: #555;
      font-size: 1rem;
      line-height: 1.7;
      margin: 0;
      transition: all 0.4s ease;
  }

  .overview-card:hover p {
      color: #333;
  }

  .card-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1.05rem;
      flex-shrink: 0;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(13, 90, 111, 0.2);
  }

  .card-badge::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
  }

  .card-badge:hover::before {
      transform: translateX(100%);
  }

  .card-badge-1 {
      background: linear-gradient(135deg, #0d5a6f, #145a72);
      color: #fff;
  }

  .card-badge-1:hover {
      transform: scale(1.15) rotate(-5deg);
      box-shadow: 0 12px 30px rgba(13, 90, 111, 0.35);
  }

  .card-badge-2 {
      background: linear-gradient(135deg, #04242d, #0d5a6f);
      color: #fff;
  }

  .card-badge-2:hover {
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 12px 30px rgba(13, 90, 111, 0.35);
  }

  .card-badge-3 {
      background: linear-gradient(135deg, #145a72, #04242d);
      color: #fff;
  }

  .card-badge-3:hover {
      transform: scale(1.15) rotate(-5deg);
      box-shadow: 0 12px 30px rgba(13, 90, 111, 0.35);
  }

  .about-value-section {
      position: relative;
      background: #ffffff;
      padding: 5rem 0;
      overflow: hidden;
  }

  .about-value-section::before {
      content: "";
      position: absolute;
      top: -30%;
      right: 5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.08), transparent);
      border-radius: 50%;
      animation: float 10s ease-in-out infinite;
      z-index: 0;
      pointer-events: none;
  }

  .about-value-section::after {
      content: "";
      position: absolute;
      bottom: 10%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.06), transparent);
      border-radius: 50%;
      animation: float 12s ease-in-out infinite 1s;
      z-index: 0;
      pointer-events: none;
  }

  @media (min-width: 926px) {
      .about-overview-section {
          background-image:
              radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 45%),
              radial-gradient(circle at 92% 92%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 45%),
              url(../../assets/img/right-triangle-bg.png),
              linear-gradient(180deg, #f5f8f6 0%, #eff9f6 100%);
          background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
          background-position: center, center, right center, center;
      }

      /* Value Section Bubbles */
      .value-bubble {
          position: absolute;
          border-radius: 50%;
          background: radial-gradient(circle, rgba(13, 90, 111, 0.08), transparent);
          pointer-events: none;
          z-index: 0;
      }

      .value-bubble-1 {
          width: 300px;
          height: 300px;
          top: 20%;
          left: 10%;
          animation: float 11s ease-in-out infinite;
      }

      .value-bubble-2 {
          width: 250px;
          height: 250px;
          bottom: 20%;
          right: 15%;
          animation: float 13s ease-in-out infinite 0.5s;
      }

      .value-bubble-3 {
          width: 180px;
          height: 180px;
          top: 50%;
          right: 8%;
          animation: float 9s ease-in-out infinite 1.5s;
      }

      /* Core Competencies Section Title Styling */
      .about-value-section .section-title {
          position: relative;
          z-index: 1;
          text-align: left;
      }

      .about-value-section .section-title h2 {
          color: #04242d;
          font-weight: 600;
          margin-bottom: 3rem;
          font-size: 2.2rem;
          display: inline-block;
          position: relative;
          padding-bottom: 1.5rem;
          letter-spacing: 0.5px;
      }

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

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

  .about-card {
      position: relative;
      overflow: hidden;
      border: 1px solid #dcdfdd;
      box-shadow: 0 8px 20px rgba(4, 36, 45, 0.05);
      background: #fff;
      transition: all 0.35s ease;
  }

  .about-card:hover {
      box-shadow: 0 12px 32px rgba(4, 36, 45, 0.15);
      transform: translateY(-4px);
  }

  .about-card::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      right: -56px;
      top: -56px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(4, 36, 45, 0.1), rgba(4, 36, 45, 0.02));
      pointer-events: none;
  }

  .about-pattern-card {
      background:
          radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 60%),
          radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.45), transparent 70%),
          repeating-linear-gradient(115deg, rgba(252, 242, 233, 0.85) 0px, rgba(252, 242, 233, 0.85) 1px, transparent 1px, transparent 38px);
  }

  .about-card-title {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .about-value-card {
      background-image:
          radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.65), transparent 46%),
          linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
      transition: all 0.35s ease;
  }

  .about-value-card:hover {
      box-shadow: 0 12px 32px rgba(4, 36, 45, 0.15) !important;
      transform: translateY(-4px);
  }

  .about-card-title i {
      transition: transform 0.35s ease, color 0.35s ease;
  }

  .about-value-card:hover .value-badge {
      transform: scale(1.15);
      background: linear-gradient(135deg, #0d5a6f, #145a72);
  }

  .value-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, #04242d, #0d5a6f);
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
      transition: all 0.35s ease;
      letter-spacing: 0.5px;
  }

  /* CO FOUNDERS Section */
  .founders-section {
      position: relative;
      background:
          radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 45%),
          radial-gradient(circle at 92% 92%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 45%),
          #f5f8f6;
      padding: 5rem 0;
      overflow: hidden;
  }

  .founders-section::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.15), transparent);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
      z-index: 0;
      pointer-events: none;
  }

  .founders-section::after {
      content: "";
      position: absolute;
      bottom: -20%;
      left: 5%;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.12), transparent);
      border-radius: 50%;
      animation: float 10s ease-in-out infinite 1s;
      z-index: 0;
      pointer-events: none;
  }

  /* Additional bubbles */
  .bubble-decoration {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.1), transparent);
      pointer-events: none;
      z-index: 0;
  }

  .bubble-1 {
      width: 280px;
      height: 280px;
      top: 10%;
      left: 10%;
      animation: float 9s ease-in-out infinite;
  }

  .bubble-2 {
      width: 250px;
      height: 250px;
      top: 60%;
      right: 8%;
      animation: float 11s ease-in-out infinite 0.5s;
  }

  .bubble-3 {
      width: 200px;
      height: 200px;
      bottom: 15%;
      right: 25%;
      animation: float 12s ease-in-out infinite 1.5s;
  }

  .bubble-4 {
      width: 220px;
      height: 220px;
      top: 40%;
      left: 15%;
      animation: float 10s ease-in-out infinite 2s;
  }

  @media (min-width: 926px) {
      .founders-section {
          background-image:
              radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 45%),
              radial-gradient(circle at 92% 92%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 45%),
              url(../../assets/img/left-triangle-bg.png),
              linear-gradient(180deg, #f5f8f6 0%, #eff9f6 100%);
          background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
          background-position: center, center, left center, center;
      }
  }

  .founders-section .section-title {
      position: relative;
      z-index: 1;
      text-align: left;
  }

  .founders-section .section-title h2 {
      color: #04242d;
      font-weight: 600;
      margin-bottom: 3rem;
      font-size: 2.2rem;
      display: inline-block;
      position: relative;
      padding-bottom: 1.5rem;
      letter-spacing: 0.5px;
  }

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

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

  .founder-card {
      position: relative;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(252, 254, 253, 0.98));
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(4, 36, 45, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(13, 90, 111, 0.12);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      height: 100%;
      display: flex;
      align-items: stretch;
      z-index: 2;
      animation: cardSlideUp 0.8s ease-out forwards;
      min-height: 240px;
      position: relative;
  }

  /* Business Card Style Left Border */
  .founder-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 6px;
      background: linear-gradient(180deg, #0d5a6f, #145a72);
      z-index: 3;
      border-radius: 4px 0 0 4px;
  }

  .col-md-6:nth-child(1) .founder-card {
      animation: cardSlideUp 0.8s ease-out forwards;
  }

  .col-md-6:nth-child(2) .founder-card {
      animation: cardSlideUp 0.8s ease-out 0.2s forwards;
  }

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

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

  .founder-card:hover {
      box-shadow: 0 16px 48px rgba(4, 36, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      transform: translateY(-12px);
      border-color: rgba(13, 90, 111, 0.15);
  }

  .founder-card:hover::before {
      transform: scaleX(1);
  }

  .founder-card:hover::after {
      background: linear-gradient(135deg, transparent 50%, rgba(13, 90, 111, 0.2) 50%);
      animation: triangleGlow 0.5s ease;
  }

  @keyframes triangleGlow {
      0% {
          box-shadow: 0 0 10px rgba(13, 90, 111, 0.1);
      }

      50% {
          box-shadow: 0 0 25px rgba(13, 90, 111, 0.3);
      }

      100% {
          box-shadow: 0 0 15px rgba(13, 90, 111, 0.2);
      }
  }

  .founder-image-wrapper {
      position: relative;
      width: 20%;
      flex-shrink: 0;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.15), rgba(13, 90, 111, 0.08));
      min-height: 200px;
  }

  .founder-image-wrapper::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.1), transparent);
      z-index: 1;
      pointer-events: none;
      transition: opacity 0.5s ease;
  }

  .founder-card:hover .founder-image-wrapper::before {
      opacity: 0.5;
  }

  .founder-image-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease;
      filter: brightness(1);
  }

  .founder-card:hover .founder-image-wrapper img {
      transform: scale(1.12) rotate(0.5deg);
      filter: brightness(1.1);
  }

  .founder-content {
      padding: 1.5rem 2rem;
      text-align: left;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
  }

  .founder-content::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image:
          linear-gradient(90deg, rgba(13, 90, 111, 0.02) 1px, transparent 1px),
          linear-gradient(rgba(13, 90, 111, 0.02) 1px, transparent 1px);
      background-size: 30px 30px;
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
      border-radius: 16px;
  }

  .founder-card:hover .founder-content::before {
      opacity: 0.4;
  }

  .founder-name {
      font-size: 1.3rem;
      font-weight: 700;
      color: #04242d;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, #04242d, #0d5a6f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.3px;
  }

  .founder-title {
      font-size: 0.85rem;
      color: #0d5a6f;
      font-weight: 600;
      margin-bottom: 0.8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
  }

  .founder-title::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, #0d5a6f, transparent);
      border-radius: 1px;
  }

  .founder-description {
      font-size: 0.85rem;
      line-height: 1.5;
      color: #555;
      margin-bottom: 0;
      opacity: 0.9;
      transition: opacity 0.3s ease;
  }

  .founder-card:hover .founder-description {
      opacity: 1;
  }

  .founder-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.5rem;
  }

  .highlight-tag {
      display: inline-block;
      padding: 0.5rem 1rem;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.12), rgba(13, 90, 111, 0.08));
      border: 1px solid rgba(13, 90, 111, 0.15);
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #0d5a6f;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
  }

  .founder-card:hover .highlight-tag {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.2), rgba(13, 90, 111, 0.12));
      border-color: rgba(13, 90, 111, 0.3);
      transform: translateY(-2px);
  }

  .founder-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #04242d, #0d5a6f, #145a72, #0d5a6f, #04242d);
      background-size: 200%;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
      z-index: 3;
      box-shadow: 0 0 15px rgba(13, 90, 111, 0.3);
  }

  .founder-card::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, transparent 50%, rgba(13, 90, 111, 0.1) 50%);
      border-radius: 0 0 20px 0;
      z-index: 1;
      transition: all 0.5s ease;
      box-shadow: inset -8px -8px 25px rgba(13, 90, 111, 0.05);
  }

  .founder-card:hover::after {
      background: linear-gradient(135deg, transparent 50%, rgba(13, 90, 111, 0.25) 50%);
      box-shadow: inset -8px -8px 35px rgba(13, 90, 111, 0.15), 0 0 20px rgba(13, 90, 111, 0.2);
  }

  @media (max-width: 1024px) {
      .founders-section .section-title h2 {
          font-size: 1.8rem;
      }

      .founders-section .section-title h2::after {
          width: 100px;
      }
  }

  @media (max-width: 768px) {
      .founders-section {
          padding: 3rem 0;
      }

      .founders-section::before,
      .founders-section::after {
          display: none;
      }

      .founder-content {
          padding: 1.8rem;
      }

      .founder-name {
          font-size: 1.4rem;
      }

      .founders-section .section-title h2 {
          font-size: 1.6rem;
      }

      .founders-section .section-title h2::after {
          width: 80px;
          height: 3px;
      }
  }

  /* Modern UX Enhancements */

  /* Service Cards Grid Layout */
  .service-cards-row {
      max-width: 100%;
  }

  .service-card {
      position: relative;
      height: 100%;
      border-radius: 20px;
      overflow: hidden;
      padding: 2.5rem 2rem;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.95));
      border: 2px solid transparent;
      box-shadow: 0 12px 35px rgba(4, 36, 45, 0.08);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      backdrop-filter: blur(15px);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
          linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .service-card::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -50%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.15), transparent);
      border-radius: 50%;
      pointer-events: none;
      animation: float 6s ease-in-out infinite;
      transition: all 0.5s ease;
  }

  .service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 60px rgba(13, 90, 111, 0.25), 0 0 30px rgba(13, 90, 111, 0.1);
      border-color: rgba(13, 90, 111, 0.3);
      background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 252, 250, 1));
  }

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

  .service-card:hover::after {
      animation: float 3s ease-in-out infinite;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.25), transparent);
      width: 300px;
      height: 300px;
  }

  /* Service Card 1 - Staff Augmentation */
  .service-card-1 {
      border-top: 4px solid transparent;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.95)),
          linear-gradient(to bottom, rgba(13, 90, 111, 0.03), transparent 5%);
      background-clip: padding-box, border-box;
      background-origin: padding-box, border-box;
  }

  .service-card-1:hover {
      border-top-color: #0d5a6f;
  }

  /* Service Card 2 - Managed Product Development */
  .service-card-2 {
      border-top: 4px solid transparent;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.95)),
          linear-gradient(to bottom, rgba(4, 36, 45, 0.03), transparent 5%);
      background-clip: padding-box, border-box;
      background-origin: padding-box, border-box;
  }

  .service-card-2:hover {
      border-top-color: #04242d;
  }

  /* Service Card 3 - Product Innovation */
  .service-card-3 {
      border-top: 4px solid transparent;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.95)),
          linear-gradient(to bottom, rgba(20, 90, 114, 0.03), transparent 5%);
      background-clip: padding-box, border-box;
      background-origin: padding-box, border-box;
  }

  .service-card-3:hover {
      border-top-color: #145a72;
  }

  /* Service Icon Wrapper */
  .service-icon-wrapper {
      position: relative;
      display: flex;
      justify-content: center;
      z-index: 1;
  }

  .service-icon {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      font-size: 2.5rem;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(13, 90, 111, 0.2);
  }

  .service-icon::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .service-card:hover .service-icon {
      transform: scale(1.15) rotate(10deg);
      box-shadow: 0 15px 40px rgba(13, 90, 111, 0.35);
  }

  .service-card:hover .service-icon::before {
      opacity: 1;
  }

  /* Service Card 1 Icon */
  .service-card-1 .service-icon {
      background: linear-gradient(135deg, #0d5a6f, #145a72);
      color: #fff;
  }

  /* Service Card 2 Icon */
  .service-card-2 .service-icon {
      background: linear-gradient(135deg, #04242d, #0d5a6f);
      color: #fff;
  }

  /* Service Card 3 Icon */
  .service-card-3 .service-icon {
      background: linear-gradient(135deg, #145a72, #04242d);
      color: #fff;
  }

  /* Service Title */
  .service-title {
      color: #04242d;
      font-weight: 700;
      font-size: 1.25rem;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 12px;
      letter-spacing: 0.3px;
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
  }

  .service-card:hover .service-title {
      color: #0d5a6f;
      transform: translateX(5px);
  }

  /* Service Description */
  .service-description {
      color: #555;
      font-size: 1rem;
      line-height: 1.7;
      margin: 0;
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
  }

  .service-card:hover .service-description {
      color: #333;
  }

  /* Responsive Service Cards */
  @media (max-width: 1024px) {
      .service-card {
          padding: 2rem 1.8rem;
      }

      .service-icon {
          width: 70px;
          height: 70px;
          font-size: 2.2rem;
      }

      .service-title {
          font-size: 1.15rem;
      }
  }

  @media (max-width: 768px) {
      .service-card {
          padding: 2rem 1.5rem;
      }

      .service-icon {
          width: 60px;
          height: 60px;
          font-size: 2rem;
      }

      .service-title {
          font-size: 1.1rem;
      }

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

      .service-cards-row {
          display: flex;
          flex-direction: column;
      }
  }

  /* Service Cards Staggered Animation */
  .service-cards-row .col-lg-4:nth-child(1) .service-card {
      animation: slideUpIn 0.6s ease-out;
  }

  .service-cards-row .col-lg-4:nth-child(2) .service-card {
      animation: slideUpIn 0.6s ease-out 0.15s both;
  }

  .service-cards-row .col-lg-4:nth-child(3) .service-card {
      animation: slideUpIn 0.6s ease-out 0.3s both;
  }

  /* Service Cards Staggered Animation */
  .row[data-aos-delay="150"] {
      animation: slideUpIn 0.6s ease-out;
  }

  .row[data-aos-delay="200"] {
      animation: slideUpIn 0.6s ease-out 0.15s both;
  }

  .row[data-aos-delay="250"] {
      animation: slideUpIn 0.6s ease-out 0.3s both;
  }

  @keyframes slideUpIn {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

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

  /* Service Section Title Enhancement */
  .what-we-do-title {
      position: relative;
      padding-bottom: 1rem;
  }

  .what-we-do-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #0d5a6f, transparent);
      opacity: 0.3;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .row:has(.overview-card) .what-we-do-title::after {
      transform: scaleX(1);
  }

  /* Text Selection Enhancement */
  .overview-card::selection {
      background: rgba(13, 90, 111, 0.3);
  }

  /* Responsive Enhancements */
  @media (max-width: 1024px) {
      .company-showcase {
          gap: 2rem;
      }

      .graphic-boxes {
          width: 280px;
          height: 280px;
      }

      .graphic-box-1 {
          width: 120px;
          height: 120px;
      }

      .graphic-box-2 {
          width: 140px;
          height: 140px;
      }
  }

  @media (max-width: 768px) {
      .graphic-box {
          font-size: 36px;
      }

      .overview-card {
          padding: 2rem;
      }

      .overview-card h5 {
          font-size: 1.1rem;
      }

      .card-badge {
          width: 40px;
          height: 40px;
          font-size: 1rem;
      }
  }

  /* ==================== ALTERNATIVE DESIGNS ==================== */

  /* Alternative Who We Are - Stats Based Design */
  .company-description-alt {
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      position: relative;
      padding: 2rem;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(245, 248, 246, 0.3));
      border-radius: 16px;
      border: 1px solid rgba(13, 90, 111, 0.08);
      backdrop-filter: blur(10px);
  }

  .company-description-alt::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(90deg, rgba(13, 90, 111, 0.04) 1px, transparent 1px),
          linear-gradient(rgba(13, 90, 111, 0.04) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
      border-radius: 16px;
      opacity: 0.6;
      transition: opacity 0.5s ease;
  }

  .company-description-alt:hover::before {
      opacity: 1;
  }

  .company-description-alt>* {
      position: relative;
      z-index: 1;
  }

  /* Who We Are Title Styling */
  .who-we-are-title {
      text-align: left;
      position: relative;
      padding-bottom: 1rem;
      margin-bottom: 1rem;
  }

  .who-we-are-title h2 {
      color: #04242d;
      font-weight: 700;
      font-size: 2.2rem;
      margin: 0;
      letter-spacing: 0.5px;
      position: relative;
      display: inline-block;
  }

  .who-we-are-title 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);
  }

  .who-we-are-title: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);
      }
  }

  .desc-text-primary {
      color: #04242d;
      font-size: 1.1rem;
      line-height: 1.8;
      font-weight: 500;
      margin-bottom: 1.5rem;
      letter-spacing: 0.3px;
  }

  .desc-text-secondary {
      color: #0d5a6f;
      font-size: 1rem;
      line-height: 1.7;
      margin: 0;
  }

  /* Company Stats Triangle Grid */
  .company-stats-triangle {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
      max-width: 500px;
      margin-left: auto;
  }

  .triangle-row {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      width: 100%;
  }

  .triangle-row.row-1 {
      width: auto;
  }

  .triangle-row.row-2 {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
  }

  .triangle-row.row-3 {
      width: auto;
  }

  .triangle-row .col-value {
      flex: 0 1 auto;
      min-width: 200px;
  }

  .triangle-row .col-12 {
      display: flex;
      justify-content: center;
  }

  .company-stats-grid {
      max-width: 100%;
  }

  .stat-card {
      position: relative;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.95));
      border: 2px solid transparent;
      border-radius: 16px;
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      box-shadow: 0 12px 35px rgba(4, 36, 45, 0.08);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      overflow: hidden;
      backdrop-filter: blur(15px);
  }

  .stat-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
          linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .stat-card::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -50%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.12), transparent);
      border-radius: 50%;
      pointer-events: none;
      animation: float 6s ease-in-out infinite;
      transition: all 0.5s ease;
  }

  .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 60px rgba(13, 90, 111, 0.25), 0 0 30px rgba(13, 90, 111, 0.1);
      border-color: rgba(13, 90, 111, 0.3);
      background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 252, 250, 1));
  }

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

  .stat-card:hover::after {
      animation: float 3s ease-in-out infinite;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.25), transparent);
      width: 300px;
      height: 300px;
  }

  .stat-icon {
      position: relative;
      z-index: 1;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      font-size: 1rem;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(13, 90, 111, 0.15);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .stat-content {
      position: relative;
      z-index: 1;
      text-align: left;
  }

  .stat-number {
      font-size: 1.6rem;
      font-weight: 700;
      color: #04242d;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
      transition: color 0.4s ease;
  }

  .stat-label {
      font-size: 1rem;
      color: #666;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: color 0.4s ease;
  }

  .stat-card:hover .stat-number {
      color: #0d5a6f;
  }

  .stat-card:hover .stat-label {
      color: #0d5a6f;
  }

  .stat-card:hover .stat-icon {
      transform: scale(1.1) rotate(-5deg);
  }

  /* Stat Card Color Variants */
  .stat-card-1 .stat-icon {
      background: linear-gradient(135deg, #0d5a6f, #145a72);
      color: #fff;
  }

  .stat-card-2 .stat-icon {
      background: linear-gradient(135deg, #04242d, #0d5a6f);
      color: #fff;
  }

  .stat-card-3 .stat-icon {
      background: linear-gradient(135deg, #145a72, #04242d);
      color: #fff;
  }

  .stat-card-4 .stat-icon {
      background: linear-gradient(135deg, #0d5a6f, #04242d);
      color: #fff;
  }

  /* What We Do Section Styling */
  .what-we-do-section {
      background: #ffffff;
      padding: 4rem 0;
  }

  .what-we-do-title {
      text-align: left;
      position: relative;
      padding-bottom: 1.5rem;
      margin-bottom: 2rem;
  }

  .what-we-do-title h2 {
      color: #04242d;
      font-weight: 700;
      font-size: 2.2rem;
      margin: 0;
      letter-spacing: 0.5px;
      position: relative;
      display: inline-block;
  }

  .what-we-do-title 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);
  }

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

  /* Alternative What We Do - Timeline Design */
  .service-timeline {
      position: relative;
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: stretch;
      gap: 2rem;
      padding: 3rem 0;
  }

  .service-timeline::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #0d5a6f, transparent);
      transform: translateY(-50%);
      z-index: 0;
  }

  .timeline-item {
      position: relative;
      flex: 1;
      display: flex;
      flex-direction: column;
      z-index: 1;
  }

  .timeline-item-1 {
      padding-bottom: 5rem;
      padding-top: 0;
      text-align: center;
  }

  .timeline-item-2 {
      padding-top: 5rem;
      padding-bottom: 0;
      text-align: center;
  }

  .timeline-item-3 {
      padding-bottom: 5rem;
      padding-top: 0;
      text-align: center;
  }

  .timeline-marker {
      position: absolute;
      left: 50%;
      top: -2.5rem;
      transform: translateX(-50%);
      z-index: 2;
  }

  .timeline-item-2 .timeline-marker {
      top: auto;
      bottom: -2.5rem;
  }

  .timeline-dot {
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.95));
      border: 3px solid #0d5a6f;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 8px 25px rgba(13, 90, 111, 0.2);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
  }

  .timeline-dot::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.1), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .timeline-item:hover .timeline-dot {
      transform: scale(1.2);
      box-shadow: 0 15px 40px rgba(13, 90, 111, 0.35);
      border-color: #04242d;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.1), rgba(13, 90, 111, 0.05));
  }

  .timeline-item:hover .timeline-dot::before {
      opacity: 1;
  }

  .timeline-dot i {
      position: relative;
      z-index: 1;
      color: #0d5a6f;
      transition: all 0.5s ease;
  }

  .timeline-item:hover .timeline-dot i {
      transform: scale(1.15) rotate(10deg);
      color: #04242d;
  }

  .timeline-content {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.95));
      border: 2px solid transparent;
      border-radius: 16px;
      padding: 1.8rem 1.5rem;
      box-shadow: 0 12px 35px rgba(4, 36, 45, 0.08);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      backdrop-filter: blur(15px);
      overflow: hidden;
      position: relative;
  }

  .timeline-content::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
          linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .timeline-content::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -50%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.12), transparent);
      border-radius: 50%;
      pointer-events: none;
      animation: float 6s ease-in-out infinite;
      transition: all 0.5s ease;
  }

  .timeline-item:hover .timeline-content {
      transform: translateY(-8px);
      box-shadow: 0 25px 60px rgba(13, 90, 111, 0.25), 0 0 30px rgba(13, 90, 111, 0.1);
      border-color: rgba(13, 90, 111, 0.3);
      background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 252, 250, 1));
  }

  .timeline-item:hover .timeline-content::before {
      opacity: 1;
  }

  .timeline-item:hover .timeline-content::after {
      animation: float 3s ease-in-out infinite;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.25), transparent);
      width: 300px;
      height: 300px;
  }

  .timeline-title {
      color: #04242d;
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 0.8rem;
      position: relative;
      z-index: 1;
      letter-spacing: 0.3px;
      transition: color 0.4s ease;
  }

  .timeline-item:hover .timeline-title {
      color: #0d5a6f;
      transform: translateX(5px);
  }

  .timeline-description {
      color: #555;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
      transition: color 0.4s ease;
  }

  .timeline-item:hover .timeline-description {
      color: #333;
  }

  .timeline-badge {
      display: inline-block;
      padding: 0.6rem 1.2rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      position: relative;
      z-index: 1;
      box-shadow: 0 8px 20px rgba(13, 90, 111, 0.15);
      transition: all 0.4s ease;
  }

  .badge-alt-1 {
      background: linear-gradient(135deg, #0d5a6f, #145a72);
      color: #fff;
  }

  .badge-alt-2 {
      background: linear-gradient(135deg, #04242d, #0d5a6f);
      color: #fff;
  }

  .badge-alt-3 {
      background: linear-gradient(135deg, #145a72, #04242d);
      color: #fff;
  }

  .timeline-item:hover .timeline-badge {
      transform: scale(1.1);
      box-shadow: 0 12px 30px rgba(13, 90, 111, 0.25);
  }

  /* Responsive Timeline */
  @media (max-width: 1024px) {
      .who-we-are-title h2 {
          font-size: 1.8rem;
      }

      .who-we-are-title h2::after {
          width: 100px;
      }

      .what-we-do-title h2 {
          font-size: 1.8rem;
      }

      .what-we-do-title h2::after {
          width: 100px;
      }

      .service-timeline {
          gap: 1.5rem;
          padding: 2.5rem 0;
      }

      .timeline-item-1,
      .timeline-item-2,
      .timeline-item-3 {
          padding-bottom: 0;
          padding-top: 0;
      }

      .timeline-marker {
          position: static;
          transform: none;
          margin-bottom: 1rem;
      }

      .timeline-item-2 .timeline-marker {
          position: static;
          transform: none;
          margin-bottom: 1rem;
      }

      .service-timeline::before {
          display: none;
      }

      .timeline-dot {
          width: 60px;
          height: 60px;
          font-size: 1.4rem;
      }

      .timeline-content {
          padding: 1.5rem 1.2rem;
      }

      .timeline-title {
          font-size: 1.1rem;
      }

      .company-stats-triangle {
          max-width: 100%;
      }

      .triangle-row .col-value {
          min-width: 180px;
      }

      .stat-card {
          padding: 1.5rem 1.2rem;
      }

      .stat-icon {
          width: 65px;
          height: 65px;
          font-size: 1.6rem;
      }

      .stat-number {
          font-size: 1.4rem;
      }
  }

  /* Core Competencies Column-Based Pyramid Layout */
  .core-competencies-pyramid {
      display: flex;
      gap: 0.8rem;
      margin-top: 2rem;
      align-items: center;
  }

  .pyramid-column {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      animation: buildingBlockColumn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  }

  .pyramid-column.col-1 {
      flex: 1;
      animation-delay: 0s;
  }

  .pyramid-column.col-2 {
      flex: 1;
      animation-delay: 0.2s;
  }

  .pyramid-column.col-3 {
      flex: 1;
      animation-delay: 0.4s;
  }

  @keyframes buildingBlockColumn {
      from {
          opacity: 0;
          transform: translateX(-30px) scale(0.85);
      }
      to {
          opacity: 1;
          transform: translateX(0) scale(1);
      }
  }

  .competency-card {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.08), rgba(13, 90, 111, 0.05));
      border: 1px solid rgba(13, 90, 111, 0.2);
      border-radius: 12px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
      animation: buildingBlockCard 0.6s ease-out backwards;
      width: 100%;
  }

  /* Override card-dot padding for competency cards */
  .competency-card.card-dot {
      padding: 2rem;
  }

  @keyframes buildingBlockCard {
      from {
          opacity: 0;
          transform: scale(0.75) rotateY(10deg);
      }
      to {
          opacity: 1;
          transform: scale(1) rotateY(0deg);
      }
  }

  .competency-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      border-color: rgba(200, 200, 220, 0.6);
  }

  .competency-card-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      width: 100%;
  }



  .competency-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0.5rem 0 0.75rem;
      line-height: 1.3;
      color: #1a1a1a;
  }

  .competency-description {
      font-size: 0.95rem;
      color: #555555;
      line-height: 1.6;
      margin: 0;
      flex-grow: 1;
  }

  .card-blue {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.1), rgba(13, 90, 111, 0.06));
  }

  .card-beige {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.12), rgba(13, 90, 111, 0.07));
  }

  .card-cyan {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.13), rgba(13, 90, 111, 0.08));
  }

  .card-pink {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.14), rgba(13, 90, 111, 0.09));
  }

  .card-green {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.15), rgba(13, 90, 111, 0.10));
  }

  .card-purple {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.16), rgba(13, 90, 111, 0.11));
  }

  /* Nimbuz Product Section */
  .nimbuz-product-section {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.08) 0%, rgba(13, 90, 111, 0.04) 100%);
      border-top: 2px solid #0d5a6f;
      border-bottom: 2px solid #0d5a6f;
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
  }

  .nimbuz-product-section::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.1), transparent);
      border-radius: 50%;
      z-index: 0;
  }

  .nimbuz-product-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(13, 90, 111, 0.08), transparent);
      border-radius: 50%;
      z-index: 0;
  }

  .nimbuz-highlight {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      padding: 2rem;
      background: white;
      border-radius: 16px;
      border: 2px solid #0d5a6f;
      box-shadow: 0 20px 60px rgba(13, 90, 111, 0.15);
      animation: scaleInNimbuz 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

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

  .nimbuz-badge {
      display: inline-block;
      background: linear-gradient(135deg, #0d5a6f 0%, #0e7890 100%);
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .nimbuz-badge i {
      margin-right: 0.5rem;
  }

  .nimbuz-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: #0d5a6f;
      margin: 0.5rem 0 0.5rem;
      letter-spacing: -1px;
      background: linear-gradient(135deg, #0d5a6f 0%, #0e7890 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .nimbuz-subtitle {
      font-size: 1.3rem;
      color: #0e7890;
      font-weight: 600;
      margin-bottom: 1.5rem;
  }

  .nimbuz-description {
      font-size: 1rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 2rem;
      text-align: center;
  }

  .nimbuz-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0 2rem;
  }

  .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      padding: 1.2rem;
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.05), rgba(13, 90, 111, 0.02));
      border: 1px solid rgba(13, 90, 111, 0.1);
      border-radius: 12px;
      transition: all 0.3s ease;
  }

  .feature-item:hover {
      background: linear-gradient(135deg, rgba(13, 90, 111, 0.1), rgba(13, 90, 111, 0.05));
      border-color: #0d5a6f;
      transform: translateY(-4px);
  }

  .feature-item i {
      font-size: 1.8rem;
      color: #0d5a6f;
      transition: all 0.3s ease;
  }

  .feature-item:hover i {
      color: #0e7890;
      transform: scale(1.15);
  }

  .feature-item span {
      font-size: 0.9rem;
      font-weight: 600;
      color: #333;
      text-align: center;
  }

  .nimbuz-cta-btn {
      display: inline-block;
      padding: 1rem 2.5rem;
      background: linear-gradient(135deg, #0d5a6f 0%, #0e7890 100%);
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(13, 90, 111, 0.25);
      position: relative;
      overflow: hidden;
  }

  .nimbuz-cta-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0e7890 0%, #0f8aa0 100%);
      transition: left 0.3s ease;
      z-index: -1;
  }

  .nimbuz-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(13, 90, 111, 0.35);
      color: white;
  }

  .nimbuz-cta-btn:hover::before {
      left: 0;
  }

  @media (max-width: 1024px) {
      .core-competencies-pyramid {
          gap: 1.2rem;
      }

      .pyramid-column {
          gap: 1.2rem;
      }

      .competency-card {
          padding: 1.5rem;
      }
  }

  @media (max-width: 768px) {
      .who-we-are-title h2 {
          font-size: 1.5rem;
      }

      .who-we-are-title h2::after {
          width: 80px;
          height: 3px;
      }

      .what-we-do-title h2 {
          font-size: 1.5rem;
      }

      .what-we-do-title h2::after {
          width: 80px;
          height: 3px;
      }

      .company-stats-triangle {
          display: flex;
          flex-direction: column;
          gap: 1.2rem;
          max-width: 100%;
      }

      .triangle-row {
          flex-direction: column;
          align-items: stretch;
          gap: 1rem;
      }

      .triangle-row .col-value {
          min-width: 100%;
          display: flex;
          justify-content: center;
      }

      .triangle-row .col-12 {
          width: 100%;
      }

      .stat-card {
          flex-direction: column;
          text-align: center;
          padding: 1.5rem 1.2rem;
      }

      .stat-content {
          text-align: center;
      }

      .stat-icon {
          width: 65px;
          height: 65px;
          font-size: 1.6rem;
      }

      .stat-number {
          font-size: 1.4rem;
      }

      .company-description-alt {
          text-align: center;
          margin-bottom: 2rem;
          padding: 1.5rem;
      }

      .service-timeline {
          flex-direction: column;
          gap: 1.5rem;
          padding: 1.5rem 0;
      }

      .service-timeline::before {
          display: none;
      }

      .timeline-item-1,
      .timeline-item-3,
      .timeline-item-2 {
          padding: 0 !important;
      }

      .timeline-marker {
          position: static;
          transform: none;
          margin-bottom: 1rem;
      }

      .timeline-dot {
          width: 55px;
          height: 55px;
          font-size: 1.3rem;
      }

      .timeline-content {
          padding: 1.2rem 1rem;
      }

      .timeline-title {
          font-size: 1rem;
          margin-bottom: 0.6rem;
      }

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

      .core-competencies-pyramid {
          flex-direction: column;
          gap: 1.5rem;
      }

      .pyramid-column {
          gap: 1rem;
      }

      .competency-card {
          height: auto;
          padding: 1.5rem;
      }

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

      .competency-description {
          font-size: 0.9rem;
      }
  }
