*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ── CSS VARIABLES ── */
:root {
    --radius-lg: 12px;
    --border: #e5e5e5;
}
/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e5e5;
    padding: 0 24px;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 8px;
}

.navbar-logo {
    font-family: 'Fraunces',serif;
    font-size: 22px;
    font-weight: 500;
    color: #185FA5;
    margin-right: auto;
}

.navbar-links {
    display: flex;
    gap: 4px;
}

    .navbar-links a {
        font-size: 13px;
        font-weight: 500;
        color: #666;
        padding: 6px 10px;
        border-radius: 6px;
        transition: all .15s;
    }

        .navbar-links a:hover {
            color: #185FA5;
            background: #E6F1FB;
        }

.navbar-actions {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

.btn-ghost {
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid #d0d0d0;
    color: #1a1a1a;
    background: none;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
}

    .btn-ghost:hover {
        border-color: #185FA5;
        color: #185FA5;
    }

.btn-primary {
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 999px;
    border: none;
    color: #fff;
    background: #185FA5;
    cursor: pointer;
    transition: background .15s;
    text-decoration: none;
}

    .btn-primary:hover {
        background: #0C447C;
    }

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 20px;
    display: none;
    z-index: 300;
    min-width: 480px;
}

.dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 200px;
}

    .dropdown-col + .dropdown-col {
        border-left: 1px solid #f0f0f0;
        margin-left: 16px;
        padding-left: 16px;
    }

.dropdown-col-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text-faint);
    padding: 0 8px;
    margin-bottom: 6px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .15s;
    text-decoration: none;
}

    .dropdown-item:hover {
        background: #f5f5f5;
    }

.di-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.di-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.di-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
}

.di-sub {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

.dropdown-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.df-link {
    font-size: 12px;
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}

    .df-link:hover {
        text-decoration: underline;
    }
/* di-badge — text country abbreviation (IN, US) matching image */
.di-badge {
    background: #f0f0f0;
    color: #555;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'DM Sans',sans-serif;
}
/* ════════ NAVBAR CLEAN ════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    padding: 0;
    isolation: isolate;
}

.navbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar-logo {
    font-family: 'Fraunces',Georgia,serif;
    font-size: 22px;
    font-weight: 700;
    color: #185FA5;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar-nav {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    overflow: visible;
}

.navbar-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    flex-shrink: 0;
}

.hm-ham {
    display: none;
    width: 38px;
    height: 38px;
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    background: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 12px;
    align-items: center;
    justify-content: center;
}

    .hm-ham:hover {
        border-color: #185FA5;
        color: #185FA5;
        background: #E6F1FB;
    }

@media(min-width:1025px) {
    .navbar-nav {
        display: flex;
    }

    .navbar-actions {
        display: flex;
    }

    .hm-ham {
        display: none;
    }
}

@media(max-width:1024px) {
    .navbar-nav {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

    .hm-ham {
        display: flex;
        margin-left: auto;
    }

    .navbar-inner {
        padding: 0 16px;
    }
}

@media(max-width:480px) {
    .navbar-inner {
        padding: 0 12px;
    }

    .navbar-logo {
        font-size: 18px;
    }
}
/***Final header css***/
/* ================================
   NAVBAR
================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e5e5;
}

.navbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
}

.navbar-logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #185FA5;
    text-decoration: none;
}

.navbar-nav {
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.navbar-actions {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

.hm-ham {
    display: none;
    width: 38px;
    height: 38px;
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    background: none;
    font-size: 18px;
    cursor: pointer;
    margin-left: 12px;
}

/* ================================
   DROPDOWN (DESKTOP)
================================ */

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 14px;
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    min-width: 480px;
}

.nav-item:hover .dropdown {
    display: flex;
    gap: 24px;
}

/* ================================
   MOBILE DRAWER
================================ */

.hm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: none;
    z-index: 9998;
}

.hm-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right .3s ease;
    overflow-y: auto;
}

    .hm-drawer.open {
        right: 0;
        transform: translateX(0) !important;
    }

.hm-overlay.open {
    display: block;
}

.hm-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

    .hm-drawer-links a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
    }

.hm-drawer-btns {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width:1024px) {

    .navbar-nav,
    .navbar-actions {
        display: none;
    }

    .hm-ham {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
}



/* Drawer overlay */
.hm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 500;
    backdrop-filter: blur(2px);
}

    .hm-overlay.open {
        display: block;
    }

/* Drawer panel */
.hm-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: #fff;
    /*z-index: 600;*/
    box-shadow: 4px 0 32px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.25,.46,.45,.94);
    overflow-y: auto;
}

    .hm-drawer.open {
        transform: translateX(0) !important;
    }

/* Drawer header */
.hm-drawer-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 2px solid #f0f0f0;
    flex-shrink: 0;
}

.hm-drawer-logo {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--blue);
}

.hm-drawer-close {
    background: none;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    font-size: 16px;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

    .hm-drawer-close:hover {
        border-color: #dc2626;
        color: #dc2626;
    }

/* Drawer links */
.hm-drawer-links {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    flex: 1;
}

    .hm-drawer-links a {
        padding: 13px 20px;
        font-size: 14px;
        font-weight: 500;
        color: #374151;
        border-left: 3px solid transparent;
        transition: all .15s;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .hm-drawer-links a:hover {
            background: #EEF4FF;
            color: var(--blue);
            border-left-color: var(--blue);
        }

/* Drawer action buttons */
.hm-drawer-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 24px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.hm-db-ghost {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: 999px;
    border: 1.5px solid #d0d0d0;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: all .15s;
}

    .hm-db-ghost:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

.hm-db-primary {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: 999px;
    background: var(--blue);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: all .15s;
}

    .hm-db-primary:hover {
        background: var(--blue-dark);
    }

/*--------------------
    Topbar
    ------------------------*/

/* ── Top social bar ── */
.topbar {
    background: #0B1A3B;
    padding: 0 24px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

.topbar-inner {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.topbar-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    margin-right: 8px;
    letter-spacing: .04em;
    white-space: nowrap;
}

.tsoc {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    transition: all .18s;
    text-decoration: none;
    background: transparent;
}

    .tsoc svg {
        width: 13px;
        height: 13px;
    }

    .tsoc:hover {
        background: rgba(255,255,255,.1);
        color: #fff;
    }

.tsoc-yt:hover {
    color: #FF0000;
}

.tsoc-li:hover {
    color: #60A5FA;
}

.tsoc-fb:hover {
    color: #60A5FA;
}

.tsoc-x:hover {
    color: #fff;
}

.tsoc-ig:hover {
    color: #F472B6;
}

@media(max-width:600px) {
    .topbar-lbl {
        display: none;
    }

    .topbar {
        height: 32px;
    }

    .tsoc {
        width: 26px;
        height: 26px;
    }
}

/* ── Mobile drawer social strip ── */
.hm-drawer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px 16px;
    border-top: 1px solid #f0f0f0;
}

.hm-drawer-socials-lbl {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    margin-right: 4px;
    white-space: nowrap;
}

.hdsoc {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #6b7280;
    transition: all .18s;
    text-decoration: none;
}

    .hdsoc svg {
        width: 14px;
        height: 14px;
    }

    .hdsoc:hover {
        background: #e5e7eb;
        color: #111827;
    }


/*---------------------------
    footer
    --------------------------*/


/* ── Footer social icons ── */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.fsoc {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .18s;
    flex-shrink: 0;
    text-decoration: none;
}

    .fsoc svg {
        width: 16px;
        height: 16px;
    }

.fsoc-yt {
    background: #1a1a1a;
    color: #FF0000;
}

.fsoc-li {
    background: #1a1a1a;
    color: #0A66C2;
}

.fsoc-fb {
    background: #1a1a1a;
    color: #1877F2;
}

.fsoc-x {
    background: #1a1a1a;
    color: #fff;
}

.fsoc-ig {
    background: #1a1a1a;
    color: #E1306C;
}

.fsoc:hover {
    transform: translateY(-3px);
    background: #333;
}

.fsoc-yt:hover {
    background: #FF0000;
    color: #fff;
}

.fsoc-li:hover {
    background: #0A66C2;
    color: #fff;
}

.fsoc-fb:hover {
    background: #1877F2;
    color: #fff;
}

.fsoc-x:hover {
    background: #000;
    color: #fff;
}

.fsoc-ig:hover {
    background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    color: #fff;
}


/* ── Top social bar ── */
.topbar {
    background: #0B1A3B;
    padding: 0 24px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

.topbar-inner {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.topbar-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    margin-right: 8px;
    letter-spacing: .04em;
    white-space: nowrap;
}

.tsoc {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    transition: all .18s;
    text-decoration: none;
    background: transparent;
}

    .tsoc svg {
        width: 13px;
        height: 13px;
    }

    .tsoc:hover {
        background: rgba(255,255,255,.1);
        color: #fff;
    }

.tsoc-yt:hover {
    color: #FF0000;
}

.tsoc-li:hover {
    color: #60A5FA;
}

.tsoc-fb:hover {
    color: #60A5FA;
}

.tsoc-x:hover {
    color: #fff;
}

.tsoc-ig:hover {
    color: #F472B6;
}

@media(max-width:600px) {
    .topbar-lbl {
        display: none;
    }

    .topbar {
        height: 32px;
    }

    .tsoc {
        width: 26px;
        height: 26px;
    }
}

/* ── Mobile drawer social strip ── */
.hm-drawer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px 16px;
    border-top: 1px solid #f0f0f0;
}

.hm-drawer-socials-lbl {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    margin-right: 4px;
    white-space: nowrap;
}

.hdsoc {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #6b7280;
    transition: all .18s;
    text-decoration: none;
}

    .hdsoc svg {
        width: 14px;
        height: 14px;
    }

    .hdsoc:hover {
        background: #e5e7eb;
        color: #111827;
    }


