/* =========================================================
   EmitraForm
   Main Website CSS
   ========================================================= */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        Arial,
        "Noto Sans Devanagari",
        sans-serif;

    background: #f5f6f8;

    color: #1f2937;

}




/* =========================================================
   EmitraForm Homepage
   ========================================================= */


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.main-container {

    width: min(
        1180px,
        94%
    );

    margin: 0 auto;

    padding-bottom: 35px;

}



/* =========================================================
   NEWS
   ========================================================= */

.news-bar {

    margin-top: 18px;

    min-height: 46px;

    display: flex;

    align-items: stretch;

    background: #ffffff;

    border:
        1px solid #e1e5ea;

    border-radius: 5px;

    overflow: hidden;

    box-shadow:
        0 2px 5px
        rgba(0,0,0,0.04);

}


.news-label {

    min-width: 95px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e53935;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

}


.news-content {

    flex: 1;

    display: flex;

    align-items: center;

    padding:
        10px 15px;

    font-size: 13px;

    color: #374151;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

}



/* =========================================================
   IMPORTANT NOTICE
   ========================================================= */

.important-notice {

    margin-top: 10px;

    padding:
        12px 15px;

    background: #fff8e8;

    border:
        1px solid #f0d48a;

    border-left:
        4px solid #f59e0b;

    border-radius: 4px;

    font-size: 12px;

    line-height: 1.6;

    color: #5f4b19;

}


.important-notice strong {

    margin-right: 5px;

}



/* =========================================================
   PAGE HEADING
   ========================================================= */

.page-heading {

    margin-top: 18px;

    padding:
        18px 20px;

    background: #ffffff;

    border:
        1px solid #e1e5ea;

    border-radius: 5px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.page-heading h1 {

    margin: 0;

    font-size: 22px;

    color: #172033;

}


.page-heading p {

    margin-top: 5px;

    font-size: 12px;

    color: #7b8492;

}



/* =========================================================
   VISITOR BOX
   ========================================================= */

.visitor-box {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        9px 14px;

    background: #f8fafc;

    border:
        1px solid #e1e5ea;

    border-radius: 6px;

}


.visitor-icon {

    font-size: 21px;

}


.visitor-box small {

    display: block;

    font-size: 10px;

    color: #7b8492;

}


.visitor-box strong {

    display: block;

    margin-top: 2px;

    font-size: 15px;

    color: #1f2937;

}



/* =========================================================
   TOOLBAR
   ========================================================= */

.forms-toolbar {

    margin-top: 15px;

    padding:
        12px 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    background: #ffffff;

    border:
        1px solid #e1e5ea;

    border-radius:
        5px 5px 0 0;

    font-size: 12px;

}


.entries-control {

    display: flex;

    align-items: center;

    gap: 6px;

}


.entries-control select {

    height: 33px;

    padding:
        0 28px 0 9px;

    border:
        1px solid #cfd5dd;

    border-radius: 5px;

    background: #ffffff;

    color: #374151;

}


.search-control {

    display: flex;

    align-items: center;

    gap: 7px;

}


.search-control input {

    width: 250px;

    height: 34px;

    padding:
        0 10px;

    border:
        1px solid #cfd5dd;

    border-radius: 5px;

    outline: none;

}


.search-control input:focus {

    border-color: #e53935;

    box-shadow:
        0 0 0 3px
        rgba(229,57,53,0.08);

}



/* =========================================================
   TABLE
   ========================================================= */

.forms-section {

    background: #ffffff;

    border:
        1px solid #e1e5ea;

    border-top: 0;

}


.table-responsive {

    width: 100%;

    overflow-x: auto;

}


.forms-table {

    width: 100%;

    min-width: 800px;

    border-collapse: collapse;

}


.forms-table th {

    padding:
        11px 8px;

    background: #e53935;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    text-align: center;

    white-space: nowrap;

}


.forms-table td {

    padding:
        10px 8px;

    border-bottom:
        1px solid #edf0f3;

    font-size: 11.5px;

    text-align: center;

    line-height: 1.45;

}


.forms-table tbody tr:nth-child(even) {

    background: #fcfcfd;

}


.forms-table tbody tr:hover {

    background: #fff3f3;

}


.forms-table td:nth-child(2),
.forms-table td:nth-child(3) {

    text-align: center;

}


.forms-table td:first-child {

    font-weight: 700;

    color: #7b8492;

}



/* =========================================================
   DOWNLOAD BUTTON
   ========================================================= */

.download-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 78px;

    padding:
        7px 12px;

    background: #e53935;

    color: #ffffff;

    text-decoration: none;

    border-radius: 4px;

    font-size: 10.5px;

    font-weight: 700;

    transition:
        0.18s ease;

}


.download-button:hover {

    background: #c62828;

    transform:
        translateY(-1px);

}


.download-disabled {

    display: inline-flex;

    padding:
        7px 12px;

    background: #9ca3af;

    color: #ffffff;

    border-radius: 4px;

    font-size: 10px;

}



/* =========================================================
   VOTE BUTTONS
   ========================================================= */

.feedback-cell {

    white-space: nowrap;

}


.vote-button {

    border: 0;

    background: transparent;

    cursor: pointer;

    padding:
        5px 6px;

    border-radius: 5px;

    font-size: 12px;

}


.vote-button:hover {

    background: #f3f4f6;

}


.vote-button:disabled {

    opacity: 0.55;

    cursor: not-allowed;

}



/* =========================================================
   EMPTY STATE
   ========================================================= */

.empty-state {

    padding: 30px;

    text-align: center;

    color: #7b8492;

    font-size: 13px;

}



/* =========================================================
   PAGINATION
   ========================================================= */

.pagination {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 5px;

    padding:
        14px;

}


.pagination button {

    min-width: 32px;

    height: 30px;

    border:
        1px solid #d5dae0;

    background: #ffffff;

    color: #374151;

    border-radius: 5px;

    cursor: pointer;

    font-size: 11px;

}


.pagination button:hover,
.pagination button.active {

    background: #e53935;

    border-color: #e53935;

    color: #ffffff;

}


.pagination button:disabled {

    opacity: 0.45;

    cursor: not-allowed;

}



/* =========================================================
   BOTTOM INFO
   ========================================================= */

.bottom-info {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding:
        12px 3px;

    font-size: 11px;

    color: #7b8492;

}


.online-dot {

    display: inline-block;

    width: 7px;

    height: 7px;

    margin-right: 4px;

    border-radius: 50%;

    background: #22c55e;

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {


    .main-container {

        width: 96%;

    }


    .news-bar {

        display: block;

    }


    .news-label {

        min-height: 34px;

    }


    .news-content {

        min-height: 40px;

        white-space: normal;

    }


    .page-heading {

        align-items: flex-start;

        flex-direction: column;

    }


    .visitor-box {

        width: 100%;

    }


    .forms-toolbar {

        flex-direction: column;

        align-items: stretch;

    }


    .search-control {

        display: block;

    }


    .search-control input {

        display: block;

        width: 100%;

        margin-top: 6px;

    }


    .table-responsive {

        overflow: visible;

    }


    .forms-table {

        min-width: 0;

        border-collapse: separate;

        border-spacing: 0 10px;

    }


    .forms-table thead {

        display: none;

    }


    .forms-table tbody,
    .forms-table tr,
    .forms-table td {

        display: block;

        width: 100%;

    }


    .forms-table tbody tr {

        background: #ffffff;

        border:
            1px solid #e1e5ea;

        border-radius: 8px;

        overflow: hidden;

        box-shadow:
            0 2px 8px
            rgba(0,0,0,0.04);

    }


    .forms-table td {

        display: flex;

        align-items: flex-start;

        justify-content: space-between;

        gap: 12px;

        text-align: right;

        padding:
            10px 12px;

        border-bottom:
            1px solid #eef0f2;

        font-size: 12px;

    }


    .forms-table td:last-child {

        border-bottom: 0;

    }


    .forms-table td::before {

        content:
            attr(data-label);

        min-width: 42%;

        color: #697386;

        font-size: 10px;

        font-weight: 700;

        text-align: left;

    }


    .forms-table td:nth-child(2),
    .forms-table td:nth-child(3) {

        text-align: right;

    }


    .bottom-info {

        display: block;

    }


    .bottom-info > div + div {

        margin-top: 5px;

    }

}


/* =========================================================
   EMITRAFORM PREMIUM FOOTER
========================================================= */

.site-footer {

    position: relative;

    margin-top: 70px;

    background:
        linear-gradient(
            135deg,
            #071d42 0%,
            #0b3d91 55%,
            #082b68 100%
        );

    color: #fff;

    overflow: hidden;

}


/* Decorative glow */

.site-footer::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -160px;
    right: 5%;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, .12);

    filter: blur(10px);

}


.site-footer::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -150px;
    left: 8%;

    border-radius: 50%;

    background:
        rgba(23, 105, 209, .18);

    filter: blur(10px);

}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {

    position: relative;

    z-index: 2;

    width:
        min(1180px, calc(100% - 40px));

    margin: auto;

    padding:
        55px 0 45px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 55px;

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


/* =========================================================
   BRAND
========================================================= */

.footer-column:first-child {

    padding-right: 30px;

}


.footer-column:first-child h3 {

    position: relative;

    margin: 0 0 17px;

    color: #fff;

    font-size: 25px;

    font-weight: 850;

    letter-spacing: -.5px;

}


/* Orange underline */

.footer-column:first-child h3::after {

    content: "";

    display: block;

    width: 38px;

    height: 3px;

    margin-top: 9px;

    border-radius: 5px;

    background:
        #f47b20;

}


.footer-column:first-child p {

    max-width: 340px;

    margin: 0;

    color:
        rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   HEADINGS
========================================================= */

.footer-column h4 {

    position: relative;

    margin: 2px 0 20px;

    color: #fff;

    font-size: 15px;

    font-weight: 750;

    letter-spacing: .2px;

}


/* Small orange line */

.footer-column h4::after {

    content: "";

    display: block;

    width: 27px;

    height: 2px;

    margin-top: 8px;

    border-radius: 4px;

    background:
        #f47b20;

}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-column a {

    position: relative;

    display: inline-flex;

    align-items: center;

    width: fit-content;

    margin-bottom: 12px;

    color:
        rgba(255,255,255,.68);

    text-decoration: none;

    font-size: 13px;

    transition:
        color .22s ease,
        transform .22s ease;

}


/* Arrow before link */

.footer-column a::before {

    content: "›";

    margin-right: 8px;

    color:
        #f47b20;

    font-size: 17px;

    line-height: 1;

    transition:
        transform .22s ease;

}


.footer-column a:hover {

    color: #fff;

    transform:
        translateX(3px);

}


.footer-column a:hover::before {

    transform:
        translateX(3px);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    position: relative;

    z-index: 2;

    min-height: 58px;

    padding:
        18px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;

    border-top:
        1px solid rgba(255,255,255,.10);

    background:
        rgba(0,0,0,.10);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .footer-container {

        grid-template-columns:
            1.3fr 1fr;

        gap: 40px;

    }


    .footer-column:first-child {

        grid-column:
            1 / -1;

        padding-right: 0;

    }


    .footer-column:first-child p {

        max-width: 520px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 550px) {

    .footer-container {

        width:
            calc(100% - 32px);

        padding:
            42px 0 32px;

        grid-template-columns:
            1fr;

        gap: 30px;

    }


    .footer-column:first-child {

        grid-column:
            auto;

    }


    .footer-column:first-child h3 {

        font-size: 23px;

    }


    .footer-column:first-child p {

        font-size: 12px;

        line-height: 1.75;

    }


    .footer-column h4 {

        margin-bottom: 17px;

    }


    .footer-column a {

        margin-bottom: 11px;

    }


    .footer-bottom {

        min-height: 55px;

        padding:
            16px;

        font-size: 11px;

        line-height: 1.6;

    }

}




/* =========================================================
   EMITRAFORM
   PREMIUM HEADER DESIGN
========================================================= */

:root {

    --ef-blue: #0b3d91;
    --ef-blue-light: #1769d1;

    --ef-orange: #f47b20;

    --ef-dark: #17243a;

    --ef-text: #4d5a6d;

    --ef-muted: #8a95a6;

    --ef-border: #e8edf4;

    --ef-light: #f5f8fd;

    --ef-white: #ffffff;

}


/* =========================================================
   RESET FOR HEADER
========================================================= */

.efx-header,
.efx-header * {
    box-sizing: border-box;
}

.efx-header a {
    text-decoration: none;
}

.efx-header button {
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.efx-header {

    position: sticky;

    top: 0;

    z-index: 99999;

    width: 100%;

    background:
        rgba(255, 255, 255, 0.94);

    border-bottom:
        1px solid var(--ef-border);

    box-shadow:
        0 5px 25px rgba(18, 43, 80, 0.07);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

}


/* =========================================================
   CONTAINER
========================================================= */

.efx-container {

    width:
        min(1240px, calc(100% - 40px));

    min-height: 78px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   BRAND
========================================================= */

.efx-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


/* =========================================================
   LOGO WRAPPER
========================================================= */

.efx-logo-wrap {

    position: relative;

    width: 47px;

    height: 47px;

}


/* =========================================================
   LOGO
========================================================= */

.efx-logo {

    width: 47px;

    height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            var(--ef-blue),
            var(--ef-blue-light)
        );

    box-shadow:
        0 9px 22px rgba(11, 61, 145, .23);

}


/* Logo image */

.efx-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    background: #fff;

}


/* Fallback */

.efx-logo-fallback {

    color: #fff;

    font-size: 27px;

    font-weight: 900;

}


/* Orange little dot */

.efx-logo-dot {

    position: absolute;

    right: -3px;

    bottom: -3px;

    width: 13px;

    height: 13px;

    border-radius: 50%;

    background: var(--ef-orange);

    border: 3px solid #fff;

}


/* =========================================================
   BRAND TEXT
========================================================= */

.efx-brand-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


/* Brand title */

.efx-brand-text strong {

    font-size: 22px;

    line-height: 1;

    letter-spacing: -.6px;

    font-weight: 850;

}


/* Blue */

.efx-brand-main {

    color: var(--ef-blue);

}


/* Orange */

.efx-brand-orange {

    color: var(--ef-orange);

}


/* Tagline */

.efx-brand-text small {

    margin-top: 6px;

    color: var(--ef-muted);

    font-size: 9px;

    font-weight: 650;

    letter-spacing: .85px;

    text-transform: uppercase;

    white-space: nowrap;

}


/* =========================================================
   NAVIGATION
========================================================= */

.efx-nav {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 5px;

}


/* =========================================================
   NORMAL NAV LINKS
========================================================= */

.efx-link {

    position: relative;

    height: 45px;

    padding:
        0 13px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    color: var(--ef-text);

    border-radius: 11px;

    font-size: 13px;

    font-weight: 650;

    transition:
        .25s ease;

}


/* Hover */

.efx-link:hover {

    color: var(--ef-blue);

    background:
        #f1f6ff;

    transform:
        translateY(-1px);

}


/* =========================================================
   NAV ICON
========================================================= */

.efx-link-icon {

    width: 19px;

    height: 19px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.efx-link-icon svg {

    width: 17px;

    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* =========================================================
   ACTIVE
========================================================= */

.efx-link.active {

    color: var(--ef-blue);

    background:
        #edf4ff;

}


/* Orange active line */

.efx-link.active::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 4px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        var(--ef-orange);

    transform:
        translateX(-50%);

}


/* =========================================================
   SSO BUTTON
========================================================= */

.efx-sso {

    height: 42px;

    padding:
        0 16px;

    margin-left: 5px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    color: #fff;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--ef-blue),
            var(--ef-blue-light)
        );

    box-shadow:
        0 7px 18px
        rgba(11, 61, 145, .19);

    font-size: 13px;

    font-weight: 750;

    transition:
        .25s ease;

}


.efx-sso:hover {

    color: #fff;

    transform:
        translateY(-2px);

    box-shadow:
        0 11px 24px
        rgba(11, 61, 145, .27);

}


/* SSO external icon */

.efx-sso svg {

    width: 15px;

    height: 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* =========================================================
   OTHER BUTTON
========================================================= */

.efx-other {

    position: relative;

}


.efx-other-button {

    height: 45px;

    padding:
        0 13px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border: 0;

    border-radius: 11px;

    color: var(--ef-text);

    background: transparent;

    cursor: pointer;

    font-size: 13px;

    font-weight: 650;

    transition:
        .25s ease;

}


.efx-other-button:hover,

.efx-other.open
.efx-other-button {

    color: var(--ef-blue);

    background:
        #f1f6ff;

}


/* Arrow */

.efx-arrow {

    width: 16px;

    height: 16px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;

    transition:
        transform .25s ease;

}


.efx-other.open
.efx-arrow {

    transform:
        rotate(180deg);

}


/* =========================================================
   DROPDOWN
========================================================= */

.efx-dropdown {

    position: absolute;

    top:
        calc(100% + 12px);

    right: 0;

    width: 290px;

    padding: 8px;

    background: #fff;

    border:
        1px solid var(--ef-border);

    border-radius: 16px;

    box-shadow:
        0 20px 55px
        rgba(17, 40, 75, .15);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-8px)
        scale(.97);

    transform-origin:
        top right;

    transition:
        .22s ease;

}


/* Open */

.efx-other.open
.efx-dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.efx-dropdown a {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px;

    border-radius: 12px;

    transition:
        background .2s ease;

}


.efx-dropdown a:hover {

    background:
        #f5f8fd;

}


/* =========================================================
   DROPDOWN ICON
========================================================= */

.efx-drop-icon {

    width: 40px;

    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    font-size: 15px;

    font-weight: 850;

}


.efx-drop-icon.blue {

    color:
        var(--ef-blue);

    background:
        #eaf2ff;

}


.efx-drop-icon.orange {

    color:
        #dc650c;

    background:
        #fff0e5;

}


.efx-drop-icon.green {

    color:
        #138357;

    background:
        #e8f8f1;

}


/* =========================================================
   DROPDOWN TEXT
========================================================= */

.efx-drop-text {

    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

}


.efx-drop-text strong {

    color:
        var(--ef-dark);

    font-size: 13px;

    font-weight: 750;

}


.efx-drop-text small {

    margin-top: 4px;

    color:
        var(--ef-muted);

    font-size: 10px;

}


/* Arrow */

.efx-drop-arrow {

    color:
        #9aa5b5;

    font-size: 17px;

    transition:
        .2s ease;

}


.efx-dropdown a:hover
.efx-drop-arrow {

    color:
        var(--ef-blue);

    transform:
        translateX(3px);

}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.efx-toggle {

    display: none;

    width: 43px;

    height: 43px;

    padding: 9px;

    border:
        1px solid var(--ef-border);

    border-radius: 11px;

    background:
        #fff;

    cursor: pointer;

}


.efx-toggle span {

    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    border-radius: 10px;

    background:
        #23344d;

    transition:
        .25s ease;

}


/* Animated X */

.efx-toggle.active
span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.efx-toggle.active
span:nth-child(2) {

    opacity: 0;

}


.efx-toggle.active
span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .efx-container {

        min-height:
            70px;

    }


    .efx-toggle {

        display: block;

    }


    .efx-nav {

        position: absolute;

        top:
            calc(100% + 8px);

        left: 15px;

        right: 15px;

        margin: 0;

        padding: 10px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        background:
            #fff;

        border:
            1px solid var(--ef-border);

        border-radius: 17px;

        box-shadow:
            0 20px 50px
            rgba(17, 40, 75, .15);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            .22s ease;

    }


    .efx-nav.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

    }


    .efx-link {

        width: 100%;

        height: 48px;

        justify-content:
            flex-start;

        padding:
            0 15px;

    }


    .efx-link.active::after {

        left: 5px;

        bottom: auto;

        width: 4px;

        height: 22px;

        transform: none;

    }


    .efx-sso {

        width: 100%;

        height: 45px;

        margin: 3px 0;

    }


    .efx-other {

        width: 100%;

    }


    .efx-other-button {

        width: 100%;

        justify-content:
            space-between;

        padding:
            0 15px;

    }


    .efx-dropdown {

        position: static;

        width: 100%;

        margin-top: 3px;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        background:
            #f6f8fc;

        border:
            1px solid #e9eef5;

    }


    .efx-other.open
    .efx-dropdown {

        display: block;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .efx-container {

        width:
            calc(100% - 24px);

        min-height:
            66px;

    }


    .efx-logo-wrap,

    .efx-logo {

        width: 42px;

        height: 42px;

    }


    .efx-brand-text strong {

        font-size:
            19px;

    }


    .efx-brand-text small {

        display:
            none;

    }


    .efx-toggle {

        width: 40px;

        height: 40px;

    }


    .efx-nav {

        left: 8px;

        right: 8px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .efx-brand-text strong {

        font-size:
            17px;

    }


    .efx-logo-wrap,

    .efx-logo {

        width: 39px;

        height: 39px;

    }


    .efx-toggle {

        width: 38px;

        height: 38px;

    }

}






/* =========================================================
   EMITRAFORM GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f9fc;
    color: #172033;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   PREMIUM HEADER
========================================================= */

.efx-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: rgba(255,255,255,.96);

    border-bottom: 1px solid #e9edf4;

    box-shadow:
        0 5px 25px rgba(15,35,70,.07);

    backdrop-filter: blur(12px);
}

.efx-container {
    max-width: 1250px;
    margin: 0 auto;

    min-height: 76px;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* =========================================================
   BRAND
========================================================= */

.efx-brand {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #13213c;

    flex-shrink: 0;
}

.efx-logo-wrap {
    position: relative;

    width: 47px;
    height: 47px;
}

.efx-logo {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #083b91,
            #1468d8
        );

    box-shadow:
        0 7px 18px rgba(11,61,145,.25);
}

.efx-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.efx-logo-fallback {
    color: white;

    font-size: 27px;
    font-weight: 900;
}

.efx-logo-dot {
    position: absolute;

    right: -3px;
    bottom: -2px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #f28c28;

    border: 3px solid white;
}

.efx-brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.efx-brand-text strong {
    font-size: 21px;
    letter-spacing: -.4px;
}

.efx-brand-main {
    color: #0b3d91;
}

.efx-brand-orange {
    color: #f27c22;
}

.efx-brand-text small {
    margin-top: 4px;

    color: #7a8496;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .2px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.efx-nav {
    display: flex;
    align-items: center;

    gap: 5px;
}

.efx-link,
.efx-sso {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 42px;

    padding: 0 12px;

    border-radius: 10px;

    color: #4b5567;

    font-size: 13px;

    font-weight: 700;

    transition: all .2s ease;
}

.efx-link:hover,
.efx-sso:hover {
    color: #0b3d91;

    background: #f2f6fc;
}

.efx-link.active {
    color: #0b3d91;

    background:
        linear-gradient(
            135deg,
            #edf4ff,
            #f6f9ff
        );
}

.efx-link-icon {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.efx-link-icon svg,
.efx-sso svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.efx-sso {
    color: white;

    background:
        linear-gradient(
            135deg,
            #0b3d91,
            #1767d8
        );

    box-shadow:
        0 5px 14px rgba(11,61,145,.18);
}

.efx-sso:hover {
    color: white;

    background:
        linear-gradient(
            135deg,
            #082f72,
            #0f55b8
        );
}


/* =========================================================
   LANGUAGE BUTTON
========================================================= */

.efx-language {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 68px;

    height: 38px;

    padding: 0 13px;

    margin-left: 3px;

    border: 1px solid #dfe6f0;

    border-radius: 10px;

    background: #f8faff;

    color: #0b3d91;

    font-size: 11px;

    font-weight: 800;

    transition: .2s ease;
}

.efx-language:hover {
    color: white;

    background: #0b3d91;

    border-color: #0b3d91;

    transform: translateY(-1px);
}


/* =========================================================
   OTHER
========================================================= */

.efx-other {
    position: relative;
}

.efx-other-button {
    display: flex;
    align-items: center;

    gap: 6px;

    min-height: 42px;

    padding: 0 12px;

    border: 0;

    border-radius: 10px;

    background: transparent;

    color: #4b5567;

    cursor: pointer;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    transition: .2s ease;
}

.efx-other-button:hover {
    color: #0b3d91;

    background: #f2f6fc;
}

.efx-arrow {
    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;

    transition: transform .2s ease;
}

.efx-other.open .efx-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN
========================================================= */

.efx-dropdown {
    position: absolute;

    top: calc(100% + 10px);

    right: 0;

    width: 280px;

    padding: 8px;

    background: white;

    border: 1px solid #e7ebf2;

    border-radius: 16px;

    box-shadow:
        0 18px 50px rgba(19,39,72,.14);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}

.efx-other.open .efx-dropdown {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.efx-dropdown > a {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px;

    border-radius: 11px;

    color: #26344b;

    transition: .2s ease;
}

.efx-dropdown > a:hover {
    background: #f5f8fd;
}

.efx-drop-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: white;

    font-weight: 900;
}

.efx-drop-icon.blue {
    background: #0b5dcc;
}

.efx-drop-icon.orange {
    background: #ef8524;
}

.efx-drop-icon.green {
    background: #18a56a;
}

.efx-drop-text {
    flex: 1;

    display: flex;

    flex-direction: column;
}

.efx-drop-text strong {
    font-size: 13px;
}

.efx-drop-text small {
    margin-top: 1px;

    color: #8791a1;

    font-size: 10px;
}

.efx-drop-arrow {
    color: #8c97a8;

    font-size: 17px;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.efx-toggle {
    display: none;

    width: 43px;
    height: 43px;

    padding: 10px;

    border: 1px solid #e2e7ef;

    border-radius: 11px;

    background: white;

    cursor: pointer;
}

.efx-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    margin: 4px auto;

    border-radius: 5px;

    background: #17365f;

    transition: .2s ease;
}

.efx-toggle.active span:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}

.efx-toggle.active span:nth-child(2) {
    opacity: 0;
}

.efx-toggle.active span:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;

    overflow: hidden;

    padding:
        95px 20px
        105px;

    text-align: center;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(52,122,255,.25),
            transparent 32%
        ),
        radial-gradient(
            circle at 80% 10%,
            rgba(242,124,34,.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #061d46,
            #0b3d91 55%,
            #124e9c
        );

    color: white;
}

.about-hero-content {
    position: relative;

    max-width: 850px;

    margin: auto;

    z-index: 2;
}

.about-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 13px;

    border:
        1px solid rgba(255,255,255,.20);

    border-radius: 30px;

    background:
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.9);

    font-size: 11px;

    font-weight: 700;

    backdrop-filter: blur(8px);
}

.about-badge span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ff9d43;

    box-shadow:
        0 0 0 5px rgba(255,157,67,.12);
}

.about-hero h1 {
    margin:
        23px 0
        13px;

    font-size:
        clamp(35px, 5vw, 58px);

    line-height: 1.12;

    letter-spacing: -1.5px;
}

.about-hero h1 span {
    color: #ff9b42;
}

.about-hero p {
    max-width: 700px;

    margin: auto;

    color:
        rgba(255,255,255,.78);

    font-size:
        clamp(14px, 2vw, 17px);

    line-height: 1.8;
}


/* =========================================================
   ABOUT LANGUAGE
========================================================= */

.about-language {
    display: inline-flex;

    align-items: center;

    gap: 4px;

    padding: 4px;

    margin-top: 27px;

    border:
        1px solid rgba(255,255,255,.20);

    border-radius: 12px;

    background:
        rgba(255,255,255,.08);
}

.about-language a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 17px;

    border-radius: 8px;

    color:
        rgba(255,255,255,.75);

    font-size: 12px;

    font-weight: 700;

    transition: .2s ease;
}

.about-language a:hover {
    color: white;
}

.about-language a.active {
    color: #0b3d91;

    background: white;
}


/* =========================================================
   ABOUT CONTAINER
========================================================= */

.about-container {
    max-width: 1180px;

    margin: 0 auto;

    padding:
        70px 20px
        90px;
}


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    max-width: 900px;

    margin:
        0 auto
        70px;

    padding: 40px;

    text-align: center;

    background: white;

    border: 1px solid #e8edf4;

    border-radius: 22px;

    box-shadow:
        0 12px 40px rgba(20,45,85,.06);
}

.about-intro h2 {
    margin:
        0 0
        15px;

    color: #12284b;

    font-size: 30px;

    line-height: 1.3;
}

.about-intro p {
    margin: 0;

    color: #657086;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.about-section {
    margin-top: 75px;
}

.about-heading {
    max-width: 750px;

    margin:
        0 auto
        38px;

    text-align: center;
}

.about-heading .small {
    display: inline-block;

    margin-bottom: 8px;

    color: #ef8128;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.about-heading h2 {
    margin:
        0 0
        10px;

    color: #10284d;

    font-size:
        clamp(26px, 4vw, 36px);

    line-height: 1.3;
}

.about-heading p {
    margin: 0;

    color: #727e91;

    font-size: 14px;
}


/* =========================================================
   RESOURCE GRID
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.about-card {
    padding: 28px;

    background: white;

    border:
        1px solid #e8edf4;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(20,45,85,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.about-card:hover {
    transform: translateY(-5px);

    border-color: #d5e3f8;

    box-shadow:
        0 18px 40px rgba(20,45,85,.10);
}

.about-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #eaf2ff,
            #f5f8ff
        );

    color: #0b3d91;

    font-size: 18px;

    font-weight: 900;
}

.about-card h3 {
    margin:
        0 0
        9px;

    color: #172d50;

    font-size: 18px;
}

.about-card p {
    margin: 0;

    color: #718096;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   USERS
========================================================= */

.about-users {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}

.about-user-card {
    padding: 30px;

    background: white;

    border:
        1px solid #e8edf4;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(20,45,85,.05);
}

.about-user-card h3 {
    margin:
        0 0
        12px;

    color: #16345f;

    font-size: 18px;
}

.about-user-card p {
    margin: 0;

    color: #6d788a;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   TRUST
========================================================= */

.about-trust {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 25px;

    padding: 28px;

    background: white;

    border:
        1px solid #e8edf4;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(20,45,85,.04);
}

.about-trust-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 8px 15px;

    border-right:
        1px solid #edf0f5;
}

.about-trust-item:last-child {
    border-right: 0;
}

.about-trust-item strong {
    color: #0b3d91;

    font-size: 20px;
}

.about-trust-item span {
    color: #7a8495;

    font-size: 11px;
}


/* =========================================================
   OFFICIAL LINKS
========================================================= */

.about-links {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.about-link {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px;

    background: white;

    border:
        1px solid #e8edf4;

    border-radius: 16px;

    color: #1a2d4c;

    box-shadow:
        0 8px 25px rgba(20,45,85,.04);

    transition: .2s ease;
}

.about-link:hover {
    transform: translateY(-3px);

    border-color: #d1e0f6;

    box-shadow:
        0 14px 32px rgba(20,45,85,.08);
}

.about-link-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #0b3d91,
            #1767d8
        );

    font-weight: 900;
}

.about-link span:last-child {
    display: flex;

    flex-direction: column;
}

.about-link strong {
    font-size: 14px;
}

.about-link small {
    margin-top: 2px;

    color: #7c8799;

    font-size: 11px;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.about-disclaimer {
    margin-top: 70px;

    padding: 28px 30px;

    background:
        linear-gradient(
            135deg,
            #fffaf5,
            #fffdf9
        );

    border:
        1px solid #f2e2cf;

    border-radius: 18px;
}

.about-disclaimer h3 {
    margin:
        0 0
        8px;

    color: #a25b1b;

    font-size: 17px;
}

.about-disclaimer p {
    margin: 0;

    color: #756a5e;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FAQ
========================================================= */

.about-faq {
    max-width: 900px;

    margin: auto;
}

.about-faq-item {
    margin-bottom: 12px;

    background: white;

    border:
        1px solid #e7ecf3;

    border-radius: 14px;

    overflow: hidden;
}

.about-faq-item summary {
    position: relative;

    padding: 19px 22px;

    cursor: pointer;

    list-style: none;

    color: #1a3154;

    font-size: 14px;

    font-weight: 700;
}

.about-faq-item summary::-webkit-details-marker {
    display: none;
}

.about-faq-item summary::after {
    content: "+";

    position: absolute;

    right: 20px;

    top: 16px;

    color: #0b3d91;

    font-size: 20px;

    font-weight: 400;
}

.about-faq-item[open] summary::after {
    content: "−";
}

.about-faq-answer {
    padding:
        0 22px
        20px;

    color: #6e788a;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    position: relative;

    overflow: hidden;

    margin-top: 80px;

    padding:
        55px 30px;

    text-align: center;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #082c68,
            #0b3d91,
            #145bb7
        );

    color: white;

    box-shadow:
        0 18px 45px rgba(11,61,145,.18);
}

.about-cta h2 {
    margin:
        0 0
        10px;

    font-size: 30px;
}

.about-cta p {
    margin:
        0 auto
        22px;

    max-width: 650px;

    color:
        rgba(255,255,255,.76);

    font-size: 14px;
}

.about-cta a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 11px 22px;

    border-radius: 10px;

    background: white;

    color: #0b3d91;

    font-size: 13px;

    font-weight: 800;

    transition: .2s ease;
}

.about-cta a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);
}


/* =========================================================
   PREMIUM FOOTER
========================================================= */

.site-footer {
    margin-top: 0;

    background:
        linear-gradient(
            135deg,
            #071a39,
            #0b2d5f
        );

    color: white;
}

.footer-container {
    max-width: 1180px;

    margin: auto;

    padding:
        60px 20px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 60px;
}

.footer-column h3 {
    margin:
        0 0
        13px;

    color: white;

    font-size: 23px;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 42px;
    height: 3px;

    margin-top: 10px;

    border-radius: 5px;

    background: #f28c28;
}

.footer-column h4 {
    margin:
        0 0
        18px;

    color: white;

    font-size: 15px;
}

.footer-column p {
    max-width: 350px;

    margin: 0;

    color:
        rgba(255,255,255,.65);

    font-size: 13px;

    line-height: 1.9;
}

.footer-column a {
    display: block;

    width: fit-content;

    margin-bottom: 10px;

    color:
        rgba(255,255,255,.65);

    font-size: 13px;

    transition: .2s ease;
}

.footer-column a:hover {
    color: white;

    transform: translateX(3px);
}

.footer-bottom {
    padding:
        18px 20px;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.5);

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .efx-toggle {
        display: block;
    }

    .efx-nav {
        position: absolute;

        top: calc(100% + 1px);

        left: 12px;
        right: 12px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        padding: 12px;

        background: white;

        border:
            1px solid #e5eaf1;

        border-radius: 16px;

        box-shadow:
            0 20px 45px rgba(15,35,70,.14);
    }

    .efx-nav.open {
        display: flex;
    }

    .efx-link,
    .efx-sso,
    .efx-other-button,
    .efx-language {
        width: 100%;

        justify-content: flex-start;
    }

    .efx-language {
        margin: 4px 0;
    }

    .efx-other {
        width: 100%;
    }

    .efx-other-button {
        width: 100%;
    }

    .efx-dropdown {
        position: static;

        width: 100%;

        margin-top: 5px;

        display: none;

        box-shadow: none;

        border-radius: 12px;
    }

    .efx-other.open .efx-dropdown {
        display: block;

        opacity: 1;

        visibility: visible;

        transform: none;
    }

    .about-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-trust {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;
    }

    .about-trust-item {
        border-right: 0;
    }

    .footer-container {
        gap: 35px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .efx-container {
        min-height: 68px;

        padding: 0 15px;
    }

    .efx-brand-text strong {
        font-size: 18px;
    }

    .efx-brand-text small {
        font-size: 8px;
    }

    .efx-logo,
    .efx-logo-wrap {
        width: 42px;
        height: 42px;
    }

    .about-hero {
        padding:
            65px 18px
            75px;
    }

    .about-hero h1 {
        font-size: 35px;
    }

    .about-container {
        padding:
            45px 15px
            65px;
    }

    .about-intro {
        padding: 28px 20px;

        margin-bottom: 50px;
    }

    .about-intro h2 {
        font-size: 25px;
    }

    .about-grid,
    .about-users,
    .about-links {
        grid-template-columns: 1fr;
    }

    .about-section {
        margin-top: 55px;
    }

    .about-trust {
        grid-template-columns:
            repeat(2, 1fr);

        padding: 20px 10px;
    }

    .about-trust-item {
        padding: 10px 5px;
    }

    .about-cta {
        margin-top: 60px;

        padding:
            42px 20px;
    }

    .about-cta h2 {
        font-size: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        padding:
            45px 20px;

        gap: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .efx-brand-text small {
        display: none;
    }

    .about-hero h1 {
        font-size: 31px;
    }

    .about-trust {
        grid-template-columns: 1fr;
    }

    .about-trust-item {
        border-bottom:
            1px solid #edf0f5;

        padding: 12px;
    }

    .about-trust-item:last-child {
        border-bottom: 0;
    }
}



