/* ═══════════════════════════════════════════════════════════════
   new-header-footer.css
   Scope: Loaded on EVERY page via header-sms.php
   Contains: root variables, utility classes, topbar, nav, footer
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   1. ROOT VARIABLES & BASE RESET
   ───────────────────────────────────────────────────────────── */
  
   /* Resolve browser paint issue where overflow breaks position: sticky */
        #three60-hp-root {
            overflow: visible !important;
            overflow-x: visible !important;
        }
        
        #three60-hp-root .nav {
            position: sticky !important;
            position: -webkit-sticky !important; /* Safari compatibility */
            top: 0 !important;
            z-index: 9 !important;
            background: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
            transition: all 0.3s ease;
        }
        
        /* ─────────────────────────────────────────────────────────────
   MOBILE STICKY NAV FIX
   ───────────────────────────────────────────────────────────── */

/* 
   CORE FIX: overflow-x: hidden on any ancestor breaks position: sticky.
   We need a wrapper around the nav that is NOT overflow-hidden.
   Since #three60-hp-root needs overflow-x: hidden for layout,
   we isolate the sticky nav by hoisting it above that constraint.
*/

/* Remove overflow-x hidden at mobile breakpoint so sticky works */
@media (max-width: 768px) {
    #three60-hp-root {
        overflow-x: clip !important; /* 'clip' blocks scrollbar but does NOT break sticky, unlike 'hidden' */
    }
}
  
#three60-hp-root {
    --brand-zo: #C4152A;
    --brand: #0057B8;
    --brand-light: #E8F0FB;
    --brand-mid: #CCE0F7;
    --brand-dark: #004a9e;
    --brand-bg: #0056b3;
    --grn: #1A7A2E;
    --grn-l: #E4FCE8;
    --ink: #1a1a1a;
    --ink2: #444;
    --ink3: #777;
    --ink4: #aaa;
    --bdr: #e2e2e2;
    --bg: #fff;
    --bg2: #F7F7F5;
    --bg3: #EFEFEB;
    --sh: 0 4px 16px rgba(0, 0, 0, .07);
    --sh-lg: 0 16px 48px rgba(0, 0, 0, .12), 0 4px 16px rgba(0, 0, 0, .07);
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

#three60-hp-root *,
#three60-hp-root *::before,
#three60-hp-root *::after {
    box-sizing: border-box;
}

#three60-hp-root * {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

#three60-hp-root .fa,
#three60-hp-root .fas,
#three60-hp-root .far,
#three60-hp-root .fab,
#three60-hp-root [class^="fa-"],
#three60-hp-root [class*=" fa-"] {
    font-family: "Font Awesome 6 Free" !important;
}

#three60-hp-root .bi,
#three60-hp-root [class^="bi-"],
#three60-hp-root [class*=" bi-"], #three60-hp-root .back-angle {
    font-family: 'bootstrap-icons' !important;
}

#three60-hp-root a             { text-decoration: none; }
#three60-hp-root button        { font-family: inherit; }
#three60-hp-root img           { max-width: 100%; height: auto; }

#three60-hp-root .container {
    max-width: 1210px;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
}

/* Kill old theme padding/margin on body */
body.page #three60-hp-root {
    margin: 0;
    padding: 0;
}

/* High-specificity overrides for old-theme bleed */
body #three60-hp-root .nav,
body #three60-hp-root .topbar,
body #three60-hp-root .footer {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

body #three60-hp-root .nav a,
body #three60-hp-root .footer a {
    text-decoration: none !important;
    color: inherit;
}

body #three60-hp-root button,
body #three60-hp-root .btn-nav-pri {
    font-family: inherit !important;
    line-height: 1.5;
    text-transform: none;
}

/* ─────────────────────────────────────────────────────────────
   2. UTILITY CLASSES
   (Shared across header, footer, and page sections)
   ───────────────────────────────────────────────────────────── */

/* Font sizes & Consistent Headings with clamp() */
#three60-hp-root .fs-11 { font-size: 11px !important; }
#three60-hp-root .fs-12 { font-size: 12px !important; }
#three60-hp-root .fs-13 { font-size: 13px !important; }
#three60-hp-root .fs-14 { font-size: clamp(13px, 1vw, 14px) !important; }
#three60-hp-root .fs-15 { font-size: clamp(14px, 1.1vw, 15px) !important; }
#three60-hp-root .fs-16 { font-size: clamp(14px, 1.2vw, 16px) !important; }
#three60-hp-root .fs-17 { font-size: clamp(15px, 1.3vw, 17px) !important; }
#three60-hp-root .fs-18 { font-size: clamp(16px, 1.5vw, 18px) !important; }
#three60-hp-root .fs-19 { font-size: clamp(17px, 1.6vw, 19px) !important; }
#three60-hp-root .fs-21 { font-size: clamp(18px, 1.8vw, 21px) !important; }

/* All Section Headings (h2) consistent at 32px with clamp */
#three60-hp-root h2,
#three60-hp-root .sh2,
#three60-hp-root .fs-32,
#three60-hp-root .fs-34,
#three60-hp-root .fs-36,
#three60-hp-root .fs-38,
#three60-hp-root .fs-40,
#three60-hp-root .fs-44,
#three60-hp-root .fs-48 {
    font-size: clamp(24px, 2.8vw, 32px) !important;
    line-height: 1.25 !important;
}

/* All Sub-headings (h3) consistent at 26px with clamp */
#three60-hp-root h3 {
    font-size: clamp(20px, 2.2vw, 26px) !important;
    line-height: 1.25 !important;
}

/* Line heights */
#three60-hp-root .lh-1   { line-height: 1 !important; }
#three60-hp-root .lh-105 { line-height: 1.05 !important; }
#three60-hp-root .lh-11  { line-height: 1.1 !important; }
#three60-hp-root .lh-13  { line-height: 1.3 !important; }
#three60-hp-root .lh-14  { line-height: 1.4 !important; }
#three60-hp-root .lh-15  { line-height: 1.5 !important; }
#three60-hp-root .lh-16  { line-height: 1.6 !important; }
#three60-hp-root .lh-17  { line-height: 1.7 !important; }

/* Letter spacing */
#three60-hp-root .ls-n1  { letter-spacing: -1px; }
#three60-hp-root .ls-n12 { letter-spacing: -1.2px; }
#three60-hp-root .ls-n15 { letter-spacing: -1.5px; }
#three60-hp-root .ls-n25 { letter-spacing: -2.5px; }
#three60-hp-root .ls-n03 { letter-spacing: -0.3px; }
#three60-hp-root .ls-1   { letter-spacing: 1px; }
#three60-hp-root .ls-005 { letter-spacing: 0.05em; }
#three60-hp-root .ls-01  { letter-spacing: 0.1em; }

/* Colors */
#three60-hp-root .c-ink        { color: var(--ink) !important; }
#three60-hp-root .c-ink2       { color: var(--ink2) !important; }
#three60-hp-root .c-ink3       { color: var(--ink3) !important; }
#three60-hp-root .c-brand      { color: #0057B8 !important; }
#three60-hp-root .c-white      { color: #fff !important; }
#three60-hp-root .c-white-50   { color: rgba(255, 255, 255, 0.5) !important; }
#three60-hp-root .c-white-60   { color: rgba(255, 255, 255, 0.6) !important; }
#three60-hp-root .c-navy       { color: #001F3F !important; }
#three60-hp-root .c-blue-accent { color: #60A5FA !important; }
#three60-hp-root .c-red-bold   { color: #D32F2F !important; }

/* Backgrounds */
#three60-hp-root .bg-brand       { background: var(--brand) !important; }
#three60-hp-root .bg-white       { background: #fff !important; }
#three60-hp-root .bg-fafafa      { background: #FAFAFA !important; }
#three60-hp-root .bg-fdfdfd      { background: #fdfdfd !important; }
#three60-hp-root .bg-agents      { background: #003366 !important; }
#three60-hp-root .bg-cta         { background: #0056b3 !important; }
#three60-hp-root .bg-blue-card   { background: #0057B8 !important; }
#three60-hp-root .bg-stat-card   { background: #f8fbff !important; }
#three60-hp-root .bg-icon        { background: #0057B8 !important; }
#three60-hp-root .bg-icon-blue   { background: #E8F0FB !important; }
#three60-hp-root .bg-icon-green  { background: #E8F5E9 !important; }
#three60-hp-root .bg-icon-indigo { background: #F0F4FF !important; }
#three60-hp-root .bg-icon-red    { background: #FCE8EA !important; }
#three60-hp-root .bg-icon-mint   { background: #E4FCE8 !important; }
#three60-hp-root .bg-icon-purple { background: #F3ECFE !important; }
#three60-hp-root .bg-icon-yellow { background: #FFF8E1 !important; }
#three60-hp-root .bg-icon-neutral { background: var(--bg2) !important; }
#three60-hp-root .bg-agent-card  { background: rgba(255, 255, 255, 0.06) !important; }
#three60-hp-root .bg-agent-cta   { background: rgba(0, 87, 184, 0.3) !important; }
#three60-hp-root .bg-pill        { background: #F0F7FF !important; }
#three60-hp-root .bg-badge-orange { background: #E67E22 !important; }
#three60-hp-root .bg-badge-blue  { background: #E8F0FB !important; }
#three60-hp-root .bg-contact     { background: #EAF2FF !important; }
#three60-hp-root .bg-footer      { background: #E8F0FB !important; }
#three60-hp-root .bg-dots-pattern { background-size: 20px 20px; }

/* Borders */
#three60-hp-root .bdr-stat    { border-color: #CCE0F7 !important; }
#three60-hp-root .bdr-eee     { border: 1px solid #eee !important; }
#three60-hp-root .bdr-agent   { border: 1px solid rgba(255, 255, 255, 0.1) !important; }
#three60-hp-root .bdr-section { border-top: 1px solid #eee !important; }

/* Max widths */
#three60-hp-root .mw-280 { max-width: 280px; }
#three60-hp-root .mw-600 { max-width: 600px; }
#three60-hp-root .mw-650 { max-width: 650px; }
#three60-hp-root .mw-750 { max-width: 750px; }
#three60-hp-root .mw-800 { max-width: 800px; }
#three60-hp-root .mw-900 { max-width: 900px; }

/* Sizing helpers */
#three60-hp-root .icon-box    { width: 44px; height: 44px; }
#three60-hp-root .icon-box-sm { width: 32px; height: 32px; }

#three60-hp-root .dot-sm {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

#three60-hp-root .min-h-500 { min-height: 500px; }

/* Dot / channel colors */
#three60-hp-root .dot-hero    { background-color: #00A1E0; border-color: #CCE0F7; }
#three60-hp-root .dot-sms     { background: #22C55E; }
#three60-hp-root .dot-wa      { background: #25D366; }
#three60-hp-root .dot-mms     { background: #00A1E0; }
#three60-hp-root .dot-cti     { background: #0057B8; }
#three60-hp-root .dot-rvm     { background: #333; }
#three60-hp-root .dot-fb      { background: #1877F2; }
#three60-hp-root .dot-ig      { background: #E1306C; }
#three60-hp-root .dot-wechat  { background: #07C160; }
#three60-hp-root .dot-viber   { background: #7360F2; }
#three60-hp-root .dot-line    { background: #06C755; }
#three60-hp-root .dot-kakao   { background: #FEE500; }
#three60-hp-root .dot-zalo    { background: #0068FF; }
#three60-hp-root .dot-webchat { background: #1877F2; }
#three60-hp-root .dot-li      { background: #0077B5; }
#three60-hp-root .dot-email   { background: #EA4335; }

/* Check icon */
#three60-hp-root .check-icon {
    color: #000;
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
}

/* Gutter overrides */
#three60-hp-root .gx-lg-5 > [class^="col-"] {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

#three60-hp-root .gx-4 > [class^="col-"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* ─────────────────────────────────────────────────────────────
   3. TOPBAR
   ───────────────────────────────────────────────────────────── */
#three60-hp-root .topbar {
    background: #111;
    padding: 8px 0;
    font-size: 11px;
    color: #888;
    border-bottom: 1px solid #222;
}

#three60-hp-root .topbar span {
    display: inline-flex;
    align-items: center;
}

#three60-hp-root .topbar img {
    border-radius: 2px;
    margin-right: 6px;
}

#three60-hp-root .t-links a {
    color: #888;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 500;
    transition: color .15s;
}

#three60-hp-root .t-links a:hover { color: #fff; }

#three60-hp-root .t-sep { display: none; }

/* ─────────────────────────────────────────────────────────────
   4. NAVIGATION
   ───────────────────────────────────────────────────────────── */
#three60-hp-root .nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bdr);
}

#three60-hp-root .nav-in {
    display: flex;
    align-items: center;
    height: 64px;
}

#three60-hp-root .logo {
    display: block;
    height: 32px;
    margin-right: 32px;
}

#three60-hp-root .logo img {
    height: 100%;
    width: auto;
    display: block;
}

/* CRM Switcher */
#three60-hp-root .switcher {
    display: flex;
    background: var(--bg2);
    border-radius: 24px;
    border: 1px solid var(--bdr);
    padding: 3px;
    align-items: center;
}

#three60-hp-root .sw-btn {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--ink3);
    border-radius: 20px;
    transition: all .2s;
    text-decoration: none;
    line-height: 1;
}

#three60-hp-root .sw-btn.on-sf {
    background: #0057B8;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 87, 184, 0.3);
}

#three60-hp-root .sw-btn.on-zo {
    background: #C4152A;
    color: #fff;
    box-shadow: 0 2px 8px rgba(196, 21, 42, 0.3);
}

/* Nav links */
#three60-hp-root .nav-links {
    display: flex;
    gap: 0;
    flex: 1;
    align-items: stretch;
}

#three60-hp-root .ni {
    position: relative;
    display: flex;
    align-items: stretch;
}

#three60-hp-root .nl {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
    height: 64px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink2);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all .2s;
}

#three60-hp-root .nl:hover,
#three60-hp-root .nl.open {
    color: var(--ink);
    background: var(--bg2);
}

#three60-hp-root .nl.open { border-bottom-color: var(--brand); }

#three60-hp-root .caret {
    font-size: 10px;
    opacity: 0.4;
    transition: transform .2s;
}

#three60-hp-root .nl.open .caret { transform: rotate(180deg); }

/* Mega menus */
#three60-hp-root .mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--bdr);
    border-top: none;
    padding: 24px;
    z-index: 1000;
    box-shadow: var(--sh-lg);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.sec.bg-white.bdr-section h2,
.sec.py-5.bg-white.bdr-section h2,
.sec.bdr-section h2,
.sec.bg-white.bdr-section p.text-muted.fs-17,
.sec.py-5.bg-white.bdr-section p.text-muted.fs-17 {
    text-align: center;
}
.cmp-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.cmp-header-row > div:first-child {
    flex: 1;
}

.cmp-award-badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

/* Keep the heading and paragraph together */
.cmp-header-row h2 {
    margin: 0;
}

.cmp-header-row p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .cmp-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cmp-award-badge {
        align-self: flex-start;
    }
}
#three60-hp-root .mega.show {
    display: flex;
    animation: navSlide .2s ease-out;
}

@keyframes navSlide {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

#three60-hp-root .mega-540 { min-width: 540px; }
#three60-hp-root .mega-520 { min-width: 520px; }
#three60-hp-root .mega-300 { min-width: 300px; }
#three60-hp-root .mega-240 { min-width: 240px; }

#three60-hp-root .mc { min-width: 260px; }

#three60-hp-root .mc:not(:first-child) {
    border-left: 1px solid var(--bg3);
    padding-left: 24px;
}

#three60-hp-root .mh {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink3);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    padding-left: 8px;
}

#three60-hp-root .mi {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .15s;
    text-decoration: none;
}

#three60-hp-root .mi:hover { background: var(--bg2); }

#three60-hp-root .mi-ic {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

#three60-hp-root .mi-t {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

#three60-hp-root .mi-s {
    font-size: 11px;
    color: var(--ink3);
    line-height: 1.4;
}

#three60-hp-root .mi-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
    margin-top: 8px;
    padding-left: 10px;
    display: block;
    text-decoration: none;
}

#three60-hp-root .mega-info {
    background: var(--bg2);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--bdr);
}

/* Nav right / CTA */
#three60-hp-root .nav-r {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

#three60-hp-root .btn-nav-pri {
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 7px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: transform .2s;
}

#three60-hp-root .btn-nav-pri:hover { transform: translateY(-1px); }

#three60-hp-root .mobile-only-btn { display: none; }

#three60-hp-root .mob-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--ink);
    padding: 4px;
    line-height: 1;
}

#three60-hp-root .mob-toggle .menu-close          { display: none; }
#three60-hp-root.mob-nav-open .mob-toggle .menu-ic    { display: none; }
#three60-hp-root.mob-nav-open .mob-toggle .menu-close { display: block; }

/* ─────────────────────────────────────────────────────────────
   5. FOOTER
   ───────────────────────────────────────────────────────────── */
#three60-hp-root .footer {
    background: #E8F0FB;
    color: #444;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 13px;
}

#three60-hp-root .f-h {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

#three60-hp-root .f-logo {
    height: 48px;
    margin-bottom: 24px;
}

#three60-hp-root .f-logo img {
    height: 100%;
    width: auto;
    display: block;
}

#three60-hp-root .f-desc {
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
    max-width: 280px;
}

#three60-hp-root .f-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    text-decoration: none;
    color: var(--brand);
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 10px;
    width: fit-content;
}

#three60-hp-root .f-socials {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

#three60-hp-root .f-socials a {
    width: 32px;
    height: 32px;
    background: #0057B8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: transform .2s;
}

#three60-hp-root .f-socials a i.bi { color: #fff !important; }

#three60-hp-root .f-link {
    display: block;
    color: #555;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color .15s;
}

#three60-hp-root .f-link:hover { color: var(--brand); }

#three60-hp-root .f-link.red {
    color: #D32F2F;
    font-weight: 700;
}

#three60-hp-root .f-contact-item { margin-bottom: 20px; }

#three60-hp-root .f-contact-title {
    font-weight: 700;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

#three60-hp-root .f-contact-num {
    font-weight: 800;
    font-size: 14px;
    color: var(--brand);
    display: block;
    margin-bottom: 4px;
    text-decoration: none;
}

#three60-hp-root .f-contact-addr {
    font-size: 11px;
    color: #777;
    line-height: 1.5;
}

#three60-hp-root .f-btm {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 12px;
    color: #666;
}

#three60-hp-root .f-btm-links { display: flex; gap: 20px; }
#three60-hp-root .f-btm-links a { color: #666; text-decoration: none; }

#three60-hp-root .f-sales-mt   { margin-top: 32px; }
#three60-hp-root .f-sales-link { color: var(--brand); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   6. CONTACT FORM
   (Included on every page via footer-sms.php)
   ───────────────────────────────────────────────────────────── */
#three60-hp-root .py-new-5 {
  padding-top: clamp(20px, 3.5vw, 48px) !important;
  padding-bottom: clamp(24px, 4vw, 56px) !important;
}

#three60-hp-root .sec-contact {
    padding: clamp(24px, 4vw, 60px) 0;
    background-color: #fff;
}


#three60-hp-root .contact-box-wrapper {
    position: relative;
    padding: 0;
}

#three60-hp-root .contact-blue-bg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: calc(100% - 100px);
    background-color: #EAF2FF;
    border-radius: 40px;
    transform: translateY(-50%);
    z-index: 1;
}

#three60-hp-root .contact-content-row {
    position: relative;
    z-index: 2;
}

#three60-hp-root .contact-text-col {
    padding: 60px 80px 60px 60px;
}

#three60-hp-root .contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 30px 60px rgba(0, 87, 184, 0.12);
    position: relative;
    z-index: 2;
    border: 1px solid #f0f0f0;
}

#three60-hp-root .contact-card h3 {
    font-size: 24px !important;
    color: #1a1a1a !important;
    margin-bottom: 8px !important;
}

#three60-hp-root .contact-card p.text-muted { font-size: 14px !important; }

#three60-hp-root .contact-card form { display: block !important; }

#three60-hp-root .contact-card .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
    margin-bottom: 0 !important;
}

#three60-hp-root .contact-card [class^="col-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

#three60-hp-root .contact-card input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
#three60-hp-root .contact-card textarea,
#three60-hp-root .contact-card select {
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 8px 18px !important;
    font-size: 15px !important;
    background: #fff !important;
    width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
}

#three60-hp-root .contact-card input[type="checkbox"] {
    width: auto !important;
    margin-bottom: 0 !important;
    cursor: pointer;
}

#three60-hp-root .contact-card input::placeholder {
    color: #94a3b8 !important;
    opacity: 1;
}

/* Phone Input */
#three60-hp-root .contact-card .iti {
    width: 100% !important;
    margin-bottom: 20px !important;
    display: block !important;
    position: relative !important;
}

#three60-hp-root .contact-card input#phone_code { padding-left: 85px !important; }

#three60-hp-root .contact-card .iti__flag-container {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    top: 0 !important;
}

#three60-hp-root .contact-card .iti__selected-flag {
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0 8px 0 12px !important;
}

#three60-hp-root .contact-card .iti__selected-dial-code {
    font-size: 15px !important;
    color: #1a1a1a !important;
    margin-left: 4px !important;
}

#three60-hp-root .contact-card .iti__arrow {
    border-top-color: #666 !important;
    margin-left: 4px !important;
    margin-top: 0 !important;
}

/* Country Select */
#three60-hp-root .contact-card fieldset#country {
    border: none !important;
    margin-bottom: 6px !important;
    padding: 0 !important;
}

#three60-hp-root .contact-card #country_selector { padding-left: 55px !important; }

#three60-hp-root .contact-card .country-select {
    margin-bottom: 0px !important;
    display: block !important;
    position: relative !important;
}

#three60-hp-root .contact-card .country-select .flag-dropdown {
    background: transparent !important;
    width: 48px !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    top: 0 !important;
}

#three60-hp-root .contact-card .country-select .selected-flag {
    background: transparent !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    width: 100% !important;
}

#three60-hp-root .contact-card .country-select .flag {
    margin-top: 17px !important;
    vertical-align: middle !important;
}

#three60-hp-root .contact-card .country-select .arrow {
    border-top-color: #666 !important;
    margin-left: 4px !important;
    margin-top: 0 !important;
}

 #three60-hp-root .country-select .country-list{
     position:absolute;
     top: 40px;
    left: 2px;
 }

#three60-hp-root .contact-card textarea {
    height: 70px !important;
    resize: none !important;
}

/* Captcha row */
#three60-hp-root .contact-card .formBack {
    display: flex !important;
    align-items: center !important;
    background: #f8fafc !important;
    border-radius: 12px !important;
    padding: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#three60-hp-root .contact-card .formBack > div {
    margin-top: 0 !important;
    padding: 0 5px !important;
    margin-bottom: 0;
}

#three60-hp-root .contact-card .codeImg {
    border-radius: 6px !important;
    height: 48px !important;
    background: #fff !important;
    object-fit: contain !important;
}

#three60-hp-root .contact-card .btnRefresh img {
    height: 32px !important;
    transition: transform 0.3s ease;
}

#three60-hp-root .contact-card .btnRefresh:hover img { transform: rotate(180deg); }

#three60-hp-root .contact-card input#vercode {
    margin-bottom: 0 !important;
    height: 40px !important;
}

#three60-hp-root .contact-card .captcha-row {
    background: #f1ede8;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

#three60-hp-root .contact-card .btn-submit-contact {
    margin-top: 0 !important;
    margin: auto !important;
    background: #0057B8 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease;

    height: 50px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

#three60-hp-root .contact-card .btn-submit-contact:hover {
    background: #004a9e !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 87, 184, 0.2);
}

#three60-hp-root .check-circle {
    width: 26px;
    height: 26px;
    background: #0057B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#three60-hp-root .check-circle i {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

#three60-hp-root .btnRefresh,
#three60-hp-root .form-group {
    margin: auto !important;
}

/* Get In Touch card */
#three60-hp-root .sec-17-card {
    background-color: #EAF2FF;
    border-radius: 40px;
    padding: 80px 60px;
    text-align: left;
}

#three60-hp-root .sec-17-card h2 {
    font-size: clamp(24px, 2.8vw, 34px) !important;
    line-height: 1.25;
    color: #1a1a1a;
}
h2 {
    line-height: 1.25;    
}
@media (max-width: 767.98px) {
    #three60-hp-root .btn-nav-pri {
        padding: 15px 20px !important;
        text-align: center;
        width: 100%;
    }
}
#three60-hp-root .sec-17-card .text-muted { color: #64748b !important; }

#three60-hp-root .sec-17-check {
    width: 28px;
    height: 28px;
    background: #0057B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

#three60-hp-root .sec-17-check i {
    font-size: 16px;
    font-weight: 900;
}

/* Overlapping form layout */
#three60-hp-root .sec-17-18 { padding: clamp(32px, 4vw, 48px) 0; margin-top: 24px; }

#three60-hp-root .sec-17-18-wrap { position: relative; }

#three60-hp-root .sec-17-bg-card {
    background-color: #EAF2FF;
    border-radius: 16px;
    padding: 80px 60px;
    min-height: 520px;
    display: flex;
    align-items: center;
}

#three60-hp-root .sec-17-bg-card .sec-17-content h2 {
    font-weight:800;
}

#three60-hp-root .sec-17-content { max-width: 40%; }

#three60-hp-root .sec-17-form-float {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 50%;
    z-index: 2;
}

#three60-hp-root .sec-17-form-float .contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 87, 184, 0.15);
    border: 1px solid #f0f0f0;
}

/* ─────────────────────────────────────────────────────────────
   7. RESPONSIVE — navigation / mobile menu only
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    #three60-hp-root .nav-in {
        justify-content: space-between;
        gap: 12px;
    }

    #three60-hp-root .logo {
        margin-right: 0;
        height: 24px;
    }

    #three60-hp-root .mob-toggle {
        display: block;
        order: 3;
    }

    #three60-hp-root .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: #fff;
        flex-direction: column;
        padding: 20px;
        overflow-y: auto;
        z-index: 999;
        gap: 0;
    }

    #three60-hp-root .nav-links .mobile-only-btn {
        display: block;
        width: 100%;
        margin-top: 24px;
        padding: 14px;
        font-size: 15px;
        text-align: center;
        border-radius: 12px;
    }

    #three60-hp-root.mob-nav-open .nav-links { display: flex; }

    #three60-hp-root .ni {
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid var(--bdr);
    }

    #three60-hp-root .nl {
        height: auto;
        padding: 16px 0;
        justify-content: space-between;
        font-size: 16px;
    }

    #three60-hp-root .mega {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 16px 16px;
        display: none !important;
        flex-direction: column;
        animation: none;
    }

    #three60-hp-root .mega.show { display: flex !important; }

    #three60-hp-root .mc {
        min-width: unset;
        padding-left: 0 !important;
        border: none !important;
    }

    #three60-hp-root .mh { display: block; }

    #three60-hp-root .mi { padding: 12px 0; }

    #three60-hp-root .nav-r {
        margin-left: 0;
        order: 4;
    }

    #three60-hp-root .nav-r .btn-nav-pri { display: none; }
}

@media (max-width: 991px) {
    #three60-hp-root .sec-contact { padding: 60px 0; }

    #three60-hp-root .contact-blue-bg {
        height: 100%;
        top: 0;
        transform: none;
    }

    #three60-hp-root .contact-text-col { padding: 40px 20px; }

    #three60-hp-root .contact-card {
        padding: 30px 20px;
        margin-top: 20px;
    }

    #three60-hp-root .sec-17-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    #three60-hp-root .sec-17-card h2 { font-size: clamp(24px, 2.8vw, 32px) !important; }

    #three60-hp-root .sec-17-bg-card {
        padding: 40px 24px;
        border-radius: 16px;
        min-height: unset;
    }

    #three60-hp-root .sec-17-content { max-width: 100%; }

    #three60-hp-root .sec-17-form-float {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 32px;
    }
}
  strong.case-study{
    font-weight: 600;
    font-style: Italic;
    line-height: 100%;
    letter-spacing: 0px;
    margin-bottom:20px;
    color:#356DB2;
    font-size:13px;
  }
  p.case-study{
    font-size: 14px;
    color:#5A7184;
  }