/* ===========================
   GLOBAL RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================
   COLOR PALETTE
=========================== */
:root {
    /* Primary Brand Colors */
    --wq-primary: #06B6D4;
    --wq-accent: #7C3AED;
    --wq-accent-light: #22D3EE;
    --wq-bg-dark: #020617;
    --wq-bg-light: #F9FAFB;
    --wq-black-primary: #000000;
    --wq-dark-primary: #040410;
    --wq-white: #ffffff;
    --wq-heading: #1e293b;
    --wq-grey: #808080;
    --wq-dark-purple: #1A2027;
    --wq-dark-prple-shade: #202D3D;
    --wq-whyus-shade: #1E2222;


    /* Secondary / Accent Colors */
    --wq-secondary: #0F172A;
    --wq-secondary-light: #22d3ee;
    --wq-secondary-dark: #0e7490;

    /* font-family */
    --wq-font-anek: "Anek Devanagari", sans-serif;
    --wq-font-poppins: "Poppins", sans-serif;
    --wq-font-logo: "Sour Gummy", sans-serif;
    --wq-font-navlinks: "Montserrat", sans-serif;
    --wq-font-space-grotesk: "Space Grotesk", sans-serif;
    --wq-font-rubik: "Rubik", sans-serif;


    /* Gradient */
    --wq-gradient: linear-gradient(135deg, var(--wq-primary), var(--wq-secondary));
    --wq-gradient-2: linear-gradient(135deg, var(--wq-secondary-light), var(--wq-primary));
    --wq-gradient-span: linear-gradient(90deg, #89bcfc 0%, #4c8ff5 60%, #0059ff 100%);
    --wq-gradient-section:
        radial-gradient(circle at top left, #1b2735 0%, #0b0f16 60%),
        radial-gradient(circle at bottom right, #101726, #05070c);

    /* Status Colors */
    --wq-success: #10b981;
    --wq-warning: #f59e0b;
    --wq-error: #ef4444;

    /* Background Layers */
    --wq-bg: #0f172a;
    --wq-bg-light-layer: #1e293b;
    --wq-surface: rgba(255, 255, 255, 0.05);
    --wq-card: rgba(255, 255, 255, 0.08);

    /* Borders & Shadows */
    --wq-border: rgba(255, 255, 255, 0.15);
    --wq-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Text Colors */
    --wq-text-muted: #cbd5e1;
    --wq-text-dim: #94a3b8;
    --wq-text-inverse: #0f172a;

    /* Background Gradients */
    --wq-bg1: linear-gradient(to right top, #000000, #342937, #475778, #268eb1, #00c9c9);
    --wq-bg2: linear-gradient(to bottom, #000000, #342937, #475778, #268eb1, #00c9c9);
    --wq-bg3: linear-gradient(to right top, #000000, #3c373d, #6a7181, #90b4c5, #bffcfa);
    --wq-bg4: linear-gradient(to top, #000000, #241f25, #353b4a, #3a5d6b, #47807f);
    --wq-bg5: radial-gradient(circle, #181f1f, #1a2929, #1c3232, #1c3d3d, #1c4747);
    --wq-bg6: radial-gradient(circle, #2f232d, #23212d, #171f29, #0f1c22, #0a1919);
    --wq-bg7: linear-gradient(to top, #0c080a, #2b2527, #4b3f44, #6e5c61, #937a80, #a9838c, #bf8d97, #d696a1, #e08a9b, #ea7d94, #f36f8e, #fb5f88);
}


/* =============================
   HEADER CONTENT
============================= */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.wq-locomotive-scroll {
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 1024px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .wq-locomotive-scroll {
        transform: none !important;
        width: 100%;
    }
}



/* ===========================
   FROSTED GLASS EFFECT
=========================== */
.frosted-glass {
    position: relative;
    background: rgba(0, 0, 0, 0.45);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0, transparent 100%);
    backdrop-filter: blur(8px) brightness(1) contrast(1) grayscale(0) hue-rotate(0deg) invert(0) opacity(1) saturate(1) sepia(0);
    -webkit-backdrop-filter: blur(8px) brightness(1) contrast(1) grayscale(0) hue-rotate(0deg) invert(0) opacity(1) saturate(1) sepia(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    isolation: isolate;
}


/* ===========================
    NAVBAR
=========================== */
.wq-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* max-width: 1400px; */
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 999;
    animation: navbarEntry 0.8s ease-out forwards;
}

@keyframes navbarEntry {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wq-navbar .wq-logo img {
    height: 90px;
    width: 160px;
    padding: 6px;
    filter:
        drop-shadow(0 4px 8px rgba(255, 255, 255, 0.35)) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.15));
}


/* ===========================
   NAVBAR LINKS + DROPDOWNS
=========================== */
.wq-navlinks {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    margin: 0;
}

.wq-navlinks ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.wq-navlinks ul li {
    list-style: none;
    position: relative;
}

.wq-navlinks ul li a {
    text-decoration: none;
    font-family: var(--wq-font-navlinks);
    font-weight: 600;
    font-size: 0.8rem;
    color: #dedcdc;
    letter-spacing: 0.5px;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
}

/* Hover Effects for Main Links */
.wq-navlinks ul li a:hover {
    /* font-weight: 900; */
    color: var(--wq-white);
    transform: scale(1.01);
    text-shadow: 0 0 6px rgba(224, 6, 152, 0.4);
}

.wq-navlinks ul li a svg {
    width: 20px;
    height: 20px;
    fill: #ccc;
    position: relative;
    top: 1px;
    transition: transform 0.5s ease, fill 0.5s ease, font-weight 0.5s ease;
}

/* Rotate arrow on hover */
.wq-navlinks ul li:hover>a svg {
    transform: rotate(180deg);
    font-weight: 900;
    fill: grey;
}

/* ===========================
   SUB MENU (Dropdown)
=========================== */
.wq-sub-navlinks {
    position: absolute;
    top: 150%;
    left: 0;
    z-index: 1000;
    /* background-color: rgba(0, 0, 0, 0.3); */
    background: var(--wq-bg);
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.64) 0%, transparent 100%);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    min-width: 180px;
    padding: 10px 20px;
    height: max-content;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0.3, 0.7, 1.2);
    isolation: isolate;
}


.wq-navlinks ul li:hover>.wq-sub-navlinks {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */
.wq-sub-navlinks a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.wq-sub-navlinks a:hover {
    color: #fff;
    transform: translateX(4px);
}

/* ===========================
   NAV ENQURY BUTTON
=========================== */
.wq-enquire {
    border: 1px solid hsla(0, 0%, 100%, .3);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    width: max-content;
    height: max-content;
    padding: 12px 22px;
    position: relative;
    overflow: hidden;
}

.wq-enquire::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.39) 0%, transparent 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.wq-enquire:hover::before {
    opacity: 0;
}

.wq-enquire>* {
    position: relative;
    z-index: 1;
}

.wq-enquire a {
    color: #dedcdc;
    text-decoration: none;
    font-family: var(--wq-font-navlinks);
    font-weight: 600;
    letter-spacing: 1.1px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.wq-enquire a:hover {
    color: var(--wq-white);
}

/* ===========================
   HAMNBURGER MENU
=========================== */
.wq-menu {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.wq-menu svg {
    height: 30px;
    width: 30px;
    transition: transform 0.3s ease,
        fill 0.3s ease, height 0.3s ease, width 0.3s ease;
}

.wq-menu svg:hover {
    height: 25px;
    width: 25px;
    fill: var(--wq-white);
}

/* ===========================
   HAMNBURGER MENU LINKS
=========================== */
.wq-menu-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 50px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 999;
}

.wq-menu-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* Cross icon */
.wq-menu-cross {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    height: max-content;
    width: max-content;
    background: transparent;
    padding: 8px;
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.wq-menu-cross:hover {
    color: var(--wq-white);
    transform: scale(1.1);
}

/* Menu items */
.wq-menu-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.wq-menu-links ul li {
    padding: 12px 10px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wq-menu-links ul li:last-child {
    border-bottom: none;
}

.wq-menu-links ul li a {
    text-decoration: none;
    font-family: var(--wq-font-navlinks);
    color: #e3e3e3;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    gap: 4px;
    align-items: center;
    width: 90%;
    transition: color 0.3s ease transform 0.5s ease;
}

.wq-menu-links ul li a svg {
    transition: transform 0.3s ease;
}

.wq-menu-links ul li a svg.rotate {
    transform: rotate(180deg);
}

.wq-menu-links ul li a:hover {
    color: #fff;
}

/* Submenu */
.wq-menu-sub-links {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    margin-top: 6px;
    background: var(--wq-bg);
    border-radius: 8px;
}

.wq-menu-sub-links.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 12px 20px 20px;
}


.wq-menu-sub-links a {
    display: block;
    padding: 6px 0;
    color: #ccc;
    text-decoration: none;
    font-family: var(--wq-font-navlinks);
    border-bottom: 1px solid rgba(255, 255, 255, 0.297);
    font-size: 16px !important;
    transition: color 0.3s ease;
}

.wq-menu-sub-links a:last-child {
    border-bottom: none;
}

.wq-menu-sub-links a:hover {
    color: #fff;
}

/* .wq-menu-links ul li:hover .wq-menu-sub-links {
    display: none;
} */


/* ===========================
   RESPONSIVE NAVBAR 
=========================== */
/* ---------- Tablets (≤992px) ---------- */
@media (max-width: 992px) {
    .wq-navbar {
        height: 60px;
        padding: 0 1rem;
    }

    .wq-navbar .wq-logo img {
        height: 80px;
        width: 140px;
        padding: 4px;
        position: relative;
        left: -8px;
    }

    .wq-navlinks {
        margin: 0 2rem;
    }

    .wq-navlinks ul {
        gap: 8px;
    }

    .wq-navlinks ul li a {
        font-size: 0.75rem;
    }

    .wq-enquire {
        padding: 10px 16px;
    }

    .wq-enquire a {
        font-size: 11px;
    }
}

@media (max-width: 840px) {
    .wq-navbar {
        padding: 0 0.8rem;
    }

    .wq-navlinks {
        margin: 0 0.6rem;
    }

    .wq-navlinks ul {
        gap: 6px;
    }

    .wq-navlinks ul li a {
        font-size: 0.7rem;
    }

    .wq-enquire {
        padding: 8px 14px;
    }

    .wq-enquire a {
        font-size: 9px;
    }
}

/* ---------- Mobile Navigation (≤768px) ---------- */
@media (max-width: 768px) {
    .wq-navbar {
        justify-content: space-between;
        height: 65px;
        padding: 0 1rem;
    }

    .wq-navlinks,
    .wq-enquire {
        display: none;
    }

    .wq-menu {
        display: block;
    }
}

/* ---------- Small Mobile (≤576px) ---------- */
@media (max-width: 576px) {
    .wq-navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 0.8rem;
    }

    .wq-navbar .wq-logo img {
        height: 90px;
        width: 150px;
    }
}

/* ---------- Tiny Devices (≤400px) ---------- */
@media (max-width: 400px) {
    .wq-navbar {
        padding: 0 0.6rem;
    }

    .wq-menu-links ul li a {
        font-size: 15px;
    }

    .wq-menu-sub-links a {
        font-size: 14px !important;
    }
}

@media (max-width: 200px) {
    .wq-navbar {
        height: 40px;
        padding: 0 0.4rem;
    }

    .wq-navbar .wq-logo img {
        height: 55px;
        width: 100px;
        position: relative;
        left: -16px;
    }

    .wq-menu {
        top: 60%;
        right: 0.5rem;
    }

    .wq-menu svg {
        height: 20px;
        width: 20px;
    }

    .wq-menu-links {
        padding: 20px 20px 10px;
    }

    .wq-menu-links ul li a {
        font-size: 10px;
    }

    .wq-menu-cross {
        padding: 4px;
        height: 30px;
    }
}


/* ===========================
   MAIN CONTENT
=========================== */

/* ===========================
   Join Section
=========================== */
.wq-join-section {
    height: 100vh;
    display: flex;
    background:
        radial-gradient(500px circle at 8% 12%,
            rgba(6, 182, 212, 0.28),
            rgba(6, 182, 212, 0.12),
            transparent 70%),
        radial-gradient(420px circle at 92% 88%,
            rgba(34, 211, 238, 0.24),
            rgba(34, 211, 238, 0.1),
            transparent 70%),
        radial-gradient(circle at top left, #1b2735 0%, #0b0f16 60%),
        radial-gradient(circle at bottom right, #101726, #05070c);
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
    overflow: visible;
    isolation: isolate;
}

.wq-join-section [data-scroll] {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.wq-join-section .is-inview {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wq-join-section>* {
    position: relative;
    z-index: 2;
}

.wq-join-section::after {
    content: '';
    position: absolute;
    bottom: 16%;
    right: -14%;
    width: 110%;
    height: 110%;
    background-image: url("/materials/images/wq-coding-bgm.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform:
        translateY(80px) rotateX(35deg) rotateY(-4deg) rotateZ(-12deg) translateZ(-260px) scale(0.92);
    opacity: 0;
    filter: blur(6px) saturate(0.9);
    transition: none;
    transform-origin: bottom right;
    border-radius: 8px;
    z-index: 0;
    pointer-events: none;
}

body.page-loaded .wq-join-section::after {
    opacity: 0.85;
    filter: blur(0.4px) saturate(1.1) contrast(1.05);
    transform:
        translateY(0) rotateX(28deg) rotateY(-2deg) rotateZ(-8deg) translateZ(-180px) scale(1);
    transition:
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1.2s ease,
        filter 1.4s ease;
}


.wq-join-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.15),
            rgba(0, 0, 0, 0.45));
    transform: translateZ(1px);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}


.wq-join-img-top {
    position: absolute;
    top: -60px;
    right: 3%;
    width: 220px;
    pointer-events: none;
    z-index: -1;
}

.wq-parallax-wrap {
    position: absolute;
    top: 44%;
    left: 6%;
    width: 260px;
    z-index: -1;
    pointer-events: none;
}

.wq-join-img-bottom {
    width: 100%;
    transform: rotate(-15deg);
}


.wq-join-section h1 {
    padding: 0 1rem;
    margin-top: 4rem;
    font-size: 4.5rem;
    font-family: var(--wq-font-rubik);
    font-weight: 900;
    line-height: 1;
    color: #d8d8d8;
}

.wq-join-section h3 {
    font-size: 2.8rem;
    font-family: var(--wq-font-space-grotesk);
    font-weight: 800;
    color: var(--wq-text-dim);
}

.wq-join-section p {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    font-family: var(--wq-font-rubik);
    color: var(--wq-grey);
}

.wq-join-section p span {
    font-weight: 600;
}

.wq-join-section p span,
.wq-join-section h1 span,
.wq-join-section h3 span {
    background: var(--wq-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Join button */
.wq-join-btn {
    margin: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.wq-join-btn button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: var(--wq-font-poppins);
    cursor: pointer;
    outline: none;
}

.wq-join-btn button:nth-child(1) {
    background-color: var(--wq-accent-light);
    color: var(--wq-white);
    box-shadow: 0 10px 30px rgba(76, 143, 245, 0.25);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.wq-join-btn button:nth-child(1):hover {
    background-color: #3b82f6;
    transform: translateY(-2px);
}

.wq-join-btn button:nth-child(1):focus-visible {
    box-shadow: 0 0 0 4px rgba(76, 143, 245, 0.35);
}

.wq-join-btn button:nth-child(2) {
    position: relative;
    border: 1px solid rgb(218, 218, 218);
    background: transparent;
    color: #eaedf2;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.wq-join-btn button:nth-child(2):hover {
    border-color: #4c8ff5;
    background: rgba(76, 143, 245, 0.08);
    box-shadow: 0 10px 30px rgba(76, 143, 245, 0.25);
    transform: translateY(-2px);
}

.wq-join-btn button:nth-child(2):focus-visible {
    box-shadow: 0 0 0 4px rgba(76, 143, 245, 0.25);
}

.wq-join-btn button:nth-child(2) i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.wq-join-btn button:nth-child(2):hover i {
    transform: translateX(8px);
}

/* ================================
   RESPONSIVE
================================ */
/* Tablet */
@media (max-width: 890px) {
    .wq-join-section {
        height: 40vh;
        padding: 2rem 1.5rem;
        perspective: 900px;
        overflow: hidden;
    }

    .wq-join-section::after {
        width: 110%;
        height: 110%;
        right: -10%;
        bottom: 15%;
    }

    .wq-join-img-top {
        width: 200px;
        top: 80px;
        right: -3%;
    }

    .wq-parallax-wrap {
        width: 200px;
        top: 60%;
        left: 3%;
    }

    .wq-join-section h1 {
        font-size: 3.5rem;
    }

    .wq-join-section h3 {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .wq-join-section {
        height: 80vh;
        padding: 4rem 1.2rem;
        perspective: 600px;
    }

    .wq-join-section::after {
        width: 120%;
        height: 100%;
        bottom: -4%;
        right: -10%;
    }

    body.page-loaded .wq-join-section::after {
        transform:
            rotateX(28deg) rotateY(-2deg) rotateZ(0deg) translateZ(-100px);
    }

    .wq-join-img-top,
    .wq-parallax-wrap {
        display: none;
    }

    .wq-join-section h1 {
        font-size: 2.6rem;
        line-height: 1.1;
        margin-top: 2rem;
        padding: 0;
    }

    .wq-join-section h3 {
        font-size: 1.7rem;
    }

    .wq-join-section p {
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .wq-join-btn {
        flex-direction: column;
        gap: 1rem;
    }

    .wq-join-btn button {
        width: 100%;
        max-width: 280px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .wq-join-section h1 {
        font-size: 2.1rem;
    }

    .wq-join-section h3 {
        font-size: 1.4rem;
    }

    .wq-join-section p {
        font-size: 13px;
    }

    .wq-join-btn {
        margin: 1.5rem 0;
    }

    .wq-join-btn button {
        padding: 0.9rem 1.8rem;
        font-size: 14px;
    }
}

/* Smartwatch / Ultra-small */
@media (max-width: 300px) {
    .wq-join-section {
        padding: 2rem 0.8rem;
    }

    .wq-join-section h1 {
        font-size: 1.6rem;
    }

    .wq-join-section h3 {
        font-size: 1.1rem;
    }

    .wq-join-section p {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .wq-join-btn button {
        padding: 0.7rem 1.2rem;
        font-size: 12px;
        border-radius: 20px;
    }
}



/* ================================
   Services Section
================================ */
.wq-services {
    position: relative;
    padding: 6rem 3rem;
    background: linear-gradient(90deg, #f8fafc 0%, #deeeff 100%);
    text-align: center;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
    z-index: 2;
}

.wq-services::before {
    content: "";
    position: absolute;
    top: -25%;
    bottom: -25%;
    left: -25%;
    right: -25%;
    background:
        radial-gradient(420px 420px at 15% 30%,
            rgba(59, 130, 246, 0.35),
            transparent 70%),
        radial-gradient(460px 460px at 85% 20%,
            rgba(99, 102, 241, 0.32),
            transparent 72%),
        radial-gradient(520px 520px at 50% 85%,
            rgba(14, 165, 233, 0.28),
            transparent 75%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.wq-services [data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.wq-services .is-inview {
    opacity: 1;
    transform: translateY(0);
}

.wq-services-heading {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-left: 12px;
}

.wq-services-heading h5 {
    letter-spacing: 5px;
    font-family: var(--wq-font-poppins);
    font-weight: 400;
}

.wq-services-heading h1 {
    font-family: var(--wq-font-rubik);
    font-weight: 600;
    font-size: 3rem;
    letter-spacing: 1px;
    background: var(--wq-gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.wq-services-heading p {
    font-family: var(--wq-font-poppins);
    font-weight: 400;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    color: var(--wq-grey);
    line-height: 1.8;
    letter-spacing: 0.3px;
    text-align: start;
    max-width: min(800px, 90%);
    margin: 0.25rem 0 0;
    opacity: 0.85;
}

.wq-services-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.wq-services-box {
    width: 350px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wq-services-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.wq-services-box i {
    font-size: 2.5rem;
    background: var(--wq-gradient);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.wq-services-box h3 {
    font-family: var(--wq-font-poppins);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--wq-text-dim);
}

.wq-services-box p {
    font-family: var(--wq-font-poppins);
    font-weight: 500;
    font-size: 12px;
    color: var(--wq-grey);
    line-height: 1.5;
    letter-spacing: 1px;
}

/* ================================
   Responsive — Tablet & Mobile
================================ */
/* Tablet */
@media (max-width: 890px) {
    .wq-services {
        padding: 4rem 2rem;
    }

    .wq-services-heading {
        padding-left: 0;
        justify-self: center;
        align-items: center;
    }

    .wq-services-heading h1 {
        font-size: 2.4rem;
    }

    .wq-services-heading p {
        text-align: center;
    }

    .wq-services-content {
        justify-content: center;
        gap: 1.5rem;
    }

    .wq-services-box {
        width: 300px;
        padding: 1.75rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .wq-services {
        padding: 3.5rem 1.5rem;
    }

    .wq-services-heading h5 {
        letter-spacing: 3px;
        font-size: 0.8rem;
    }

    .wq-services-heading h1 {
        font-size: 2rem;
    }

    .wq-services-content {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

    .wq-services-box {
        width: 100%;
        max-width: 420px;
    }
}

/* Small Mobile] */
@media (max-width: 480px) {
    .wq-services {
        padding: 3rem 1rem;
    }

    .wq-services-heading h1 {
        font-size: 1.75rem;
    }

    .wq-services-box {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .wq-services-box i {
        font-size: 2.1rem;
    }

    .wq-services-box h3 {
        font-size: 16px;
    }

    .wq-services-box p {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}



/* ================================
   Open Section
================================ */
.wq-open-section {
    width: 100%;
    height: 80vh;
    background: var(--wq-gradient-section);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 4rem;
}

.wq-open-section [data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.wq-open-section .is-inview {
    opacity: 1;
    transform: translateY(0);
}


.wq-open-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    gap: 0.4rem;
    padding-right: 2rem;
}

.wq-open-content h1 {
    color: var(--wq-white);
    font-family: var(--wq-font-logo);
    font-weight: 500;
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.wq-open-content h1 span {
    color: #22D3EE;
}

.wq-open-content h3 {
    color: var(--wq-text-dim);
    font-family: var(--wq-font-poppins);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.wq-open-content p {
    color: var(--wq-grey);
    font-family: var(--wq-font-poppins);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
}

.wq-open-content button {
    margin-top: 1rem;
    padding: 1rem 2rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--wq-font-poppins);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    background: var(--wq-gradient-span);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    border-color: #4c8ff5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wq-open-content button:hover {
    box-shadow: 0 10px 20px rgba(78, 190, 255, 0.15);
    transform: translateY(-2px);
}

.wq-open-content button:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(76, 143, 245, 0.25),
        0 10px 20px rgba(255, 255, 255, 0.15);
}

.wq-open-content button i {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;

    background: var(--wq-gradient-span);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.wq-open-content button:hover i {
    transform: translateX(8px);
}

/* image */

.wq-open-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wq-open-image img {
    width: 100%;
    min-width: 38rem;
    height: auto;
    object-fit: contain;
    z-index: -1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* ================================
   Responsive
================================ */
@media (max-width: 890px) {
    .wq-open-section {
        padding: 2rem;
        height: auto;
    }

    .wq-open-content h1 {
        font-size: 3rem;
    }

    .wq-open-content h3 {
        font-size: 1.2rem;
    }

    .wq-open-content p {
        font-size: 14px;
    }

    .wq-open-image {
        width: 45%;
    }

    .wq-open-image img {
        min-width: 30rem;
    }
}

@media (max-width: 768px) {
    .wq-open-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .wq-open-content {
        align-items: center;
        padding-right: 0;
    }

    .wq-open-content h1 {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .wq-open-content h3 {
        font-size: 1.5rem;
    }

    .wq-open-content p {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .wq-open-image {
        width: 100%;
    }

    .wq-open-image img {
        min-width: unset;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .wq-open-section {
        padding: 1.5rem 1rem;
    }

    .wq-open-content h1 {
        font-size: 2.5rem;
    }

    .wq-open-content h3 {
        font-size: 1.3rem;
    }

    .wq-open-content p {
        font-size: 14px;
    }

    .wq-open-content button {
        padding: 0.85rem 2rem;
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .wq-open-section {
        padding: 1rem 0.75rem;
        gap: 1rem;
    }

    .wq-open-content h1 {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        text-align: center;
    }

    .wq-open-content h3 {
        font-size: 1rem;
        text-align: center;
    }

    .wq-open-content p {
        font-size: 12px;
        letter-spacing: 0.5px;
        text-align: center;
    }

    /* Hide image for smartwatch */
    .wq-open-image {
        display: none;
    }

    .wq-open-content button {
        padding: 0.6rem 1.5rem;
        font-size: 12px;
    }

    .wq-open-content button i {
        display: none;
    }
}




/* ================================
   Industry content
================================ */
.wq-industries-container {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(90deg, #f8fafc 0%, #deeeff 100%);
    text-align: center;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.wq-industries-container::before {
    content: "";
    position: absolute;
    top: -25%;
    bottom: -25%;
    left: -25%;
    right: -25%;

    background:
        radial-gradient(420px 420px at 15% 30%,
            rgba(59, 130, 246, 0.35),
            transparent 70%),
        radial-gradient(460px 460px at 85% 20%,
            rgba(99, 102, 241, 0.32),
            transparent 72%),
        radial-gradient(520px 520px at 50% 85%,
            rgba(14, 165, 233, 0.28),
            transparent 75%);

    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.wq-industries-container [data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.wq-industries-container .is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* heading */
.wq-industries-container h1 {
    font-family: var(--wq-font-space-grotesk);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 400;
    padding: 0 1rem;
    text-align: start;
    background: var(--wq-gradient);
    -webkit-background-clip: text;
    color: transparent;
}


/* Horizontal Scroll Wrapper */
.wq-industries-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

/* Scroll Buttons */
.wq-scroll-btn {
    position: absolute;
    top: 50%;
    margin: 0 1rem;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgb(228, 228, 228);
    /* background: var(--wq-gradient-span); */
    border: none;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    box-shadow: 0 0 16px rgba(225, 234, 255, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wq-scroll-btn:hover {
    transform: translateY(25%) scale(1.08);
    box-shadow: 0 0 45px rgba(37, 100, 235, 0.774);
}

.wq-scroll-btn i {
    font-size: 18px;
    color: #0059ff;
    transition: all 0.3s ease;
}

/* button positions */
.wq-scroll-btn.prev {
    left: 0;
}

.wq-scroll-btn.next {
    right: 0;
}


/* horizontal scrolling */
.wq-industries-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 3rem;
}

/* hide scrollbar */
.wq-industries-content::-webkit-scrollbar {
    display: none;
}

.wq-industries-content {
    scrollbar-width: none;
}

.wq-industries-card {
    width: clamp(23rem, 60vw, 23rem);
    min-height: 26rem;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: space-between;
    background: var(--wq-gradient-section);
    border-radius: 16px;
    /* box-shadow: 0 10px 30px rgb(0, 0, 0); */
    overflow: hidden;
}

.wq-ic-img {
    overflow: hidden;
}

.wq-ic-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.wq-industries-card:hover .wq-ic-img img {
    transform: scale(1.2);
}

.wq-ic-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    flex-grow: 1;
}

/* LEFT TEXT */
.wq-ic-1 {
    text-align: left;
    padding-left: 8px;
}

.wq-ic-1 h3 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--wq-font-poppins);
    background: var(--wq-white);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
}

.wq-ic-1 p {
    font-family: var(--wq-font-poppins);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--wq-text-dim);
    max-width: 280px;
}

/* button */
.wq-ic-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Anchor */
.wq-ic-2 a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        box-shadow 0.3s ease
}

/* Hover on anchor */
.wq-ic-2 a:hover {
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

/* Icon */
.wq-ic-2 a i {
    color: var(--wq-white);
    font-size: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover icon */
.wq-ic-2 a:hover i {
    transform: translateX(2px);
    color: #ffffff;
}

/* ===============================
   Responsive
================================ */
/* TABLET */
@media (max-width: 890px) {
    .wq-industries-container {
        padding: 5rem 1.5rem;
    }

    .wq-industries-container h1 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        text-align: center;
    }

    .wq-industries-content {
        gap: 1.5rem;
    }

    .wq-industries-card {
        width: clamp(20rem, 80vw, 22rem);
        min-height: 24rem;
    }
}

/* MOBILE (≤768px) */
@media (max-width: 768px) {
    .wq-industries-container {
        padding: 4rem 1rem;
    }

    .wq-industries-container::before {
        inset: -40%;
        opacity: 0.6;
    }

    .wq-industries-container h1 {
        font-size: 1.9rem;
        line-height: 1.3;
        text-align: center;
        padding: 0;
    }

    .wq-industries-wrapper {
        display: block;
    }

    .wq-industries-content {
        flex-direction: column;
        overflow-x: visible;
        align-items: center;
        padding: 0;
        gap: 2rem;
    }

    .wq-scroll-btn {
        display: none;
    }

    .wq-industries-card {
        width: 90%;
        max-width: 26rem;
        min-height: auto;
    }

    .wq-ic-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .wq-ic-1 h3 {
        font-size: 1.4rem;
    }

    .wq-ic-1 p {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .wq-ic-2 {
        align-self: center;
        /* align-self: flex-end; */
    }
}

/* SMALL MOBILE (≤480px) */
@media (max-width: 480px) {
    .wq-industries-container {
        padding: 3.5rem 0.75rem;
    }

    .wq-industries-container h1 {
        font-size: 1.6rem;
    }

    .wq-industries-card {
        border-radius: 0.75rem;
    }

    .wq-ic-img img {
        aspect-ratio: 16 / 11;
    }

    .wq-ic-2 a {
        width: 40px;
        height: 40px;
    }

    .wq-ic-2 a i {
        font-size: 14px;
    }
}



/* ================================
   About us section
================================ */
.wq-about {
    position: relative;
    padding: 110px 24px;
    font-family: 'Inter', system-ui, sans-serif;
    /* background: radial-gradient(circle at 20% 30%, #0f172a, #020617 70%); */
    background: var(--wq-gradient-section);
    color: #e5e7eb;
    overflow: hidden;
}

.wq-about::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    top: -100px;
    left: -100px;
    filter: blur(80px);
    animation: wqGlowMove 12s infinite alternate ease-in-out;
}

@keyframes wqGlowMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(120px, 80px);
    }
}

/* subtle grain texture */
.wq-about::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
}

/* CONTAINER */
.wq-about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* TEXT */
.wq-about-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 16px;
}

.wq-about-title {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.wq-about-highlight {
    background: linear-gradient(90deg, #3b82f6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wq-about-text {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* STATS - glass cards */
.wq-about-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.wq-about-stat {
    flex: 1;
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all .3s ease;
}

.wq-about-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.wq-about-stat-number {
    font-size: 1.9rem;
    color: #60a5fa;
    margin-bottom: 4px;
}

.wq-about-stat-text {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* IMAGE SIDE */
.wq-about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.wq-about-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.wq-about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.wq-about-image {
    width: 60%;
    opacity: 0.85;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

/* TAGS */
.wq-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.wq-about-tag {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 500;
    color: #cbd5f5;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all .2s ease;
}

.wq-about-tag:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

/* BOTTOM */
.wq-about-bottom {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 90px auto 0;
    text-align: center;
}

.wq-about-bottom-title {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.wq-about-bottom-text {
    color: #94a3b8;
    line-height: 1.7;
}

/* ================================
   RESPONSIVE
================================ */
/* LAPTOPS / SMALL DESKTOPS */
@media (max-width: 1000px) {
    .wq-about-container {
        max-width: 1000px;
        gap: 60px;
    }

    .wq-about-card {
        max-width: 280px;
    }
}

/* TABLETS */
@media (max-width: 900px) {
    .wq-about {
        padding: 90px 20px;
    }

    .wq-about-container {
        grid-template-columns: 1fr;
        max-width: 720px;
        gap: 50px;
    }

    .wq-about-visual {
        order: -1;
    }

    .wq-about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .wq-about-card {
        max-width: 260px;
    }

    .wq-about-bottom {
        margin-top: 70px;
        padding: 0 10px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .wq-about {
        margin-top: 1rem;
        padding: 70px 16px;
    }

    .wq-about-container {
        max-width: 100%;
        gap: 40px;
    }

    .wq-about-title {
        font-size: 2rem;
    }

    .wq-about-text {
        font-size: 14px;
    }

    .wq-about-stat {
        padding: 16px;
    }

    .wq-about-stat-number {
        font-size: 1.5rem;
    }

    .wq-about-card {
        max-width: 220px;
    }

    .wq-about-image {
        width: 70%;
    }

    .wq-about-tags {
        gap: 8px;
    }

    .wq-about-tag {
        font-size: 11px;
        padding: 5px 10px;
    }

    .wq-about-bottom-title {
        font-size: 1.4rem;
    }

    .wq-about-bottom-text {
        font-size: 14px;
    }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
    .wq-about {
        padding: 60px 14px;
    }

    .wq-about-title {
        font-size: 1.7rem;
    }

    .wq-about-card {
        max-width: 200px;
    }

    .wq-about-image {
        width: 75%;
    }
}



/* ================================
   Why us section
================================ */
.wq-whyus {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 4rem 8%;
    color: #e5e7eb;
    gap: 2rem;
    overflow: hidden;
    /* background:
        radial-gradient(420px circle at 10% 10%,
            rgba(34, 197, 94, 0.22),
            rgba(34, 197, 94, 0.10),
            transparent 70%),
        radial-gradient(380px circle at 90% 85%,
            rgba(59, 130, 246, 0.22),
            rgba(59, 130, 246, 0.08),
            transparent 70%),
        #1e2222; */
    background:
        radial-gradient(500px circle at 8% 12%,
            rgba(6, 182, 212, 0.26),
            rgba(6, 182, 212, 0.09),
            transparent 60%),
        radial-gradient(420px circle at 92% 88%,
            rgba(34, 211, 238, 0.2),
            rgba(34, 211, 238, 0.08),
            transparent 70%),
        #0b0f16;
}

.wq-whyus [data-scroll] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.wq-whyus .is-inview {
    opacity: 1;
    transform: translateY(0);
}

.wq-wu-heading {
    max-width: 900px;
    text-align: center;
}

.wq-wu-heading h1 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-family: var(--wq-font-rubik);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.wq-wu-heading p:nth-child(3) {
    color: var(--wq-grey);
    font-family: var(--wq-font-poppins);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 4px;
}

.wq-wu-heading p {
    color: var(--wq-text-dim);
    font-family: var(--wq-font-poppins);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.wq-wu-cotainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.wq-wu-content {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2.2rem 2rem;
    /* background: rgba(255, 255, 255, 0.04); */
    border-radius: 14px;
    /* border: 1px solid rgba(255, 255, 255, 0.06); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wq-wu-content:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); */
}

.wq-wu-c-1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--wq-text-dim);
    text-align: left;
}

.wq-wu-c-2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wq-wu-c-2 i {
    font-size: 2rem;
    color: var(--wq-text-dim);
}

.wq-wu-c-2 h3 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #f8fafc;
    font-family: var(--wq-font-poppins);
}

/* ================================
   Responsive
================================ */
@media (max-width: 1024px) {

    .wq-whyus {
        padding: 3.5rem 6%;
    }

    .wq-wu-cotainer {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .wq-wu-content {
        max-width: 200px;
        padding: 2rem;
    }

    .wq-wu-heading h1 {
        font-size: clamp(2.1rem, 4vw, 2.6rem);
    }
}


/* Mobile Screens (≤768px) */
@media (max-width: 768px) {
    .wq-whyus {
        padding: 3rem 5%;
        gap: 1.8rem;
    }

    .wq-wu-heading {
        max-width: 100%;
    }

    .wq-wu-heading h1 {
        font-size: 2rem;
    }

    .wq-wu-heading p {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    .wq-wu-cotainer {
        flex-direction: column;
        gap: 1.4rem;
    }

    .wq-wu-content {
        width: 100%;
        max-width: 100%;
        padding: 1.8rem 1.6rem;
    }

    .wq-wu-c-1 {
        font-size: 2.2rem;
    }

    .wq-wu-c-2 h3 {
        font-size: 1rem;
    }
}


/* Small Mobile Screens (≤480px) */
@media (max-width: 480px) {

    .wq-whyus {
        padding: 2.5rem 4%;
    }

    .wq-wu-heading h1 {
        font-size: 1.75rem;
        letter-spacing: 0.5px;
    }

    .wq-wu-heading p:nth-child(3),
    .wq-wu-heading p {
        font-size: 0.9rem;
    }

    .wq-wu-content {
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
    }

    .wq-wu-c-1 {
        font-size: 2rem;
    }

    .wq-wu-c-2 {
        gap: 0.8rem;
    }

    .wq-wu-c-2 i {
        font-size: 1.8rem;
    }

    .wq-wu-c-2 h3 {
        font-size: 0.95rem;
    }
}




/* ================================
   Timeline content
================================ */
.wq-timeline {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 6rem 2rem;
    overflow: hidden;
    background: var(--wq-gradient-section);
}

/* central vertical timeline line */
.wq-timeline::after {
    content: "";
    position: absolute;
    top: 160px;
    bottom: 200px;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(15, 214, 209, 0.5),
            transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.wq-timeline-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -140px;
    right: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, #283347 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.wq-timeline-container,
.wq-timeline-tittle,
.wq-timeline-btn {
    position: relative;
    z-index: 2;
}

/* glowing blobs */
.wq-timeline::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    top: -120px;
    left: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, #1c2a4a 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

.wq-timeline-tittle h1 {
    font-family: var(--wq-font-rubik);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    text-align: center;
    background: var(--wq-gradient-span);
    -webkit-background-clip: text;
    color: transparent;
}

/* timeline cards */
.wq-timeline-container {
    width: min(90%, 480px);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease;
}

.wq-timeline-container.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.wq-timeline-container:hover {
    transform: translateY(-4px);
}

/* positioning */
.wq-timeline-container.right {
    margin-left: 50%;
    transform: translateX(40px);
    align-items: flex-start;
}

.wq-timeline-container.left {
    margin-right: 50%;
    transform: translateX(-40px);
    align-items: flex-end;
}

/* dots & connectors */
.wq-timeline-container::before {
    content: "";
    position: absolute;
    top: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0fd6d1;
    box-shadow: 0 0 0 6px rgba(15, 214, 209, 0.15);
}

.wq-timeline-container::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.wq-timeline-container.right::before,
.wq-timeline-container.right::after {
    left: -46px;
}

.wq-timeline-container.left::before,
.wq-timeline-container.left::after {
    right: -46px;
}

.wq-timeline-container h4 {
    padding: 6px 14px;
    width: max-content;
    background: #3C444F;
    border: 1px solid grey;
    border-radius: 30px;
    font-family: var(--wq-font-poppins);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--wq-white);
}

.wq-timeline-container h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--wq-font-poppins);
    background: var(--wq-gradient-span);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.wq-timeline-container p {
    font-family: var(--wq-font-poppins);
    letter-spacing: 1px;
    color: var(--wq-grey);
}

.wq-timeline-container.left p {
    text-align: right;
}

.wq-timeline-container.right p {
    text-align: left;
}

.wq-timeline-btn {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.wq-timeline-btn button {
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    border-radius: 30px;
    font-family: var(--wq-font-poppins);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    background: var(--wq-gradient-span);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    border-color: #4c8ff5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wq-timeline-btn button:hover {
    box-shadow: 0 10px 20px rgba(78, 190, 255, 0.15);
    transform: translateY(-2px);
}

.wq-timeline-btn button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(76, 143, 245, 0.25), 0 10px 20px rgba(255, 255, 255, 0.15);
}

.wq-timeline-btn button i {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    background: var(--wq-gradient-span);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.wq-timeline-btn button:hover i {
    transform: translateX(8px);
}

.wq-timeline-btn p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--wq-font-space-grotesk);
    color: var(--wq-grey);
}

/* ===========================
   Responsive
=========================== */
/* TABLETS  */
@media (max-width: 890px) {

    .wq-timeline {
        padding: 5rem 1.5rem;
        gap: 2.5rem;
    }

    .wq-timeline::after {
        top: 140px;
        bottom: 180px;
    }

    .wq-timeline-container {
        width: min(40%, 440px);
    }

    .wq-timeline-container.right {
        transform: translateX(24px);
    }

    .wq-timeline-container.left {
        transform: translateX(-24px);
    }
}

/* MOBILE & SMALL TABLETS */
@media (max-width: 768px) {

    /* timeline center line moves left */
    .wq-timeline::after {
        left: 24px;
        transform: none;
    }

    /* all cards become single column */
    .wq-timeline-container {
        width: 80%;
        padding: 1.8rem;
        align-items: flex-start;
    }

    .wq-timeline-container.right,
    .wq-timeline-container.left {
        margin: 0;
        transform: none;
        align-items: flex-start;
    }

    /* dots & connectors */
    .wq-timeline-container.left::before {
        left: -35px;
        right: auto;
    }

    .wq-timeline-container.left::after {
        left: -23px;
        width: 22px;
        right: auto;
    }

    .wq-timeline-container.right::before {
        left: -35px;
    }

    .wq-timeline-container.right::after {
        left: -23px;
        width: 22px;
        right: auto;
    }

    /* text alignment reset */
    .wq-timeline-container.left p {
        text-align: left;
    }

    .wq-timeline-container h3 {
        font-size: 20px;
    }

    .wq-timeline-container p {
        font-size: 14px;
        line-height: 1.6;
    }

    .wq-timeline-btn {
        margin-top: 2rem;
        gap: 2rem;
    }
}

/* SMALL MOBILES */
@media (max-width: 480px) {

    .wq-timeline {
        padding: 4rem 0rem 4rem 1rem;
        gap: 2rem;
    }

    .wq-timeline-tittle h1 {
        font-size: 1.8rem;
    }

    .wq-timeline-container {
        padding: 1.4rem;
        border-radius: 18px;
    }

    .wq-timeline-container h4 {
        font-size: 11px;
        padding: 4px 12px;
    }

    .wq-timeline-container h3 {
        font-size: 18px;
    }

    .wq-timeline-container p {
        font-size: 13px;
    }

    .wq-timeline-btn button {
        padding: 0.8rem 2rem;
        font-size: 14px;
    }

    .wq-timeline-btn p {
        font-size: 14px;
        text-align: center;
    }
}



/* ===========================
   CONTACT SECTION 
=========================== */
.wq-contact-section {
    position: relative;
    padding: 6rem 8rem;
    background: linear-gradient(90deg, #f8fafc 0%, #deeeff 100%);
    text-align: center;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.wq-contact-section [data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.wq-contact-section .is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* heading */
.wq-contact-section h1 {
    font-family: var(--wq-font-rubik);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    text-align: center;
    background: var(--wq-gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.wq-contact-section>p {
    line-height: 1.75;
    font-family: var(--wq-font-poppins);
    letter-spacing: 1px;
    color: var(--wq-grey);
    max-width: 640px;
    margin: 0 auto 64px;
}

/* background glow (optimized) */
.wq-contact-section::before {
    content: "";
    position: absolute;
    inset: -25%;
    background:
        radial-gradient(420px 420px at 15% 30%,
            rgba(59, 130, 246, 0.35),
            transparent 70%),
        radial-gradient(460px 460px at 85% 20%,
            rgba(99, 102, 241, 0.32),
            transparent 72%),
        radial-gradient(520px 520px at 50% 85%,
            rgba(14, 165, 233, 0.28),
            transparent 75%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform;
}

/* container */
.wq-contact-container {
    position: relative;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
    text-align: left;
    z-index: 2;
    will-change: transform;
}

/* divider */
.wq-contact-container::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(0, 0, 0, 0.5),
            transparent);
}

/* columns */
.wq-get-in-touch,
.wq-send-msg {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* get in touch */
.wq-get-in-touch {
    background: #87dbe88a;
    /* background: var(--wq-gradient-section); */
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: baseline;
    justify-content: space-between;
}

.wq-get-in-touch h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--wq-font-anek);
    background: var(--wq-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.wq-get-in-touch h3::after {
    content: "";
    width: 30%;
    height: 4px;
    background: var(--wq-gradient-span);
    display: block;
    border-radius: 6px;
    margin-top: -10px;
}

.wq-git-desc {
    width: max-content;
    font-family: var(--wq-font-poppins);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--wq-grey);
    margin-bottom: 1rem;
    max-width: 380px;
}


/* rows */
.wq-git-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.wq-git-container i {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: var(--wq-secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.wq-git-content h4 {
    margin-bottom: 4px;
    font-size: 16px;
    font-family: var(--wq-font-poppins);
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--wq-grey);
}

.wq-git-content p {
    font-size: 14px;
    font-family: var(--wq-font-poppins);
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--wq-grey);
}

/* social */
.wq-git-social {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1rem;
    flex-direction: column;
}

.wq-git-social h4 {
    width: max-content;
    font-family: var(--wq-font-poppins);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--wq-secondary-dark);
}

.wq-git-slinks {
    display: flex;
    gap: 14px;
}

.wq-git-slinks a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--wq-secondary-dark);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease;
    will-change: transform;
}

.wq-git-slinks a:hover {
    background: var(--wq-secondary-dark);
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

/* send message */
.wq-send-msg {
    padding: 64px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9),
            rgba(248, 250, 252, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wq-sm-top {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    gap: 1rem;
}

.wq-sm-top h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--wq-font-anek);
    background: var(--wq-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.wq-sm-top h3::after {
    content: "";
    width: 30%;
    height: 4px;
    background: var(--wq-gradient-span);
    display: block;
    border-radius: 6px;
    margin-top: -10px;
}

.wq-sm-top h4 {
    width: max-content;
    font-family: var(--wq-font-poppins);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--wq-grey);
    margin-bottom: 1rem;
}

/* bullets */
.wq-sm-points {
    list-style: none;
}

.wq-sm-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 14px;
    font-family: var(--wq-font-poppins);
    letter-spacing: 1px;
    color: var(--wq-text-dim);
    transition: transform 0.3s ease;
}

.wq-sm-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    font-size: 18px;
    font-weight: 700;
    background: var(--wq-secondary-dark);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.wq-sm-points li:hover {
    transform: translateX(2px);
}

/* bottom */
.wq-sm-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 8px; */
}

.wq-sm-bottom img {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    animation: floatImg 6s ease-in-out infinite;
    transform: translateZ(0);
    will-change: transform;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* pause animation while scrolling */
html.is-scrolling .wq-sm-bottom img {
    animation-play-state: paused;
}

/* whatsapp */
.wq-whatsapp-btn {
    display: flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: var(--wq-font-poppins);
    background: var(--wq-gradient);
    -webkit-background-clip: text;

    background-clip: text;
    color: transparent;
    border: 1px solid #4c8ff5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    text-decoration: none;
}

.wq-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 190, 255, 0.15);
}

.wq-whatsapp-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(76, 143, 245, 0.25), 0 10px 20px rgba(255, 255, 255, 0.15);
}

.wq-whatsapp-btn i {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    background: var(--wq-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.wq-whatsapp-btn:hover i {
    transform: translateX(8px);
}

/* ===========================
   RESPONSIVE
=========================== */
/* tablets */
@media (max-width: 890px) {
    .wq-contact-container {
        flex-direction: column;
    }

    .wq-contact-container::after {
        display: none;
    }

    .wq-get-in-touch,
    .wq-send-msg {
        padding: 40px;
    }

    .wq-git-container {
        justify-content: flex-start;
    }

    .wq-sm-bottom img {
        max-width: 150px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .wq-contact-section {
        padding: 4rem 2rem;
    }

    .wq-contact-section h1 {
        font-size: 2.2rem;
        margin-bottom: 6px;
    }

    .wq-contact-section>p {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .wq-get-in-touch,
    .wq-send-msg {
        padding: 32px;
    }

    .wq-git-container {
        align-items: flex-start;
        gap: 14px;
    }

    .wq-git-desc {
        width: 100%;
    }

    .wq-whatsapp-btn {
        padding: 0.9rem 2rem;
        font-size: 15px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .wq-contact-section {
        padding: 3rem 1rem;
    }

    .wq-get-in-touch h3,
    .wq-sm-top h3 {
        font-size: 26px;
    }

    .wq-sm-top h3::after,
    .wq-get-in-touch h3::after {
        margin-top: -6px;
    }

    .wq-git-content h4 {
        font-size: 14px;
    }

    .wq-git-content p {
        font-size: 13px;
    }

    .wq-sm-points li {
        font-size: 13px;
    }

    .wq-git-slinks a {
        width: 40px;
        height: 40px;
    }

    .wq-sm-top h4 {
        font-size: 16px;
        width: 100%;
    }

    .wq-sm-points li {
        font-size: 14px;
    }

    .wq-sm-bottom img {
        max-width: 120px;
    }
}

/* ===== EXTRA SMALL ===== */
@media (max-width: 300px) {
    .wq-contact-section {
        padding: 2rem 0.75rem;
    }

    .wq-contact-section h1 {
        font-size: 1.6rem;
    }

    .wq-contact-section>p {
        font-size: 12px;
    }

    .wq-get-in-touch,
    .wq-send-msg {
        padding: 20px 16px;
    }

    .wq-git-container i {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .wq-sm-bottom img {
        display: none;
    }

    .wq-whatsapp-btn {
        font-size: 13px;
        padding: 0.7rem 1.5rem;
    }
}





/* ===========================
   FOOTER CONTENT
=========================== */
/* .wq-footer-top {
    position: relative;
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--wq-white);
}

.wq-footer-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/materials/images/wq-footer-image.png') center/cover no-repeat;
    z-index: 0;
}

.wq-footer-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%),
        rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(48px);
    z-index: 1;
}

Copyright content
.wq-footer-top .company-copyright {
    text-align: center;
    color: var(--wq-white);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--wq-font-navlinks);
    z-index: 2;
    margin-bottom: -2.5rem;
} */

.wq-footer-top {
    position: relative;
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.wq-footer-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%),
        rgba(0, 0, 0, 0.911);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(48px);
    z-index: 1;
}

/* Copyright content */
.wq-footer-top .company-copyright {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    z-index: 2;
    margin-bottom: -1.5rem;
}

/* Main Footer Content */
.wq-footer>* {
    position: relative;
    z-index: 2;
}

.wq-footer {
    position: relative;
    width: 100%;
    height: 8rem;
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 3rem;
    color: var(--wq-white);
    overflow: hidden;
    background: var(--wq-black-primary);
}

.wq-footer::before {
    content: "";
    position: absolute;
    width: calc(100% - 4rem);
    height: 0.125rem;
    background: var(--wq-white);
    top: 0;
    left: 2rem;
}

/* Footer Logo */
.wq-footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.wq-footer-logo img {
    height: 100px;
}

.wq-footer-logo .wq-footer-logo-name {
    display: flex;
    flex-direction: column;
    margin-left: -16px;
}

.wq-footer-logo .wq-footer-logo-name h3 {
    font-family: var(--wq-font-logo);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.2px;
    line-height: 0.85;
    font-style: normal;
}

/* Footer Content */
.wq-footer-content {
    padding: 3rem 5%;
}

/* Footer Address */
.wq-footer-address {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 600px;
    font-family: var(--wq-font-navlinks);
    font-size: 13px;
    margin-bottom: 10px;
}

.wq-footer-address h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--wq-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.wq-footer-address p {
    font-size: 13px;
    color: var(--wq-white);
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    white-space: nowrap;
}

.wq-footer-address i {
    margin-right: 0.3rem;
    color: var(--wq-text-muted);
    flex-shrink: 0;
}

/* Footer Links */
.wq-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    max-width: 500px;
    font-family: var(--wq-font-navlinks);
}

.wq-footer-links a {
    text-align: center;
    color: var(--wq-white);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wq-footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transform: scale(1.01);
}


/* Footer Social Links */
.wq-footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.2rem;
}

.wq-footer-social .wq-footer-social-tittle h3 {
    font-family: var(--wq-font-navlinks);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1.2px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.wq-footer-social .wq-footer-social-tittle h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40%;
    background: linear-gradient(90deg,
            var(--wq-bg-light),
            rgba(255, 255, 255, 0.4));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.wq-footer-social .wq-footer-social-tittle h3:hover::after {
    width: 80%;
}

.wq-footer-social .wq-footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    max-width: 200px;
}

.wq-footer-social .wq-footer-social-links a {
    text-decoration: none;
    cursor: pointer;
    color: var(--wq-white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wq-footer-social .wq-footer-social-links a:hover {
    background-color: var(--wq-white);
    color: var(--wq-black-primary);
    transform: scale(1.2);
}

/* wq footer bottom for mobile view */
.wq-footer-bottom {
    position: relative;
    margin-top: 6px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--wq-white);
    background: var(--wq-black-primary);
}

.wq-footer-bottom::after {
    content: "";
    position: absolute;
    width: calc(100% - 8rem);
    height: 0.125rem;
    background: var(--wq-white);
    top: -12px;
    /* top: 22px; */
    left: 4rem;
}

/* Copyright content */
.wq-footer-bottom .wq-company-copyright {
    text-align: center;
    color: var(--wq-white);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--wq-font-navlinks);
    z-index: 2;
}

/* ===========================
   RESPONSIVE FOOTER
=========================== */
/* Medium Devices (Tablets) */
@media screen and (max-width: 890px) {
    .wq-footer {
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        height: auto;
        text-align: center;
    }

    .wq-footer-content {
        padding: 1rem 2%;
    }

    .wq-footer-logo .wq-footer-logo-name {
        display: flex;
        flex-direction: column;
        margin-left: -14px;
        align-items: baseline;
    }

    .wq-footer-links {
        justify-content: center;
    }

    .wq-footer-social {
        margin-top: 0.5rem;
    }
}

/* Small Devices (Mobiles) */
@media screen and (max-width: 760px) {
    .wq-footer-top {
        height: 4rem;
    }

    .wq-footer-top .company-copyright {
        font-size: 10px;
        margin-bottom: -2rem;
    }

    .wq-footer {
        padding: 0.5rem 1rem;
    }

    .wq-footer-logo img {
        height: 100px !important;
        filter: brightness(1.3);
    }

    .wq-footer-logo .wq-footer-logo-name {
        margin-left: -14px;
    }

    .wq-footer-logo .wq-footer-logo-name h3 {
        font-size: 12px;
        line-height: 1;
    }

    .wq-footer-address {
        margin-top: -20px;
        flex-direction: column;
        gap: 0.25rem;
    }

    .wq-footer-address p {
        font-size: 12px;
    }

    .wq-footer-links {
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.25rem;
        font-size: 14px;
    }

    .wq-footer-social .wq-footer-social-tittle h3 {
        font-size: 16px;
    }

    .wq-footer-social .wq-footer-social-links {
        gap: 0.3rem;
    }

    .wq-footer-social-links a {
        width: 40px;
        height: 40px;
    }

    .wq-footer-top-content {
        display: none;
    }

    .wq-footer-bottom {
        display: block !important;
    }

    .wq-footer::before {
        display: none;
    }
}

/* Extra Small Devices (Very Small Phones) */
@media screen and (max-width: 480px) {
    .wq-footer-top {
        height: 3.5rem;
    }

    .wq-footer {
        padding: 1rem;
        gap: 1rem;
    }

    .wq-footer-bottom .wq-company-copyright {

        font-size: 12px;
    }

    .wq-footer-top .company-copyright {
        font-size: 12px;
    }

    .wq-footer-logo img {
        height: 50px;
    }

    .wq-footer-address h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .wq-footer-address p,
    .wq-footer-links a {
        font-size: 14px;
    }

    .wq-footer-social .wq-footer-social-tittle h3 {
        font-size: 14px;
    }

    .wq-footer-social-links a {
        width: 28px;
        height: 28px;
    }
}

/* ---------- Tiny Devices (≤300px) ---------- */
@media screen and (max-width: 300px) {
    .wq-footer-top .company-copyright {
        font-size: 8px;
    }

    .wq-footer-address p,
    .wq-footer-links a {
        font-size: 8px;
    }

    .wq-footer-social-links a {
        width: 10px;
        height: 10px;
    }

    .wq-footer-social .wq-footer-social-tittle h3 {
        font-size: 12px;
    }

    .wq-footer-social .wq-footer-social-links {
        gap: 0.01rem;
    }
}