* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

.aone-navbar {
    padding: 0 5%;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1050;
}

.logo img {
    height: 45px;
    width: auto;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-item-link {
    text-decoration: none;
    color: #333;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.nav-item-link:hover {
    color: #0082a4;
}

.mega-dropdown {
    height: 100%;
    display: flex;
    align-items: center;
    position: static;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    cursor: pointer;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    gap: 5px;
}

.mega-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eee;
    border-bottom: 2px solid #0082a4;
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    z-index: 1060;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: none;
    transform: translateY(10px);
}

@media (min-width: 1025px) {
    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mega-dropdown:hover .chevron {
        transform: rotate(180deg);
    }

    #resourcesMega {
        justify-content: flex-start !important;
        gap: 250px !important;
    }

    #resourcesMega .menu-col:first-child {
        padding-left: 150px !important;
        flex: 0 0 auto;
    }

    #resourcesMega .menu-col {
        flex: 0 0 auto;
    }
}

.menu-col {
    flex: 1;
    padding: 0 15px;
}

.menu-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #0082a4;
    border-left: 2px solid #0082a4;
    padding-left: 8px;
}

.menu-item-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    padding: 8px 0 !important;
    text-decoration: none;
    transition: 0.3s;
}

.menu-item-link img {
    height: 32px;
    width: 35px;
    object-fit: contain;
    flex-shrink: 0;
}

.menu-item-link span {
    font-size: 14px;
    color: #666;
}

.menu-item-link:hover span {
    color: #0082a4;
}

.icon1 {
    border-radius: 4px;
    padding: 2px;
}

.talk-expert-col p {
    font-size: 13px;
    line-height: 1.5;
    color: #777;
    margin-bottom: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.btn-meeting,
.global-btn-box {
    background: #001c3d;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
}

.btn-meeting:hover,
.global-btn-box:hover {
    background: #0082a4;
    transform: translateY(-2px);
}

.global-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.country-dropdown {
    position: absolute;
    top: 75px;
    right: 0;
    width: 180px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    padding: 10px 0;
    z-index: 1100;
}

@media (min-width: 1025px) {
    .global-wrapper:hover .country-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.country-item {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.2s;
}

.country-item:hover {
    background: #f8f9fa;
    color: #0082a4;
}

.country-item img {
    height: 20px;
    width: auto;
    border-radius: 2px;
}

.mobile-btn {
    display: none;
    cursor: pointer;
    color: #333;
    font-size: 24px;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    backdrop-filter: blur(2px);
}

@media (max-width: 1024px) {
    .nav-links {
        display: block !important;
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        padding: 70px 0 30px 0;
        z-index: 1045;
        box-shadow: -10px 0 25px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .header-actions .btn-meeting,
    .header-actions .global-wrapper {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

    .overlay.active {
        display: block;
    }

    .nav-item-link,
    .dropdown-trigger {
        width: 100%;
        padding: 15px 25px;
        border-bottom: 1px solid #f8f8f8;
        height: auto;
        justify-content: space-between;
    }

    .mega-dropdown {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .mega-menu {
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        display: none;
        padding: 15px 25px !important;
        box-shadow: none !important;
        flex-direction: column !important;
        background: #f9f9f9 !important;
        border: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        width: 100%;
    }

    .menu-col {
        padding: 10px 0;
        width: 100%;
    }

    #resourcesMega {
        gap: 0 !important;
    }

    #resourcesMega .menu-col:first-child {
        padding-left: 0 !important;
    }

    .dropdown-trigger.active-trigger .chevron {
        transform: rotate(180deg);
    }
}

/* industry css start here */

/* ===== Industries Mega Menu — Full CSS (Desktop + Mobile) ===== */

.ind-mega-menu {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* ---- Tabs Row ---- */
.ind-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    overflow-x: auto;
}

.ind-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 560;
    color: #0082a4;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.ind-tab .material-icons {
    font-size: 17px;
}

.ind-tab:hover,
.ind-tab.active {
    color: #0082a4;
    border-bottom-color: #062d60;
    background: #f8faff;
}

/* ---- Panels ---- */
.ind-panels {
    padding: 14px 24px;
}

.ind-panel {
    display: flex;
    gap: 24px;
}

.ind-col {
    flex: 1;
    min-width: 0;
}

.ind-col h4 {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #062d60;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ind-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 13.5px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
}

.ind-link .material-icons {
    font-size: 15px;
    color: #062d60;
    flex-shrink: 0;
}

.ind-link span:nth-child(2) {
    flex: 1;
}

.ind-link .ind-arrow {
    margin-left: auto;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.15s, transform 0.15s;
}

.ind-link:hover {
    color: #0082a4;
}

.ind-link:hover .ind-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.ind-link:hover .material-icons:first-child {
    color: #0082a4;
}

/* ---- Highlight Column ---- */
.ind-highlight-col {
    background: #f8faff;
    border-radius: 8px;
    padding: 12px 14px;
    flex-shrink: 0;
    width: 200px;
}

.ind-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 12.5px;
    color: #374151;
}

.ind-feature .material-icons {
    font-size: 15px;
    color: #0082a4;
    flex-shrink: 0;
}

/* ---- Bottom Strip ---- */
.ind-bottom-strip {
    background: #eef2ff;
    padding: 10px 24px;
    border-top: 1px solid #e5e7eb;
}

.ind-bottom-strip h5 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1d4ed8;
    margin-bottom: 8px;
}

.ind-services-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ind-service-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    flex: 1 1 140px;
}

.ind-service-item .material-icons {
    font-size: 17px;
    color: #2563eb;
    margin-top: 1px;
    flex-shrink: 0;
}

.ind-service-item strong {
    display: block;
    font-size: 12px;
    color: #111827;
}

.ind-service-item p {
    font-size: 10.5px;
    color: #000000;
    margin: 1px 0 0;
}

/* ================================================== */
/* ================ MOBILE VIEW ==================== */
/* ================================================== */

@media (max-width: 992px) {
    .ind-mega-menu {
        width: 100%;
        position: static;
        box-shadow: none;
    }

    .ind-tabs {
        flex-direction: column;
        overflow-x: visible;
        border-bottom: none;
    }

    .ind-tab {
        width: 100%;
        padding: 12px 16px;
        border-bottom: 1px solid #f0f1f3;
        justify-content: flex-start;
    }

    .ind-tab.active {
        background: #f8faff;
        border-bottom: 1px solid #f0f1f3;
        border-left: 3px solid #2563eb;
    }

    .ind-panels {
        padding: 12px 16px;
    }

    .ind-panel {
        flex-direction: column;
        gap: 18px;
    }

    .ind-col {
        width: 100%;
    }

    .ind-col h4 {
        font-size: 12px;
        margin-bottom: 10px;
        padding-bottom: 6px;
        border-bottom: 1px solid #f0f1f3;
    }

    .ind-link {
        padding: 9px 0;
        font-size: 14px;
    }

    .ind-link .ind-arrow {
        opacity: 1;
        color: #9ca3af;
    }

    .ind-highlight-col {
        width: 100%;
        order: -1;
    }

    .ind-bottom-strip {
        padding: 14px 16px;
    }

    .ind-services-row {
        flex-direction: column;
        gap: 12px;
    }

    .ind-service-item {
        flex: 1 1 100%;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 10px;
    }

    .ind-service-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .ind-panels {
        padding: 10px 12px;
    }

    .ind-tab {
        font-size: 12.5px;
        padding: 11px 14px;
    }

    .ind-link {
        font-size: 13px;
    }
}


/* industry section ind here */