        .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) {
            .glass-container {
                width: 350px;
                padding: 30px;
            }
            
            .glass-text h2 {
                font-size: 2rem;
            }
            
            .glass-text p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .glass-container {
                width: 300px;
                padding: 25px;
            }
            
            .glass-text h2 {
                font-size: 1.8rem;
            }
        }



