/* contact section */

.contact-header h3 {
    color: #2b3c4d;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 50px;
}

.contact-header {
    text-align: center;
}

.contact-header h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: #2b3c4d;
    border-radius: 2px;
}

.contact-para p {
    color: #2b3c4d;
    font-weight: 300;
    font-size: 18px;
}

.contact-para p span {
    font-weight: 800;
}

.contact-para p a {
    text-decoration: none;
    color: #2dba7e;
    transition: all 0.3s ease;
}

.contact-para p a:hover {
    text-decoration: underline;
}

.form-header h3 {
    color: #2b3c4d;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 50px;
}

.form-header {
    text-align: center;
}

.form-header h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: #2b3c4d;
    border-radius: 2px;
}

.form-para p {
    color: #2b3c4d;
    font-weight: 300;
    font-size: 18px;
}

.form-para p a {
    color: #2b3c4d;
    transition: all 0.3s ease;
}

.form-para p a:hover {
    color: #2dba7e;
}

.form-para p span {
    color: #2b3c4d;
    font-weight: 800;
}

label {
    color: #2c4055;
    font-weight: 700;
    font-size: 18px;
}

label span {
    color: #E80000;
}

input {
    padding: 12px 10px !important;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 4px !important;
}

.form-section .form-control:focus {
    border-color: #000 !important;
    box-shadow: none !important;
    outline: 1px solid rgba(0, 0, 0, 0.2) !important;
}

textarea {
    padding: 12px 10px !important;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 4px !important;
}

button {
    color: #2dba7e;
    border: 1px solid #2dba7e;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
    background-color: transparent;
}

.form-wrap {
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    /* Recommended font for this look */
}

/* Input Groups */
.custom-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #d1d5db;
    /* Light grey border */
    border-radius: 50px;
    /* High rounding for pill shape */
    padding: 5px 20px;
    transition: all 0.3s ease;
}

.custom-input-group:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Specific styling for the Message/Textarea */
.textarea-group {
    border-radius: 12px;
    /* Less rounded for the message box */
    align-items: flex-start;
    padding-top: 15px;
}

.custom-input-group input,
.custom-input-group textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 15px;
    color: #374151;
    background: transparent;
}

.custom-input-group input::placeholder,
.custom-input-group textarea::placeholder {
    color: #9ca3af;
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-submit-btn {
    background-color: #2dba7e;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.custom-submit-btn:hover {
    background-color: #02693c;
    transform: translateY(-1px);
}