/**
 * ================================================================
 * EXIMFINDER GLOBAL TRADE PLATFORM
 * Main Frontend Stylesheet
 *
 * Copyright © 2026 Signal Bytes Technologies.
 * All Rights Reserved.
 *
 * Purpose:
 * Global desktop, tablet and mobile application-style UI.
 * ================================================================
 */

/* ================================================================
   DESIGN VARIABLES
================================================================ */
:root {
    --ef-primary: #155eef;
    --ef-primary-dark: #0b2d72;
    --ef-secondary: #6c38e8;
    --ef-success: #079455;
    --ef-orange: #ff6b21;

    --ef-text: #101828;
    --ef-muted: #667085;
    --ef-border: #e4e7ec;
    --ef-background: #f8faff;
    --ef-white: #ffffff;

    --ef-container: 1280px;
    --ef-radius-sm: 10px;
    --ef-radius-md: 16px;
    --ef-radius-lg: 24px;

    --ef-shadow-sm: 0 4px 14px rgba(16, 24, 40, 0.06);
    --ef-shadow-md: 0 14px 35px rgba(16, 24, 40, 0.10);

    --ef-transition: 0.25s ease;
}

/* ================================================================
   GLOBAL RESET
================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ef-text);
    background: var(--ef-background);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ================================================================
   COMMON CONTAINER
================================================================ */
.container{
    width:100%;
    max-width:1320px;
    margin-left:auto;
    margin-right:auto;
    padding-left:20px;
    padding-right:20px;
}

/* ================================================================
   MAIN WEBSITE HEADER
================================================================ */
#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(228, 231, 236, 0.85);
    box-shadow: 0 5px 20px rgba(16, 24, 40, 0.04);
    backdrop-filter: blur(16px);
}

.navbar {
    width: min(100% - 40px, var(--ef-container));
    min-height: 74px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: 180px;
    max-height: 52px;
    object-fit: contain;
}

/* Temporary logo fallback until image is uploaded */
.logo img:not([src]),
.logo img[src=""] {
    display: none;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

.menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 74px;
    color: #344054;
    font-size: 14px;
    font-weight: 650;
    transition: color var(--ef-transition);
}

.menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 15px;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--ef-primary),
        var(--ef-secondary)
    );
    transform: translateX(-50%);
    transition: width var(--ef-transition);
}

.menu a:hover {
    color: var(--ef-primary);
}

.menu a:hover::after {
    width: 24px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.header-right a {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ef-radius-sm);
    color: #344054;
    font-size: 14px;
    font-weight: 700;
    transition:
        color var(--ef-transition),
        background var(--ef-transition),
        border-color var(--ef-transition),
        transform var(--ef-transition);
}

.header-right a:nth-child(2) {
    border: 1px solid #b7c7ef;
    color: var(--ef-primary);
    background: var(--ef-white);
}

.header-right a:last-child {
    color: var(--ef-white);
    border: 1px solid var(--ef-primary);
    background: linear-gradient(
        135deg,
        var(--ef-primary),
        #334bd8
    );
    box-shadow: 0 7px 18px rgba(21, 94, 239, 0.22);
}

.header-right a:hover {
    transform: translateY(-2px);
}

/* ================================================================
   MAIN CONTENT
================================================================ */
#main-content {
    min-height: 60vh;
}

/* Temporary welcome section styling */
#main-content > h1 {
    margin: 100px auto 12px !important;
    padding-inline: 20px;
    color: var(--ef-primary-dark);
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.12;
}

#main-content > p {
    margin: 0 auto 100px;
    padding-inline: 20px;
    color: var(--ef-muted);
    font-size: 18px;
}

/* ================================================================
   FOOTER
================================================================ */
#main-footer {
    margin-top: 80px;
    color: #d6e4ff;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(49, 95, 255, 0.28),
            transparent 32%
        ),
        linear-gradient(135deg, #061735, #071c45);
}

.footer-top {
    padding: 64px 0 38px;
}

.footer-top h2 {
    margin: 0 0 8px;
    color: var(--ef-white);
    font-size: 28px;
}

.footer-top p {
    margin: 0;
    color: #afc5ec;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: #9fb3d7;
    font-size: 14px;
}

/* ================================================================
   TABLET RESPONSIVE DESIGN
================================================================ */
@media (max-width: 1100px) {
    .navbar {
        gap: 18px;
    }

    .menu {
        gap: 17px;
    }

    .menu a {
        font-size: 13px;
    }

    .header-right a {
        padding-inline: 11px;
    }
}

/* ================================================================
   MOBILE APPLICATION-STYLE DESIGN
================================================================ */
@media (max-width: 860px) {
    body {
        padding-bottom: 72px;
    }

    .container {
        width: min(100% - 28px, var(--ef-container));
    }

    #main-header {
        position: sticky;
        top: 0;
    }

    .navbar {
        width: 100%;
        min-height: 64px;
        padding: 0 14px;
        gap: 12px;
    }

    .logo img {
        width: 145px;
        max-height: 44px;
    }

    /* Desktop menu hidden on mobile.
       A premium mobile drawer will be added next. */
    .menu {
        display: none;
    }

    .header-right {
        margin-left: auto;
    }

    .header-right a:first-child {
        display: none;
    }

    .header-right a {
        min-height: 38px;
        padding-inline: 11px;
        font-size: 12px;
        border-radius: 9px;
    }

    .header-right a:last-child {
        display: none;
    }

    #main-content > h1 {
        margin-top: 75px !important;
        font-size: 36px;
    }

    #main-content > p {
        margin-bottom: 70px;
        font-size: 16px;
    }

    #main-footer {
        margin-top: 50px;
    }

    .footer-top {
        padding: 42px 0 28px;
    }
}

/* ================================================================
   SMALL MOBILE DEVICES
================================================================ */
@media (max-width: 420px) {
    .navbar {
        min-height: 60px;
        padding-inline: 12px;
    }

    .logo img {
        width: 132px;
    }

    .header-right a {
        padding-inline: 10px;
    }
}

html,
body{
    height:100%;
    margin:0;
}

body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

main{
    flex:1;
}
html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
/* ================================================================
   EXIMFINDER HOMEPAGE — HERO SECTION
================================================================ */

.ef-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            rgba(4, 24, 68, 0.96) 0%,
            rgba(9, 46, 110, 0.88) 48%,
            rgba(21, 94, 239, 0.28) 100%
        ),
        var(--ef-hero-image, url("../images/home/hero/global-trade-hero.png"))
        center/cover no-repeat;
}

.ef-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(84, 123, 255, 0.22),
            transparent 35%
        );
}

.ef-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 42px;
    padding-bottom: 30px;
}

.ef-hero-content {
     width: calc(100% - 340px);
    max-width: 760px;
    padding: 0;
}

.ef-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
}

.ef-hero-title {
    margin: 0;
    max-width: 700px;
    font-size: 54px;
    line-height: 1.06;
    letter-spacing: -1.5px;
}

.ef-hero-title span {
    display: block;
    margin-top: 8px;
    color: #67a4ff;
}

.ef-hero-description {
     max-width: 650px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.6;
}
/* ======================================================
   HERO SEARCH BOX
====================================================== */

.ef-hero-search{
     margin-top:22px;
    background:#fff;
    border-radius:14px;
    padding:14px;
    box-shadow:0 14px 40px rgba(0,0,0,.14);
    max-width:790px;
}

.ef-search-tabs{
    display:flex;
    gap:10px;
    margin-bottom:18px;
    flex-wrap:wrap;
}

.ef-search-tab{
    border:0;
    background:#eef4ff;
    color:#155eef;
    padding:6px 10px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
}

.ef-search-tab.active{
    background:#155eef;
    color:#fff;
}

.ef-search-form{
    display:flex;
    gap:15px;
    align-items:center;
}

.ef-search-input-wrap{
    flex:1;
    display:flex;
    align-items:center;
    background:#f8f9fc;
    border-radius:12px;
    padding:0 15px;
}

.ef-search-input-wrap input{
    width:100%;
    border:0;
    background:none;
    height:40px;
    outline:none;
}

.ef-country-select{
    width:180px;
    height:40px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:0 15px;
}

.ef-search-button{
    height:40px;
    padding:0 28px;
    border:0;
    border-radius:12px;
    background:#155eef;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.ef-popular-searches{
    margin-top:18px;
    color:#fff;
}

.ef-popular-searches a{
    margin-left:10px;
    color:#9fd3ff;
}

.ef-hero-actions{
    margin-top:30px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.ef-btn{
    padding:6px 20px;
    border-radius:12px;
    font-weight:700;
}

.ef-btn-primary{
    background:#155eef;
    color:#fff;
}

.ef-btn-outline{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
}
/* ================================================================
   HERO — TABLET
================================================================ */

@media (max-width: 900px) {
    .ef-hero {
        min-height: 500px;
        background-position: 62% center;
    }

    .ef-hero-content {
        max-width: 620px;
        padding: 64px 0;
    }

    .ef-hero-title {
        font-size: 52px;
    }
}

/* ================================================================
   HERO — MOBILE APP STYLE
================================================================ */

@media (max-width: 600px) {
    .ef-hero {
        min-height: 520px;
        align-items: flex-start;
        border-radius: 0 0 28px 28px;
        background-position: 70% center;
    }

    .ef-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(3, 18, 50, 0.28) 0%,
            rgba(3, 18, 50, 0.88) 72%,
            rgba(3, 18, 50, 0.98) 100%
        );
    }

    .ef-hero-container {
        z-index: 3;
    }

    .ef-hero-content {
        max-width: 100%;
        padding: 42px 0 48px;
    }

    .ef-hero-badge {
        min-height: 31px;
        padding-left: 11px;
padding-right: 11px;
        margin-bottom: 17px;
        font-size: 11px;
    }

    .ef-hero-title {
        max-width: 320px;
        font-size: 39px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .ef-hero-description {
        max-width: 330px;
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.65;
    }
}
@media (max-width: 600px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}
/* ======================================================
   HERO LIVE CARDS
====================================================== */

.ef-hero-live-cards{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    width:260px;
    display:grid;
    gap:15px;
}

.ef-live-card{
    background:rgba(8,30,75,.75);
    backdrop-filter:blur(14px);
    border-radius:18px;
    padding:18px;
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 18px 45px rgba(0,0,0,.25);
    color:#fff;
}

.ef-live-card small{
    display:block;
    color:rgba(255,255,255,.7);
}

.ef-live-card strong{
    display:block;
    margin-top:5px;
    font-size:28px;
}

.ef-live-card p{
    margin-top:5px;
    color:rgba(255,255,255,.65);
    font-size:13px;
}

.ef-live-dot{
    position:absolute;
    right:18px;
    top:18px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#18d66c;
}

.ef-live-icon{
    position:absolute;
    right:18px;
    top:15px;
    color:#7fc6ff;
    font-size:20px;
}
/* ======================================================
   HERO STATISTICS BAR
====================================================== */

.ef-hero-stats{
    background:#ffffff;
    border-bottom:1px solid #e8edf5;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.ef-stats-grid{
    min-height:96px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    align-items:center;
}

.ef-stat-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:64px;
    padding:0 14px;
    border-right:1px solid #e8edf5;
}

.ef-stat-item:last-child{
    border-right:0;
}

.ef-stat-item > span{
    color:#155eef;
    font-size:24px;
}

.ef-stat-item strong,
.ef-stat-item small{
    display:block;
}

.ef-stat-item strong{
    color:#102a56;
    font-size:18px;
}

.ef-stat-item small{
    color:#667085;
    font-size:12px;
}
/* ======================================================
   HERO MOBILE RESPONSIVE
====================================================== */

@media (max-width: 1100px){

    .ef-hero-live-cards{
        display:none;
    }

    .ef-hero-content{
        max-width:760px;
    }

    .ef-stats-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width: 700px){

    .ef-search-form{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
    }

    .ef-country-select,
    .ef-search-button{
        width:100%;
    }

    .ef-search-tabs{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:7px;
    }

    .ef-search-tab{
        padding:9px 6px;
        font-size:11px;
    }

   

    .ef-popular-searches{
        display:flex;
        gap:8px;
        overflow-x:auto;
        white-space:nowrap;
        padding-bottom:4px;
        font-size:12px;
    }

    .ef-popular-searches a{
        margin-left:0;
    }

   

    .ef-btn{
        padding:13px 12px;
        text-align:center;
        font-size:13px;
    }

    .ef-stats-grid{
        grid-template-columns:repeat(2,1fr);
        padding:10px 0;
    }

    .ef-stat-item{
        justify-content:flex-start;
        border-right:0;
        border-bottom:1px solid #eef2f7;
    }

    .ef-stat-item:last-child{
        grid-column:1 / -1;
        border-bottom:0;
    }
}
/* ======================================================
   LIVE SHIPMENTS MINI GRAPH
====================================================== */

.ef-live-card-shipments {
    padding: 16px;
}

.ef-live-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.ef-mini-chart {
    height: 58px;
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.ef-mini-chart span {
    flex: 1;
    min-width: 5px;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(
        180deg,
        #5ca7ff 0%,
        #1769ff 100%
    );
    box-shadow: 0 0 12px rgba(62, 143, 255, 0.3);
    animation: efChartMove 2.4s ease-in-out infinite alternate;
}

.ef-mini-chart span:nth-child(2n) {
    animation-delay: 0.15s;
}

.ef-mini-chart span:nth-child(3n) {
    animation-delay: 0.3s;
}

@keyframes efChartMove {
    from {
        transform: scaleY(0.92);
        opacity: 0.75;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (max-width: 700px) {

    .ef-hero-search {
        padding: 13px;
        border-radius: 16px;
    }

    .ef-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

}

/* ===== Compact Right Cards ===== */

.ef-hero-live-cards{
    width:265px;
    gap:10px;
}

.ef-live-card{
    min-height:108px;
    padding:14px 16px;
    border-radius:14px;
}

.ef-live-card strong{
    font-size:24px;
}

.ef-live-card small{
    font-size:12px;
}

.ef-live-card p{
    margin-top:2px;
    font-size:11px;
}

.ef-mini-chart{
    height:34px;
    margin-top:7px;
    gap:4px;
}

/* ======================================================
   PREMIUM HERO LIVE CARDS
====================================================== */

.ef-hero-live-cards {
    width: 285px;
    gap: 12px;
}

.ef-live-card {
    position: relative;
    min-height: auto;
    padding: 15px 16px;
    overflow: hidden;
    border: 1px solid rgba(134, 180, 255, .22);
    border-radius: 16px;
    background: rgba(7, 35, 86, .84);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
    backdrop-filter: blur(14px);
}

.ef-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #d7e6ff;
    font-size: 13px;
    font-weight: 700;
}

.ef-live-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #38e58c;
    font-size: 11px;
}

.ef-live-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25dd7d;
    box-shadow: 0 0 0 5px rgba(37, 221, 125, .12);
}

.ef-card-body {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: end;
    gap: 10px;
    margin-top: 10px;
}

.ef-card-body strong,
.ef-country-card-body strong,
.ef-company-content strong {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.ef-card-body p,
.ef-country-card-body p,
.ef-company-content p {
    margin: 7px 0 0;
    color: rgba(220, 233, 255, .72);
    font-size: 11px;
}

/* Live line graph */

.ef-line-chart {
    width: 100%;
    height: 64px;
    overflow: visible;
}

.ef-chart-area {
    fill: url(#chartArea);
}

.ef-chart-line {
    fill: none;
    stroke: #4d9cff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(77, 156, 255, .55));
}

.ef-chart-point {
    fill: #7bc3ff;
    filter: drop-shadow(0 0 7px rgba(123, 195, 255, .85));
}

/* Countries world map */

.ef-small-globe {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #62c8ff;
    stroke-width: 1.7;
}

.ef-country-card-body {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.ef-world-map {
    width: 100%;
    height: 84px;
}

.ef-map-shape path {
    fill: rgba(73, 155, 255, 0.22);
    stroke: #5ba8ff;
    stroke-width: 1.4;
}

.ef-map-pins circle {
    fill: #7ed0ff;
    stroke: #d8f3ff;
    stroke-width: 1;
    filter: drop-shadow(0 0 5px rgba(118, 199, 255, 0.95));
}

.ef-map-pins circle {
    fill: #76c7ff;
    filter: drop-shadow(0 0 5px rgba(118, 199, 255, .9));
}

/* Verified companies */

.ef-live-card-companies {
    display: grid;
    grid-template-columns: 62px 1fr 28px;
    align-items: center;
    gap: 12px;
}

.ef-company-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(180, 105, 255, .5);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(159, 77, 255, .28),
        rgba(86, 33, 163, .16)
    );
    box-shadow: 0 0 22px rgba(142, 74, 255, .18);
}

.ef-company-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #c183ff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ef-company-content span {
    display: block;
    margin-bottom: 7px;
    color: #d7e6ff;
    font-size: 13px;
    font-weight: 700;
}

.ef-verified-shield {
    width: 28px;
    height: 28px;
    fill: rgba(176, 97, 255, .18);
    stroke: #c07cff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Mobile */

@media (max-width: 768px) {

    .ef-hero {
        background-position: 72% center;
    }

    .ef-hero-live-cards {
        position: static;
        width: 100%;
        margin-top: 16px;
        display: grid;
        gap: 10px;
        transform: none;
    }

    .ef-live-card {
        width: 100%;
        min-height: auto;
        padding: 13px 14px;
        border-radius: 14px;
        box-sizing: border-box;
    }

    .ef-card-body {
        grid-template-columns: 88px 1fr;
    }

    .ef-line-chart {
        height: 52px;
    }

    .ef-country-card-body {
        grid-template-columns: 78px 1fr;
    }

    .ef-world-map-img {
        max-height: 76px;
        object-fit: contain;
    }

    .ef-live-card-companies {
        grid-template-columns: 54px 1fr 24px;
    }

    .ef-company-icon {
        width: 54px;
        height: 54px;
    }

    .ef-company-icon svg {
        width: 34px;
        height: 34px;
    }
}

/* ===========================
   HERO MOBILE FIX
=========================== */

@media (max-width:768px){

.ef-hero{
    min-height:auto;
    padding:36px 0 28px;
    background-position:72% center;
}

.ef-hero-content{
    max-width:100%;
    padding:0;
}

.ef-hero-badge{
    display:inline-flex;
    padding:8px 16px;
    border-radius:999px;
    font-size:12px;
    line-height:1;
    white-space:nowrap;
}

.ef-hero-title{
    max-width:100%;
    font-size:46px;
    line-height:1.08;
    letter-spacing:-1px;
    margin-top:18px;
}

.ef-hero-description{
    max-width:100%;
    font-size:16px;
    line-height:1.65;
}

.ef-hero-search{
    width:100%;
    margin-top:26px;
    padding:16px;
}

.ef-search-tabs{
    display:flex;
    gap:10px;
    overflow-x:auto;
}

.ef-search-tab{
    flex:0 0 auto;
    padding:12px 18px;
    border-radius:30px;
}

.ef-search-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.ef-search-input-wrap,
.ef-country-select,
.ef-search-button{
    width:100%;
}

.ef-search-button{
    height:54px;
}

.ef-popular-searches{
    font-size:14px;
    line-height:1.8;
}

.ef-hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
}

.ef-btn{
    width:100%;
    text-align:center;
}

}

@media (max-width: 768px) {
    .ef-hero-content {
        width: 100% !important;
        max-width: 100% !important;
    }
}


/* =========================================
   PREMIUM COMPACT MOBILE HERO
========================================= */

/* =========================================
   FINAL PREMIUM MOBILE HERO
========================================= */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .ef-hero {
        min-height: auto;
        padding: 0;
        border-radius: 0 0 22px 22px;
        background-position: 68% center;
    }

    .ef-hero-container,
    .ef-hero .container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 28px 16px 24px !important;
        box-sizing: border-box;
    }

    .ef-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .ef-hero-badge {
        min-height: 28px;
        max-width: 100%;
        padding: 6px 11px;
        margin: 0 0 18px;
        font-size: 10px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .ef-hero-title {
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .ef-hero-title span {
        margin-top: 4px;
    }

    .ef-hero-description {
        width: 100%;
        max-width: 100%;
        margin: 15px 0 0;
        font-size: 14px;
        line-height: 1.55;
    }

    .ef-hero-search {
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0;
        padding: 12px;
        border-radius: 15px;
        box-sizing: border-box;
    }

    .ef-search-tabs {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 6px;
        margin-bottom: 10px;
        overflow: visible;
    }

    .ef-search-tab {
        width: 100%;
        min-width: 0;
        padding: 10px 4px;
        border-radius: 10px;
        font-size: 10.5px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .ef-search-form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .ef-search-input-wrap,
    .ef-country-select,
    .ef-search-button {
        width: 100%;
        box-sizing: border-box;
    }

    .ef-search-input-wrap {
        padding: 0 12px;
        border-radius: 10px;
    }

    .ef-search-input-wrap input,
    .ef-country-select,
    .ef-search-button {
        height: 46px;
        font-size: 14px;
    }

    .ef-country-select,
    .ef-search-button {
        border-radius: 10px;
    }

    .ef-popular-searches {
        width: 100%;
        margin-top: 12px;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 12px;
        scrollbar-width: none;
    }

    .ef-popular-searches::-webkit-scrollbar {
        display: none;
    }

    .ef-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 16px;
    }

    .ef-btn {
        width: 100%;
        padding: 12px 7px;
        border-radius: 10px;
        font-size: 12px;
        text-align: center;
        box-sizing: border-box;
    }

    .ef-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 8px;
    }

    .ef-stat-item {
        min-height: 68px;
        padding: 7px 5px;
        gap: 8px;
    }

    .ef-stat-item > span {
        font-size: 18px;
    }

    .ef-stat-item strong {
        font-size: 15px;
    }

    .ef-stat-item small {
        font-size: 10px;
    }
}

/* =========================================
   MOBILE HERO BACKGROUND FIX
========================================= */

@media (max-width: 768px) {

    .ef-hero {
        background:
            linear-gradient(
                180deg,
                rgba(3, 23, 62, 0.78) 0%,
                rgba(3, 24, 66, 0.72) 42%,
                rgba(2, 18, 49, 0.90) 100%
            ),
            url("../images/home/hero/global-trade-hero.png")
            61% center / auto 100% no-repeat;

        background-color: #061f50;
    }

    .ef-hero-overlay {
        background:
            radial-gradient(
                circle at 72% 28%,
                rgba(63, 135, 255, 0.16),
                transparent 36%
            );
    }

    .ef-hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(2, 18, 50, 0.10) 0%,
                rgba(2, 18, 50, 0.18) 48%,
                rgba(2, 18, 50, 0.60) 100%
            );
    }
}

@media (max-width: 768px) {
    .ef-hero-title {
        font-size: 31px;
        line-height: 1.08;
        letter-spacing: -0.6px;
    }

    .ef-hero-description {
        font-size: 13px;
        line-height: 1.5;
    }
}
/* ======================================================
   PREMIUM RESPONSIVE HEADER
====================================================== */

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
}

.mobile-menu-toggle,
.mobile-menu-close,
.mobile-menu-header,
.mobile-menu-overlay {
    display: none;
}

/* Mobile Header */

@media (max-width: 860px) {

    .navbar {
        min-height: 64px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo img {
        width: 142px;
        max-height: 42px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        margin-left: auto;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid #dce4f2;
        border-radius: 11px;
        background: #ffffff;
        cursor: pointer;
        z-index: 1202;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        border-radius: 10px;
        background: #17365f;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1201;
        width: min(88%, 360px);
        height: 100%;
        padding: 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 18px;
        overflow-y: auto;
        background: #ffffff;
        box-shadow: -18px 0 45px rgba(15, 23, 42, 0.18);
        transition: right 0.3s ease;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 14px;
        border-bottom: 1px solid #e8edf5;
    }

    .mobile-menu-header strong {
        color: #102a56;
        font-size: 18px;
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;
        display: inline-grid;
        place-items: center;
        border: 0;
        border-radius: 10px;
        background: #eef4ff;
        color: #155eef;
        font-size: 27px;
        cursor: pointer;
    }

    .menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        width: 100%;
        min-height: 48px;
        padding: 0 12px;
        display: flex;
        align-items: center;
        border-radius: 10px;
        color: #243b64;
        font-size: 14px;
        font-weight: 700;
    }

    .menu a::after {
        display: none;
    }

    .menu a:hover {
        background: #eef4ff;
        color: #155eef;
    }

    .header-right {
        width: 100%;
        margin-top: auto;
        padding-top: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        border-top: 1px solid #e8edf5;
    }

    .header-right a {
        min-height: 44px;
        width: 100%;
        padding: 0 10px;
        border-radius: 10px;
        font-size: 13px;
    }

    .header-language {
        border: 1px solid #d7e1f0;
    }

    .header-cta {
        grid-column: 1 / -1;
        color: #ffffff !important;
        background: linear-gradient(135deg, #155eef, #334bd8);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: block;
        visibility: hidden;
        opacity: 0;
        background: rgba(5, 17, 40, 0.48);
        backdrop-filter: blur(3px);
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    body.menu-open {
        overflow: hidden;
    }
}
@media (max-width: 860px) {

    .mobile-menu-toggle {
        z-index: 1200;
    }

    .nav-wrapper {
        z-index: 1300;
    }

    .mobile-menu-header {
        position: sticky;
        top: 0;
        z-index: 1302;
        background: #ffffff;
    }

    .mobile-menu-close {
        position: relative;
        z-index: 1303;
    }
}

@media (max-width: 860px) {

    .nav-wrapper {
        top: 64px;
        height: calc(100% - 64px);
        width: min(88%, 340px);
        border-radius: 18px 0 0 0;
    }

    .mobile-menu-overlay {
        top: 64px;
    }

    .mobile-menu-header {
        position: relative;
        top: auto;
        padding-top: 0;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 1400;
    }
}

/* ===== FINAL MOBILE MENU LAYER FIX ===== */

@media (max-width: 860px) {

    #main-header {
        position: relative;
        z-index: 5000;
    }

    .navbar {
        position: relative;
        z-index: 5002;
        background: #ffffff;
    }

    .nav-wrapper {
        position: fixed !important;
        top: 64px !important;
        right: -100% !important;
        width: min(88%, 340px) !important;
        height: calc(100vh - 64px) !important;
        z-index: 5004 !important;
        padding: 18px !important;
        border-radius: 18px 0 0 0;
        background: #ffffff;
        overflow-y: auto;
        transition: right 0.3s ease;
    }

    .nav-wrapper.active {
        right: 0 !important;
    }

    .mobile-menu-overlay {
        position: fixed !important;
        top: 64px !important;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 5003 !important;
    }

    .mobile-menu-header {
        position: relative !important;
        top: auto !important;
        z-index: 1;
        background: #ffffff;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 5005;
    }
}

@media (max-width: 860px) {

    .mobile-menu-header {
        padding-bottom: 10px;
        margin-bottom: 4px;
    }

    .menu {
        gap: 2px;
    }

    .menu a {
        min-height: 42px;
        padding: 0 10px;
        font-size: 14px;
    }

    .header-right {
        margin-top: 8px;
        padding-top: 12px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .header-language,
    .header-login,
    .header-cta {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-cta {
        grid-column: auto;
    }
}

@media (max-width: 860px) {

    .nav-wrapper {
        gap: 8px !important;
    }

    .mobile-menu-header {
        padding-bottom: 8px !important;
        margin-bottom: 0 !important;
    }

    .menu {
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .menu li {
        margin: 0 !important;
        padding: 0 !important;
    }

    .menu a {
        min-height: 40px !important;
        padding: 0 10px !important;
        margin: 0 !important;
        font-size: 14px !important;
    }

    .header-right {
        margin-top: 6px !important;
        padding-top: 10px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .header-language {
        display: none !important;
    }

    .header-login,
    .header-cta {
        width: 100% !important;
        min-height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        grid-column: auto !important;
    }

    .header-login {
        border: 1px solid #cfdaf0 !important;
        border-radius: 10px !important;
    }

    .header-cta {
        color: #ffffff !important;
        background: #155eef !important;
        border-radius: 10px !important;
    }
}

@media (max-width: 860px) {

    .nav-wrapper {
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    .mobile-menu-header {
        flex: 0 0 auto !important;
        margin: 0 0 6px !important;
        padding: 0 0 10px !important;
    }

    .menu {
        flex: 0 0 auto !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .menu li {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .menu li a {
        min-height: 40px !important;
        padding: 0 10px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .header-right {
        flex: 0 0 auto !important;
        margin: 8px 0 0 !important;
        padding: 10px 0 0 !important;
    }
}

/* ================================================================
   HOMEPAGE — OUR BUSINESS
================================================================ */
.ef-business {
    position: relative;
    padding: 92px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(21, 94, 239, .08), transparent 24%),
        radial-gradient(circle at 92% 88%, rgba(108, 56, 232, .08), transparent 26%),
        #f8faff;
}

.ef-section-heading {
    width: min(760px, 100%);
    margin: 0 auto 46px;
    text-align: center;
}

.ef-section-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 14px;
    border: 1px solid #cbdafe;
    border-radius: 999px;
    color: #155eef;
    background: #eef4ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ef-section-heading h2 {
    margin: 0;
    color: #0b1f4b;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.14;
    letter-spacing: -.035em;
}

.ef-section-heading p {
    margin: 16px auto 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}

.ef-business-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ef-business-card {
    position: relative;
    min-height: 500px;
    padding: 34px 32px 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e4eaf6;
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 45px rgba(16, 24, 40, .08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.ef-business-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--card-accent);
}

.ef-business-card:hover {
    transform: translateY(-8px);
    border-color: #cfdafe;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .14);
}

.ef-business-card--shipment { --card-accent: linear-gradient(90deg, #155eef, #39a0ff); --card-soft: #eaf2ff; --card-color: #155eef; }
.ef-business-card--marketplace { --card-accent: linear-gradient(90deg, #079455, #20c997); --card-soft: #eafbf4; --card-color: #087f5b; }
.ef-business-card--marketing { --card-accent: linear-gradient(90deg, #6c38e8, #b35cff); --card-soft: #f3edff; --card-color: #6938cc; }

.ef-business-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--card-color);
    background: var(--card-soft);
}

.ef-business-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ef-business-label {
    color: var(--card-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ef-business-card h3 {
    margin: 7px 0 12px;
    color: #101828;
    font-size: 27px;
    line-height: 1.25;
}

.ef-business-card > p {
    margin: 0 0 20px;
    color: #667085;
    line-height: 1.7;
}

.ef-business-card ul {
    margin: 0 0 26px;
    display: grid;
    gap: 11px;
}

.ef-business-card li {
    position: relative;
    padding-left: 27px;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.ef-business-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--card-color);
    background: var(--card-soft);
    font-size: 11px;
    font-weight: 900;
}

.ef-business-link {
    margin-top: auto;
    min-height: 48px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    color: var(--card-color);
    background: var(--card-soft);
    font-size: 14px;
    font-weight: 800;
    transition: color .25s ease, background .25s ease;
}

.ef-business-link span { font-size: 21px; transition: transform .25s ease; }
.ef-business-link:hover { color: #fff; background: var(--card-color); }
.ef-business-link:hover span { transform: translateX(4px); }

@media (max-width: 980px) {
    .ef-business-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ef-business-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); justify-self: center; }
}

@media (max-width: 680px) {
    .ef-business { padding: 64px 0 70px; }
    .ef-section-heading { margin-bottom: 30px; }
    .ef-section-heading h2 { font-size: 31px; }
    .ef-section-heading p { font-size: 15px; }
    .ef-business-grid { grid-template-columns: 1fr; gap: 18px; }
    .ef-business-card,
    .ef-business-card:last-child { grid-column: auto; width: 100%; min-height: 0; padding: 28px 23px 24px; }
    .ef-business-icon { width: 58px; height: 58px; margin-bottom: 20px; }
    .ef-business-card h3 { font-size: 24px; }
}

/* ================================================================
   COMPLETE HOMEPAGE SECTIONS — REFERENCE LAYOUT
================================================================ */
.ef-home-sections{background:#fff;color:#101828}.ef-home-section{padding:22px 0}.ef-home-title{margin:0 auto 18px;display:flex;align-items:center;justify-content:center;gap:24px;color:#101b44;font-size:22px;line-height:1.25;text-align:center}.ef-home-title span{width:24px;height:2px;background:#275df5;position:relative}.ef-home-title span:first-child:after{content:"";position:absolute;right:0;top:-2px;width:5px;height:5px;border-radius:50%;background:#275df5}.ef-title-row{position:relative}.ef-title-row>a{position:absolute;right:0;top:5px;color:#164ee8;font-size:12px;font-weight:800}.ef-goal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.ef-goal-card{min-height:220px;padding:24px 18px;display:grid;grid-template-columns:58% 42%;overflow:hidden;border:1px solid #e3eaf5;border-radius:14px;box-shadow:0 8px 22px rgba(15,43,91,.08)}.goal-blue{background:linear-gradient(130deg,#f3f8ff,#eaf4ff)}.goal-green{background:linear-gradient(130deg,#f0fbf7,#e8f8f3)}.goal-purple{background:linear-gradient(130deg,#faf5ff,#f5ebff)}.ef-goal-copy{position:relative;z-index:2}.ef-goal-copy i{width:35px;height:35px;margin-bottom:10px;display:grid;place-items:center;border-radius:50%;color:#fff;background:#175ce8;font-style:normal}.goal-green .ef-goal-copy i{background:#079455}.goal-purple .ef-goal-copy i{background:#6c38e8}.ef-goal-copy h3{margin:0 0 8px;font-size:18px}.ef-goal-copy p{margin:0 0 14px;font-size:12px;line-height:1.5}.ef-goal-copy a{display:inline-flex;padding:8px 12px;border-radius:5px;color:#fff;background:#175ce8;font-size:11px;font-weight:800}.goal-green a{background:#079455}.goal-purple a{background:#6c38e8}.ef-goal-art{position:relative;display:grid;place-items:center;color:#2465ee;font-size:70px}.ef-goal-art b,.ef-goal-art em{position:absolute;font-style:normal}.ef-goal-art b{right:10px;top:12px;font-size:40px}.ef-goal-art em{bottom:3px;left:5px;color:#ff6b21;font-size:52px}.ef-intelligence{background:#fbfcff}.ef-intel-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}.ef-mini-panel,.ef-data-box{border:1px solid #dee6f2;border-radius:12px;background:#fff;box-shadow:0 5px 14px rgba(16,24,40,.05)}.ef-mini-panel{min-height:180px;padding:14px}.ef-mini-panel h3{margin:0 0 12px;color:#155eef;font-size:12px}.ef-mini-panel ul{display:grid;gap:9px}.ef-mini-panel li{padding-bottom:6px;display:flex;justify-content:space-between;border-bottom:1px solid #edf0f5;font-size:11px}.ef-mini-panel li b{color:#079455;font-size:10px}.ef-growth strong,.ef-activity strong{display:block;color:#079455;font-size:29px}.ef-activity strong{color:#6c38e8}.ef-mini-panel small{display:block;color:#667085;font-size:10px}.ef-growth svg{width:100%;margin-top:18px;fill:none;stroke:#079455;stroke-width:2}.ef-bars{height:55px;margin-top:18px;display:flex;align-items:flex-end;gap:4px}.ef-bars i{width:10%;height:35%;background:#b456ff}.ef-bars i:nth-child(2n){height:65%}.ef-bars i:nth-child(3n){height:90%}.ef-ai-assistant{min-height:115px;margin-top:10px;margin-bottom:10px;padding:20px 26px;display:grid;grid-template-columns:34% 42% 20%;gap:2%;align-items:center;border-radius:10px;color:#fff;background:linear-gradient(100deg,#071c4f,#17247c 65%,#3014d8)}.ef-ai-main{display:flex;align-items:center;gap:16px}.ef-bot{width:64px;height:64px;display:grid;place-items:center;border:4px solid #6898ff;border-radius:50%;font-size:35px}.ef-ai-main h2{margin:0;font-size:20px}.ef-ai-main h2 small{padding:3px 6px;border:1px solid #894cff;border-radius:8px;color:#d9b8ff;font-size:8px}.ef-ai-main p{margin:5px 0 0;font-size:10px;line-height:1.45}.ef-ai-tools{display:grid;grid-template-columns:1fr 1fr;gap:8px}.ef-ai-tools span{padding:8px 10px;border:1px solid rgba(255,255,255,.15);border-radius:7px;background:rgba(255,255,255,.06);font-size:10px}.ef-ai-assistant>a{padding:17px 16px;border-radius:7px;color:#fff;background:linear-gradient(90deg,#6543ff,#c218ff);font-size:13px;font-weight:800;text-align:center}.ef-industry-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:8px}.ef-industry-grid a{min-height:98px;padding:12px 5px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #e0e7f2;border-radius:10px;color:#101b44;background:#fff;font-size:10px;font-weight:800;text-align:center}.ef-industry-grid i{margin-bottom:7px;color:#155eef;font-size:30px;font-style:normal}.ef-industry-grid a:nth-child(2) i{color:#6c38e8}.ef-industry-grid a:nth-child(3) i{color:#ff6b21}.ef-industry-grid a:nth-child(4) i{color:#ff5b32}.ef-industry-grid a:nth-child(5) i{color:#123e7e}.ef-industry-grid small{display:block;font-size:9px;font-weight:600}.ef-market-row{background:#fbfcff}.ef-three-grid{display:grid;grid-template-columns:1.25fr .9fr 1.25fr;gap:14px}.ef-data-box{padding:14px}.ef-box-head{margin-bottom:12px;display:flex;align-items:center;justify-content:space-between}.ef-box-head h3{margin:0;font-size:13px}.ef-box-head a{color:#155eef;font-size:10px;font-weight:800}.ef-company-grid,.ef-small-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.ef-company-grid>div,.ef-small-cards>div{min-width:0;padding:10px 8px;display:flex;flex-direction:column;gap:7px;border:1px solid #e5eaf2;border-radius:8px}.ef-company-grid em,.ef-small-cards em{align-self:flex-start;padding:2px 5px;border-radius:6px;color:#fff;background:#079455;font-size:7px;font-style:normal}.ef-company-grid>div:first-child em{background:#f79009}.ef-company-grid h4{margin:0;font-size:10px}.ef-company-grid small,.ef-company-grid b,.ef-small-cards small,.ef-small-cards span{font-size:8px}.ef-company-grid b{color:#f79009}.ef-company-grid a{padding:5px;border:1px solid #bfd0ff;border-radius:5px;color:#155eef;font-size:8px;font-weight:800;text-align:center}.ef-growth-cta{padding:22px 20px;display:flex;flex-direction:column;justify-content:center;border-radius:10px;color:#fff;background:linear-gradient(130deg,#143cb1,#080e61)}.ef-growth-cta h2{margin:0 0 8px;font-size:22px;line-height:1.15}.ef-growth-cta p{margin:0 0 13px;font-size:10px}.ef-growth-cta div{display:flex;gap:8px}.ef-growth-cta a{padding:8px 10px;border:1px solid rgba(255,255,255,.4);border-radius:5px;color:#fff;font-size:9px;font-weight:800}.ef-growth-cta a:first-child{color:#155eef;background:#fff}.ef-growth-cta small{margin-top:10px;font-size:8px}.ef-country-list{display:grid;gap:9px}.ef-country-list li{display:grid;grid-template-columns:25px 1fr 90px 55px;align-items:center;font-size:10px}.ef-country-list em{color:#079455;font-style:normal;text-align:right}.ef-latest-grid{grid-template-columns:repeat(3,1fr)}.ef-small-cards b{font-size:9px}.ef-blogs .ef-small-cards i{height:48px;margin:-10px -8px 0;display:block;border-radius:7px 7px 0 0;background:linear-gradient(135deg,#ffb15c,#155eef)}.ef-blogs .ef-small-cards>div:nth-child(2) i{background:linear-gradient(135deg,#6b3d1f,#ff9d37)}.ef-blogs .ef-small-cards>div:nth-child(3) i{background:linear-gradient(135deg,#15a7cf,#e7f5ff)}.ef-testimonials{background:#fbfcff}.ef-testimonial-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.ef-testimonial-grid article{padding:16px;border:1px solid #e0e7f2;border-radius:10px;background:#fff}.ef-testimonial-grid p{min-height:62px;margin:0 0 12px;font-size:10px}.ef-testimonial-grid b,.ef-testimonial-grid small{display:block;font-size:9px}.ef-testimonial-grid small{color:#667085}.ef-testimonial-grid em{color:#f79009;font-style:normal;font-size:11px}.ef-bottom-grid{display:grid;grid-template-columns:32% 68%;gap:18px}.ef-faq{padding:14px;border:1px solid #e0e7f2;border-radius:10px}.ef-faq details{padding:9px 0;border-top:1px solid #e8ecf3;font-size:10px}.ef-faq summary{font-weight:700;cursor:pointer}.ef-faq p{margin:7px 0}.ef-final-cta{min-height:145px;padding:28px 30px;border-radius:10px;color:#fff;background:radial-gradient(circle at 90% 40%,rgba(92,121,255,.9),transparent 26%),linear-gradient(120deg,#1435a8,#07165a)}.ef-final-cta h2{margin:0 0 5px;font-size:20px}.ef-final-cta p{margin:0 0 14px;font-size:11px}.ef-final-cta a{display:inline-flex;margin-right:8px;padding:8px 12px;border:1px solid #fff;border-radius:5px;color:#fff;font-size:10px;font-weight:800}.ef-final-cta a:first-child{color:#155eef;background:#fff}.ef-floating-actions{position:fixed;right:0;bottom:50px;z-index:6000;display:grid;gap:7px}.ef-floating-actions a{min-width:105px;padding:10px 12px;border-radius:8px 0 0 8px;color:#fff;font-size:11px;font-weight:800;box-shadow:0 5px 16px rgba(0,0,0,.16)}.ef-floating-actions .wa{background:#08a84e}.ef-floating-actions .call{background:#155eef}.ef-floating-actions .demo{background:#6c38e8}

@media(max-width:1050px){.ef-intel-grid{grid-template-columns:repeat(3,1fr)}.ef-industry-grid{grid-template-columns:repeat(4,1fr)}.ef-three-grid{grid-template-columns:1fr 1fr}.ef-three-grid>*:last-child{grid-column:1/-1}.ef-latest-grid>*:last-child{grid-column:auto}.ef-latest-grid{grid-template-columns:1fr}.ef-ai-assistant{grid-template-columns:1fr 1.4fr}.ef-ai-assistant>a{grid-column:1/-1}}
@media(max-width:760px){.ef-home-section{padding:18px 0}.ef-home-title{gap:10px;font-size:19px}.ef-title-row>a{position:static;display:block;margin:-10px 0 12px;text-align:right}.ef-goal-grid,.ef-intel-grid,.ef-three-grid,.ef-testimonial-grid,.ef-bottom-grid{grid-template-columns:1fr}.ef-goal-card{min-height:190px}.ef-ai-assistant{margin-left:20px;margin-right:20px;padding:20px;grid-template-columns:1fr}.ef-ai-tools{grid-template-columns:1fr}.ef-ai-assistant>a{grid-column:auto}.ef-industry-grid{grid-template-columns:repeat(2,1fr)}.ef-three-grid>*:last-child{grid-column:auto}.ef-company-grid,.ef-small-cards{grid-template-columns:1fr}.ef-company-grid>div,.ef-small-cards>div{min-height:92px}.ef-country-list li{grid-template-columns:25px 1fr 75px 48px}.ef-floating-actions a{min-width:52px;padding:10px 7px;font-size:0}.ef-floating-actions a:first-letter{font-size:15px}.ef-bottom-grid{display:grid}.ef-final-cta{padding:24px 20px}.ef-final-cta h2{font-size:18px}}

/* Reference footer */
#main-footer{padding:30px 0 24px;border-top:1px solid #e6ebf3;color:#344054;background:#fff}.ef-footer-grid{display:grid;grid-template-columns:1.7fr repeat(4,1fr) 1.1fr;gap:26px;align-items:start}.ef-footer-grid h2{margin:0 0 6px;color:#101b44;font-size:18px}.ef-footer-grid h3{margin:0 0 9px;color:#101828;font-size:11px}.ef-footer-grid p,.ef-footer-grid a,.ef-footer-copy{display:block;margin:0 0 5px;color:#667085;font-size:9px}.ef-footer-brand div{color:#155eef;font-size:13px;font-weight:800}.ef-footer-copy{align-self:end;text-align:right}@media(max-width:760px){.ef-footer-grid{grid-template-columns:1fr 1fr}.ef-footer-brand,.ef-footer-copy{grid-column:1/-1}.ef-footer-copy{text-align:left}}

/* Generated section art */
.ef-goal-art{min-height:175px;background-image:url('../images/home/sections/business-goals-sprite.webp');background-repeat:no-repeat;background-size:300% 100%;background-position-y:center}.ef-goal-art--shipment{background-position-x:0}.ef-goal-art--b2b{background-position-x:50%}.ef-goal-art--marketing{background-position-x:100%}.ef-blogs .ef-small-cards i{background-image:url('../images/home/sections/blog-thumbnails-sprite.webp')!important;background-repeat:no-repeat!important;background-size:300% 100%!important}.ef-blogs .ef-small-cards>div:nth-child(1) i{background-position:0 center!important}.ef-blogs .ef-small-cards>div:nth-child(2) i{background-position:50% center!important}.ef-blogs .ef-small-cards>div:nth-child(3) i{background-position:100% center!important}

/* Continuous live movement */
@keyframes efScrollUp{0%,12%{transform:translateY(0)}88%,100%{transform:translateY(-50%)}}
@keyframes efSlideCards{0%,12%{transform:translateX(0)}88%,100%{transform:translateX(-50%)}}
.ef-live-list>div{height:128px;overflow:hidden}.ef-live-list ul{animation:efScrollUp 12s linear infinite}.ef-live-list.ef-delay ul{animation-delay:-4s}.ef-live-list:hover ul,.ef-slider-box:hover .ef-company-grid,.ef-country-slider:hover ul,.ef-latest-grid .ef-data-box:hover .ef-small-cards,.ef-testimonial-grid:hover{animation-play-state:paused}.ef-slider-box,.ef-country-slider{overflow:hidden}.ef-slider-box .ef-company-grid{width:200%;grid-template-columns:repeat(6,1fr);animation:efSlideCards 16s linear infinite}.ef-country-slider>div:last-child{height:135px;overflow:hidden}.ef-country-slider ul{animation:efScrollUp 14s linear infinite}.ef-latest-grid .ef-data-box{overflow:hidden}.ef-latest-grid .ef-small-cards{width:150%;grid-template-columns:repeat(3,1fr);animation:efSlideCards 14s ease-in-out infinite alternate}.ef-testimonials .container{overflow:hidden}.ef-testimonial-grid{width:140%;grid-template-columns:repeat(4,1fr);animation:efSlideCards 18s ease-in-out infinite alternate}

/* Expanded six-column shared footer */
.ef-footer-grid{grid-template-columns:1.55fr repeat(5,1fr);gap:24px}.ef-footer-brand p{max-width:260px;line-height:1.65}.ef-footer-grid a{transition:color .2s ease,transform .2s ease}.ef-footer-grid a:hover{color:#155eef;transform:translateX(2px)}.ef-footer-bottom{margin-top:24px;padding-top:16px;display:flex;justify-content:space-between;border-top:1px solid #e7ebf2;color:#667085;font-size:9px}
@media(max-width:900px){.ef-footer-grid{grid-template-columns:repeat(3,1fr)}.ef-footer-brand{grid-column:1/-1}.ef-slider-box .ef-company-grid{width:300%}.ef-testimonial-grid{width:220%}}
@media(max-width:760px){.ef-goal-card{grid-template-columns:56% 44%;padding-right:8px}.ef-goal-art{min-height:150px}.ef-footer-grid{grid-template-columns:1fr 1fr}.ef-footer-bottom{gap:8px;flex-direction:column}.ef-latest-grid .ef-small-cards{width:240%;grid-template-columns:repeat(3,1fr)}.ef-testimonial-grid{width:360%}}

/* Readability upgrade — larger homepage typography */
.ef-home-title{font-size:26px}.ef-title-row>a{font-size:14px}.ef-goal-copy h3{font-size:21px}.ef-goal-copy p{font-size:14px;line-height:1.6}.ef-goal-copy a{padding:10px 14px;font-size:13px}.ef-mini-panel h3{font-size:14px}.ef-mini-panel li{font-size:13px}.ef-mini-panel li b{font-size:12px}.ef-mini-panel small{font-size:12px}.ef-ai-main h2{font-size:23px}.ef-ai-main p{font-size:13px}.ef-ai-tools span{font-size:12px}.ef-ai-assistant>a{font-size:14px}.ef-industry-grid a{font-size:13px}.ef-industry-grid small{font-size:11px}.ef-box-head h3{font-size:16px}.ef-box-head a{font-size:12px}.ef-company-grid h4{font-size:13px}.ef-company-grid small,.ef-company-grid b,.ef-small-cards small,.ef-small-cards span{font-size:11px}.ef-company-grid em,.ef-small-cards em{font-size:10px}.ef-company-grid a{font-size:11px}.ef-growth-cta p{font-size:13px}.ef-growth-cta a{font-size:12px}.ef-growth-cta small{font-size:10px}.ef-country-list li{font-size:12px}.ef-small-cards b{font-size:12px}.ef-testimonial-grid p{font-size:13px;line-height:1.55}.ef-testimonial-grid b,.ef-testimonial-grid small{font-size:12px}.ef-testimonial-grid em{font-size:13px}.ef-faq details{font-size:13px}.ef-final-cta p{font-size:13px}.ef-final-cta a{font-size:12px}.ef-footer-grid h3{font-size:14px}.ef-footer-grid p,.ef-footer-grid a,.ef-footer-copy{font-size:12px}.ef-footer-bottom{font-size:11px}
@media(max-width:760px){.ef-home-title{font-size:22px}.ef-goal-copy h3{font-size:18px}.ef-goal-copy p{font-size:13px}.ef-mini-panel h3{font-size:15px}.ef-mini-panel li{font-size:13px}.ef-box-head h3{font-size:15px}.ef-footer-grid h3{font-size:15px}.ef-footer-grid p,.ef-footer-grid a{font-size:13px}}

/* Final visual and typography correction */
.ef-goal-card{position:relative;display:block;min-height:250px;padding:26px 20px;isolation:isolate}.ef-goal-copy{width:62%;position:relative;z-index:2}.ef-goal-art{position:absolute;right:0;bottom:0;width:48%;height:94%;min-height:0;background-size:contain;background-repeat:no-repeat;background-position:right bottom;z-index:1;pointer-events:none}.ef-goal-art--shipment{background-image:url('../images/home/sections/shipment.webp')}.ef-goal-art--b2b{background-image:url('../images/home/sections/b2b.webp')}.ef-goal-art--marketing{background-image:url('../images/home/sections/digital-marketing.webp')}.ef-goal-copy a{max-width:100%;white-space:nowrap}.ef-goal-copy h3{font-size:22px}.ef-goal-copy p{font-size:16px;line-height:1.6}.ef-goal-copy a{font-size:14px}
.ef-blogs .ef-small-cards i{height:90px;background-size:cover!important;background-position:center!important}.ef-blogs .ef-small-cards>div:nth-child(1) i{background-image:url('../images/home/sections/blog-rice.webp')!important}.ef-blogs .ef-small-cards>div:nth-child(2) i{background-image:url('../images/home/sections/blog-buyers.webp')!important}.ef-blogs .ef-small-cards>div:nth-child(3) i{background-image:url('../images/home/sections/blog-pharma.webp')!important}
.ef-small-cards b{font-size:16px;line-height:1.45}.ef-small-cards small,.ef-small-cards span{font-size:15px;line-height:1.45}.ef-small-cards em{font-size:12px}.ef-company-grid h4{font-size:16px}.ef-company-grid small,.ef-company-grid b{font-size:14px}.ef-country-list li{font-size:15px}.ef-mini-panel li{font-size:15px}.ef-mini-panel li b{font-size:14px}.ef-testimonial-grid p{font-size:16px}.ef-testimonial-grid b,.ef-testimonial-grid small{font-size:14px}.ef-faq details{font-size:15px}.ef-growth-cta p{font-size:15px}.ef-growth-cta a{font-size:14px}.ef-final-cta p{font-size:15px}.ef-final-cta a{font-size:14px}.ef-footer-grid h3{font-size:18px;margin-bottom:13px}.ef-footer-grid p,.ef-footer-grid a{font-size:15px;line-height:1.55;margin-bottom:7px}.ef-footer-bottom{font-size:14px}
@media(max-width:1100px){.ef-goal-copy{width:64%}.ef-goal-art{width:43%;opacity:.92}.ef-goal-copy p{font-size:15px}}
@media(max-width:760px){.ef-goal-card{min-height:285px;padding:22px 18px}.ef-goal-copy{width:68%}.ef-goal-art{width:46%;height:78%;opacity:.82}.ef-goal-copy h3{font-size:21px}.ef-goal-copy p{font-size:15px}.ef-goal-copy a{font-size:13px;padding:10px}.ef-small-cards b{font-size:17px}.ef-small-cards small,.ef-small-cards span{font-size:16px}.ef-footer-grid p,.ef-footer-grid a{font-size:16px}}

/* Mobile footer bottom-space correction */
.ef-footer-bottom{justify-content:center;text-align:center}
@media(max-width:860px){body{padding-bottom:0!important}#main-footer{margin-bottom:0!important;padding-bottom:18px!important}.ef-footer-bottom{margin-bottom:0!important;padding-bottom:0!important;justify-content:center;text-align:center}}

/* Floating action icons */
.ef-floating-actions a{display:flex;align-items:center;gap:7px}.ef-floating-actions svg{width:18px;height:18px;flex:0 0 18px;fill:currentColor}.ef-floating-actions span{display:inline}
@media(max-width:760px){.ef-floating-actions a{min-width:52px;justify-content:center;font-size:15px}.ef-floating-actions a span{display:none}.ef-floating-actions svg{width:20px;height:20px;flex-basis:20px}}

/* Mobile hero ends after CTA buttons; live cards sit on a separate surface */
@media(max-width:768px){
    .ef-hero{padding-bottom:0!important}
    .ef-hero-actions{margin-bottom:0!important;padding-bottom:24px!important}
    .ef-hero-live-cards{
        width:calc(100% + 40px)!important;
        max-width:none!important;
        margin:0 -20px!important;
        padding:24px 20px 26px!important;
        display:grid!important;
        gap:14px!important;
        background:#f7f9fd!important;
        border-top:1px solid #e2e8f2!important;
        box-shadow:0 -8px 22px rgba(16,24,40,.08)!important;
    }
    .ef-hero-live-cards .ef-live-card{margin:0!important}
}

/* Final business-goal card alignment requested */
.ef-goal-copy{width:67%}
.ef-goal-art{
    top:0;
    right:0;
    bottom:auto;
    width:32%;
    background-position:right top;
}
@media(max-width:760px){.ef-goal-copy{width:67%}.ef-goal-art{top:0;right:0;bottom:auto;width:32%;background-position:right top}}

/* Public CMS listing and detail pages */
.ef-clickable-card{cursor:pointer;transition:transform .2s ease,box-shadow .2s ease}.ef-clickable-card:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(16,24,40,.12)}
.ef-content-hero{padding:78px 0;color:#fff;background:radial-gradient(circle at 85% 30%,rgba(71,124,255,.65),transparent 25%),linear-gradient(120deg,#071735,#0d4dc7)}.ef-content-hero span{font-size:11px;font-weight:900;letter-spacing:.13em}.ef-content-hero h1{margin:8px 0 10px;font-size:44px}.ef-content-hero p{max-width:720px;margin:0;color:#d4e1fa;font-size:17px}.ef-content-hero--small{padding:55px 0}.ef-content-list,.ef-detail-page{padding:55px 0 75px;background:#f7f9fd}.ef-public-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.ef-public-card{overflow:hidden;border:1px solid #e0e7f2;border-radius:15px;background:#fff;box-shadow:0 9px 25px rgba(16,24,40,.06)}.ef-public-card>div{padding:20px}.ef-public-card img{width:100%;height:210px;object-fit:cover}.ef-public-card em,.ef-detail-body em{display:inline-flex;padding:4px 8px;border-radius:12px;color:#067647;background:#ecfdf3;font-size:11px;font-style:normal;font-weight:800}.ef-public-card h2{margin:10px 0 8px;font-size:21px}.ef-public-card p{margin:7px 0;color:#667085;font-size:14px;line-height:1.6}.ef-public-meta{margin:13px 0;display:flex;gap:8px;flex-wrap:wrap}.ef-public-meta span{padding:5px 8px;border-radius:7px;color:#155eef;background:#eef4ff;font-size:12px;font-weight:800}.ef-public-link,.ef-detail-cta{display:inline-flex;padding:9px 13px;border-radius:8px;color:#fff;background:#155eef;font-size:13px;font-weight:800}.ef-empty-state{grid-column:1/-1;padding:60px;text-align:center}.ef-detail-card{max-width:950px;margin:auto;overflow:hidden;border:1px solid #e0e7f2;border-radius:17px;background:#fff;box-shadow:0 14px 38px rgba(16,24,40,.08)}.ef-detail-image{width:100%;max-height:480px;object-fit:cover}.ef-detail-body{padding:32px}.ef-detail-body h2{font-size:32px}.ef-detail-body p{font-size:16px;line-height:1.8;color:#475467}@media(max-width:850px){.ef-public-grid{grid-template-columns:1fr 1fr}.ef-content-hero h1{font-size:34px}}@media(max-width:600px){.ef-public-grid{grid-template-columns:1fr}.ef-content-hero{padding:55px 0}.ef-content-hero h1{font-size:30px}.ef-detail-body{padding:22px}}
