 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Prevent scrolling */
        html, body {
            overflow: hidden;
            height: 100%;
        }
        #bg-video { 
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}


        body {
            background: white;
            color: black;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh; /* Ensures content takes full screen */
            text-align: center;
            width: 100%;
        }
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1; /* Behind everything else */
        }
        .hero-section {
            width: 100%;
            max-width: 700px;
            min-height: 100vh; /* Full height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;

           
        }

        .tooltip {
            font-family: "Georgia", "Times New Roman", serif;
            margin-bottom: 20px;
        }

        .tooltip strong {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
            /*background: linear-gradient(45deg, #ff8800, #ff00cc);*/
            /*background: linear-gradient(135deg, #667eea, #764ba2);*/
            background: linear-gradient(to right, #A020F0, #FF6347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;


        }

        .tooltip p {
            font-size: 1.7rem;
            margin-top: 15px;
        }
        .tooltip h1 {
            font-size: 1.7rem;
            margin-top: 15px;
            font-weight: 200;
            /*background: linear-gradient(45deg, #ff8800, #ff00cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;*/
        }

        .buttons {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap; /* Ensures buttons don't overflow */
        }

        .btn {
            display: inline-block;
            padding: 14px 28px;
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
           /* background: linear-gradient(45deg, #ff00cc, #ff8800);*/
           /*background: linear-gradient(135deg, #667eea, #764ba2);*/
           background: linear-gradient(to right, #A020F0, #FF6347);
            border: none;
            border-radius: 30px;
            text-decoration: none;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            transition: background 0.3s, box-shadow 0.3s;
            white-space: nowrap; /* Prevents button text from breaking */
        }

        .btn:hover {
            /*background: linear-gradient(45deg, #007bb5, #005f8e);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);*/
            /*background: linear-gradient(45deg, #ff8800, #ff00cc);*/
            background: linear-gradient(135deg, #667eea, #764ba2);
            transform: scale(1.03);
        }

        /* Responsive Adjustments */
        @media (max-width: 500px) {
            .tooltip strong {
                font-size: 2rem;
            }
            .tooltip p {
                font-size: 1rem;
            }
            .social-icons a {
                font-size: 1.5rem;
                margin: 0 5px;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }


        