.contact-card-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.contact-card-wrapper .container {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    border-radius: 24px; /* Apple Rectangle Look */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-card-wrapper .left-side {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2x2 Grid */
    gap: 15px;
    border-top: 1px solid #f2f2f7;
    padding-top: 30px;
    margin-top: 30px;
}

.contact-card-wrapper .details {
    background: #f5f5f7;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.contact-card-wrapper .details:hover {
    background: #003366;
    color: #ffffff;
}

.contact-card-wrapper .details:hover i, 
.contact-card-wrapper .details:hover .topic, 
.contact-card-wrapper .details:hover a {
    color: #ffffff !important;
}
.right-side {
    text-align: center; /* Centers the text and the paragraph */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the form blocks horizontally */
}

/* Ensure the inputs don't stretch too wide */
.right-side .input-box {
    width: 100%;
    max-width: 400px; /* Limits width for a cleaner "Apple" form look */
    margin: 0 auto 15px auto; /* Centers the box itself */
}

.right-side .button {
    width: 100%;
    max-width: 400px;
}

.right-side input, 
.right-side textarea {
    text-align: center; /* Makes the placeholder text look centered */
}
/* Reset all inputs to look clean */
input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #e1e1e6; /* Light gray border */
    border-radius: 12px;       /* Soft rounded corners */
    background-color: #f9f9f9;  /* Very light background */
    font-size: 16px;
    text-align: center;         /* Centers the text/placeholder */
    box-sizing: border-box;     /* Keeps padding inside the width */
    transition: all 0.3s ease;
    outline: none;              /* Removes the blue border when clicked */
}

/* Add an elegant "glow" when clicked */
input:focus, textarea:focus {
    border-color: #003366;      /* Brand blue */
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(0, 51, 102, 0.15);
}

/* Center the placeholder text specifically */
::placeholder {
    color: #a0a0a5;
    text-align: center;
    opacity: 1; /* Ensures color stays solid */
}