body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #1e90ff;
}


.logo {
    height: 50px;
}

.home {
    text-align: center;
    background-image: url('../images/student.png');
    background-size: cover;
    background-position: center;
    height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack h1 and h2 vertically */
}

.home h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.home h2 {
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}






.about {
    padding: 20px;
    background-color: #228b22;
}

.about h1 {
    color: #fff;
}

.about p {
    color: #fff;
    font-size: 1.2rem;
}


.technology {
    padding: 20px;
    background-color: #228b22;
}

.technology h1 {
    color: #fff;
}

.technology p {
    color: #fff;
    font-size: 1.2rem;
}

=======================================
/* General Navigation Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    padding: 10px 15px;
    display: inline-block;
}

/* Hamburger Menu Styles for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    background: white;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: all 0.3s;
}

/* Responsive Menu */
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #006400;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        z-index: 10;
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }
}


=========================================


nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}


.vision-strip {
    /*background-color: #1e90ff; /* Light blue background */
    background-color: #add8e6; /* Light blue background */
    text-align: left;
    padding: 20px;
    margin-top: 20px; /* Space above the strip */
    border-radius: 8px; /* Rounded corners for better appearance */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.vision-strip h1 {
    color: #ff8c00; /* Highlighting the h1 title */
    font-size: 1rem;
    margin: 0 0 10px; /* Small spacing below heading */
    text-transform: uppercase; /* Capitalize the heading */
}

.vision-strip h2 {
    color: #333; /* Darker text color for readability */
    font-size: 2rem;
    margin: 0 0 10px; /* Small spacing below heading */
    text-transform: uppercase; /* Capitalize the heading */
}

.vision-strip h3 {
    color: #000; /* Darker text color for readability */
    font-size: 1rem;
    margin: 0 0 10px; /* Small spacing below heading */
    text-transform: uppercase; /* Capitalize the heading */
}

.vision-strip p {
    color: #333; /* Medium gray for the description text */
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.6; /* Better line spacing for readability */
}

ul {
    background-color: #000;
    padding: 20px;
    list-style-type: none;
    border-radius: 8px;
    margin: 0;
}

li {
    margin-bottom: 10px;
    padding: 5px;
}

strong {
    color: #ff8c00; /* Highlighting the strong text */
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block; /* optional: removes extra space below the image */
    margin: 0 auto; /* optional: centers the image */
}

.active {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.market p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
}






.product {
    padding: 20px;
    background-color: #228b22; /* Match other pages */

}


.product h1 {
    color: #fff;

}
.product h2 {
    font-size: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.product h3 {
    font-size: 0.8rem;
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}


.product p, .product ul {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
}

.product ul {
    list-style: square;
    padding-left: 20px;
}

.product .responsive-img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product .cta {
    margin-top: 20px;
    text-align: center;
}

.product .btn {
    background-color: #ff8c00;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.product .btn:hover {
    background-color: #ffa500;
}

.contact {
    padding: 20px;
    background-color: #228b22;
}

.contact-strip p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.contact-strip b {
    font-weight: bold;
}

.contact h2 {
    font-size: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);}

<style>





    /* Style for form elements */
    form {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Space between form elements */
    }

    label {
        font-weight: bold;
        margin-bottom: 5px; /* Space between label and input */
    }

    input, textarea {
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        width: 100%;
        box-sizing: border-box;
    }

    textarea {
        resize: vertical; /* Allows the user to resize the text area vertically */
    }

    button {
        padding: 10px 15px;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    button:hover {
        background-color: #45a049;
    }
</style>

<form action="submit_contact_form.php" method="POST">
    <label for="name">Your Name:</label>
    <input type="text" id="name" name="name" required>

    <label for="email">Your Email:</label>
    <input type="email" id="email" name="email" required>

    <label for="message">Your Message:</label>
    <textarea id="message" name="message" rows="5" required></textarea>

    <button type="submit">Submit</button>
</form>
