/* ===== Reusable animated blocks (mirror of product pages) ===== */

        .content {
            opacity: 0;
            transform: translateX(-100%);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .content.show {
            opacity: 1;
            transform: translateX(0);
        }

        .ProximaFeature {
            opacity: 0;
            transform: translateX(-100%);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .ProximaFeature.show {
            opacity: 1;
            transform: translateX(0);
        }

        .Intergration-Proxima {
            opacity: 0;
            transform: translateX(100%);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .Intergration-Proxima.show {
            opacity: 1;
            transform: translateX(0);
        }

        .ProximaHero-Left {
            opacity: 0;
            transform: translateX(-100%);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .ProximaHero-Left.show {
            opacity: 1;
            transform: translateX(0);
        }

        .ProximaHero-Form {
            opacity: 0;
            transform: translateX(100%);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .ProximaHero-Form.show {
            opacity: 1;
            transform: translateX(0);
        }


        /* ===== Gradient heading (matches AI Calling page) ===== */

        .AIheading {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(90deg, #007bc2, #0095e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            margin-bottom: 10px;
            line-height: 1.5em;
        }

        .submit {
            background: linear-gradient(90deg, #0d6efd, #03A9F4);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 3px;
            font-size: 16px;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .submit:hover {
            background: linear-gradient(90deg, #0056b3, #0d6efd);
            transform: translateY(-3px);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
        }


        /* ===== Hero ===== */

        .proxima-hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            background: linear-gradient(135deg, #e6f0fa, #f0f8ff);
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            margin: 30px auto 40px;
            max-width: 1250px;
            flex-wrap: wrap;
        }

        .proxima-hero .hero-content {
            flex: 1 1 55%;
            text-align: left;
        }

        .proxima-hero .hero-content h1 {
            font-size: 2.7rem;
            font-weight: 800;
            background: linear-gradient(90deg, #007bc2, #03A9F4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
            line-height: 1.2em;
        }

        .proxima-hero .hero-content .hero-sub {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #1a1a1a;
            margin-bottom: 28px;
            font-weight: 500;
        }

        .proxima-hero .intro-btn {
            display: inline-block;
            background: linear-gradient(90deg, #007bc2, #03A9F4);
            color: white;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 18px rgba(0, 123, 194, 0.35);
        }

        .proxima-hero .intro-btn:hover {
            background: linear-gradient(90deg, #03A9F4, #007bc2);
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(0, 123, 194, 0.45);
            color: #fff;
        }

        .proxima-hero .hero-art {
            flex: 1 1 38%;
            display: flex;
            justify-content: center;
        }

        .hero-art-card {
            position: relative;
            width: 320px;
            max-width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 24px;
            background: radial-gradient(circle at 30% 30%, #cfe9fb, #eaf4fb 60%, #f7fbff);
            box-shadow: 0 18px 40px rgba(0, 123, 194, 0.22);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-art-card .ring {
            position: absolute;
            border-radius: 50%;
            border: 2px dashed rgba(0, 123, 194, 0.25);
            animation: spin 18s linear infinite;
        }

        .hero-art-card .ring.r1 {
            width: 92%;
            height: 92%;
        }

        .hero-art-card .ring.r2 {
            width: 70%;
            height: 70%;
            animation-direction: reverse;
            animation-duration: 12s;
        }

        .hero-art-card .core {
            position: relative;
            z-index: 2;
            width: 58%;
            height: 58%;
            border-radius: 50%;
            background: linear-gradient(145deg, #007bc2, #03A9F4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 4.2rem;
            box-shadow: 0 12px 30px rgba(0, 123, 194, 0.45);
        }

        .hero-art-card .pulse {
            position: absolute;
            top: 14%;
            left: 8%;
            z-index: 3;
            background: #fff;
            border-radius: 30px;
            padding: 8px 14px;
            font-size: 13px;
            font-weight: 600;
            color: #007bc2;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: 7px;
            animation: floaty 4s ease-in-out infinite;
        }

        .hero-art-card .pulse.alt {
            top: auto;
            left: auto;
            bottom: 12%;
            right: 6%;
            animation-delay: 1.2s;
        }

        .hero-art-card .pulse i {
            color: #20c997;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes floaty {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }


        /* ===== Lead form container ===== */

        .form-container {
            width: 32vw;
            padding: 3%;
            font-size: 13px;
            border: 2px solid white;
            background-color: white;
            border-radius: 1rem;
        }

        .proxima-hero input,
        .form-container input {
            width: 100%;
            padding: 7px;
            margin: 5px 0 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        #submit {
            background-color: #036ed7d4;
            color: white;
            border: none;
        }

        /* Privacy Policy Agreement */

        .proxima-hero .label,
        .form-container .label {
            font-size: 11px;
            width: 95vw;
            margin-left: -5%;
        }

        .proxima-hero .privacy-policy,
        .form-container .privacy-policy {
            font-size: 9px;
        }

        .proxima-hero .privacy-container,
        .form-container .privacy-container {
            display: flex;
            align-items: center;
            margin-left: -4%;
            max-width: 600px;
            width: 100%;
        }

        .proxima-hero .checkbox,
        .form-container .checkbox {
            margin-right: 10px;
            transform: scale(1.2);
        }


        /* ===== Section wrappers ===== */

        .proxima-section {
            border: 1px solid rgb(192, 190, 190);
            border-radius: 1rem;
            padding: 3%;
            margin-top: 40px;
        }

        .proxima-text-block {
            max-width: 1150px;
            margin: 0 auto 10px;
            background: #f0f8ff;
            padding: 30px 40px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        .proxima-text-block p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #222;
            margin: 0;
            font-weight: 500;
        }

        .proxima-text-block h2 {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(90deg, #007bc2, #03A9F4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 18px;
        }


        /* ===== Capability cards (mirror of .feature-card) ===== */

        .proxima-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 40px 0 10px;
            justify-items: center;
        }

        .feature-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-width: 320px;
            text-align: center;
            padding: 40px 25px;
            transition: all 0.3s ease;
            border-top: 5px solid #007bc2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            border-top: 5px solid #03A9F4;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e6f0fa, #ffffff);
            color: #007bc2;
            font-size: 1.9rem;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #222;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        @media (min-width: 768px) {
            .feature-card {
                height: 320px;
            }
        }


        /* ===== How it works steps (mirror of .step-card) ===== */

        .integration-steps {
            background: #f8fafc;
            padding: 60px 40px;
            border-radius: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin-top: 40px;
        }

        .integration-steps h2 {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(90deg, #007bc2, #00c6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 50px;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            align-items: start;
        }

        .step-card {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            padding: 25px;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            position: absolute;
            top: -22px;
            left: 20px;
            width: 45px;
            height: 45px;
            background: #fff;
            border-radius: 50%;
            border: 2px solid transparent;
            background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #007bc2, #00c6ff);
            background-origin: border-box;
            background-clip: content-box, border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #007bc2;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .step-card:hover .step-number {
            box-shadow: 0 0 12px rgba(0, 123, 194, 0.5);
            transform: scale(1.1);
        }

        .step-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #007bc2;
            margin-bottom: 10px;
            padding-top: 20px;
        }

        .step-card p {
            font-size: 0.95rem;
            color: #333;
            line-height: 1.6;
            text-align: justify;
        }


        /* ===== Benefits cards ===== */

        .benefit-card {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
            padding: 28px 24px;
            text-align: left;
            border-left: 5px solid #007bc2;
            transition: all 0.3s ease;
            height: 100%;
        }

        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
            border-left: 5px solid #03A9F4;
        }

        .benefit-card .b-icon {
            font-size: 2rem;
            color: #007bc2;
            margin-bottom: 12px;
        }

        .benefit-card h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 8px;
        }

        .benefit-card p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            margin: 0;
        }


        /* ===== Standout features (table -> cards grid) ===== */

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 20px;
        }

        .feature-pill {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
            padding: 22px 20px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            transition: all 0.3s ease;
            border: 1px solid #eef2f6;
        }

        .feature-pill:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: #cfe9fb;
        }

        .feature-pill i {
            font-size: 1.7rem;
            color: #007bc2;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-pill h5 {
            font-size: 1rem;
            font-weight: 700;
            color: #222;
            margin: 0 0 4px;
        }

        .feature-pill p {
            font-size: 0.85rem;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }


        /* ===== Who is it for - industry tags ===== */

        .industry-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-top: 26px;
        }

        .industry-tag {
            background: #fff;
            border: 1px solid #cfe9fb;
            border-radius: 50px;
            padding: 12px 24px;
            font-weight: 600;
            color: #007bc2;
            font-size: 0.95rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .industry-tag:hover {
            background: linear-gradient(90deg, #007bc2, #03A9F4);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 123, 194, 0.35);
            border-color: transparent;
        }


        /* ===== Why VAC Proxima pillars ===== */

        .pillar {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
            padding: 30px 26px;
            height: 100%;
            transition: all 0.3s ease;
            border-top: 4px solid #007bc2;
        }

        .pillar:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
            border-top: 4px solid #03A9F4;
        }

        .pillar .p-icon {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            background: linear-gradient(135deg, #007bc2, #03A9F4);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 16px;
        }

        .pillar h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 10px;
        }

        .pillar p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            margin: 0;
        }


        /* ===== Tech highlights chips ===== */

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 18px;
            margin-top: 26px;
        }

        .tech-chip {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            border: 1px solid #eef2f6;
            transition: all 0.3s ease;
        }

        .tech-chip:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
            border-color: #cfe9fb;
        }

        .tech-chip i {
            font-size: 1.6rem;
            color: #03A9F4;
        }

        .tech-chip .t-val {
            font-size: 1.05rem;
            font-weight: 700;
            color: #222;
            line-height: 1.2;
        }

        .tech-chip .t-label {
            font-size: 0.82rem;
            color: #666;
        }


        /* ===== Glimmer button ===== */

        .glimmer-button {
            position: relative;
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            background-color: #007bff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            overflow: hidden;
            transition: background-color 0.3s ease;
        }

        .glimmer-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .glimmer-button:hover::before {
            left: 100%;
        }

        .glimmer-button::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
            animation: glimmer 1.5s infinite;
        }

        @keyframes glimmer {
            0% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }


        /* ===== Footer CTA tab ===== */

        .footer-tab {
            background-color: #18abf1;
            padding: 3%;
            border-radius: 1rem;
            color: white;
            text-align: center;
        }


        /* ===== Modal form ===== */

        #demoModal .modal-content {
            position: relative !important;
            width: auto !important;
            height: auto !important;
            transform: none !important;
            margin: 0 !important;
            padding: 0 !important;
            border: none !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
            background-color: #fff;
        }

        #demoModal .modal-dialog {
            max-width: 500px;
            margin: 1.75rem auto;
        }

        #demoModal .modal-body label {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
            display: block;
        }

        #demoModal .modal-body input[type="text"],
        #demoModal .modal-body input[type="email"],
        #demoModal .modal-body input[type="number"] {
            width: 100% !important;
            padding: 9px 12px !important;
            margin: 4px 0 12px !important;
            border: 1px solid #ccc !important;
            border-radius: 6px !important;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        #demoModal .modal-body input:focus {
            outline: none;
            border-color: #007bc2 !important;
            box-shadow: 0 0 0 3px rgba(0, 123, 194, 0.15);
        }

        #demoModal .privacy-container {
            display: flex !important;
            align-items: flex-start;
            gap: 8px;
            margin: 0 !important;
            margin-left: 0 !important;
            max-width: none;
            width: 100% !important;
        }

        #demoModal .privacy-container .checkbox {
            margin: 3px 0 0 0 !important;
            transform: scale(1.1);
            flex-shrink: 0;
            width: auto !important;
        }

        #demoModal .privacy-container .label {
            font-size: 11px;
            width: auto !important;
            margin-left: 0 !important;
            line-height: 1.5;
        }

        #demoModal .submit {
            background: linear-gradient(90deg, #0d6efd, #03A9F4);
            color: white;
            border: none !important;
            padding: 12px 30px !important;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            width: 100% !important;
        }

        #demoModal .submit:hover {
            background: linear-gradient(90deg, #0056b3, #0d6efd);
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
        }


        /* ===== Other products image grid ===== */

        .image-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .image-container #product-img {
            width: 90%;
            max-width: 220px;
            height: auto;
            flex: 1 1 22%;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            transition: transform 0.3s ease-in-out;
            animation: slide-in 0.5s ease-in-out;
        }

        .image-container #product-img:hover {
            transform: scale(1.2);
        }

        .image-container #Integration-img {
            width: 4vw !important;
            height: 40px !important;
            margin-top: 7% !important;
        }

        @keyframes slide-in {
            0% { opacity: 0; transform: translateX(-100%); }
            100% { opacity: 1; transform: translateX(0); }
        }

        .image-container img:nth-child(even) {
            animation: slide-in-right 0.5s ease-in-out;
        }

        @keyframes slide-in-right {
            0% { opacity: 0; transform: translateX(100%); }
            100% { opacity: 1; transform: translateX(0); }
        }


        /* ===== Responsive ===== */

        @media only screen and (max-width: 450px) {

            .form-container,
            .proxima-hero {
                padding: 24px;
            }

            .form-container {
                width: 90vw !important;
                margin-left: 0% !important;
            }

            .proxima-hero .hero-content h1 {
                font-size: 2rem;
            }

            .proxima-hero .hero-art {
                margin-top: 20px;
            }

            .label {
                font-size: 10px;
                width: 75vw;
                margin-left: -24%;
            }

            .privacy-policy {
                font-size: 9px;
                margin-left: 0%;
            }

            .image-container #Integration-img {
                display: none;
            }

            .image-container #product-img {
                margin: 10px;
                margin-bottom: 25px;
            }

            .footer-tab {
                padding: 6%;
            }
        }

        @media (min-width: 451px) and (max-width: 800px) {
            .form-container {
                width: 70vw !important;
                margin-left: 0% !important;
            }
        }

        @media (max-width: 600px) {
            .privacy-container {
                display: flex;
                margin: 0px;
                max-width: 600px;
                width: 100%;
            }

            .checkbox {
                margin-bottom: 0px;
                margin-right: 0px;
                transform: scale(1.0);
                margin-left: -22%;
            }
        }