
body {
    font-family: 'Inter';

}

:root {
    --navy: #1B3A5C;
    --teal: #0E7490;
    --teal-dark:  #0a5a72;
    --teal-light: #e0f2f7;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --zayup-blue: #0637F5;
    --golden: #ffce1c;
    --border:     #e2e8f0;
    --text-muted: #64748b;
}

/* BACKGROUND IMAGE LAYER */
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url('/images/customer-support.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -10;
}

/* COLOR OVERLAY LAYER */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: #1B3A5C80; /* your overlay color */
    z-index: -5;
}
/* Navy #1B3A5C */
h1,h2,h3,h4,h5,h6{
    font-family: Inter-bold;
    font-weight: bold;
}
h1 {
    font-size: clamp(28px, 4vw, 48px);
}

h2 {
    font-size: clamp(24px, 3.5vw, 40px);
}

h3 {
    font-size: clamp(20px, 3vw, 32px);
}

h4 {
    font-size: clamp(18px, 2.5vw, 28px);
}

h5 {
    font-size: clamp(16px, 2vw, 22px);
}

h6 {
    font-size: clamp(14px, 1.5vw, 18px);
}
strong {
    font-weight: 600;
    font-size: clamp(14px, 1.2vw, 18px);
}
p {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.6;
}

.bg-navy {

    background: var(--navy) !important;
}
.text-navy {
    color: var(--navy) !important;
}
.border-navy {
    border-color: var(--navy) !important;
}
.bg-golden {

    background: var(--golden) !important;
}
.text-golden {
    color: var(--golden);
}
.border-golden {
    border-color: var(--golden) !important;
}
.bg-zayup-blue {
    background: var(--zayup-blue) !important;
    color:var(--white) !important;
}
.text-zayup-blue {
    color: var(--zayup-blue) !important;
}
.border-zayup-blue {
    border-color: var(--zayup-blue) !important;
}

/* Teal #0E7490 */
.bg-teal {
    background-color: var(--teal) !important;
    color:var(--white) !important;
}
.bg-teal:hover {
    background-color: var(--navy);
    color:var(--white);
}
.text-teal {
    color: var(--teal) !important;
}
.border-teal {
    border-color: var(--teal) !important;
}

/* White #FFFFFF */
.bg-white {
    background-color: var(--white);
}
.text-white {
    color: var(--white);
}
.border-white {
    border-color: var(--white);
}

/* Light gray #F8FAFC */
.bg-light-gray {
    background-color: #F8FAFC;
}
.text-light-gray {
    color: #F8FAFC;
}
.border-light-gray {
    border-color: #F8FAFC;
}
/*
-======================================
====================================================Above reseting CSS
=======================================
*/
/* ── Navbar wrapper ── */
.main-nav {
    background: linear-gradient(
        to bottom,
        #1B3A5C,
        rgba(14, 116, 144, 0)
    );
    position: relative;
    z-index: 1050;
}

/* Top bar — always one row, never wraps */
.nav-topbar {

    padding: 10px 20px;
    gap: 12px;
}

/* Logo — fixed, never pushed */



/* Nav links area — fills remaining space */
.nav-links-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

/* Toggler */
.nav-toggler {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    flex-shrink: 0;
}
.nav-toggler svg { display: block; }

/* Desktop nav links row */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--teal);
    left: 14px;
    bottom: 4px;
    transition: 0.3s;
    border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 28px); }

/* Dropdown arrow */
.arrow {
    font-size: 0.65rem;
    transition: transform 0.25s;
    display: inline-block;
}
.has-mega.open .arrow { transform: rotate(180deg); }

/* Quote button */
.btn-quote {
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
}
.btn-quote:hover { background: var(--zayup-blue); transform: scale(1.03); }

/* Tagline */
.nav-tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.45;
    flex-shrink: 0;
    border-left: 1px solid rgba(255,255,255,0.12);
    padding-left: 14px;
    margin-left: 6px;
}
.nav-tagline .t-blue  { color: var(--zayup-blue); font-weight: 700; }
.nav-tagline .t-white { color: var(--white); font-weight: 700; }

/* ══════════════════════════════
   MEGA MENU — always below topbar
══════════════════════════════ */
.mega-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1040;
    display: none;
}
.mega-wrap.open { display: block; }

/* Desktop mega */
.mega-inner {
    background: var(--white);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.13);
    display: flex;
    padding: 28px 32px;
    gap: 0;
    animation: megaDrop 0.2s ease;
}

@keyframes megaDrop {
    from { opacity:0; transform:translateY(-6px); }
    to   { opacity:1; transform:translateY(0); }
}

.mega-col {
    flex: 1;
    padding: 0 24px;
    border-right: 1px solid rgba(0,0,0,0.07);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; padding-right: 0; }

.mega-col-heading {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(14,116,144,0.15);
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 0;
    color: #4a5568;
    font-size: 0.87rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}
.mega-link::before {
    content: '→';
    font-size: 0.72rem;
    color: var(--teal);
    opacity: 0;
    transition: opacity 0.2s;
}
.mega-link:hover { color: var(--navy); transform: translateX(5px); }
.mega-link:hover::before { opacity: 1; }

.mega-highlight {
    background: linear-gradient(135deg, #eef3ff, #e6effd);
    border: 1.5px solid rgba(6,55,245,0.12);
    border-radius: 14px;
    padding: 18px;
    height: 100%;
}
.badge-ai {
    display: inline-block;
    background: var(--zayup-blue);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 10px;
}
.mega-highlight h5 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.mega-highlight p  { color: #666; font-size: 0.78rem; line-height: 1.55; margin-bottom: 14px; }
.btn-ai {
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.btn-ai:hover { background: var(--zayup-blue); color: var(--white); }

/* ══════════════════════════════
   MOBILE COLLAPSE — below topbar
══════════════════════════════ */
.mobile-collapse {
    display: none;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-collapse.open { display: block; }

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 6px 0 10px;
}

.mobile-nav-list .m-nav-link {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 12px 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.mobile-nav-list .m-nav-link:hover { color: var(--white); }

.mobile-nav-list .m-has-mega {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.mobile-nav-list .m-has-mega .arrow {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    transition: transform 0.25s;
}
.mobile-nav-list .m-has-mega.open .arrow { transform: rotate(180deg); }

/* Mobile mega accordion */
.mobile-mega {
    display: none;
    background: rgba(0,0,0,0.18);
}
.mobile-mega.open { display: block; }

.mobile-mega-col {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-mega-col:last-child { border-bottom: none; }

.mobile-mega-heading {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-mega-link {
    display: block;
    padding: 6px 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.87rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-mega-link:hover { color: var(--white); }

.mobile-highlight {
    background: rgba(6,55,245,0.15);
    border: 1px solid rgba(6,55,245,0.25);
    border-radius: 10px;
    padding: 14px;
    margin: 4px 0;
}
.mobile-highlight h5 { color: var(--white); font-size: 0.92rem; font-weight: 700; margin-bottom: 5px; }
.mobile-highlight p  { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-bottom: 10px; }
.btn-ai-mobile {
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.mobile-quote {
    padding: 12px 20px 16px;
}
.mobile-quote a {
    display: block;
    text-align: center;
    background: var(--teal);
    color: var(--white);
    border-radius: 8px;
    padding: 11px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.mobile-quote a:hover { background: var(--zayup-blue); }

/* ── Responsive breakpoint ── */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .btn-quote { display: none; }
    .nav-tagline { display: none; }
    .nav-toggler { display: flex; align-items: center; }
    .mega-wrap { display: none !important; } /* use mobile accordion instead */
}

/*
============================================== Custom animation
*/

/* ── Hero wrapper ── */
.hero-section {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Decorative background blobs */
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,116,144,0.18) 0%, transparent 70%);
    top: -150px; left: -150px;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,55,245,0.1) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    pointer-events: none;
}

/* ── Left content ── */
.hero-left {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,116,144,0.15);
    border: 1px solid rgba(14,116,144,0.8);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}
.hero-eyebrow .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22d3a5;
    position: relative;
}
.hero-eyebrow .dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34,211,165,0.3);
    animation: pulseRing 1.6s ease-out infinite;
}
@keyframes pulseRing {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0;
}

/* ── Morphing text block ── */
.morph-wrapper {
    position: relative;
    width: 100%;
    height: 64px;           /* fixed height — text never overflows */
    margin: 10px 0 18px;
    overflow: hidden;        /* clips any blur bleed */
}

/* SVG filter lives hidden in the DOM */
.morph-filter { position: absolute; width: 0; height: 0; }

.morph-container {
    width: 100%;
    height: 100%;
    position: relative;
    filter: url(#threshold) blur(0.5px);
}

#text1, #text2 {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    color: var(--golden);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 32px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(14,116,144,0.35);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.btn-teal:hover {
    background: #0a5a72;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14,116,144,0.45);
}
.btn-teal svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 13px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.07);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Trust strip */
.trust-strip {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.12);
}
.trust-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.trust-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.trust-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ── Right side visual ── */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Glowing card stack */
.card-stack {
    position: relative;
    width: 340px;
    height: 360px;
}

.stack-card {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 24px;
    transition: transform 0.3s ease;
}

.stack-card:nth-child(1) {
    width: 280px;
    top: 20px; right: 0;
    transform: rotate(4deg);
    background: rgba(14,116,144,0.12);
    border-color: rgba(14,116,144,0.2);
}
.stack-card:nth-child(2) {
    width: 300px;
    top: 50px; left: 0;
    transform: rotate(-2deg);
    background: rgba(6,55,245,0.08);
    border-color: rgba(6,55,245,0.15);
}
.stack-card:nth-child(3) {
    width: 290px;
    bottom: 20px; right: 20px;
    transform: rotate(1.5deg);
    background: rgba(27,58,92,0.4);
    border-color: rgba(255,255,255,0.08);
}

.card-stack:hover .stack-card:nth-child(1) { transform: rotate(6deg) translateY(-6px); }
.card-stack:hover .stack-card:nth-child(2) { transform: rotate(-3deg) translateX(-4px); }
.card-stack:hover .stack-card:nth-child(3) { transform: rotate(2deg) translateY(4px); }

.sc-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
}
.sc-icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sc-title { font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.sc-sub   { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* Floating badge */
.float-badge {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 16px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: flex; align-items: center; gap: 10px;
    animation: floatY 3s ease-in-out infinite;
}
.float-badge.top { top: -10px; left: -20px; }
.float-badge.bot { bottom: -10px; right: -20px; animation-delay: 1.5s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.fb-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
}
.fb-icon svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fb-label  { font-size: 0.65rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.fb-value  { font-size: 0.9rem; font-weight: 700; color: var(--navy); line-height: 1; }

/* Responsive */
@media (max-width: 991px) {
    .hero-section { padding: 100px 0 60px; min-height: auto; }
    .hero-right { min-height: 300px; margin-top: 40px; }
    .card-stack { width: 280px; height: 300px; transform: scale(0.9); }
}

@media (max-width: 576px) {
    .morph-wrapper { height: 52px; }
    #text1, #text2 { font-size: 1.4rem; }
    .hero-right { display: none; }
    .trust-strip { gap: 12px; }
}

/*
===========================================================Service Cards
*/


.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 0.3rem;
}

.section-sub {
    color: var(--teal);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* ── Card shell ── */
.service-card {
    border: 1.5px solid rgba(14,116,144,0.12);
    border-radius: 22px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(27,58,92,0.08);
    transition: transform 0.35s cubic-bezier(.23,1,.32,1), box-shadow 0.35s ease, border-color 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-9px) scale(1.012);
    box-shadow: 0 20px 56px rgba(27,58,92,0.16);
    border-color: var(--teal);
}

/* ── Banner ── */
.card-banner {
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
    position: relative;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) saturate(0.9);
    transition: transform 0.5s ease, filter 0.4s;
}

.service-card:hover .banner-bg {
    transform: scale(1.06);
    filter: brightness(0.55) saturate(1.1);
}

/* Navy gradient overlay */
.card-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
    rgba(27,58,92,0.72) 0%,
    rgba(27,58,92,0.35) 55%,
    rgba(6,55,245,0.10) 100%);
    pointer-events: none;
}

/* ── Service label (left, replaces circle) ── */
.banner-label {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-icon {
    font-size: 2.6rem;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    max-width: 160px;
}

.banner-divider {
    width: 40px;
    height: 3px;
    border-radius: 4px;
    background: var(--teal);
}

/* ── Right pills ── */
.card-deco {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
    z-index: 2;
}

.deco-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 40px;
    padding: 6px 14px 6px 9px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.deco-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    background: var(--teal);
}

/* accent dot per card */
.dot-blue   { background: var(--zayup-blue) !important; }
.dot-teal   { background: var(--teal) !important; }
.dot-navy   { background: #93c5fd !important; }

.deco-stat {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 14px;
    padding: 8px 18px;
    text-align: center;
    min-width: 80px;
}

.deco-stat strong {
    display: block;
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.1;
    font-weight: 700;
}

.deco-stat small {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Card body ── */
.card-body { padding: 1.35rem 1.5rem 1.5rem; }

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 4px 13px;
    margin-bottom: 0.6rem;
    background: rgba(14,116,144,0.10);
    color: var(--teal);
    border: 1.5px solid rgba(14,116,144,0.25);
}

/* zayup-blue badge variant */
.badge-blue {
    background: rgba(6,55,245,0.08);
    color: var(--zayup-blue);
    border-color: rgba(6,55,245,0.2);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.22rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.card-text {
    color: #5a6a7e;
    font-size: 0.86rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.btn-action {
    border: none;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: var(--white);
}

.btn-action:hover {
    background: var(--teal);
    color: var(--white);
    transform: scale(1.05);
}

.btn-action.btn-blue {
    background: var(--zayup-blue);
}

.btn-action.btn-blue:hover {
    background: var(--navy);
}

/* ── Staggered entrance ── */
.col { opacity:0; animation: fadeUp 0.6s ease forwards; }
.col:nth-child(1){ animation-delay:0.05s; }
.col:nth-child(2){ animation-delay:0.15s; }
.col:nth-child(3){ animation-delay:0.25s; }
.col:nth-child(4){ animation-delay:0.35s; }
.col:nth-child(5){ animation-delay:0.45s; }
.col:nth-child(6){ animation-delay:0.55s; }

@keyframes fadeUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}

/*
    ========================================== 5 steps section how it works
*/


/* Timeline wrapper */
.timeline {
    position: relative;
}

/* Base line */
.timeline-base {
    position: absolute;
    top: 30px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(14,116,144,0.15);
    z-index: 0;
}

/* Progress line */
.timeline-progress {
    position: absolute;
    top: 30px;
    left: 5%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), #38bdf8);
    transition: width 0.8s ease;
    z-index: 1;
}

/* Step */
.step-item {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

/* Icon */
.step-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid rgba(14,116,144,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-weight: bold;
    transition: 0.3s;
}

/* Active */
.step-item.active {
    opacity: 1;
}

.step-item.active .step-icon {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 0 20px rgba(14,116,144,0.4);
}

/* Hover */
.step-item:hover .step-icon {
    transform: scale(1.1);
}

/* Content */
.content-box {
    max-width: 90%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* Inner spacing (fixes top gap issue) */
.content-inner {
    padding: 50px 60px;
}

/* Mobile */
@media (max-width: 768px) {
    .timeline-base,
    .timeline-progress {
        display: none;
    }
}

/*
===========================================Blog Section Section
*/

/* Image wrapper */
.blog-img {
    width: 100%;
    height: 220px; /* fixed height for consistency */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

/* Image behavior */
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 👈 key */
    transition: 0.4s;
}

/* Hover zoom (premium feel) */
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

/* Card hover */
.blog-card {
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Teal link */
.blog-link {
    color: var(--teal);
}


/*
===========================================Contact Section
*/
/* ── Section wrapper ── */
.contact-section {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(27,58,92,0.10);

    margin: 0 auto;
    display: flex;
    min-height: 620px;
}

/* ══════════════════════
   LEFT PANEL
══════════════════════ */
.contact-left {
    width: 360px;
    flex-shrink: 0;
    background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Decorative blobs */
.contact-left::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    top: -80px; right: -80px;
    pointer-events: none;
}
.contact-left::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -60px; left: -60px;
    pointer-events: none;
}

.left-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.left-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

/* Contact info items */
.info-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.info-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon svg { width: 17px; height: 17px; fill: none; stroke: rgba(255,255,255,0.9); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.info-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2px;
}
.info-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    line-height: 1.4;
}
a.info-value:hover { color: rgba(255,255,255,0.8); }

/* Divider */
.left-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin: 28px 0;
    position: relative;
    z-index: 1;
}

/* Social */
.follow-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.social-row {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.social-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.85); }

/* ══════════════════════
   RIGHT PANEL (Form)
══════════════════════ */
.contact-right {
    flex: 1;
    padding: 44px 40px;
    background: var(--white);
    overflow-y: auto;
}

.form-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-sub {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Form grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}
.form-grid .full { grid-column: 1 / -1; }

.field-group { display: flex; flex-direction: column; gap: 6px; }

.field-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
}
.field-label .req { color: var(--teal); }

.field-input,
.field-select,
.field-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #1e293b;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}
.field-input::placeholder,
.field-textarea::placeholder { color: #cbd5e1; }

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(14,116,144,0.1);
}

.field-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230E7490' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.field-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.char-count {
    text-align: right;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: -12px;
}

/* Checkboxes */
.check-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--text-muted);
    cursor: pointer;
}
.check-group input[type="checkbox"] {
    width: 17px; height: 17px;
    accent-color: var(--teal);
    flex-shrink: 0;
    margin-top: 1px;
    cursor: pointer;
}
.check-group a { color: var(--teal); text-decoration: none; font-weight: 500; }
.check-group a:hover { text-decoration: underline; }

/* Submit */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(14,116,144,0.3);
}
.btn-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(14,116,144,0.4);
}
.btn-submit svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .contact-section { flex-direction: column; }
    .contact-left { width: 100%; padding: 36px 28px; }
    .contact-left::before { top: -100px; right: -60px; }
    .info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .contact-right { padding: 36px 28px; }
}

@media (max-width: 560px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .full { grid-column: 1; }
    .info-list { grid-template-columns: 1fr; }
}

/*
===========================================Footer Section
*/
.site-footer {
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 64px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow top-left */
.site-footer::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,116,144,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.site-footer::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,55,245,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Col 1: Logo + tagline ── */


.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,1);
    line-height: 1.65;
    max-width: 220px;
    margin-bottom: 22px;
}

/* Compliance badges */
.badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.comp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: border-color 0.2s, color 0.2s;
}
.comp-badge:hover { border-color: var(--teal); color: var(--white); }
.comp-badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

/* Social icons */
.social-row {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-3px);
}
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.75); }
.social-btn:hover svg { fill: var(--white); }

/* ── Col headings ── */
.footer-col-heading {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(14,116,144,0.25);
    position: relative;
}
.footer-col-heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ── Footer links ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 2px; }

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.85);
    font-size: 0.87rem;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s, gap 0.2s;
}
.footer-links a::before {
    content: '–';
    font-size: 0.7rem;
    color: var(--teal);
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); gap: 10px; }
.footer-links a:hover::before { opacity: 1; }

/* ── Divider ── */
.footer-divider {
    margin: 48px 0 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Bottom bar ── */
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}
.footer-copy strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* Availability pill */
.avail-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(14,116,144,0.12);
    border: 1px solid var(--white);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 600;

    color: var(--white);
    margin-bottom: 18px;
}
.avail-pill .pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22d3a5;
    position: relative;
}
.avail-pill .pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34,211,165,0.3);
    animation: pulseRing 1.5s ease-out infinite;
}
@keyframes pulseRing {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2);   opacity: 0; }
}

@media (max-width: 767px) {
    .site-footer { padding-top: 44px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-col { margin-bottom: 36px; }
}
