@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

 h1, h2, h3 {
            font-size: 2em;
            font-weight: bold;
        }

        h1 {
            font-size: 5em;
        }

        ul {
            font-size: 1em;
        }

 p {
            font-size: 1.3em;
            line-height: 1.5;
        }        

body {
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
}
footer {
    background-color: #1c7fad;
    color: #fff;
}
        form {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            margin-top: 20px;
        }

        label {
            font-size: 1.2em;
            color: black;
        }

        input {
            width: 100%;
            padding: 8px;
            border: 1px solid black;
            border-radius: 5px;
            margin-top: 5px;
        }

        button {
            width: 150px;
            padding: 10px;
            background-color: #2b91bd;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #1c7fad;
        }

        .logo {
            font-size: 2em;
        }
        
        .Project {
            color: #2b91bd;;
            font-size: 2em;
        }
        
        .अक्षर {
            color: orange;
            font-size: 0.8em;
        }
    
.navigation a {
    text-decoration: none;
    color: #2b91bd; 
    padding: 6px 15px; 
    border-radius: 20px; 
    margin: 0 10px;
    font-weight: 600;
}

.navigation a:hover,
.navigation a:active {
    background: #2b91bd;
    color: #fff;
}

.navigation a.active {
    background: #2b91bd;
    color: #fff;
} 

.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#text {
    position: absolute;
    font-size: 5em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.sec {
    position: relative;
    background: #0c2f4d;
    padding: 10px;
}

 #scrollButton {
            display: none;
            position: fixed;
            bottom: 80px;
            right: 20px; 
            color: #2b91bd;
            background-color: #fff;
            border: none;
            border-radius: 100% !important;
            width: 50px;
            height: 80px;
            padding: 0px;
            font-size: 40px;
            cursor: pointer;
        }

        #scrollButton:hover {
            background-color: #1c7fad; /* Change background color on hover */
            color: #ffffff;
        }

@media screen and (max-width: 600px) {
    .parallax {
            height: calc(100vh - 400px);
            margin-top: 80px;
        }

    header {
            padding: 10px;
            flex-direction: column;
            text-align: center;
        }

 footer {
                padding: 5px; /* Adjust the padding for smaller screens */
                font-size: 9px; /* Adjust the font size for smaller screens */
            }
#scrollButton {
                bottom: 10px; /* Adjust the distance from the bottom for smaller screens */
                right: 5px; /* Adjust the distance from the right for smaller screens */
            } 
}