  header ul,
header li {
    margin: 0;
    padding: 0;
    list-style: none;
}

header .menu,
header .elementor-nav-menu,
header .sub-menu {
    list-style: none;
}
/* ===== MENU TEXT ===== */
.elementor-nav-menu .elementor-item {
    color: #ffffff !important;
}

/* hover */
.elementor-nav-menu .elementor-item:hover {
    color: #82e1ff !important;
}
/* ===== HEADER FIX ===== */
.elementor-top-section .elementor-container {

    align-items: center;
}

/* menu column */
.elementor-nav-menu__container {
    display: flex;
    align-items: center;
}
/* push search icon to right */
.elementor-widget-icon {
    margin-left: auto;
}

/* align icon vertically */
.elementor-widget-icon i {
    color: #fff;
    font-size: 22px;
}
header .sub-menu,
header ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

header li {
    position: relative;
}

header li:hover > .sub-menu,
header li:hover > ul {
    display: block;
}

header nav > ul,
header .elementor-nav-menu--main > ul,
header .elementor-nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

header nav > ul > li > a,
header .elementor-nav-menu > li > a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
}

header .sub-menu li a,
header ul ul li a {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
}
/* =========================
   AMPA APPLY FORM STYLE
   ========================= */

.apply-main {
    background: #ffffff;
    padding: 20px;
}
#mainbody{
     
}
.offer-main{
   
    border-radius: 20px;
    padding: 40px;
    
}
.apply-container {
    max-width: 1100px;
    margin: 10px auto;
    padding: 0 20px;
}

.apply-card {
    background: #111318;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 38px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.apply-title {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.apply-subtitle {
    margin: 0 0 34px;
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

/* rows */
.top-row,
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 22px;
}

.form-row.full,
.field-wrap.full {
    grid-column: 1 / -1;
}

/* fields */
.field-wrap {
    display: flex;
    flex-direction: column;
}

.field-wrap label {
    display: block;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.field-wrap .req {
    color: #65d3da;
    margin-right: 4px;
}

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    background: #181b21;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

/* placeholders */
.field-wrap input::placeholder,
.field-wrap textarea::placeholder {
    color: rgba(255,255,255,0.42);
}

/* focus */
.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
    border-color: #66d6dd;
    box-shadow: 0 0 0 4px rgba(102,214,221,0.12);
    background: #1d2128;
}

/* textarea */
.field-wrap textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 16px;
}

/* select arrow */
.field-wrap select {
    background-image:
        linear-gradient(45deg, transparent 50%, #65d3da 50%),
        linear-gradient(135deg, #65d3da 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

/* option colors */
.field-wrap select option {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    background: #181b21;
    color: #ffffff;
}

/* checkbox / radio if any appear later */
.field-wrap input[type="checkbox"],
.field-wrap input[type="radio"] {
    width: auto;
    min-height: auto;
    accent-color: #65d3da;
}

/* submit area */
.apply-actions {
    margin-top: 12px;
}

.apply-actions input[type="submit"],
.apply-actions button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 0;
    border-radius: 12px;
    background: #65d3da;
    color: #0b0b0f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 26px rgba(101, 211, 218, 0.28);
}

.apply-actions input[type="submit"]:hover,
.apply-actions button:hover,
input[type="submit"]:hover {
    opacity: 0.96;
    transform: translateY(-1px);
}

.apply-actions input[type="submit"]:active,
.apply-actions button:active,
input[type="submit"]:active {
    transform: translateY(0);
}

/* helper text / messages */
.form-note,
.field-help {
    margin-top: 8px;
    color: rgba(255,255,255,0.58);
    font-size: 13px;
    line-height: 1.5;
}

/* validation */
.field-wrap.error input,
.field-wrap.error select,
.field-wrap.error textarea {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 4px rgba(255,107,107,0.10);
}

.field-wrap.success input,
.field-wrap.success select,
.field-wrap.success textarea {
    border-color: #65d3da;
}

/* mobile */
@media (max-width: 900px) {
    .top-row,
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .apply-card {
        padding: 24px;
        border-radius: 16px;
    }

    .apply-title {
        font-size: 34px;
    }

    .apply-subtitle {
        font-size: 16px;
        margin-bottom: 26px;
    }
}
