/* General Reset & Background */
body {
    background-color: #f4f7f6; /* Soft neutral background */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
}

/* Container */
.innerContact {
    width: 100%;
    max-width: 450px;
    background-color: #ffffff;
    height: 500px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Soft, modern shadow */
}

.inputField {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Consistent spacing between elements */
}

.inputField h2 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 20px;
    text-align: center;
}

/* Inputs and Textarea */
.inputField input, 
.inputField textarea {
    width: 100%;
    padding: 8px 11px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

/* Focus State - Essential for Professionalism */
.inputField input:focus, 
.inputField textarea:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Placeholder Color */
::placeholder {
    color: #999;
}

/* Submit Button */
.inputField button {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background-color: #4a90e2; /* Modern Blue */
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.inputField button:hover {
    background-color: #357abd;
}

.inputField button:active {
    transform: scale(0.98);
}

.map-container {
    border: 20px solid rgba(177, 232, 232, 0.58);
    border-radius: 25px;
}

.contact-box{
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 75px;
    margin-bottom: 75px;
}

