/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
}

.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

#about-us {
    background-color: #1E90FF; /* Light blue to represent technology */
}

#vision-mission {
    background-color: #32CD32; /* Green to represent growth and empowerment */
}

#our-product {
    background-color: #FF4500; /* Orange to represent innovation */
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    width: 80%;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }
}

/* Smooth Scroll Buttons */
#scroll-buttons {
    position: fixed;
    right: 10px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.scroll-button {
    margin: 5px 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.scroll-button:hover {
    background-color: #000;
    color: white;
}
