.hero-section{
    min-height: 100vh;
}


            /* GRADIENT AND LAYER BLUR EFFECT */
            .image-gradient{
                position:absolute;
                top: 0;
                right: 0;
                opacity: 0.5;
                z-index: -1;
            }

            .layer-blur{
                height: 0;
                width: 30rem;
                position: absolute;
                top: 20%;
                right: 0;
                box-shadow: 0 0 700px 15px white;
                rotate: -30deg;
                z-index: -1;
            }

            /*CONTAINER/NAVBAR*/

            .container{
                width:100%;
                margin: 0 auto;
                padding: 0 2rem;
                position: relative;
                overflow: hidden;
            }

            header{
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0.5rem 1rem;
            }

            header h1{
                margin: 0;
                font-size: 3rem;
                font-weight: 300;
            }
            nav{
                display: flex;
                align-items: center;
                gap: 3rem;
                margin-left: -5%;
            }

            nav a{
                font-size: 1rem;
                letter-spacing: 0.1rem;
                transition: color 0.2s ease;
                text-decoration: none;
                color: inherit;
            }

            nav a:hover{
                color: #a7a7a7;
            }
            .logo {
                max-height: 60px;
                width: auto;
            }

            .btn-contact {
                border-radius: 50px;
                padding: 0.8rem 2rem;
                border: none;
                font-size: 1rem;
                font-weight: 500;
                transition: background-color 0.2s ease;
                cursor: pointer;
            }

            .btn-contact:hover{
                background-color: white;
            }

            /*MAIN CONTENT*/

            main{
                display: flex;
                flex-direction: column;
                justify-content: center;
                min-height: calc(90vh - 6rem);
            }

            .content{
                max-width: 40rem;
                margin-left: 10%;
                z-index: 999;
            }

            .tag-box{
                position: relative;
                width: 18rem;
                height: 2.5rem;
                border-radius: 50px;
                background: linear-gradient(to right, #046363, #178389, #049491, #149aaa);
                background-size: 200%;
                animation: animationGradient 2.5s linear infinite;
                box-shadow: 0 0 15px rgba(255, 255, 255, 0.3)
            }

            @keyframes animationGradient {
                to {
                    background-position: 200%;
                }
            }
            .tag-box .tag{
                position: absolute;
                inset: 3px 3px 3px 3px;
                background-color: black;
                border-radius: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.5 ease;
            }

            .content h1{
                font-size: 4rem;
                font-weight: 600;
                letter-spacing:0.1rem;
                margin: 2rem 0;
                line-height: 1.2;
                text-shadow: 0 0 10px rgba(128, 128, 128, 0.418)
            }

            .description{
                font-size:1.2rem;
                letter-spacing: 0.05rem;
                max-width:35rem;
                color: gray;
            }

            .buttons {
                display: flex;
                gap: 1rem;
            }

            .btn-get-started{
                text-decoration: none;
                color: white;
                border: 1px solid #2a2a2a;
                padding: 0.7rem 1.2rem;
                margin-top: 20px;
                border-radius: 50px;
                font-size: 1.2rem;
                font-weight: 600;
                letter-spacing: 0.1rem;
                transition: background-color 0.2s ease;
            }

            .robot-3d{
                position:absolute;
                top:0;
                right: -20%;
            }

@media (max-width: 1024px) {
    nav {
        display: none;
    }

    .btn-contact {
        padding: 0.6rem 1.5rem;
    }

    .container {
        padding: 0; /* remove horizontal padding */
    }

    .content {
        margin-top: 25rem;
        margin-left: 10px; /* actual spacing from left edge */
        margin-right: 10px;
        max-width: calc(100vw - 20px); /* ensure responsive */
    }

    .tag-box {
        width: 12rem;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .btn-get-started {
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }

    .robot-3d {
        scale: 0.4;
        top: -25%;
        right: 0;
    }

    .skip-button {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 12px;
    }
}

            @media (max-width: 768px){

                nav{
                    display: none;
                }

                .btn-contact{
                    padding: 0.6rem 1.5rem;
                }
    .container {
        padding: 0; /* remove horizontal padding */
    }

    .content {
        margin-top: 25rem;
        margin-left: 10px; /* actual spacing from left edge */
        margin-right: 10px;
        max-width: calc(100vw - 20px); /* ensure responsive */
    }


                .robot-3d{
                    scale: 0.4;
                    top: -25%;
                    right:0;
                }

                .content{
                    max-width: 30rem;
                    margin-left: 10%;
                }

                .tag-box{
                    width: 12rem;
                }

                .content h1{
                    font-size: 2.5rem;
                }

                .description{
                    font-size: 1rem;
                }

                .btn-get-started{
                    font-size: 0.8rem;
                    padding: 0.8rem 1.2rem;
                }

                .skip-button {
                    top: 20px;
                    right: 20px;
                    padding: 8px 16px;
                    font-size: 12px;
                }
            }