* {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #00011a;
            font-family: sans-serif;

        }
            #navbaar {
                background: #000000;
                color: aliceblue;
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                height: 60px;
            }

            .btn {
                color: rgb(255, 255, 255);
                background-color: #caba04;
                padding: 8px 18px;
                border: none;
                border-radius: 8px;
                font-size: 16px;
                cursor: pointer;

            }

            .hero {
                width: 90%;
                /* min-height: 600px;
                height: 60%; */
                background: #100125;
                border-radius: 18px;
                margin-top: 40px;
                color: aliceblue;
            }
            .footer{
                background: #000000;
                width: 100%;
                display: flex;
                justify-content: space-around;
                color: aliceblue;
            }
            #uo{
                border: 1.2px solid white;
                border-radius: 25px;
                padding: 10px 20px;
                display: inline-block;
                margin:0;
                width:fit-content
            }
            #dot{
                margin-right:10px;
                font-size: 18px;
            }
            .frh1{
                font-size:46px;

            }
            #pt{
                background: linear-gradient(#f7e959,#caba04);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent

            }
            .hp{
                padding: 0 auto;
                font-size: 18px;

            }
            .hero{
                /* border: 2px white solid; */
                border-radius: 25px;
                padding: 20px 0px 20px 25px;
                box-shadow: -3px -1.5px 1px  #caba04 ;

            }
            .bhero{
             width: 400px;
          
             border-radius: 25px;
             margin: 25px auto;
              box-shadow: -3px -1.5px 1px  #caba04 ;
             padding: 25px 15px;

                }

                #form{
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                }

                #form label{
                    font-size: 14px;
                    margin-top: 6px;
                    color:white
                }

                #form input,
                #form select{
                    padding: 8px 10px;
                    border-radius: 6px;
                    border: none;
                    outline: none;
                    font-size: 14px;
                    color:black;
                    background-color: white;
                    

                }

                .btn{
                    margin-top: 12px;
                    padding: 10px;
                    border-radius: 20px;
                    border: none;
                    cursor: pointer;
                    text-decoration: none;
                }
                 
            .footer{
                padding:10px 30px;
                height: 20vh;
                display: flex;
                flex-direction: column;

            }
            .ch3{
                text-align: center;
                font-weight: bold;
                color:#caba04;
                margin-bottom: 10px;
            }
            .flinks{
                display: flex;
                justify-content: space-around;
            }
            .flinks a{
                text-decoration: none;
                color:gray;
            }
            html{
                scroll-behavior: smooth;
            }
            
            .ic{display: flex;
            
            }
            .ic svg{
                margin: 10px 10px;
            }
            .gry{
                color:grey
            }
            #tilt{
                display: inline-block;
                background-color: #caba04;
                transform: rotate(-1.9deg);
                font-weight: bold;
                padding: 8px 18px;

            }
/* ===== Responsive ===== */

@media (max-width: 768px){

    .hero{
        width: 95%;
        padding: 18px;
        margin-top: 20px;
    }

    .txt{
        gap: 14px !important;
    }

    .frh1{
        font-size: 30px;
        line-height: 1.2;
    }

    .hp{
        font-size: 15px;
    }

    #uo{
        padding: 6px 14px;
        font-size: 12px;
    }

    /* When & Where blocks */
    .hero > div{
        flex-direction: column;
        gap: 10px;
    }

    /* Form section */
    .bhero{
        width: 95%;
        padding: 18px;
    }

    #form input,
    #form select{
        width: 100%;
    }

    /* Navbar text smaller */
    #navbaar h2{
        font-size: 14px !important;
    }

    .btn{
        font-size: 14px;
        padding: 8px 14px;
    }

    /* Footer stack */
    .footer{
        height: auto;
        gap: 10px;
        text-align: center;
    }

    .flinks{
        flex-direction: column;
        gap: 6px;
    }
}