/* style.css */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    
    background-size: cover;
    color: #333;
}

.navbar {
    background-color: rgba(0, 102, 204, 0.9);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar h1 {
    margin: 0;
    font-size: 1.5rem;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #ffcc00;
}

.welcome {
    text-align: center;
    margin: 3rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    
}

.welcome h2 {
    font-size: 2rem;
    color: #0066cc;
}

.welcome p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.form-section {
    margin: 3rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.counseling-form {
    display: flex;
    flex-direction: column;
}

.counseling-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.counseling-form input, .counseling-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.counseling-form .submit-btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #0066cc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.counseling-form .submit-btn:hover {
    background-color: #004a99;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: rgba(0, 102, 204, 0.9);
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}