    .hlm-hero-main-section {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      height: 70vh;
      overflow: hidden;
    }

    /* Content Wrapper */
    .hlm-hero-content-wrapper {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      opacity: 0;
      animation: fadeIn 1.2s ease-out 0.5s forwards;
    }

    /* Text Content */
    .hlm-hero-text-content {
      flex: 1;
      max-width: 50%;
      transform: translateX(-100%);
      opacity: 0;
      animation: slideInLeft 1.5s ease-out 0.7s forwards;
    }

    .hlm-hero-text-content h1 {
      font-size: 3rem;
      line-height: 0.9;
      margin-bottom: 20px;
      font-family: 'roc-grotesk', sans-serif;
			color:#fff !important;
			font-weight: 600;
    }

    .hlm-hero-text-content h3 {
      font-size: 1.3rem;
      line-height: 1;
      font-family: 'roc-grotesk', sans-serif;
			color:#fff !important;
    }

    .hlm-hero-text-content p {
      font-size: 1rem;
      line-height: 1.3;
      margin-bottom: 20px;
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 1s ease-out 1s forwards;
    }

    .hlm-hero-cta-btn {
      display: inline-block;
      padding: 15px 30px;
      font-size: 1rem;
      background-color: #fff;
      color: #7A06D3;
      text-decoration: none;
      border-radius: 25px;
      font-weight: bold;
      transform: scale(0.8);
      opacity: 0;
      animation: zoomIn 1.2s ease-out 1.2s forwards;
      transition: transform 0.3s ease, background 0.3s ease;
			font-family: 'roc-grotesk', sans-serif !important;
    }

    .hlm-hero-cta-btn:hover {
      background-color: #f1f1f1;
      transform: scale(1.05);
    }

    /* Chart and Image Wrapper */
    .chart-image-wrapper {
      flex: 1;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      position: relative;
      width: 600px;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin: 1%;
      transform: scale(0.9);
      opacity: 0;
      animation: zoomIn 1.5s ease-out 1.5s forwards;
    }

    /* Person Image */
    .person-image {
      position: absolute;
      max-width: 400px;
      height: auto;
      z-index: 2;
      transition: opacity 1s ease-in-out;
    }

    /* Chart Container */
    .chart-container {
      position: absolute;
      width: 90%;
      height: 90%;
      z-index: 1;
    }

    /* Keyframes for Animations */
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes zoomIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hlm-hero-main-section {
        flex-direction: column;
        text-align: center;
        height: auto;
      }

      .hlm-hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
      }

      .hlm-hero-text-content {
        max-width: 90%;
      }

      .chart-image-wrapper {
        width: 80%;
        height: auto;
        aspect-ratio: 4 / 3; /* Maintain aspect ratio for chart */
        margin-top: 5%;
        margin-bottom: 4%;
      }

      .chart-container {
        width: 90%;
        height: 90%; /* Ensure the chart is visible on mobile */
      }

      .person-image {
        max-width: 100%;
        max-height: 100%;
      }

      .hlm-hero-background {
        width: 150%;
        height: 90%;
      }
    }