    .industry-section {
      width: 100%;
      padding: 0;
      background: linear-gradient(to right, #0e0b20, #120f28);
      margin-bottom: 0;
      border-bottom: none;
      border-radius: 0;
      overflow: hidden;
      box-sizing: border-box;
      height: 100vh;
      display: flex;
      align-items: center;
    }

    .industry-hero {
      position: relative;
      overflow: hidden;
      text-align: center;
      background-color: transparent;
      background-image: url('../imgs/overview/banner.png');
      background-size: cover;
      background-position: center;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      padding: 0;
    }

    .industry-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.55);
      /* Black overlay with 55% opacity */
      z-index: 0;
    }

    .industry-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .industry-hero-content {
      z-index: 2;
      max-width: 1200px;
      width: 100%;
      padding: 0 20px;
    }

    /*     
    .industry-hero h1 {
      font-size: 72px;
      line-height: 1.1;
      margin-bottom: 30px;
      font-weight: 700;
      background: linear-gradient(to bottom, #dbceef, #7f38ed);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.5px;
    }
    
    .industry-hero .sub-heading {
      font-size: 20px;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.8);
    } */

    .container-large {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      box-sizing: border-box;
    }

    .row {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      width: 100%;
    }

    .col-md-6 {
      flex: 1;
      min-width: 300px;
      max-width: 100%;
    }

    .industry-title {
      font-size: 42px;
      margin-bottom: 15px;
      font-weight: 600;
      background: linear-gradient(to bottom, #dbceef, #7f38ed);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .industry-description {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .industry-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: 80vh;
      object-fit: cover;
      border-radius: 18px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
    }

    .industry-image:hover {
      transform: scale(1.02);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(125, 54, 247, 0.2);
    }

    .industry-grid {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    .use-case-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      transition: transform 0.4s ease;
    }

    .use-case-item:hover {
      transform: translateX(5px);
    }

    .checkmark-icon {
      background: linear-gradient(135deg, rgba(125, 54, 247, 0.3) 0%, rgba(180, 140, 255, 0.3) 100%);
      border-radius: 50%;
      width: 22px;
      height: 22px;
      min-width: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 3px;
      transition: all 0.3s ease;
    }

    .use-case-item:hover .checkmark-icon {
      background: linear-gradient(135deg, rgba(125, 54, 247, 0.6) 0%, rgba(180, 140, 255, 0.6) 100%);
      transform: scale(1.1);
    }

    .checkmark-icon svg {
      width: 12px;
      height: 12px;
      color: white;
    }

    .use-case-title {
      font-weight: 600;
      margin: 0 0 5px 0;
      color: var(--white);
      font-size: 18px;
    }

    .use-case-description {
      color: rgba(255, 255, 255, 0.7);
      font-size: 15px;
      line-height: 1.4;
      margin: 0;
    }

    .get-started-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(125, 54, 247, 1);
      color: white;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 100px;
      text-decoration: none;
      margin-top: 20px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(125, 54, 247, 0.3);
      font-size: 16px;
    }

    .get-started-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(125, 54, 247, 0.4);
    }

    .get-started-icon {
      margin-left: 8px;
    }

    @media screen and (max-width: 1200px) and (min-width: 992px) {
      .container-large {
        padding: 0 30px;
      }

      .row {
        gap: 40px;
      }

      .industry-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
      }

      .industry-hero h1 {
        font-size: 64px;
      }

      .industry-title {
        font-size: 40px;
      }

      .industry-image {
        max-height: 500px;
      }
    }

    /* Tablet landscape orientation */
    @media screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
      .industry-section {
        padding: 30px 0;
      }

      .industry-image {
        max-height: 400px;
      }

      .industry-hero {
        height: auto;
        min-height: 100vh;
      }

      .cta-section {
        min-height: 80vh;
      }
    }

    @media screen and (max-width: 991px) {
      .industry-section {
        padding: 40px 0;
        height: auto;
        min-height: 100vh;
      }

      .row {
        gap: 30px;
      }

      .industry-title {
        font-size: 36px;
      }

      .industry-description {
        font-size: 16px;
      }

      .industry-image {
        max-height: none;
      }

      .use-case-item {
        margin-bottom: 10px;
      }

      .cta-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
      }

      .cta-content-wrapper {
        width: 85%;
        padding: 40px;
      }

      .cta-section h2 {
        font-size: 48px;
      }
    }

    @media screen and (max-width: 767px) {
      .container-large {
        padding: 0 20px;
      }

      .industry-section {
        padding: 40px 0;
        height: auto;
        min-height: auto;
      }

      .industry-hero {
        height: 80vh;
      }

      .industry-hero h1 {
        font-size: 48px;
      }

      .industry-hero .sub-heading {
        font-size: 18px;
        padding: 0 15px;
      }

      .row {
        flex-direction: column-reverse;
        gap: 30px;
      }

      .row.text-first {
        flex-direction: column;
      }

      .col-md-6 {
        width: 100%;
      }

      .industry-image {
        margin-bottom: 20px;
        height: 300px;
        object-fit: cover;
      }

      .industry-title {
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
      }

      .industry-description {
        text-align: justify;
       margin-bottom: 25px;
      }

      .industry-grid {
        margin-bottom: 20px;
      }

      .use-case-item {
        margin-bottom: 15px;
      }

      .get-started-btn {
        display: block;
        max-width: 80%;
        margin: 20px auto 0;
        text-align: center;
      }

      /* Tablet CTA section */
      .cta-section {
        height: auto;
        min-height: 80vh;
        padding: 50px 0;
      }

      .cta-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
      }

      .cta-section p {
        font-size: 17px;
        padding: 0 10px;
        margin-bottom: 30px;
      }

      .cta-content-wrapper {
        width: 80%;
        max-width: 400px;
        padding: 30px 20px;
      }

      .cta-section .get-started-btn {
        padding: 12px 25px;
        max-width: 220px;
      }
    }

    @media screen and (max-width: 479px) {
      .container-large {
        padding: 0 15px;
      }

      .industry-section {
        padding: 30px 0;
      }

      .industry-hero {
        height: 90vh;
      }

      .industry-hero h1 {
        font-size: 36px;
        padding: 0 10px;
      }

      .industry-hero .sub-heading {
        font-size: 16px;
        padding: 0 15px;
        margin-top: 15px;
      }

      .industry-title {
        font-size: 28px;
      }

      .industry-description {
        font-size: 15px;
        margin-bottom: 25px;
      }

      .industry-image {
        height: 220px;
        margin-bottom: 15px;
      }

      .use-case-title {
        font-size: 18px;
      }

      .use-case-description {
        font-size: 14px;
      }

      .use-case-item {
        padding: 12px;
      }

      .checkmark-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
      }

      .get-started-btn {
        max-width: 100%;
        padding: 12px 20px;
      }

      /* Mobile CTA section optimizations */
      .cta-section {
        height: auto;
        min-height: 50vh;
        padding: 20px 0;
      }

      .cta-section h2 {
        font-size: 24px;
        margin-bottom: 10px;
        white-space: normal;
        overflow: visible;
        width: 100%;
        text-rendering: optimizeLegibility;
      }

      .cta-section p {
        font-size: 14px;
        padding: 0;
        margin-bottom: 15px;
      }

      .cta-content-wrapper {
        padding: 15px 12px;
        width: 75%;
        max-width: 240px;
      }

      .cta-section .get-started-btn {
        padding: 8px 14px;
        font-size: 13px;
      }
    }

    /* Enhanced CTA Section */
    .cta-section {
      background: linear-gradient(135deg, rgba(125, 54, 247, 0.2), rgba(10, 8, 24, 0.95));
      border-radius: 0;
      padding: 0;
      text-align: center;
      margin: 0;
      width: 100%;
      position: relative;
      overflow: hidden;
      height: 100vh;
      /* Full viewport height */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cta-content-wrapper {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 60px;
      background: rgba(16, 12, 36, 0.8);
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(125, 54, 247, 0.5);
      width: 90%;
    }

    .cta-decorative-element {
      position: absolute;
      border-radius: 50%;
      background: rgba(125, 54, 247, 0.15);
      filter: blur(40px);
      z-index: -1;
    }

    .cta-decorative-element.left {
      width: 300px;
      height: 300px;
      left: -150px;
      top: -100px;
    }

    .cta-decorative-element.right {
      width: 250px;
      height: 250px;
      right: -100px;
      bottom: -80px;
      background: rgba(180, 140, 255, 0.15);
    }

    .cta-section h2 {
      font-size: 60px;
      margin-bottom: 30px;
      font-weight: 600;
      background: linear-gradient(to bottom, #dbceef, #7f38ed);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .cta-section p {
      font-size: 24px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 50px;
    }

    /* Modern professional animations */
    @keyframes float-particle {
      0% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(50px, -30px);
      }

      50% {
        transform: translate(20px, 40px);
      }

      75% {
        transform: translate(-30px, 10px);
      }

      100% {
        transform: translate(0, 0);
      }
    }

    @keyframes fade-in-out {

      0%,
      100% {
        opacity: 0;
      }

      50% {
        opacity: 0.5;
      }
    }

    /* Replace with these professional animations */
    .industry-section {
      position: relative;
      transition: background-color 0.8s ease;
    }

    .industry-section:hover {
      background: linear-gradient(to right, #110c2a, #171033);
    }

    .industry-title {
      position: relative;
      display: inline-block;
    }

    .industry-title:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, #7d36f7, transparent);
      transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .industry-section:hover .industry-title:after {
      width: 100%;
    }

    /* Glow effect on section hover */
    .industry-image {
      position: relative;
      z-index: 1;
    }

    .industry-image:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(125, 54, 247, 0), rgba(125, 54, 247, 0));
      z-index: -1;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .industry-section:hover .industry-image:before {
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      background: linear-gradient(135deg, rgba(125, 54, 247, 0.05), rgba(125, 54, 247, 0.01));
      box-shadow: 0 0 30px rgba(125, 54, 247, 0.2);
    }

    /* Advanced checkmark animations */
    .checkmark-icon svg {
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .use-case-item:hover .checkmark-icon svg {
      transform: scale(1.2);
    }

    /* Smooth slide-in for sections */
    [data-aos="slide-up-fade"] {
      opacity: 0;
      transform: translateY(50px);
      transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    [data-aos="slide-up-fade"].aos-animate {
      opacity: 1;
      transform: translateY(0);
    }

    [data-aos="slide-left"] {
      opacity: 0;
      transform: translateX(-50px);
      transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    [data-aos="slide-left"].aos-animate {
      opacity: 1;
      transform: translateX(0);
    }

    [data-aos="slide-right"] {
      opacity: 0;
      transform: translateX(50px);
      transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    [data-aos="slide-right"].aos-animate {
      opacity: 1;
      transform: translateX(0);
    }

    /* Button animation */
    .get-started-btn {
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .get-started-btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(125, 54, 247, 0.8) 0%, rgba(153, 91, 247, 0.8) 100%);
      z-index: -1;
      transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .get-started-btn:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(153, 91, 247, 0.9) 0%, rgba(180, 130, 250, 0.9) 100%);
      z-index: -2;
    }

    .get-started-btn:hover:before {
      transform: translateX(100%);
    }

    .get-started-icon {
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .get-started-btn:hover .get-started-icon {
      transform: translateX(5px);
    }

    /* Removed blob animations for hero section */

    @keyframes blob-morph {
      0% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
      }

      34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: translate(50px, 20px) rotate(20deg);
      }

      67% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(-20px, 40px) rotate(-20deg);
      }

      100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
      }
    }

    /* Professional Design Enhancements */

    /* Global polish */
    body {
      font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
    }

    /* Modern section indicators */
    .section-indicator {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 5;
    }

    .indicator-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin: 8px 0;
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid rgba(125, 54, 247, 0.1);
      transition: all 0.3s ease;
    }

    .indicator-dot.active {
      background: rgba(125, 54, 247, 0.8);
      transform: scale(1.2);
      box-shadow: 0 0 10px rgba(125, 54, 247, 0.6);
    }

    /* Industry section enhancements */
    .industry-section {
      position: relative;
      z-index: 1;
    }

    .industry-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237d36f7' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      z-index: -1;
      opacity: 0.3;
    }

    /* Enhanced hero */
    .industry-hero {
      /* Background is now an image */
    }

    .industry-hero-bg {
      /* No background */
    }

    .industry-hero-content::before {
      display: none;
      /* Remove the pseudo-element */
    }

    @keyframes pulse {
      0% {
        opacity: 0.5;
      }

      100% {
        opacity: 0.8;
      }
    }

    /* .industry-hero h1 {
      position: relative;
      text-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
    } */

    /* .industry-hero h1::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      height: 4px;
      width: 120px;
      background: linear-gradient(90deg, transparent, rgba(125, 54, 247, 0.7), transparent);
    } */

    /* Professional title styling */
    .industry-title {
      display: inline-block;
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 30px;
    }

    .industry-title::before {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: -5px;
      color: transparent;
      z-index: -1;
      filter: blur(8px);
      opacity: 0.3;
    }

    /* Professional image effects */
    .industry-image {
      position: relative;
      border: 1px solid rgba(125, 54, 247, 0.2);
    }

    .industry-image::after {
      content: '';
      position: absolute;
      top: 10px;
      left: 10px;
      right: 0;
      bottom: 0;
      border: 1px solid rgba(125, 54, 247, 0.3);
      z-index: -1;
      border-radius: 18px;
      transition: all 0.3s ease;
    }

    .industry-image:hover::after {
      top: 15px;
      left: 15px;
      right: 0;
      bottom: 0;
    }

    /* Enhanced use case items */
    .use-case-item {
      background: rgba(125, 54, 247, 0.05);
      padding: 15px;
      border-radius: 12px;
      border-left: 3px solid rgba(125, 54, 247, 0.4);
      transition: all 0.3s ease;
    }

    .use-case-item:hover {
      background: rgba(125, 54, 247, 0.08);
      border-left-color: rgba(125, 54, 247, 1);
      transform: translateX(5px);
    }

    /* Button enhancements */
    .get-started-btn {
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .get-started-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(125, 54, 247, 0.8), rgba(180, 140, 255, 0.8));
      z-index: -1;
      transition: opacity 0.3s ease;
    }

    .get-started-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(180, 140, 255, 0.8), rgba(125, 54, 247, 0.8));
      z-index: -2;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .get-started-btn:hover::before {
      opacity: 0;
    }

    .get-started-btn:hover::after {
      opacity: 1;
    }

    /* Enhanced CTA refinements */
    .cta-content-wrapper {
      background: rgba(18, 12, 38, 0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .cta-content-wrapper::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(45deg, #7d36f7, transparent, #7d36f7, transparent);
      border-radius: 22px;
      z-index: -1;
      opacity: 0.8;
      animation: border-glow 8s linear infinite;
    }

    @keyframes border-glow {
      0% {
        opacity: 0.3;
      }

      50% {
        opacity: 0.7;
      }

      100% {
        opacity: 0.3;
      }
    }

    /* Floating elements */
    .floating-shape {
      position: absolute;
      opacity: 0.15;
      z-index: 0;
    }

    .shape-1 {
      top: 15%;
      right: 10%;
      width: 300px;
      height: 300px;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      background: linear-gradient(45deg, #7d36f7, #b48cff);
      filter: blur(60px);
    }

    .shape-2 {
      bottom: 15%;
      left: 10%;
      width: 250px;
      height: 250px;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      background: linear-gradient(45deg, #7d36f7, #b48cff);
      filter: blur(60px);
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.2);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(to bottom, #7d36f7, #b48cff);
      border-radius: 5px;
    }

    /* Media queries adjustments */
    @media screen and (max-width: 767px) {
      .section-indicator {
        display: none;
      }

      .floating-shape {
        opacity: 0.1;
      }
    }