  /* Video Banner Container */
        .cardiocare-video-banner {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Video Element */
        .cardiocare-video-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Arc Bottom Shape */
        .cardiocare-video-arc::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 80px;
            background:#0194ce;
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
            z-index: 3;
        }

        /* Video Overlay */
        .cardiocare-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(45deg, rgba(255, 77, 0, 0.4), rgba(213, 210, 226, 0.4)); */
            z-index: 2;
        }

        /* Content Over Video */
        .cardiocare-video-content {
            position: relative;
            z-index: 4;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1.5s ease-out;
        }

        .cardiocare-video-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .cardiocare-video-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .cardiocare-video-cta {
            background: linear-gradient(45deg, #007bff, #28a745);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }

        .cardiocare-video-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
        }

        /* Video Controls */
        .cardiocare-video-controls {
            position: absolute;
            bottom: 100px;
            right: 30px;
            z-index: 5;
            display: flex;
            gap: 10px;
        }

        .cardiocare-video-control-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .cardiocare-video-control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        /* Content Section */
        .cardiocare-video-section {
            padding: 20px 20px;
            /* max-width: 1200px; */
            margin: 0 auto;
            text-align: center;
            background: #0194ce;
            
            
        }

        .cardiocare-video-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #fffbfb;
        }

        .cardiocare-video-section p {
            font-size: 1.1rem;
            color: #ffffff;
            max-width: 600px;
            margin: 0 auto;
            padding-bottom: 40px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cardiocare-video-banner {
                height: 70vh;
            }

            .cardiocare-video-title {
                font-size: 2.5rem;
            }

            .cardiocare-video-subtitle {
                font-size: 1.1rem;
            }

            .cardiocare-video-cta {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .cardiocare-video-controls {
                bottom: 80px;
                right: 20px;
            }

            .cardiocare-video-control-btn {
                width: 45px;
                height: 45px;
            }

            .cardiocare-video-arc::after {
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .cardiocare-video-banner {
                height: 60vh;
            }

            .cardiocare-video-title {
                font-size: 2rem;
            }

            .cardiocare-video-subtitle {
                font-size: 1rem;
            }

            .cardiocare-video-content {
                padding: 0 15px;
            }

            .cardiocare-video-arc::after {
                height: 40px;
            }
        }

        /* Landscape mobile orientation */
        @media (max-height: 500px) and (orientation: landscape) {
            .cardiocare-video-banner {
                height: 100vh;
            }

            .cardiocare-video-title {
                font-size: 2rem;
            }

            .cardiocare-video-subtitle {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }
        }