@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: background-color 0.3s;
}

header:hover {
    background-color: rgba(255, 255, 255, 1);
}

.logo {
    font-size: 2.5em;
    color: #333;
    font-weight: 700;
    cursor: pointer;
}

.logo span {
    color: #2980b9; /* Accent color */
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    font-size: 1.1em;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navigation a:hover {
    color: #fff;
    background-color: #2980b9; /* Button hover color */
    transform: scale(1.1);
}

/* Contact Section */
#contact {
    margin-top: 120px; /* Adjust for fixed header */
    padding: 40px;
    background-color: #ffffff;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2980b9;
    text-align: center;
}

.contact-form .intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #495867;
}

.contact-form label {
    font-size: 1.1em;
    color: #2d4059;
    margin-bottom: 10px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    font-size: 1em;
    border-radius: 8px;
    border: 2px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2980b9;
    box-shadow: 0 0 5px rgba(240, 61, 102, 0.5);
    outline: none;
}
select {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border-radius: 8px;
    border: 2px solid #ddd;
    margin: 10px 0 20px 0;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:focus {
    border-color: #2980b9;
    box-shadow: 0 0 5px rgba(240, 61, 102, 0.5);
    outline: none;
}

.contact-form button {
    display: block; /* Makes the button respect the parent's alignment */
    margin: 20px auto; /* Centers the button horizontally */
    padding: 12px 40px;
    background: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}


.contact-form button:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

#message {
    resize: none;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    color: #2d4059;
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #2980b9;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navigation a {
        margin-bottom: 15px;
    }

    .contact-form {
        margin-top: 80px;
        padding: 25px;
        width: 90%;
    }
}
