    :root {
        --bg-dark: #1a1a1a;
        --primary-purple: #635bff;
        --text-white: #ffffff;
        --text-gray: #a0a0a0;
        --bg-color: #05010d;
        --text-muted: #a1a1aa;
        --accent-purple: #6C50FB;
        --card-bg: rgba(30, 27, 46, 0.8);
        --bg-color: #05010d;
        --accent-blue: #0047ff;
        --bg-card: #0a0812;
        --primary-purple: #635bff;
        --text-main: #ffffff;
        --text-muted: #a1a1aa;
        --border-color: #1f1f23;
    }


    .empower2-section {
        position: relative;
        height: 100vh;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: hidden;
        padding: 0 20px;
        color: var(--text-white);
        /* ✅ Background Image */
        background-image: url("../Images/product/News-letters-section.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    /* .bg-circle {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 40px solid var(--primary-purple);
    border-radius: 50%;
    opacity: 0.8;
} */
    .empower-title {
        font-weight: 400;
        font-size: 39px;
        line-height: 59px;
        letter-spacing: -2px;
        text-align: center;
    }

    .map-title {
        font-weight: 600;
        font-size: 45px;
        line-height: 59px;
        letter-spacing: -2px;
        text-align: center;
    }

    .highlight-map {
        color: #6C50FB;
        font-weight: 600;
        font-size: 45px;
        line-height: 59px;
    }

    .cursor {
        margin-left: 4px;
        animation: blink 1s infinite;
    }

    @keyframes blink {

        0%,
        50%,
        100% {
            opacity: 1;
        }

        25%,
        75% {
            opacity: 0;
        }
    }

    .feature-title {
        font-weight: 400;
        font-size: 39px;
        line-height: 59px;
        letter-spacing: -2px;
    }

    .highlight {
        font-weight: 400;
        font-style: Regular;
        font-size: 39px;
        line-height: 59px;
        letter-spacing: -2px;
        text-align: center;
        color: #6C50FB;
    }

    .sub-text {
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0px;
        text-align: center;
        color: #FEFEFE;

    }

    .empower-req-button {
        background-color: var(--primary-purple);
        color: white;
        border: none;
        padding: 16px 40px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .container-empower {
        max-width: 820px;
        margin-top: -30px;
        z-index: 1;
    }

    .cta-button:hover {
        transform: scale(1.05);
    }

    .circle-content {
        position: absolute;
        bottom: 40px;
        left: 40px;
        display: flex;
        align-items: center;
    }

    .avatar-group {
        display: flex;
        align-items: center;
        margin-right: 15px;
    }

    .avatar {
        width: 35px;
        height: 35px;
        background: #fff;
        border-radius: 50%;
        border: 2px solid var(--bg-dark);
        margin-left: -10px;
    }

    .avatar:first-child {
        margin-left: 0;
    }

    .avatar.plus {
        background: var(--primary-purple);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: bold;
    }

    .client-text {
        font-size: 0.85rem;
        color: var(--text-white);
    }

    .contact-badge {
        position: absolute;
        bottom: 40px;
        right: 40px;
        width: 120px;
        height: 120px;
        background: #5F65F4;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .badge-text {
        font-size: 9px;
        fill: var(--bg-dark);
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .arrow {
        position: absolute;
        font-size: 24px;
        color: var(--bg-dark);
    }

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

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

    .contact-badge svg {
        animation: rotate 10s linear infinite;
    }

    @media (max-width: 768px) {
        .main-title {
            font-size: 1.8rem;
        }

        .bg-circle {
            width: 200px;
            height: 200px;
            top: -50px;
            left: -50px;
        }

        .footer-content {
            position: relative;
            left: 0;
            bottom: 0;
            margin-top: 50px;
        }

        .contact-badge {
            position: relative;
            right: 0;
            bottom: 0;
            margin-top: 30px;
        }
    }

    /* features */


    .intro-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .intro-text {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0px;
        max-width: 975px;
        margin: 0 auto 40px;
        color: var(--text-white);
    }

    .brand-logos {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .logo-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .feature-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 60px;
        margin-top: 40px;
    }

    .image-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .laptop-boy-image {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 450px;
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    }

    .floating-card {
        position: absolute;
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        padding: 15px 25px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 15px;
        z-index: 3;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .card-icon i {
        font-size: 18px;
        color: #000;
    }

    .storage-card {
        left: -20px;
        top: 30%;
    }

    .empower-insurance-card {
        right: 53px;
        bottom: 20%;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bg-color);
        font-size: 1.2rem;
    }

    .circle-white {
        background: #fff;
    }



    .description {
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.3px;
        color: #FEFEFE;

    }

    .features-list {
        list-style: none;
        padding: 0;
    }

    .features-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;

        color: #9694E7;
    }

    .features-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #fff;
        font-weight: bold;
    }

    @media (max-width: 968px) {
        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .image-container {
            margin-bottom: 60px;
        }

        .description {
            margin: 0 auto 30px;
        }

        .features-list {
            display: inline-block;
            text-align: left;
        }

        .text-content h1 {
            font-size: 2.5rem;
        }
    }


    @media (max-width: 480px) {
        .laptop-boy-image {
            display: none;
        }


        .pill-bar {
            display: none !important;
        }

        .feature-title {
            text-align: center !important;
        }

        .map-container {
            display: none;
        }

        .global-section {
            height: 0vh !important;
        }

        .circle-content {
            display: none !important;

        }

        .cards-container-solution {
            gap: 77px;
        }

        .description {
            text-align: center !important;
        }

        .card-content {
            width: 0%
        }


        .feature-content {
            display: block
        }


        .purple-circle {
            display: none
        }

        .floating-card {
            display: none;
        }
    }

    /* global */

    .global-section {
        display: flex;
        flex-direction: column;
        height: 90vh;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .map-container {
        position: relative;
        padding: 270px;
        margin-bottom: 100px;
        overflow: hidden;
    }

    /* Background image with opacity */
    .map-container::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("../Images/product/Group 1597883143.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.60;
        /* 🔽 control image opacity here */
        z-index: 1;
    }

    /* Content above image */
    .map-container>* {
        position: relative;
        z-index: 2;
    }


    /* Background opacity layer */


    /* Keep content above overlay */
    .map-container>* {
        position: relative;
        z-index: 2;
    }


    /* Simulated dotted map background */




    .pill-bar {
        background-color: #000;
        padding: 24px 0;
        width: 100%;
        overflow: hidden;
    }

    .pill-slider {
        max-width: 100%;
        overflow: hidden;
    }

    .pill-container {
        display: flex;
        gap: 16px;
        width: max-content;
    }

    /* Continuous marquee animation */
    .marquee {
        animation: scroll-left 25s linear infinite;
    }

    /* Pause on hover (optional) */
    .marquee:hover {
        animation-play-state: paused;
    }

    @keyframes scroll-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .pill {
        flex: 0 0 auto;
        background-color: var(--accent-purple);
        color: var(--text-white);
        padding: 14px 20px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .pill:hover {
        transform: translateY(-2px);
        filter: brightness(1.1);
    }

    /* Mobile */
    @media (max-width: 768px) {
        .pill {
            font-size: 13px;
            padding: 12px 18px;
        }
    }




    .cards-container-solution {
        display: flex;
        justify-content: center;
        gap: 70px;
        /* ⬅ increase gap */
        perspective: 1500px;
        margin-bottom: 100px;
        flex-wrap: wrap;
        padding: 40px 20px;
    }

    .card-wrapper {
        position: relative;
        width: 320px;
        height: 450px;
        transform-style: preserve-3d;
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        cursor: pointer;
    }

    .card-wrapper:hover {
        transform: translateY(-20px) rotateX(5deg) rotateY(5deg) scale(1.05);
    }

    /* Different hover rotations for each card */
    .card-wrapper:nth-child(1):hover {
        transform: translateY(-20px) rotateX(-5deg) rotateY(-8deg) scale(1.05);
    }

    .card-wrapper:nth-child(2):hover {
        transform: translateY(-25px) rotateX(3deg) rotateY(0deg) scale(1.08);
    }

    .card-wrapper:nth-child(3):hover {
        transform: translateY(-20px) rotateX(-5deg) rotateY(8deg) scale(1.05);
    }

    .card-shadow {
        position: absolute;
        top: 15px;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        transform: translateZ(-50px);
    }

    .purple-shadow {
        background: linear-gradient(135deg, #8a7cff 0%, #6C50FB 100%);
    }

    .blue-shadow {
        background: linear-gradient(135deg, #0066ff 0%, #0047ff 100%);
    }

    .card-wrapper:hover .card-shadow {
        transform: translateZ(-80px) scale(1.1);
        opacity: 0.8;
        box-shadow: 0 30px 60px rgba(108, 80, 251, 0.4);
    }

    .card-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(30, 27, 46, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px 30px;
        box-sizing: border-box;
        text-align: left;
        color: #fff;
        z-index: 2;
        transform-style: preserve-3d;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
    }

    /* 
        .card-wrapper:hover .card-content {
            background: rgba(30, 27, 46, 1);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 0 30px rgba(108, 80, 251, 0.1);
        } */

    .card-content h3 {
        font-size: 1.6rem;
        margin-bottom: 30px;
        line-height: 1.3;
        transform: translateZ(50px);
        transition: transform 0.4s ease;
        background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .card-wrapper:hover .card-content h3 {
        transform: translateZ(70px) scale(1.05);
    }

    .card-content ul {
        list-style: none;
        padding: 0;
        transform: translateZ(30px);
        transition: transform 0.4s ease;
    }

    .card-wrapper:hover .card-content ul {
        transform: translateZ(50px);
    }

    .card-content li {
        font-size: 0.95rem;
        margin-bottom: 14px;
        position: relative;
        padding-left: 20px;
        opacity: 0.9;
        transition: all 0.3s ease;
        line-height: 1.5;
    }

    .card-wrapper:hover .card-content li {
        opacity: 1;
        padding-left: 25px;
    }

    .card-content li::before {
        content: "→";
        position: absolute;
        left: 0;
        color: #6C50FB;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .card-wrapper:hover .card-content li::before {
        transform: translateX(3px);
    }

    /* Floating animation on load */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0px) rotateX(0deg);
        }

        50% {
            transform: translateY(-10px) rotateX(2deg);
        }
    }

    .card-wrapper {
        animation: float 6s ease-in-out infinite;
    }

    .card-wrapper:nth-child(1) {
        animation-delay: 0s;
    }

    .card-wrapper:nth-child(2) {
        animation-delay: 0.5s;
    }

    .card-wrapper:nth-child(3) {
        animation-delay: 1s;
    }

    /* Glow effect on hover */
    .card-wrapper::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #6C50FB, #0047ff, #6C50FB);
        border-radius: 20px;
        opacity: 0;
        z-index: 0;
        transition: opacity 0.4s ease;
        filter: blur(20px);
    }

    .card-wrapper:hover::before {
        opacity: 0.6;
    }

    /* Shimmer effect */
    .card-content::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        /* width: 200%; */
        height: 200%;
        /* background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%
            ); */
        /* transform: translateX(-100%) translateY(-100%) rotate(45deg); */
        transition: transform 0.6s ease;
    }

    /* 
        .card-wrapper:hover .card-content::after {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        } */

    .cta-container-solution {
        margin-top: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .cta-button-solution {
        display: inline-block;
        background: linear-gradient(135deg, #6C50FB 0%, #8a7cff 100%);
        color: white;
        text-decoration: none;
        padding: 18px 45px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(108, 80, 251, 0.3);
    }

    .cta-button-solution:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(108, 80, 251, 0.5);
    }



    @media (max-width: 768px) {
        .card-wrapper {
            width: 100%;
            max-width: 350px;
        }

        .empower-title {
            font-size: 2rem;
        }

        .card-wrapper:hover {
            transform: translateY(-15px) scale(1.02);
        }
    }

    .offerings-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }


    .contact-section {
        margin-top: 2%;
        margin-bottom: 10%;
    }

    .accordion-item {
        background-color: transparent;
        border: none;
        border-bottom: 2px solid #333;
        margin-bottom: 0;
        transition: border-color 0.3s ease;

    }

    .accordion-item:hover {
        border-top-color: #6C50FB;
    }

    .accordion-item:last-child {
        border-bottom: 2px solid #333;
    }

    .accordion-item:last-child:hover {
        border-bottom-color: #6C50FB;
    }

    .accordion-item:hover {
        border-color: #6C50FB;
    }

    .accordion-button {
        background-color: transparent;
        color: #ffffff;
        border: none;
        padding: 30px 20px;
        font-size: 28px;
        font-weight: 400;
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .accordion-button:not(.collapsed) {
        background-color: transparent;
        color: #ffffff;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

    .accordion-button::after {
        display: none;
    }

    .item-number {
        font-size: 20px;
        color: #999;
        min-width: 40px;
    }

    .item-title {
        flex: 1;
    }

    .item-highlight {
        color: #7c6fff;
        font-weight: 600;
    }

    .arrow-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #6C50FB;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .arrow-btn:hover {
        transform: scale(1.1);
    }

    .arrow-btn svg {
        width: 24px;
        height: 24px;
        stroke: white;
        stroke-width: 2;
        fill: none;
    }

    /* Default arrow direction (collapsed): RIGHT */
    .arrow-btn svg {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
        transform: rotate(0deg);
    }

    /* When accordion is OPEN → arrow turns DOWN */
    .accordion-button:not(.collapsed) .arrow-btn svg {
        transform: rotate(90deg);
    }


    .accordion-body {
        background-color: transparent;
        padding: 30px 29px 40px;
        color: #b0b0b0;
        line-height: 1.8;
    }

    .nexus-description {
        margin-bottom: 30px;
    }

    .systems-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .system-card {
        /* background: #2a2a2a; */
        /* border-radius: 8px;
    padding: 16px 25px 14px; */
        text-align: center;
        /* position: relative; */
        /* overflow: hidden; */
    }

    .system-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(135deg, #333, #444);
        opacity: 0.5;
    }

    .system-img {
        width: 309px;
        height: 190px;
        /* object-fit: contain; */
        position: relative;
        z-index: 2;
        margin-bottom: 15px;
    }

    .system-title {
        z-index: 2;
        position: relative;
        color: white;
        font-size: 18px;
        font-weight: 500;
    }


    @media (max-width: 768px) {
        .header-title {
            font-size: 32px;
        }

        .accordion-button {
            font-size: 20px;
            padding: 20px 15px;
            gap: 15px;
        }

        .accordion-body {
            padding: 20px 15px 30px;
        }

        .arrow-btn {
            width: 40px;
            height: 40px;
        }

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

    .card-description {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    .testimonial-section {
        min-height: 100vh;
        display: flex;
        margin-top: 5%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 5%;
        padding: 60px 20px;
    }

    .testimonial-container {
        width: 100%;
        max-width: 1400px;
        position: relative;
    }

    .testimonial-slider {
        display: flex;
        transition: transform 0.5s ease;
    }

    .testimonial-slide {
        min-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 100px;
        padding: 0 50px;
    }

    .testimonial-card {
        display: flex;
        align-items: center;
        gap: 40px;
        max-width: 600px;
    }

    .client-image {
        width: 200px;
        height: 280px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .client-content h3 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .client-content p {
        font-size: 18px;
        line-height: 1.6;
        color: #ddd;
    }

    .slider-controls {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 60px;
    }

    .control-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #6C50FB;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .control-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }

    .control-btn:active {
        transform: scale(0.95);
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 100vh;
        align-items: center;
        gap: 3rem;
        padding: 2rem;
    }

    .left-section {
        padding: 2rem;
    }

    .get-in-touch {
        color: #888;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .main-title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 2rem;
        color: #ffffff;
    }

    .flag-icon {
        width: 60px;
        height: 40px;
        margin-bottom: 2rem;
    }

    .company-info {
        margin-top: 2rem;
    }

    .company-name {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .company-details {
        font-size: 0.95rem;
        line-height: 1.8;
        color: #aaa;
    }

    .counter-section {
        width: 100%;
        padding: 80px 20px;
        margin-bottom: 100px;
        background: #121212;
    }

    .counter-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .counter-item {
        text-align: center;
        flex: 1;
        min-width: 250px;
        padding: 40px 20px;
        font-family: 'Sansation';
        position: relative;
        animation: fadeInUp 0.8s ease-out;
    }

    .counter-item:nth-child(2)::before,
    .counter-item:nth-child(2)::after {
        content: '';
        position: absolute;
        width: 1px;
        height: 120px;
        background: rgba(255, 255, 255, 0.2);
        top: 50%;
        transform: translateY(-50%);
    }

    .counter-item:nth-child(2)::before {
        left: -30px;
    }

    .counter-item:nth-child(2)::after {
        right: -30px;
    }

    @media (max-width: 768px) {

        .counter-item:nth-child(2)::before,
        .counter-item:nth-child(2)::after {
            display: none;
        }

        .counter-container {
            gap: 30px;
        }
    }

    .counter-number {
        font-size: 72px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
        margin-bottom: 20px;
        letter-spacing: -2px;
        font-variant-numeric: tabular-nums;
    }

    .counter-label {
        font-size: 18px;
        color: #b0b0b0;
        font-weight: 400;
        letter-spacing: 0.5px;
        line-height: 1.6;
    }

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

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

    @keyframes countUp {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .counter-number.active {
        animation: countUp 2.5s ease-out;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .counter-number {
            font-size: 56px;
        }

        .counter-item {
            min-width: 200px;
            padding: 30px 15px;
        }

        .counter-container {
            gap: 40px;
        }
    }

    @media (max-width: 576px) {
        .counter-number {
            font-size: 48px;
        }

        .counter-label {
            font-size: 16px;
        }

        .counter-item {
            min-width: 150px;
            padding: 20px 10px;
        }

        .counter-container {
            gap: 20px;
        }
    }


    @media (max-width: 1200px) {
        .testimonial-slide {
            flex-direction: column;
            gap: 50px;
        }
    }

    @media (max-width: 768px) {
        .main-heading {
            font-size: 32px;
        }

        .testimonial-card {
            flex-direction: column;
            text-align: center;
        }

        .client-image {
            width: 150px;
            height: 210px;
        }

        .client-content h3 {
            font-size: 24px;
        }

        .client-content p {
            font-size: 16px;
        }
    }

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

        .main-heading {
            margin-bottom: 40px;
        }

        .cards-container {
            grid-template-columns: 1fr;
            gap: 25px;
            padding: 0;
        }

        .strength-card {
            padding: 30px 25px;
        }
    }


    .products-section {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }



    .product-list {
        text-align: left;
    }

    .product-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 0;
        border-bottom: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }

    .product-item:first-child {
        border-top: 1px solid var(--border-color);
    }

    .product-info h3 {
        font-size: 2rem;
        color: var(--primary-purple);
        margin: 0 0 10px 0;
        font-weight: 500;
    }

    .product-info p {
        color: var(--text-main);
        font-size: 1rem;
        margin: 0;
        opacity: 0.9;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #333;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    /* ONLY arrow hover */
    .icon-circle:hover,
    .icon-circle:focus-visible {
        background-color: var(--primary-purple);
        border-color: var(--primary-purple);
        color: #fff;
    }


    /* Overview Section */
    .overview-section {
        background-color: #121212;
        padding: 100px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* .overview-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
        opacity: 0.05;
        pointer-events: none;
    } */

    .quote-icon {
        position: absolute;
        right: 10%;
        top: 80px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .muted {
        color: #555;
    }

    .overview-content {
        max-width: 1000px;
        margin: 0 auto;
    }

    .overview-content p {
        font-size: 1.25rem;
        line-height: 1.8;
        color: var(--text-muted);
        margin-bottom: 25px;
        font-weight: 400;
    }

    @media (max-width: 768px) {

        .section-title,
        .overview-title {
            font-size: 2rem;
        }

        .product-info h3 {
            font-size: 1.5rem;
        }

        .quote-icon {
            position: relative;
            right: auto;
            top: auto;
            margin: 0 auto 20px;
        }
    }