
        :root {
            --card-bg: #1a1a1a;
            --accent: #3DE2F4;
            --accent-hover: #3DE2F4;
            --gradient: linear-gradient(135deg, #3DE2F4 0%, #02a9bb 100%);
        }
        .ai-bg-image {
            background: url(../images/nectaai-banner.png);
            background-size: cover;
        }

        .ai-bg-image::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, 1));

        }

        .ai-services .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .ai-services .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--accent);
        }

        .ai-services .service-card:hover::before {
            transform: translateX(0);
        }

        .ai-services .service-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .ai-services .service-card:hover .service-icon {
            transform: scale(1.1);
            color: var(--text-primary);
        }

        .cta__wrapper {
            background: #28283d;
            border-radius: 2rem;
        }
.video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .bg-video .container {
            position: relative;
            z-index: 2;
        }

        .bg-video::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }
        /* ai logo */
        .ai-tool {
            background: #0b0b0b !important;
        }

        .ai-tool .feature-box {
            border-radius: 19px;
            border: 1.54px solid #1c1b1c;
            background: 0 0;
            padding: 24px;
            width: 230px;
            height: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: unset;
        }

        .ai-tool .feature-box figure {
            display: flex;
            height: 100px;
            align-items: center;
            justify-content: center;
        }

        .ai-tool .feature-box img {
            max-width: 100%;
            object-fit: contain;
            /* filter: brightness(0) invert(1); */
            transition: filter 0.3s ease, transform 0.3s ease;
        }

        .ai-tool .feature-box:hover img {
            /* filter: brightness(1) invert(0) sepia(1) hue-rotate(40deg) saturate(4); */
            transform: scale(1.1);
        }

        .ai-tool .feature-box span {

            color: var(--white);
        }

        .ai-tool .swiper {
            overflow: hidden;
        }

        .industries-main .industry-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: auto;
            cursor: pointer;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .industries-main .swiper-horizontal>.swiper-pagination-bullets {
            display: none;
        }

        .industries-main .industry-card:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .industries-main .industry-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .industries-main .industry-card:hover img {
            transform: scale(1.05);
        }

        .industries-main .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
            padding: 30px 24px;
            display: flex;
            align-items: flex-end;
        }

        .industries-main .card-title {
            color: var(--white);
            font-size: 1.35rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
        }

        /* Grid */
        .industries-main .grid-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: center;
            gap: 24px;
        }

        .industries-main .grid-item-large {
            grid-row: span 2;
            height: 575px;
        }

        .bg-blueies {
            /* background: #010a24; */
            background: linear-gradient(245deg, #000 25.35%, #15152d 81.62%);
        }

        .philosophy-flow {
            position: relative;
        }

        .pillar-item {
            display: flex;
            align-items: center;
            margin-bottom: 4rem;
            position: relative;
            opacity: 0;
            animation: slideIn 1s ease-out forwards;
        }

        .pillar-item:nth-child(1) {
            animation-delay: 0.3s;
        }

        .pillar-item:nth-child(2) {
            animation-delay: 0.6s;
            flex-direction: row-reverse;
        }

        .pillar-item:nth-child(3) {
            animation-delay: 0.9s;
        }

        .pillar-number-section {
            flex: 0 0 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .number-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(61, 226, 244, 0.15), rgba(61, 226, 244, 0.05));
            backdrop-filter: blur(20px);
            border: 2px solid #3DE2F4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            font-weight: 900;
            color: #3DE2F4;
            position: relative;
            transition: all 0.5s ease;
            box-shadow: 0 0 40px rgba(61, 226, 244, 0.2);
        }

        .pillar-item:hover .number-circle {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 80px rgba(61, 226, 244, 0.6);
            border-color: #2dd4e6;
        }

        .number-circle::before {
            content: '';
            position: absolute;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 1px solid rgba(61, 226, 244, 0.3);
            animation: pulse 3s infinite;
        }

        .number-circle::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(61, 226, 244, 0.3), transparent 70%);
            animation: ripple 4s infinite;
        }

        .pillar-content {
            flex: 1;
            padding: 0 80px;
        }

        .pillar-item:nth-child(2) .pillar-content {
            text-align: right;
        }

        .pillar-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #fff;
            line-height: 1.2;
            text-shadow: 0 0 30px rgba(61, 226, 244, 0.3);
        }

        .pillar-description {
            font-size: 1.15rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            position: relative;
            padding-left: 30px;
            border-left: 3px solid #3DE2F4;
        }

        .pillar-item:nth-child(2) .pillar-description {
            margin-left: auto;
            padding-left: 0;
            padding-right: 30px;
            border-left: none;
            border-right: 3px solid #3DE2F4;
        }

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

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

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }

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

        @keyframes pulse {

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

            50% {
                transform: scale(1.1);
                opacity: 0.2;
            }
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        @keyframes glow {

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

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

        @keyframes shimmer {

            0%,
            100% {
                opacity: 0.2;
                transform: translateX(-50px);
            }

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

        @media (max-width: 1024px) {

            .philosophy-main .pillar-item,
            .philosophy-main .pillar-item:nth-child(2) {
                flex-direction: column;
                text-align: center;
                margin-bottom: 3rem;
            }

            .pillar-number-section {
                flex: auto;
            }

            .philosophy-main .pillar-content,
            .philosophy-main .pillar-item:nth-child(2) .pillar-content {
                padding: 40px 20px;
                text-align: center;
            }

            .philosophy-main .pillar-description,
            .philosophy-main .pillar-item:nth-child(2) .pillar-description {
                margin: 0 auto;
                border-left: none;
                border-right: none;
                border-top: 3px solid #3DE2F4;
                padding: 20px 0 0 0;
            }

            .philosophy-main .pillar-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .philosophy-main .number-circle {
                width: 150px;
                height: 150px;
                font-size: 3rem;
            }

            .philosophy-main .number-circle::before {
                width: 170px;
                height: 170px;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .industries-main .grid-layout {
                grid-template-columns: repeat(2, 1fr);
            }

            .industries-main .grid-item-large {
                grid-row: span 1;
                height: 280px;
            }
        }

        @media (max-width: 768px) {

            .industries-main .grid-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .industries-main .industry-card,
            .industries-main .grid-item-large {
                height: 240px;
            }

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

            .ai-tool .feature-box {
                width: 185px;
                height: 175px;
            }
        }

        @media (max-width: 576px) {
            .industries-main .grid-layout {
                grid-template-columns: 1fr;
            }

            .industries-main .card-overlay {
                padding: 20px 18px;
            }
        }
        