@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;
}

.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;
}

.container {
    max-width: 1300px;
    margin: 5px auto;
    background: url('section-bg.png') center/cover;
    border-radius: 15px;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.container.show {
    opacity: 1;
}

.container:hover {
    transform: scale(1.1);
    background-image: url('section-bg-hover.png');
}

 #scrollButton {
            display: none;
            position: fixed;
            bottom: 80px;
            right: 20px; 
            color: #2b91bd;
            border: none;
            border-radius: 50%;
            padding: 10px;
            font-size: 40px;
            cursor: pointer;
        }

        #scrollButton:hover {
            background-color: #1c7fad; /* Change background color on hover */
            color: #ffffff;
        }
 
        ::-webkit-scrollbar {
            width: 12px;
            height: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f5f5f5;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background: #51abcb; /* Blue color */
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #51abcb; /* Blue color */
        }
        

@media screen and (max-width: 600px) {
    .parallax {
            height: calc(90vh - 400px);
            margin-top: 80px;
        }

    header {
            padding: 10px;
            flex-direction: column;
            text-align: center;
        }

        footer {
            font-size: 10px;
        }

#scrollButton {
                bottom: 50px; /* Adjust the distance from the bottom for smaller screens */
                right: 10px; /* Adjust the distance from the right for smaller screens */
            } 
            #text {
    font-size: 2em;
}
}

