/* ╔══════════════════════════════════════════════════════════════════╗
    ║          ★  QUBNIX — FULLY RESPONSIVE THEME  ★                 ║
    ║   Fixed for 320px → 768px mobile & tablet                       ║
    ╚══════════════════════════════════════════════════════════════════╝ */

/* ════════════════════════════════════════
    GOOGLE FONTS IMPORT
    ════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap");

/* ════════════════════════════════════════
    CSS VARIABLES
    ════════════════════════════════════════ */
:root {
    /* --c-primary: #ff8c00;
    --c-primary2: #ff5a1f; */
    --c-primary: #85bc00;      /* Olive Green */
    --c-primary2: #d7de05;     /* Bright Yellow */
    --grad-btn: linear-gradient(135deg, #85bc00, #d7de05);
    --c-dark: #0a0a0a;
    --tr: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* --c-dark: #000000; */
    --c-navy: #0a0a14;
    --c-gray: #6b7280;
    --c-light: #ffffff;
    --c-white: #ffffff;
    /* --c-footer-bg: #111111; */
    --c-footer-bg: #2972ba;
    /* --grad-btn: linear-gradient(135deg, #ff8c00, #ff5a1f); */
    /* --grad-btn: linear-gradient(135deg, #24aadf, #2d3b94); */
    /* --font-head: "Syne", sans-serif; */
    
    /* --font-body: "DM Sans", sans-serif; */
    /* --font-head: "Syne", sans-serif;
    --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-serif: "Lora", serif; */
    /* --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */

    --fs-xs: 0.72rem;
    --fs-sm: 0.86rem;
    --fs-base: 16px;
    --fs-md: 1rem;
    --fs-h2: clamp(1.4rem, 4vw, 2.2rem);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 18px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg:0 20px 60px rgb(153 202 1 / 64%);
    --shadow-btn: 0 4px 18px hsl(0, 0%, 99%);
    --shadow-btn-h: 0 8px 26px #d7de0586;
    /* --shadow-btn: 0 4px 18px rgba(255, 90, 31, 0.28);
    --shadow-btn-h: 0 8px 26px rgba(255, 90, 31, 0.4); */
    /* --tr: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
    --tr-fast: all 0.18s ease;
    --nav-h: 68px;
    --nav-bg: #ffffff;
    --nav-shadow: 0 2px 24px rgba(0, 0, 0, 0.09);
    --nav-link-fs: 0.91rem;
    --nav-link-fw: 500;
    --dd-bg: #ffffff;
    --dd-radius: 0 0 20px 20px;
    --dd-shadow: 0 30px 60px rgba(60, 98, 168, 0.15);
    --dd-border: 3px solid #85bc00;
    /* --dd-border: 3px solid #ff8c00; */
    --dd-card-bg: #ffffff;
    /* --dd-card-bg-h: rgba(62, 145, 179, 0.1); */
    --dd-card-bg-h: rgba(36 170 223 / 19%);
    --sb-width: 420px;
    --search-h: 56px;
}

/* ════════════════════════════════════════
    BASE RESET
    ════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────
   GLOBAL FIXES
────────────────────────────────────────────────────────── */
html, body {
    overflow-x: hidden;
    width: 100%;
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--c-dark);
    background: #ffffff;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    transition: var(--tr);
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--c-primary);
    color: #ffffff;
}

/* ════════════════════════════════════════
    NAVBAR
    ════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
}

#mainNav {
    background: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    min-height: var(--nav-h);
}

/* Logo */
.logo-pill {
    height: var(--nav-h);
    display: flex;
    align-items: center;
}

.logo-mark {
    /* font-family: var(--font-head); */
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--c-primary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* Nav links */
/* .nav-link.site-link {
    font-family: var(--font-body);
    font-size: var(--nav-link-fs);
    font-weight: var(--nav-link-fw);
    color: #333 !important;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--tr);
    white-space: nowrap;
} */

.nav-link.site-link:hover{
    color: var(--c-primary) !important;
    /* background: rgba(255, 140, 0, 0.07); */
    /* background: rgb(36 170 223 / 9%); */
}

.nav-link.site-link.active {
    color: var(--c-primary) !important;
}

.dd-arrow {
    font-size: 0.58rem;
    margin-left: 4px;
    transition: transform 0.3s;
    display: inline-block;
}

.nav-item.has-mega.open .dd-arrow,
.nav-item.has-mega:hover .dd-arrow {
    transform: rotate(180deg);
}

.dropdown-toggle::after {
    display: none !important;
}

/* ── CTA Buttons ── */
.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grad-btn);
    color: #fff !important;
    font-weight: 700;
    font-size: var(--fs-sm);
    padding: 10px 22px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-btn);
    border: none;
    cursor: pointer;
    transition: var(--tr);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-h);
}

.btn-sm-o {
    font-size: var(--fs-xs);
    padding: 8px 16px;
}

.btn-outline-o {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--c-primary);
    color: var(--c-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--fs-sm);
    padding: 9px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--tr);
}

.btn-outline-o:hover {
    color: #fff;
    /* background: var(--c-primary); */
    background: var(--grad-btn);
}

/* Icon buttons */
.icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid transparent;
    color: #555;
    font-size: 0.94rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--tr);
}

.icon-btn:hover {
    color: var(--c-primary);
    background: rgba(255, 140, 0, 0.07);
    border-color: rgba(255, 140, 0, 0.15);
}

.icon-btn.is-active {
    color: var(--c-primary);
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.burger-btn {
    flex-direction: column;
    gap: 4px;
    padding: 6px;
}

.burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #555;
    border-radius: 2px;
    transition: var(--tr);
}

.burger-btn.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile toggler fix */
.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
    padding: 0.3rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff8c00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ════════════════════════════════════════
    SEARCH PANEL
    ════════════════════════════════════════ */
.search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.3s ease;
    z-index: 1030;
}

.search-panel.is-open {
    max-height: calc(var(--search-h) + 20px);
    padding: 10px 0;
}

.search-form {
    display: flex;
    align-items: center;
    max-width: 560px;
    margin: 0 auto;
    background: #f8f8f8;
    border-radius: 50px;
    border: 1.5px solid #e8e8e8;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    color: #333;
}

.search-form button {
    background: var(--c-primary);
    color: #fff;
    border: none;
    padding: 0 20px;
    height: var(--search-h);
    cursor: pointer;
    transition: var(--tr);
}

.search-form button:hover {
    background: var(--c-primary2);
}

/* ════════════════════════════════════════
    MEGA DROPDOWN — Desktop ≥ 992px
    ════════════════════════════════════════ */
@media (min-width: 992px) {
    .nav-item.has-mega {
        position: static;
    }

    .mega-panel {
        position: absolute;
        top: 80%;
        left: 0;
        width: 100%;
        background: var(--dd-bg);
        border-top: var(--dd-border);
        border-radius: var(--dd-radius);
        box-shadow: var(--dd-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.25s ease;
        pointer-events: none;
        z-index: 2000;
    }

    .nav-item.has-mega:hover > .mega-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
    }

    .dd-svc-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 10px;
        background: var(--dd-card-bg);
        /* background: rgba(36, 170, 223, 0.068); */
        transition: var(--tr);
        cursor: pointer;
    }

    .dd-svc-card:hover {
        background: var(--dd-card-bg-h);
        /* background: rgba(62, 172, 216, 0.253); */
        transform: translateX(5px);
    }

    .dd-svc-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        background: var(--grad-btn);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1rem;
        /* box-shadow: 0 4px 14px rgba(255, 140, 0, 0.3); */
        box-shadow: 0 4px 14px rgb(36 170 223 / 22%);
    }

    .dd-svc-card h6 {
        /* font-family: var(--font-head); */
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--c-dark);
        margin-bottom: 2px;
    }

    .dd-svc-card p {
        font-size: 0.74rem;
        color: var(--c-gray);
        margin: 0;
    }

    .mobile-sub {
        display: none !important;
    }
}

/* ════════════════════════════════════════
    MOBILE NAV < 992px
    ════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        border-top: 1px solid #f0f0f0;
        max-height: 80vh;
        overflow-y: auto;
        padding: 0.5rem 0;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    /* .nav-link.site-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 22px !important;
        border-bottom: 1px solid #f5f5f5;
        border-radius: 0;
    } */

    .mega-panel {
        display: none !important;
    }

    .mobile-sub {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.35s ease;
        background: #f8f9ff;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-sub.is-open {
        max-height: 600px;
    }

    .mobile-sub a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 28px;
        font-size: 0.86rem;
        color: #444;
        border-bottom: 1px dashed #eee;
        transition: var(--tr);
    }

    .mobile-sub a:last-child {
        border-bottom: none;
    }

    .mobile-sub a i {
        color: var(--c-primary);
        width: 14px;
        text-align: center;
        font-size: 0.8rem;
    }

    .mobile-sub a:hover {
        color: var(--c-primary);
        background: rgba(255, 140, 0, 0.05);
        padding-left: 36px;
    }
}

/* ════════════════════════════════════════
    SIDEBAR
    ════════════════════════════════════════ */
.sb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 20, 0.52);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.sb-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.sb-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--sb-width);
    max-width: 100vw;
    height: 100%;
    background: #fff;
    z-index: 1051;
    transform: translateX(105%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.sb-panel.is-open {
    transform: translateX(0);
}

.sb-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: var(--c-navy);
    flex-shrink: 0;
}

.sb-brand {
    /* font-family: var(--font-head); */
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--c-primary);
}

.sb-close-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr);
}

.sb-close-btn:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
}

.sb-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--c-primary) #f0f0f0;
}

.sb-body::-webkit-scrollbar {
    width: 4px;
}

.sb-body::-webkit-scrollbar-thumb {
    background: var(--c-primary);
    border-radius: 2px;
}

.sb-title {
    /* font-family: var(--font-head); */
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 4px;
}

.sb-title em {
    color: var(--c-primary);
    font-style: normal;
}

.sb-sub {
    font-size: var(--fs-sm);
    color: #888;
    line-height: 1.65;
    margin-bottom: 20px;
}

.sb-group {
    margin-bottom: 14px;
}

.sb-group label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.sb-wrap {
    position: relative;
}

.sb-wrap .sb-ico {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 0.8rem;
    pointer-events: none;
}

.sb-wrap.sb-ta .sb-ico {
    top: 14px;
    transform: none;
}

.sb-field {
    width: 100%;
    padding: 11px 14px 11px 40px;
    background: #f8f9ff;
    border: 1.5px solid #e4e8f0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #333;
    outline: none;
    transition: var(--tr);
    appearance: none;
}

.sb-field:focus {
    border-color: var(--c-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.sb-sel-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 0.72rem;
    pointer-events: none;
}

.sb-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--grad-btn);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 22px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 6px;
    box-shadow: 0 8px 24px rgba(255, 90, 31, 0.26);
    transition: var(--tr);
}

.sb-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 90, 31, 0.38);
}

.sb-success {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    padding: 11px 15px;
    color: #059669;
    font-size: var(--fs-sm);
    font-weight: 600;
}

.sb-success.show {
    display: flex;
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.sb-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.sb-contacts a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: var(--fs-sm);
    color: #666;
    font-weight: 500;
    transition: var(--tr);
}

.sb-contacts a i {
    color: var(--c-primary);
    width: 16px;
    text-align: center;
}

.sb-contacts a:hover {
    color: var(--c-primary);
}

/* ════════════════════════════════════════
    HERO
    ════════════════════════════════════════ */
.hero-sec {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: flex;
    align-items: center;
}

.hero-eye {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
}

.hero-h1 {
    /* font-family: var(--font-head); */
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
}

.h1-a {
    display: block;
    font-size: clamp(1.8rem, 5vw, 4.4rem);
    color: var(--c-dark);
}

.h1-b {
    display: block;
    font-size: clamp(1.8rem, 5vw, 4.4rem);
    background: linear-gradient(90deg, var(--c-primary), var(--c-primary2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h1-c {
    display: block;
    font-size: clamp(1.8rem, 5vw, 4.4rem);
    background: linear-gradient(90deg, #c850c0, #4b5ffa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-p {
    font-size: 0.96rem;
    color: #555;
    line-height: 1.78;
    max-width: 460px;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    background: #f5f5ff;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #e8e8f5;
}

.h-badge i {
    color: var(--c-primary);
    font-size: 0.78rem;
}

/* Hero visual ring */
.hero-vis {
    position: relative;
    width: 100%;
    /* max-width: 480px; */
    margin: auto;
}

.hero-ring {
    width: 100%;
    height: 100%;
    /* width: 320px;
    height: 320px;
    border-radius: 50%; */
    /* background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.12),
        rgba(200, 80, 192, 0.12)
    ); */
    /* background: linear-gradient(135deg, rgb(38 147 207 / 20%), rgb(30 108 144 / 12%)); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: floatHero 4s ease-in-out infinite;
    margin: auto;
}

@keyframes floatHero {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.hero-ring-in {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    /* background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.2),
        rgba(75, 95, 250, 0.15)
    ); */
    background: linear-gradient(135deg, rgb(43 74 158 / 42%), rgb(44 77 160 / 0%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.stat-chip {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
}

.stat-chip i {
    font-size: 0.95rem;
    color: var(--c-primary);
}

.sc1 {
    top: 6%;
    right: -6%;
}

.sc2 {
    bottom: 10%;
    left: -6%;
}

.sc3 {
    top: 48%;
    right: -14%;
}

/* ════════════════════════════════════════
    SECTION COMMONS
    ════════════════════════════════════════ */
.sec-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-dark);
    background: rgb(138 190 9);
    border: 1px solid rgb(134 188 0);
    padding: 0px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.sec-h2 {
    /* font-family: var(--font-head); */
    font-size: var(--fs-h2);
    font-weight: 800;
    color: var(--c-dark);
    line-height: 1.22;
    margin-bottom: 12px;
}

.sec-p {
    font-size: var(--fs-base);
    color: var(--c-gray);
    line-height: 1.72;
}

/* ════════════════════════════════════════
    AGENCY SECTION
    ════════════════════════════════════════ */
.agency-title {
    /* font-family: var(--font-head); */
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.agency-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.agency-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.agency-card:hover {
    background: var(--grad-btn);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.agency-card.active {
    background: #4e4a75;
    color: #fff;
}

.agency-card h6 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.agency-card p {
    /* font-size: 0.8rem; */
    color: #777;
    margin: 0;
}
.agency-card:hover p {
    font-size: 0.8rem;
    color: #fff;
    margin: 0;
}

.agency-card.active p {
    color: #ddd;
}

.agency-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 14px;
}

.perf {
    background: linear-gradient(135deg, #ff7c2f, #ffb347);
}

.social {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.seo {
    background: linear-gradient(135deg, #7ed957, #3fbf6c);
}

.web {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

/* ════════════════════════════════════════
    STRATEGY SECTION
    ════════════════════════════════════════ */
.strategy-title {
    /* font-family: var(--font-head); */
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 15px;
}

.strategy-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.strategy-img {
    max-width: 380px;
    margin: 0 auto;
}

/* Skill label row — label left, % right */
.skill {
    margin-bottom: 18px;
}
.skill-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.skill-top span {
    font-weight: 600;
    font-size: 0.9rem;
}
.skill-top b {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--grad-btn);
}

.skill-bar {
    background: #eee;
    height: 6px;
    border-radius: 20px;
    overflow: hidden;
}
.skill-fill {
    background: var(--grad-btn);
    height: 100%;
    border-radius: 20px;
}

/* ════════════════════════════════════════
    ABOUT
    ════════════════════════════════════════ */
.about-sec {
    background: var(--c-light);
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    height: 280px;
    /* background: linear-gradient(135deg, #f0f4ff, #ffe8d0); */
    /* background: linear-gradient(135deg, #f0f4ff, #24aadf66); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.about-float {
    position: absolute;
    bottom: -60px;
    left: 20px;
    background: #fff;
    border-radius: var(--radius);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-float i {
    font-size: 1.4rem;
    color: var(--c-primary);
}

.about-float b {
    /* font-family: var(--font-head); */
    font-size: 1.05rem;
    color: var(--grad-btn);
    
}

.about-float span {
    font-size: var(--fs-xs);
    color: var(--c-gray);
    display: block;
}

.stat-box {
    text-align: center;
    padding: 16px 12px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stat-box .n {
    /* font-family: var(--font-head); */
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--c-primary);
    /* color: #2c479c; */
    margin-bottom: 4px;
}

.stat-box .l {
    font-size: 0.75rem;
    color: var(--c-gray);
    font-weight: 500;
}

/* ════════════════════════════════════════
    SERVICES
    ════════════════════════════════════════ */
.svc-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 5px 5px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--tr);
    height: 15rem;
    text-align: -webkit-center;
}

.svc-card-midil {
    background: #fff;
    border-radius: var(--radius);
    padding: 5px 5px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--tr);
    height: 15rem;
    text-align: -webkit-center;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 255, 13, 0.055);
}

.svc-card-midil:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 255, 13, 0.055);
    background: var(--grad-btn);
     color: #ffffff;
}

.svc-card-midil:hover .svc-ico {
    background: linear-gradient(177deg, #84bc00a8, #d7de05a2);
    color: #ffffff;
}

.svc-card:hover .svc-ico {
    background: linear-gradient(177deg, #84bc00, #d7de05);
    color: #fff;
}

.svc-ico {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
    /* background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.15),
        rgba(255, 90, 31, 0.1)
    );
    color: var(--c-primary); */
    background: linear-gradient(135deg, rgba(147, 200, 1, 0.39), rgb(203 221 3 / 20%));
    color: #000000;
}

.svc-card h5 {
    /* font-family: var(--font-head); */
    font-size: 0.96rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-dark);
}
.svc-card-midil h5 {
    /* font-family: var(--font-head); */
    font-size: 0.96rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-dark);
}

.svc-card p {
    font-size: var(--fs-sm);
    color: var(--c-gray);
    line-height: 1.65;
    margin-bottom: 16px;
}

.svc-card-midil p {
    font-size: var(--fs-sm);
    color: var(--c-gray);
    line-height: 1.65;
    margin-bottom: 16px;
}

.svc-card-midil:hover p{
    color: #fff;
}
/* 
.svc-card:hover h5 {
    color: #fff;
}
.svc-card:hover .svc-lnk {
    color: #fff;
} */

.svc-lnk {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--tr);
}

.svc-lnk:hover {
    gap: 10px;
    color: var(--c-primary2);
}

/* ════════════════════════════════════════
    HOW WE WORK — Process
    ════════════════════════════════════════ */
.process-sec {
    background: #fff;
}

.proc-card {
    background: #fff;
    border: 1px solid #ffffff;
    /* border-radius: var(--radius); */
    border-radius: 10px;
    padding: 10px 25px 10px 25px;
    text-align: center;
    position: relative;
    height: 18rem;
    /*height: stretch;*/
    transition: var(--tr);
    box-shadow: 13px 13px 51px 0px rgba(9.999999999999991, 50.99999999999997, 80, 0.16);
}

.proc-card:hover {
    /* border-color: rgba(255, 140, 0, 0.35);
    box-shadow: 0 18px 50px rgba(255, 140, 0, 0.12); */
    border-color: rgb(146 193 1 / 37%);
    box-shadow: 0 18px 50px rgb(145 193 1 / 48%);
    transform: translateY(-10px);
}

.proc-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.proc-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    /* border: 2px solid var(--c-primary); */
    border: 2px solid #86bc006b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--c-primary);
    transition: var(--tr);
    box-shadow: 0 6px 22px rgb(134 188 0 / 48%);
}

.proc-card:hover .proc-icon {
    background: var(--grad-btn);
    color: #fff;
    border-color: #93c20159;
    box-shadow: 0 10px 30px rgb(192 212 3 / 57%);
}

.proc-title {
    /* font-family: var(--font-head); */
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 12px;
}

.proc-desc {
    font-size: 14px;
    color: #000000;
    line-height: 1.60;
    margin: 0px;
    text-align: -webkit-center;
}

/* ════════════════════════════════════════
    INDUSTRIES — White Background
    ════════════════════════════════════════ */
.ind-sec {
    background: #fff;
}

.slider-outer {
    overflow: hidden;
}

.ind-track,
.testi-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.ind-card {
    margin: 2.5px 0px;
    flex: 0 0 calc(25% - 15px);
    min-width: 190px;
    background: #fff;
    border: 1.5px solid #eef0fb;
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: var(--tr);
}


.ind-card:hover {
    background: rgb(38 151 211 / 0%);
    border-color: rgb(147 199 1 / 50%);
    border-color: rgb(172 206 3 / 58%);
    transform: translateY(-1px);
    /* box-shadow: 0 16px 44px rgba(255, 140, 0, 0.14); */
    box-shadow: 0px 5px 10px 5px rgb(135 137 5 / 66%);
}

.ind-ico {
    width: 52px;
    height: 52px;
    background: rgb(142 196 0 / 0%);
    border: 1px solid rgb(134 188 0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--c-primary);
    margin: 0 auto 14px;
    transition: var(--tr);
}

.ind-card:hover .ind-ico {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}

.ind-card h6 {
    /* font-family: var(--font-head); */
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 6px;
}

.ind-card p {
    font-size: 0.75rem;
    color: var(--c-gray);
    line-height: 1.5;
    margin: 0;
}

/* Slider nav */
.sl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.sl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    cursor: pointer;
    background: transparent;
    transition: var(--tr);
}

.sl-btn.dark {
    border-color: rgba(0, 0, 0, 0.15);
    color: #555;
}

.sl-btn:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.sl-dots {
    display: flex;
    gap: 6px;
}

.sl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--tr);
    border: none;
    padding: 0;
}

.sl-dot.active {
    background: var(--c-primary);
    transform: scale(1.3);
}

/* ════════════════════════════════════════
    CTA SECTION
    ════════════════════════════════════════ */
.cta-sec {
    background: linear-gradient(
        135deg,
        var(--c-primary) 0%,
        var(--c-primary2) 100%
    );
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.cta-badge i {
    color: #ffe066;
}

.cta-h {
    /* font-family: var(--font-head); */
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 14px;
}

.cta-h span {
    color: rgba(255, 255, 255, 0.75);
}

.cta-p {
    font-size: 0.95rem;
    color: rgb(255, 255, 255);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.cta-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat strong {
    display: block;
    /* font-family: var(--font-head); */
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.cta-stat span {
    font-size: 0.72rem;
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.cta-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--c-primary);
    /* font-family: var(--font-head); */
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--tr);
    white-space: nowrap;
}

.cta-btn-primary:hover {
    /* background: var(--c-dark); */
    background: var(--grad-btn);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* background: rgba(255, 255, 255, 0.15); */
    background: var(--grad-btn);
    color: #fff;
    border: 1px solid rgb(255, 255, 255);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--tr);
    white-space: nowrap;
}

/* .cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
} */

.cta-note {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-note i {
    color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════════════
    TESTIMONIALS
    ════════════════════════════════════════ */
.testi-sec {
    background: var(--c-light);
}

.testi-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 260px;
    background: #fff;
    border-radius: var(--radius);
    padding: 26px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--tr);
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgb(255 255 255);
    /* border-color: rgba(255, 140, 0, 0.15); */
}

.t-stars {
    color: #ffb347;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.t-body {
    font-size: 0.86rem;
    font-style: italic;
    color: #555;
    line-height: 1.72;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.t-body::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 1.8rem;
    color: var(--c-primary);
    font-family: Georgia, serif;
    line-height: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    border: 2px solid var(--c-primary);
    flex-shrink: 0;
}

.t-name {
    /* font-family: var(--font-head); */
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.t-role {
    font-size: 0.72rem;
    color: #888;
}

/* ════════════════════════════════════════
    FAQ
    ════════════════════════════════════════ */
.faq-sec {
    background: #fff;
}

.faq-item {
    border: 1px solid #edf0f8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    transition: var(--tr);
}

.faq-item.open {
    /* border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.1); */
    border-color: rgb(134 188 0 / 52%);
    box-shadow: 0 4px 20px rgb(207 219 5 / 55%);
}

.faq-q {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    /* font-family: var(--font-head); */
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-dark);
    text-align: left;
    transition: var(--tr);
}

.faq-q:hover {
    /* background: rgba(255, 140, 0, 0.025); */
    background: rgba(140, 191, 1, 0.541);
}

.faq-item.open .faq-q {
    color: var(--c-primary);
}

.faq-ico {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    /* background: rgba(255, 140, 0, 0.1); */
    background: rgb(207 219 5);
    border-radius: 8px;
    display: flex;
    color: #fffff;
    align-items: center;
    justify-content: center;
    /* color: var(--c-primary); */
    font-size: 0.72rem;
    transition: var(--tr);
    margin-left: 10px;
}

.faq-item.open .faq-ico {
    background: var(--c-primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.faq-ans-in {
    padding: 0 18px 16px;
    font-size: var(--fs-sm);
    color: var(--c-gray);
    line-height: 1.72;
}

.faq-item.open .faq-ans {
    max-height: 260px;
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}
.faq-item.open .faq-ans {
    max-height: 1000px; /* enough for any answer */
}

@media (max-width: 375px) {
    .faq-q {
        font-size: 0.8rem;
        padding: 12px 10px;
    }
}

/* ════════════════════════════════════════
    BLOG
    ════════════════════════════════════════ */
.blog-sec {
    background: var(--c-light);
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--tr);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-thumb {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.blog-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--c-primary);
    padding: 4px 10px;
    border-radius: 50px;
}

.blog-body {
    padding: 18px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    color: #bbb;
    margin-bottom: 10px;
}

.blog-meta i {
    color: var(--c-primary);
}

.blog-title {
    /* font-family: var(--font-head); */
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-title a{
    color: #000000bb;
}
.blog-title a:hover {
    color: var(--c-primary);
}

.blog-excerpt {
    font-size: 0.8rem;
    color: var(--c-gray);
    line-height: 1.62;
    margin-bottom: 14px;
}

.blog-lnk {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--tr);
}

.blog-lnk:hover {
    gap: 10px;
    color: var(--c-primary2);
}

/* ════════════════════════════════════════
    BRANDS MARQUEE
    ════════════════════════════════════════ */
.brands-sec {
    /* background: #fafbff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; */
    padding: 20px 0;
}

.marquee-outer {
    overflow: hidden;
    position: relative;
}

.marquee-outer::before,
.marquee-outer::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.marquee-outer::before {
    left: 0;
    background: linear-gradient(90deg, #fafbff, transparent);
}

.marquee-outer::after {
    right: 0;
    background: linear-gradient(270deg, #fafbff, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeRun 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeRun {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex-shrink: 0;
    margin: 5px 20px;
    display: flex;
    align-items: center;
    /* height: 80px; */
    border-right: 1px solid #f3f3f3;
}

.brand-logo {
    width: 200px;
    height: 100px;
    border-radius: 10px;
    background: #fff;
    /* border: 2px solid rgba(255, 140, 0, 0.15); */
    border: 2px solid #87c400;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: var(--font-head); */
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.05em;
    transition: var(--tr);
}

/* .brand-logo:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.35);
    box-shadow: 0 10px 30px rgb(44 74 158 / 41%);

} */

/* ════════════════════════════════════════
    WORK TOGETHER
    ════════════════════════════════════════ */

/* ════════════════════════════════════════
    FOOTER
    ════════════════════════════════════════ */
.site-footer {
    /* background: var(--c-footer-bg); */
    /* background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary2) 100%); */
    background:  #000000e5;
}

.ft-mark {
    /* font-family: var(--font-head); */
    font-weight: 800;
    font-size: 1.4rem;
    /* color: var(--c-primary); */
    color: #ffffff;
}

.ft-sub {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.ft-desc {
    font-size: 0.82rem;
    color: #ffffff;
    /* color: #666; */
    line-height: 1.7;
    margin-top: 10px;
}

.ft-head {
    /* font-family: var(--font-head); */
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.ft-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ft-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #fff;
    font-size: 0.86rem;
    transition: var(--tr);
}

.ft-social a:hover {
    /* background: var(--c-primary); */
    background: var(--grad-btn);
    border-color: var(--c-primary);
    color: #fff;
    transform: translateY(-2px);
}

.ft-addr {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.7;
}

.ft-addr b {
    color: #ccc;
}

.ft-contact-row {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ft-contact-row a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 0.82rem;
    transition: var(--tr);
}

.ft-contact-row a i {
    /* color: var(--c-primary); */
    color: #fff;
    width: 14px;
}

.ft-contact-row a:hover {
    color: var(--c-primary);
}

.ft-divider {
    border-top: 1px solid #222;
}

.ft-link-h {
    /* font-family: var(--font-head); */
    font-size: 0.87rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ft-links {
    list-style: none;
    padding: 0;
}

.ft-links li {
    margin-bottom: 7px;
}

.ft-links a {
    font-size: 0.79rem;
    /* color: #777; */
    color: #ffffff;
    transition: var(--tr);
}

.ft-links a:hover {
    color: var(--c-primary2);
    padding-left: 4px;
}

.ft-copy {
    background: #00000038;
    /* background: linear-gradient(135deg, var(--c-primary2) 0%, var(--c-primary) 100%); */
    padding: 13px 0;
}

.ft-copy p {
    font-size: 0.78rem;
    color: #fff;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* ════════════════════════════════════════
    BACK TO TOP
    ════════════════════════════════════════ */
.back-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: var(--c-primary);
    color: #fff;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 6px 22px rgba(123, 241, 55, 0.39);
    transition: var(--tr);
    z-index: 999;
}

.back-top.show {
    opacity: 1;
    pointer-events: all;
}

.back-top:hover {
    background: var(--c-primary);
    transform: translateY(-3px);
}

/* ════════════════════════════════════════
    AOS ANIMATIONS
    ════════════════════════════════════════ */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-28px);
}

[data-aos="fade-left"] {
    transform: translateX(28px);
}

[data-aos].anim {
    opacity: 1;
    transform: none;
}

/* ════════════════════════════════════════
    PARTICLE CANVAS
    ════════════════════════════════════════ */
#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

/* ╔══════════════════════════════════════════════════════════════════╗
    ║              RESPONSIVE BREAKPOINTS                              ║
    ╚══════════════════════════════════════════════════════════════════╝ */

/* ════ Tablet landscape ≤ 991px ════ */
@media (max-width: 991.98px) {
    :root {
        --nav-h: 64px;
    }

    .hero-ring {
        width: 280px;
        height: 280px;
    }

    .hero-ring-in {
        width: 210px;
        height: 210px;
        font-size: 3.5rem;
    }

    .sc1,
    .sc2,
    .sc3 {
        display: none;
    }

    .cta-actions {
        align-items: flex-start;
    }
}

/* ════ Tablet portrait ≤ 767px ════ */
@media (max-width: 767.98px) {
    :root {
        --nav-h: 60px;
        --sb-width: 100vw;
    }

    /* ── Navbar ── */
    .logo-mark {
        font-size: 1.3rem;
    }

    /* ── Hero ── */
    .hero-inner {
        padding-top: var(--nav-h);
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-h1,
    .hero-eye,
    .hero-p {
        text-align: center;
    }

    .hero-p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-cta-row {
        justify-content: center !important;
    }

    .hero-ring {
        width: 220px;
        height: 220px;
    }

    .hero-ring-in {
        width: 165px;
        height: 165px;
        font-size: 2.8rem;
    }

    /* ── Section headings ── */
    .sec-h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    /* ── Agency ── */
    .agency-title {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }

    /* ── Sliders ── */
    .testi-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 100%;
    }

    .ind-card {
        flex: 0 0 calc(50% - 10px);
    }

    /* ── CTA ── */
    .cta-sec {
        padding: 50px 0;
    }

    .cta-h {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .cta-p {
        max-width: 100%;
    }

    .cta-actions {
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-stats {
        justify-content: center;
    }

    /* ── About float ── */
    .about-float {
        right: 10px;
        left: auto;
        padding: 10px 14px;
    }

    .about-float b {
        font-size: 0.92rem;
    }

    /* ── Footer ── */
    /* .ft-copy p {
        font-size: 0.72rem;
    } */
}

/* ════ Mobile ≤ 575px ════ */
@media (max-width: 575.98px) {
    :root {
        --nav-h: 58px;
    }

    /* ── General spacing ── */
    section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .container-fluid {
        overflow-x: hidden;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* ── Navbar ── */
    .logo-mark {
        font-size: 1.2rem;
    }

    .logo-sub {
        display: none;
    }

    .btn-sm-o {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    /* ── Hero ── */
    .hero-inner {
        padding-bottom: 50px;
        align-items: flex-start;
        padding-top: calc(var(--nav-h) + 16px);
    }

    .hero-eye {
        font-size: 0.62rem;
    }

    .h1-a,
    .h1-b,
    .h1-c {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    .hero-p {
        font-size: 0.88rem;
        max-width: 100%;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
        gap: 8px;
    }

    .h-badge {
        font-size: 0.72rem;
        padding: 5px 11px;
    }

    .hero-ring {
        width: 180px;
        height: 180px;
    }

    .hero-ring-in {
        width: 135px;
        height: 135px;
        font-size: 2.2rem;
    }

    /* .hero-vis {
        margin-top: 20px;
    } */

    .d-flex.gap-3.mt-4.flex-wrap.align-items-center {
        justify-content: center !important;
    }

    .btn-orange,
    .btn-outline-o {
        font-size: 0.8rem;
        padding: 9px 18px;
    }

    /* ── Agency ── */
    .agency-sec .col-6 {
        width: 100%;
    }

    .agency-card {
        padding: 18px;
    }

    .agency-icon {
        width: 44px;
        height: 44px;
    }

    .agency-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .agency-text {
        font-size: 0.86rem;
        text-align: center;
    }

    .agency-sec .btn-outline-o {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 1rem !important;
    }

    /* ── Strategy ── */
    .strategy-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .strategy-text {
        text-align: center;
        font-size: 0.88rem;
    }

    .strategy-sec .btn-outline-o {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .strategy-img {
        max-width: 260px;
        margin: 0 auto 1.5rem;
    }

    /* ── About ── */
    .about-img {
        height: 200px;
        font-size: 4rem;
    }

    .about-float {
        right: 8px;
        bottom: -12px;
        padding: 8px 12px;
        gap: 8px;
    }

    .about-float i {
        font-size: 1.1rem;
    }

    .about-float b {
        font-size: 0.85rem;
    }

    .about-float span {
        font-size: 0.62rem;
    }

    .stat-box .n {
        font-size: 1.4rem;
    }

    .stat-box .l {
        font-size: 0.7rem;
    }

    /* ── Services ── */
    .svc-card {
        padding: 20px 16px;
    }

    /* ── Process ── */
    .proc-card {
        padding: 24px 14px 20px;
    }

    .proc-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .proc-title {
        font-size: 0.92rem;
    }

    .proc-desc {
        font-size: 0.82rem;
    }

    /* ── Industries ── */
    .ind-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 100%;
    }

    .ind-ico {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .ind-card h6 {
        font-size: 0.86rem;
    }

    .sl-btn {
        width: 36px;
        height: 36px;
        font-size: 0.76rem;
    }

    /* ── CTA ── */
    .cta-badge {
        font-size: 0.66rem;
        padding: 4px 11px;
    }

    .cta-h {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
    }

    .cta-p {
        font-size: 0.88rem;
    }

    .cta-btn-primary {
        padding: 14px 24px;
        font-size: 0.92rem;
    }

    .cta-btn-secondary {
        padding: 12px 22px;
        font-size: 0.86rem;
    }

    .cta-stat strong {
        font-size: 1.3rem;
    }

    .cta-divider {
        height: 28px;
    }

    /* ── Testimonials ── */
    .testi-card {
        padding: 20px 16px;
    }

    .t-body {
        font-size: 0.82rem;
    }

    .t-avatar {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }

    /* ── FAQ ── */
    .faq-sec .col-lg-4 {
        text-align: center;
    }

    .faq-sec .col-lg-4 .btn-orange {
        width: 100%;
        justify-content: center;
    }

    .faq-q {
        font-size: 0.84rem;
        padding: 14px 14px;
    }

    .faq-ans-in {
        padding: 0 14px 14px;
        font-size: 0.8rem;
    }

    .faq-ico {
        width: 26px;
        height: 26px;
        font-size: 0.68rem;
    }

    /* ── Blog ── */
    .blog-thumb {
        height: 140px;
        font-size: 2.2rem;
    }

    .blog-body {
        padding: 14px;
    }

    .blog-title {
        font-size: 0.88rem;
    }

    /* ── Brands ── */
    .brand-item {
        padding: 0 16px;
        height: 70px;
    }

    .brand-logo {
        width: 110px;
        height: 46px;
        font-size: 0.78rem;
        border-radius: 10px;
    }

    /* ── Footer ── */
    .ft-mark {
        font-size: 1.2rem;
    }

    .ft-desc,
    .ft-addr,
    .ft-contact-row a,
    .ft-links a {
        font-size: 0.78rem;
    }

    .ft-copy p {
        font-size: 0.68rem;
        letter-spacing: 0.01em;
    }

    /* ── Back to top ── */
    .back-top {
        bottom: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }
}

/* ════ Very small phones ≤ 375px ════ */
@media (max-width: 375px) {
    :root {
        --nav-h: 56px;
    }

    .h1-a,
    .h1-b,
    .h1-c {
        font-size: clamp(1.45rem, 9vw, 2rem);
    }

    .hero-ring {
        width: 160px;
        height: 160px;
    }

    .hero-ring-in {
        width: 120px;
        height: 120px;
        font-size: 1.9rem;
    }

    .btn-orange,
    .btn-outline-o {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    .cta-stats {
        gap: 10px;
    }

    .cta-btn-primary {
        font-size: 0.86rem;
        padding: 12px 18px;
    }

    .cta-btn-secondary {
        font-size: 0.8rem;
        padding: 10px 18px;
    }
}

/* ════ Smallest phones 320px ════ */
@media (max-width: 320px) {
    .h1-a,
    .h1-b,
    .h1-c {
        font-size: 1.35rem;
    }

    .hero-eye {
        font-size: 0.58rem;
        letter-spacing: 0.1em;
    }

    .agency-title,
    .strategy-title,
    .proc-title,
    .sec-h2 {
        font-size: 1.15rem;
    }

    .btn-orange,
    .btn-outline-o {
        padding: 8px 14px;
        font-size: 0.76rem;
    }

    .stat-box .n {
        font-size: 1.2rem;
    }

    .cta-stat strong {
        font-size: 1.1rem;
    }

    .ft-social a {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }
}

/* ════════════════════════════════════════
   WORK TOGETHER — 50/50 ONE CARD
════════════════════════════════════════ */
.wt-sec {
    background: var(--c-light);
}

/* Outer Card */
/* .wt-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.11);
} */

/* ── LEFT — Dark themed ── */
.wt-left {
    background: #8dc200;
    /* background: var(--c-light); */
    padding: 44px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}

/* Decorative circle bg */
.wt-left::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9ac90152, #cbd90545);
    pointer-events: none;
}
.wt-left::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9ac90152, #cbd90545);
    pointer-events: none;
}

.wt-left-title {
    /* font-family: var(--font-head); */
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}
.wt-left-title span {
    font-weight: 400;
    font-size: 1rem;
    /* color: rgba(36, 35, 35, 0.603); */
    color: rgb(255 255 255 / 91%);
    margin-left: 8px;
}

/* Contact list */
.wt-contact-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.wt-ci {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.wt-ci-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    /* background: rgba(255, 140, 0, 0.15); */
    /* border: 1px solid rgba(255, 140, 0, 0.25); */
    background: linear-gradient(135deg, #ffffff, #ffffff);
    /* border: 1px solid rgba(255, 140, 0, 0.25); */
    /* background: var(--grad-btn); */
    border: 1px solid rgb(141 194 0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    /* color: #fff; */
    font-size: 0.9rem;
}
.wt-ci-body {
    flex: 1;
}
.wt-ci-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgb(255 255 255);
    margin-bottom: -8px;
}
.wt-ci-body p,
.wt-ci-body a {
    font-size: 0.86rem;
    color: rgb(255 255 255);
    line-height: 1.45;
    margin: 0;
    text-decoration: none;
    transition: var(--tr);
}
.wt-ci-body a:hover {
    /* color: var(--c-primary); */
    color: #ffffff;

}

/* Bottom buttons */
.wt-left-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 12px;
}
.wt-dir-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    border-radius: 50px;
    padding: 9px 20px;
    text-decoration: none;
    transition: var(--tr);
}
.wt-dir-btn:hover {
    /* background: var(--c-primary); */
    background: var(--grad-btn);
    border-color: var(--c-primary);
    color: #fff;
}
.wt-view-lnk {
    font-size: 0.82rem;
    font-weight: 600;
    /* color: var(--c-primary); */
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--tr);
}
.wt-view-lnk:hover {
    color: var(--c-primary2);
}

/* ── RIGHT — White Form ── */
.wt-right {
    background: #ffffff;
    padding: 44px 40px;
    height: 100%;
}
.wt-form-head {
    /* font-family: var(--font-head); */
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 22px;
}

/* Inputs */
.wt-inp {
    width: 100%;
    padding: 5px 16px;
    background: #8dc20000;
    border: 1.5px solid #e4e8f0;
    border-radius: 50px;
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: #333;
    outline: none;
    transition: var(--tr);
    appearance: none;
}
.wt-inp:focus {
    border-color: var(--c-primary);
    /* box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1); */
    box-shadow: 0 0 0 3px rgb(170 198 255 / 11%);
    background: #fff;
}
.wt-inp::placeholder {
    color: #aaaaaacc;
}

.wt-ta {
    border-radius: 16px;
    resize: none;
}

/* Select */
.wt-sel-wrap {
    position: relative;
}
.wt-sel-wrap select {
    padding-right: 36px;
    cursor: pointer;
}
.wt-sel-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #999;
    pointer-events: none;
}

/* Checkbox */
.wt-chk-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    line-height: 1.55;
}
.wt-chk {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    accent-color: var(--c-primary);
    margin-top: 3px;
    cursor: pointer;
}
.wt-chk-label span {
    display: block;
}
.wt-chk-label a {
    color: var(--c-primary);
    text-decoration: none;
    display: block; /* ← link second line pe */
}
.wt-chk-label a:hover {
    text-decoration: underline;
}

/* Submit */
.wt-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-btn);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: var(--tr);
}
.wt-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-h);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .wt-left,
    .wt-right {
        padding: 32px 28px;
    }
}

@media (max-width: 767.98px) {
    .wt-card {
        border-radius: var(--radius);
    }
    .wt-left,
    .wt-right {
        padding: 28px 22px;
    }
    .wt-left-title {
        font-size: 1.1rem;
    }
    .wt-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .wt-left,
    .wt-right {
        padding: 24px 18px;
    }
    .wt-inp {
        padding: 10px 14px;
        font-size: 0.84rem;
    }
    .wt-ta {
        border-radius: 14px;
    }
    .wt-left-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .wt-dir-btn {
        width: 100%;
        justify-content: center;
    }
    .wt-view-lnk {
        align-self: center;
    }
}



/* ──────────────────────────────────────────────────────────
   WORK TOGETHER
────────────────────────────────────────────────────────── */
.wt-card {
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* box-shadow: var(--shadow-lg); */
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.wt-sel-wrap select {
    padding-right: 40px; /* extra space for arrow */
}

@media (max-width: 767px) {
    .wt-card {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .wt-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ──────────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
    .site-footer [class*="col-"] {
        text-align: left;
    }
    .ft-social {
        justify-content: left;
    }
    .ft-contact-row a {
        justify-content: left;
    }
}

.ft-copy p {
    word-break: break-word;
    padding: 0 10px;
}

/* ──────────────────────────────────────────────────────────
   BRAND LOGOS
────────────────────────────────────────────────────────── */
.brand-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    background: #fff;
    border: 2px solid #87c400;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: var(--font-head); */
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.05em;
    transition: var(--tr);
}

/* ──────────────────────────────────────────────────────────
   HERO FLOATING STATS – hide on small, scale on tablet
────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .sc1, .sc2, .sc3 {
        display: none; /* you already have this – keep it */
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    /* Optional: show them smaller if you want */
    .sc1, .sc2, .sc3 {
        display: flex;
        transform: scale(0.8);
    }
    .sc1 { top: 2%; right: -2%; }
    .sc2 { bottom: 5%; left: -2%; }
    .sc3 { top: 40%; right: -5%; }
}

/* ──────────────────────────────────────────────────────────
   TABLET LANDSCAPE / SMALL DESKTOP
────────────────────────────────────────────────────────── */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-h1 .h1-a,
    .hero-h1 .h1-b,
    .hero-h1 .h1-c {
        font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    }
    .ind-card {
        flex: 0 0 calc(33.333% - 14px);
    }
    .testi-card {
        flex: 0 0 calc(50% - 10px);
    }
}


  /* Badges */
    .ch-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .ch-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(133, 188, 0, 0.15);
        border: 1px solid rgba(133, 188, 0, 0.3);
        color: rgba(0, 0, 0, 0.85);
        font-size: 0.78rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
    }

    .ch-badge i {
        color: var(--c-primary);
    }

    .imgebox-paragrap {
    margin: 5px 0 0 0;   /* sirf upar thoda gap */
    padding: 0;
    font-size: 16px;
    line-height: 1.5;    /* normal readable spacing */
    /* color: #444; */
    font-weight: 500;
    letter-spacing: normal;   /* letters ka gap reset */
    word-spacing: normal;     /* words ka gap reset */
    white-space: normal;      /* line break normal */
}