:root {
    --e-global-color-vamtam_accent_5: #ffffff; /* correct */
}
/* ===== Container ===== */
.apply-container {
   
}

.apply-card {
    background: #ECECEC;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ===== Headings ===== */

/* ===== Layout ===== */
.top-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.full {
    width: 100%;
    margin-bottom: 20px;
}

.field-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

/* ===== Labels ===== */
.field-wrap label {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0076bf;
    margin-bottom: 6px;
}
/* ==== textbox placeholders === */
::placeholder {
    font-family: 'Work Sans', sans-serif;
}

::-webkit-input-placeholder {
    font-family: 'Work Sans', sans-serif;
}

:-ms-input-placeholder {
    font-family: 'Work Sans', sans-serif;
}

::-ms-input-placeholder {
    font-family: 'Work Sans', sans-serif;
}
input[type="submit"],
button[type="submit"] {
    font-family: 'Work Sans', sans-serif;
}
.oash1{
       font-family: 'Work Sans', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #555454;
    margin-bottom: 6px;
}
.oash4{
    font-family: 'Work Sans', sans-serif;
    font-size: 1.3rem;
    font-weight:400;
    color: #555454;
    margin-bottom: 6px;
    padding-bottom: 20px;
}
.oash3{
       font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #555454;
    margin-bottom: 6px;
}
.req {
    color: #7fe3e1;
}
.offerform{
    background: transparent;
    padding: 0px 10px 10px 10px;
    max-width: 600px;
    margin: 0px auto 40px auto;
    border-radius: 4px;
}
/* ===== BUTTON FIX ===== */
.button-block {
    display: inline-block;
    background: linear-gradient(135deg, #82e1ff, #5ccfd6);
    color: #0e1428 !important;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(130,225,255,0.3);
}

/* fix tiny button issue */
.button,
button {
    min-width: 120px;
}

/* hover */
.button-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(130,225,255,0.5);
}
/* ===== Inputs ===== */
input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    outline: none;
}

/* dropdown text fix */
select {
    color: #ddd;
}

/* textarea */
textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== Focus Effect (matches site glow) ===== */
input:focus,
select:focus,
textarea:focus {
    border-color: #82e1ff;
    box-shadow: 0 0 0 2px rgba(130,225,255,0.25);
}

/* ===== Button ===== */
.apply-actions {
    margin-top: 25px;
}

.button-block {
    background: #82e1ff;
    color: #0e1428;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.button-block:hover {
    background: #6ccfd1;
}
/* ===== MENU TEXT WHITE ===== */
#sp-menu a,
#sp-menu .menu > li > a,
#sp-main-menu a {
    color: #ffffff !important;
}

/* hover */
#sp-menu a:hover,
#sp-main-menu a:hover {
    color: #82e1ff !important;
}
/* ===== HEADER MENU LAYOUT ===== */
#sp-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* push search to far right */
#sp-search {
    margin-left: auto;
}
/* ===== SUBMIT BUTTON ===== */
.apply-actions {
    margin-top: 30px;
}
/* Fix select dropdown selected text */
.button-block {
    display: inline-block;
    background: linear-gradient(135deg, #82e1ff, #5ccfd6);
    color: #0e1428 !important;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(130,225,255,0.35);
    transition: all 0.25s ease;
}

/* hover */
.button-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(130,225,255,0.6);
}

/* fix Elementor/global overrides */
button,
.button {
    opacity: 1 !important;
    background-color: unset;
}
/* ===== FOOTER WRAPPER ===== */
.apply-footer,
footer {
    background: #292929;
    color: #333;
    padding: 60px 20px;
}

/* ============ Textbox - SELECT ========== */
/* Normal input state */
form input,
form textarea,
form select {
    background: #f3f3f3 !important;
    color: #111 !important;
    border: 1px solid #d9d9d9 !important;
}

/* Focus state */
form input:focus,
form textarea:focus,
form select:focus {
    background: #ffffff !important;
    color: #111 !important;
    border: 2px solid #0ea5c6 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Typed text */
form input:not(:placeholder-shown),
form textarea:not(:placeholder-shown) {
    color: #111 !important;
}

/* Placeholder */
form input::placeholder,
form textarea::placeholder {
    color: #8a8a8a !important;
    opacity: 1 !important;
}

/* Chrome autofill */
form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form textarea:-webkit-autofill,
form select:-webkit-autofill {
    -webkit-text-fill-color: #111 !important;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    transition: background-color 9999s ease-in-out 0s;
}





/* container */
.apply-footer .footer-inner,
footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* columns */
.apply-footer .footer-col,
footer .footer-col {
    flex: 1;
    min-width: 200px;
}

/* remove ugly bullets */
.apply-footer ul,
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* spacing */
.apply-footer li,
footer li {
    margin-bottom: 8px;
}

/* links */
.apply-footer a,
footer a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

/* hover */
.apply-footer a:hover,
footer a:hover {
    color: #82e1ff;
}

/* headings */
.apply-footer h4,
footer h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #111;
}

/* logo spacing */
.apply-footer img {
    margin-bottom: 15px;
}
.elementor-element-e627695 .elementor-widget-container {
    text-align: center;
}

.elementor-element-e627695 img {
    display: inline-block;
    max-width: 210px;
    height: auto;
}

/* responsive */
@media (max-width: 768px) {
    .apply-footer .footer-inner,
    footer .footer-inner {
        flex-direction: column;
        gap: 25px;
    }
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
    .top-row {
        flex-direction: column;
    }
}
