/* styles.css */
:root{
    --primary-color: #ffffff;
    --secodary-color: #f8f9fa;
    --accent-color: #0e1f3a;
    --text-color: #2a2a2a;
    --border-color: #e5e7eb;
    --highlight: #ffd700;
}

.navbar{
    padding: 1.5rem 5%;
    background-color: rgba(255,255,255,0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.logo{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links{
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color) ;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after{
    content: '';
    position: absolute;
    bottom: -5px ;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    background: url('class.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--accent-color);
}

.contact-container {
    max-width: 600px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

h1 {
    color: var(--highlight);
    font-size: 24px;
}

p {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    text-align: left;
    font-size: 14px;
    color: var(--highlight);
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
}

button {
    background-color: var(--highlight);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: wheat;
}

.contact-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2); /* Slightly transparent form background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px); /* Slight blur effect */
}

input, textarea {
    margin-top: 10px;
    padding: 10px;
    border: 2px solid #fff; /* Bright border for visibility */
    border-radius: 5px;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.8); /* Higher opacity for input fields */
    color: #000; /* Dark text for contrast */
}

input::placeholder, textarea::placeholder {
    color: #666; /* Subtle placeholder text color */
}

button {
    margin-top: 15px;
    padding: 10px;
    background-color: var(--highlight); /* Fully opaque button for strong visibility */
    color: #fff; /* White text */
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: wheat; /* Slight transparency on hover for effect */
    transition: background-color 0.3s ease;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #25D366; /* WhatsApp green color */
    color: white;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebc5a; /* Slightly darker green on hover */
    cursor: pointer;
}




