        .section3 {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            margin-top: 15%;
        }

        .section3-cont {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .section3-cont video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section3-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 10, 27, 0.7);
            z-index: 1;
        }

        .glass-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            max-width: 90%;
            padding: 40px;
            z-index: 2;

            /* Glass effect optimized for dark purple background */
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.05),
                    rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(15px) saturate(1.2);
            -webkit-backdrop-filter: blur(15px) saturate(1.2);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            border-left: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            box-shadow:
                0 8px 32px rgba(14, 10, 27, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .glass-text {
            text-align: center;
            color: white;
            font-family: 'Arial', sans-serif;
        }

        .glass-text h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 16px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .glass-text p {
            font-size: 1.1rem;
            line-height: 2;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .section3-btn {
            width: 20%;
            margin-left: 40%;
            margin-top: 3%;
            padding: 20px;
            border-radius: 5px;
            background: linear-gradient(45deg, #1e90ff, #8a2be2);
            transition: 0.4s ease;
        }

        .section3-btn:hover {
            background: linear-gradient(-45deg, #1e90ff, #8a2be2);
            box-shadow: 0 10px 32px rgba(0, 131, 255, 0.5);
        }

        .section3-btn a {
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 18px;
            text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .section3 {
                height: auto;
                padding: 40px 0;
            }

            .section3-cont video {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
            }

            .section3-cont {
                min-height: 500px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .glass-container {
                width: 85%;
                padding: 25px;
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                margin: 0 auto;
            }

            .glass-text h2 {
                font-size: 1.5rem;
            }

            .glass-text p {
                font-size: 0.85rem;
                line-height: 1.7;
            }

            .section3-btn {
                width: 60%;
                margin-left: 20%;
                padding: 15px;
            }

            .section3-btn a {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .glass-container {
                width: 90%;
                padding: 20px;
            }

            .glass-text h2 {
                font-size: 1.3rem;
            }

            .glass-text p {
                font-size: 0.8rem;
            }

            .section3-btn {
                width: 70%;
                margin-left: 15%;
            }
        }