body {
    font-family: Arial, sans-serif;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb')
        no-repeat center center/cover;
    margin: 0;
    padding: 0;
}

/* Base styling for all sections */
.glass-section {
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    color: white;
    background: var(--section-color, rgba(0, 0, 0, 1));
    transition: all 0.5s ease;
}

/* Automatic glass hover effect */
.glass-section:hover {
    background: color-mix(in srgb, var(--section-color) 30%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}



/* Navigation styling */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    
}
nav li {
    cursor: pointer;
}

nav li:hover{
    background-color: rgba(18, 115, 242, 0.432);
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Inputs remain solid */
.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    font-size: 14px;
}

/* Button styling */
.contact-form button {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #28a745;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact-form button:hover {
    background-color: #218838;
}

nav.glass-section ul li a,
nav.glass-section ul li a:link,
nav.glass-section ul li a:visited,
nav.glass-section ul li a:hover,
nav.glass-section ul li a:active,
nav.glass-section ul li a::before,
nav.glass-section ul li a::after {
    text-decoration: none;
    border: none;
    border-bottom: none;
    background: none;
    background-image: none;
    box-shadow: none;
    content: none; /* for pseudo-elements */
    color: inherit;
}






