/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 2px -2px gray;
}

    header h1 {
        margin: 0;
        font-size: 2.5em;
    }

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

    nav ul li {
        display: inline;
        margin: 0 15px;
    }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: color 0.3s ease;
        }

            nav ul li a:hover, nav ul li a:focus, nav ul li a:active {
                color: #ff6347; /* Tomato red */
            }

section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}

.project {
    margin-bottom: 20px;
}

    .project h3 {
        margin: 0;
        font-size: 1.5em;
        color: #333;
    }

    .project p {
        margin: 5px 0;
    }

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: sticky;
    bottom: 0;
    width: 100%;
}

    footer p {
        margin: 0;
        font-size: 0.9em;
    }

.see-more-btn {
    background-color: black;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

    .see-more-btn:hover {
        background-color: dimgrey;
        color: white;
    }
/* Styling the form controls */
.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

/* Styling the submit button */
.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #0056b3;
    }

/* Styling the success alert */
.alert {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    font-size: 1em;
}


