        .section1 {
            position: relative;
            width: 100%;
            height: 100%;

        }

        .section1-top-blank {
            width: 100%;
            height: 120px;
        }

        .section1-bg {
            width: 100%;
            height: 100%;
            position: absolute;
        }

        .section1-bg img {
            width: 35%;
            position: absolute;
            margin-top: 3%;
            margin-left: 32.5%;
            opacity: 0.3;
            z-index: -2;
            animation: pulse 6s ease-in-out infinite;
        }


        .section1-top {
            display: flex;
            width: 20%;
            height: 48px;
            margin-left: 40%;
            background: rgba(255, 255, 255, 0.05);
            /* Just a hint */
            backdrop-filter: blur(10px) saturate(1.4);
            /* Reduce blur */
            -webkit-backdrop-filter: blur(10px) saturate(1.4);
            border: 1px solid rgba(255, 255, 255, 0.25);
            /* More visible */
            border-top: 1px solid rgba(255, 255, 255, 0.4);
            border-left: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 24px;
            /* Single value */
            box-shadow:
                0 8px 32px rgba(14, 10, 27, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .section1-top #section1-span2 {
            font-weight: 600;
            font-size: 18px;
        }

        .section1-top #section1-span1 {
            background-color: #0083ff;
            border-radius: 50%;
            padding: 5px;
        }

        .section1 h1 {
            text-align: center;
            font-size: 45px;
        }

        .section1 p {
            text-align: center;
            font-size: 24px;
            margin-top: -1%;
        }






        .section1-btns {
            display: flex;
            gap: 60px;
            width: 40%;
            height: auto;
            margin-top: 2%;
            margin-left: 30%;
            justify-content: center;
        }

        .section1-btn1 {
            width: auto;
            padding: 5px 25px;
            height: 40px;
            border-radius: 5px;
            background: linear-gradient(45deg, #1e90ff, #8a2be2);
            transition: 0.4s ease;
            position: relative;
            z-index: 1;
            border-top: 1px solid #a67af5;
        }

        .section1-btn2 {
            width: auto;
            padding: 5px 25px;
            height: 40px;
            border-radius: 5px;
            border: 1px solid rgba(89, 81, 112, 0.4);
            transition: 0.4s ease;
            border-top: 1px solid #a67af5;
        }


        .section1-btn1 a {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            gap: 10px;
        }

        .section1-btn2 a {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            gap: 10px;
        }


        .section1-btn1:hover {
            background: linear-gradient(-45deg, #1e90ff, #8a2be2);
            box-shadow: 0 10px 32px rgba(0, 131, 255, 0.2);
        }


        .section1-btn2:hover {
            background: linear-gradient(-45deg, #1e90ff, #8a2be2);
            box-shadow: 0 10px 32px rgba(0, 131, 255, 0.2);
        }




        @keyframes pulse {
            50% {
                transform: scale(1.1);
            }
        }

        @media screen and (max-width: 767px) {
            .section1-bg img {
                width: 80%;
                margin-left: 10%;
            }

            .section1-top {
                width: 70%;
                margin-left: 15%;
                height: 55px;
            }

            .section1 p {
                text-align: center;
                font-size: 24px;
                margin-top: -1%;
                width: 95%;
                margin-left: 2.5%;
            }

            .section1-btns {
                padding-bottom: 50px;
            }
        }