
    *,
    *::before,
    *::after {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    body {
        min-height: 100vh;
        background: rgb(0, 0, 0);
        text-transform: capitalize;
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    main {
        width: 100%;
        height: 100vh;
        display: flex;
        background-image: url(img/s.jpg);
        background-repeat: no-repeat;
        background-position: center;
        /* position: fixed; */

    }

    a {
        text-decoration: none;
        color: rgb(255, 255, 255);
    }

    li {
        font-size: 20px;
        list-style: none;
        height: 40px;
    }

    /* head//////////////////////
 */
    @keyframes log {
        0% {
            transform: translateX(-150px) rotate(-10deg);
            filter: blur(5px);
            opacity: 0;
            stroke-dasharray: 0 500px;
        }

        80% {
            transform: translateX(0px) rotate(0deg);
            filter: blur(0);
            opacity: 1;
        }

        100% {
            transform: translateX(0px) rotate(0deg);
            opacity: 1;
            stroke-dasharray: 500px 0;
        }
    }

    header {

        width: 100%;
        display: flex;
        justify-content: center;
        height: 100px;
        /* Reduced height for a sleeker profile */
        position: relative;
        /* Header sticks to the top */
        top: 0;
        left: 0;
        z-index: 1000;

        background-color: rgba(253, 253, 253, 0.9);
        backdrop-filter: blur(5px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    header>nav {
        margin-top: 0;
        width: 90%;
        align-items: center;
        height: 100%;
        display: flex;
        justify-content: space-between;
        background-color: transparent;
        padding: 0 20px;
        color: white;

        .logo {
            width: 130px;
            height: 130px;
            animation: log 1.5s ease-out forwards;
            background-color: transparent;
            border-radius: 50%;
            overflow: hidden;

            >img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                border-radius: 50%;
                transition: transform 0.3s ease-in-out;
            }

            &:hover>img {
                transform: scale(1.1) rotate(5deg);
            }
        }

        /* --- Main Navigation Links (Left Side) --- */
        >ul:first-of-type {
            display: flex;
            flex-direction: row;
            list-style: none;
            gap: 40px;
            margin-left: 50px;
            color:black
          
        }

        .drop {
            transition: all 0.3s ease;
            width: auto;
            padding: 8px 15px;
            text-align: center;
            position: relative;
            border-bottom: 2px solid transparent;

            >a {
                color: #1a1818;
                font-weight: 600;
                font-size: 1.1rem;
            }

            &:hover {
                background-color: transparent;
                border-bottom: 2px solid #61dafb;
                scale: 1;

                >ul {
                    display: block;
                    scale: 1;
                    
                }
            }

            /* --- Dropdown Menu Styling (The sub-ul) --- */
            >ul {
                position: absolute;
                top: 50px;
                left: 50%;
                transform: translateX(-50%);
                width: 220px;
                background-color: rgba(30, 30, 30, 0.95);
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
                display: none;
                padding: 10px 0;
                border-top: 3px solid #61dafb;

                opacity: 0;
                pointer-events: none;
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            &:hover>ul {
                opacity: 1;
                pointer-events: auto;
                transform: translateX(-50%) translateY(0);
            }

            >li {
                margin-top: 5px;
                width: 100%;
                transition: background-color 0.3s;
                text-align: left;
                padding: 10px 20px;

                &:hover {
                    background-color: #3e3e3e;

                    >a {
                       
                        color: #61dafb;
                    }
                }

                >a {
                     scale: 1.5;
                    color: white;
                    font-size: 1rem;
                    display: block;
                }
            }
        }

        /* --- Social Media Icons (Right Side) --- */
        >ul:nth-of-type(2) {
            display: flex;
            gap: 20px;
            align-items: center;
            transition: none;

            >li {
                width: 30px;
                height: 30px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            >li>a {
                transition: transform 0.3s ease, color 0.3s ease;
                color: white;

                >svg {
                    width: 40px;
                    height: 40px;
                    fill: white;
                    transition: fill 0.3s ease, transform 0.3s ease;
                }

                &:hover {
                    transform: scale(1.2);

                    >svg {
                        fill: #61dafb;
                    }
                }
            }
        }
    }

    /* ///////////////////////// */



    .section1 {
        box-shadow: -4px -7px 52px 53px rgba(0, 0, 0, 0.69);
        -webkit-box-shadow: -4px -7px 52px 53px rgba(0, 0, 0, 0.69);
        -moz-box-shadow: -4px -7px 52px 53px rgba(0, 0, 0, 0.69);

        /* margin: 50px auto; */
        width: 100%;
        height: 100%;
        background: white;
        position: relative;
        border-radius: 30px;
        overflow: hidden;

        >figure {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 0;

            >img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0;

                animation: smoothFade 15s linear infinite;
            }
        }

    }






    .section1 img:nth-of-type(1) {
        animation-delay: 0s;
    }

    .section1 img:nth-of-type(2) {
        animation-delay: 5s;
    }

    .section1 img:nth-of-type(3) {
        animation-delay: 10s;
    }

    @keyframes smoothFade {
        0% {
            opacity: 0;
        }

        10% {
            opacity: 1;
        }


        33.33% {
            opacity: 1;
        }


        43.33% {
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }


    /* ////////////////////////////// */

    .por {

        width: 100%;
        height: 75px;
        background: rgb(0, 0, 0);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        text-shadow: 8px 5px 19px rgba(255, 255, 255, 0.8);
        font-family: Arial, Helvetica, sans-serif;

        >h1 {
            height: 100%;
            margin: 10px;
            color: white;
            transform-origin: bottom;
            animation: txt ease-in-out forwards;
            animation-timeline: view();
            animation-range: entry 40% cover 60%;
        }
    }

    .section2 {
        width: 100%;
        height: 800px;
        background: white;
        margin: 100px auto;
        position: relative;
        overflow: hidden;
        animation: scrolled linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;

        .show {
            display: flex;
            justify-content: center;
            width: 100%;
            height: 100%;
            margin: 0 auto;
            position: absolute;
            left: 0;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);

            >img {

                width: 100%;
                height: 100%;
                object-fit: cover;
            }


        }
    }

    .section3 {
        width: 100%;
        height: 400px;
        margin: 10px auto;
        display: flex;
        overflow: hidden;
        animation: car2 ease-in-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 50%;

        >div {
            &:nth-of-type(1) {
                display: flex;
                justify-content: center;
                width: 60%;
                height: 100%;

                >video {
                    width: 60%;
                    height: 100%;
                    scale: 2;
                    /* object-fit: cover; */
                    transform: rotatez(-90deg);
                }
            }

            &:nth-of-type(2) {
                width: 40%;
                height: 100%;
                background: rgb(98, 56, 56);
                display: flex;
                flex-direction: column;
                justify-content: space-evenly;
                align-items: center;
                padding: 10px;
                font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;

                >p {
                    font-size: 120%;
                    color: white;
                    /* font-family: Arial, Helvetica, sans-serif; */
                    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
                }

                >h2 {
                    margin-bottom: 5px;
                    width: 100%;
                    height: 20px;
                    font-size: 2rem;
                    color: white;
                    /* font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; */
                }
            }
        }



    }

    .footer {
        width: 100%;
        height: 500px;
        background-color: rgb(52, 52, 52);
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        color: white;

        >.logo {
            width: 150px;
            height: 156px;
            transform-style: preserve-3d;


            >img {
                width: 100%;
                height: 100%;
                border-radius: 10px;
                animation: scrolled both ease-in-out;
                animation-timeline: view();
                animation-range: entry 0% cover 50%;

                &:hover {
                    animation-play-state: paused;
                }
            }
        }

        >.link {
            animation: footer 10s linear infinite alternate;
            width: 50%;
            display: flex;
            justify-content: center;

            >ul {
                display: flex;
                gap: 20px;

                >li {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    justify-content: center;
                    width: 100px;
                    /* border: 1px solid white; */

                    >a {
                        transition: 0.4s;
                        color: #ffffff;

                        /* font-size: 20px; */
                        &:hover {
                            cursor: pointer;
                            scale: 1.3;
                        }
                    }
                }
            }
        }


    }

    @keyframes scrolled {
        from {
            transform: translateY(-150px) scale(0) rotate(0deg);
            opacity: 0;
            filter: blur(50%);
        }

        to {
            transform: translateY(0px) scale(1) rotate(0);
            opacity: 1;
            filter: blur(0%);
        }
    }

    @keyframes txt {

        from {
            transform: translateY(100px) rotateX(-90deg);
            opacity: 0;
        }

        to {
            transform: translateY(50px) rotateX(0deg);
            opacity: 1;
        }
    }

    @keyframes car2 {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }

        to {
            transform: translateX(0%);
            opacity: 1;
        }

    }

    @keyframes footer {
        0% {
            transform: scale(1);
        }

        33% {
            transform: scale(.7);
        }

        66% {
            transform: scale(1);
        }

        100% {
            transform: scale(0.7);
        }
    }
