* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

/* ===========================
   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);
}

/* ===========================
   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%;
    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: "Montserrat", sans-serif;
    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: #ffffff;
    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: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 1.1px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.wq-enquire a:hover {
    color: #ffffff;
}

/* ===========================
   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: #ffffff;
}

/* ===========================
   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: #ffffff;
    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: "Montserrat", sans-serif;
    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: "Montserrat", sans-serif;
    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 (≤1024px) ---------- */
@media (max-width: 1024px) {
    .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: 820px) {
    .wq-navbar {
        padding: 0 0.8rem;
    }

    .wq-navlinks {
        margin: 0 1.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
=========================== */
/* industry section */
.wq-industry-1 {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 3rem 5rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.wq-industry-c1 {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wq-industry-c1 h3 {
    max-width: 50%;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 2rem;
    position: relative;
}

.wq-industry-c1 h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60%;
    height: 2px;
    background: #c0c0c0;
    transition: width 0.4s ease;
}

.wq-industry-c1 p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.9;
    font-weight: 300;
    color: #dcdcdc;
    width: 80%;
    opacity: 0.9;
}

/* ============================= */
/* Responsive */
/* ============================= */

@media (min-width: 769px) and (max-width: 980px) {

    .wq-industry-1 {
        min-height: 50vh;
        padding: 3rem 2.5rem;
        /* justify-content: center; */
    }

    .wq-industry-c1 {
        max-width: 90%;
    }

    .wq-industry-c1 h3 {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
    }

    .wq-industry-c1 h3::after {
        width: 80%;
    }

    .wq-industry-c1 p {
        width: 100%;
        font-size: 1.2rem;
        line-height: 1.85;
    }
}

@media (max-width: 768px) {

    .wq-industry-1 {
        min-height: 90vh;
        padding: 3rem 1.2rem;
        /* justify-content: center; */
        text-align: center;
    }

    .wq-industry-c1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 0rem;
    }

    .wq-industry-c1 h3 {
        font-size: 1.3rem;
        letter-spacing: 2px;
        line-height: 1.5;
        margin-bottom: 0;
        max-width: 100%;
    }

    .wq-industry-c1 h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 130%;
    }

    .wq-industry-c1 p {
        width: 100%;
        font-size: 1rem;
        line-height: 1.8;
        letter-spacing: 1px;
        padding: 0 0.5rem;
        text-align: justify;
    }
}


/* ============================= 
    INDUSTRY 2 SECTION 
============================= */

.wq-industry-2 {
    width: 100%;
    padding: 6rem 3rem;
    background: #efe6eb;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
}

.wq-industry-2 p {
    max-width: 1000px;
    font-size: 1rem;
    line-height: 1.9;
    color: #616161;
    letter-spacing: 0.5px;
    text-align: justify;
}

/* Tablet Devices (max 1024px) */
@media (max-width: 1024px) {
    .wq-industry-2 {
        padding: 4rem 2rem;
    }

    .wq-industry-2 p {
        max-width: 700px;
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

/* Mobile Devices (max 768px) */
@media (max-width: 768px) {
    .wq-industry-2 {
        padding: 4rem 2rem;
    }

    .wq-industry-2 p {
        max-width: 100%;
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: justify;
    }
}


/* ============================= 
    INDUSTRY 3 SECTION 
============================= */
.wq-industry-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 2rem;
    gap: 3rem;
    text-align: center;
    background: #f8f9ff;
}

/* HEADING */
.wq-industry-3 h3 {
    font-size: 2.5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #111, #666, #111);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

/* SHINE EFFECT */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* DESCRIPTION */
.wq-industry-3>p {
    margin-top: -1rem;
    max-width: 900px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #555;
}

/* SECTIONS WRAPPER */
.wq-industry-3-cards {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
}

/* CARD BASE */
.wq-industry-3-card {
    position: relative;
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid #ccced2;
    overflow: hidden;
}

.wq-industry-3-card:last-child {
    border-bottom: none;
}

/* SHINE EFFECT LAYER */
.wq-industry-3-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: skewX(-20deg);
}

/* ANIMATION ON HOVER */
.wq-industry-3-card:hover::before {
    animation: shineCard 1.2s ease forwards;
}

/* KEYFRAMES */
@keyframes shineCard {
    100% {
        left: 150%;
    }
}

/* IMAGE */
.wq-industry-3-card-s1 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.wq-industry-3-card-s1 img {
    max-width: 90%;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.wq-industry-3-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.wq-industry-3-card-s2 {
    flex: 1;
    text-align: left;
}

/* TITLE */
.wq-industry-3-card-s2 h1 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(90deg, #111, #666, #111);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

/* TEXT */
.wq-industry-3-card-s2 p {
    font-size: 15px;
    margin-bottom: 1rem;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

/* DELIVER BLOCK */
.wq-deliver-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #111, #666, #111);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

/* LIST */
.wq-industry-3-card-s2 ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.wq-industry-3-card-s2 li {
    font-size: 14.5px;
    margin-bottom: 0.5rem;
    color: #475569;
    list-style: none;
    position: relative;
    padding-left: 1.2rem;
}

/* CUSTOM BULLETS */
.wq-industry-3-card-s2 li::before {
    content: "✔";
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, #111, #666, #111);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    font-size: 1rem;
}

/* ALTERNATING LAYOUT */
.wq-industry-3-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* responsive */
@media (max-width: 980px) {

    .wq-industry-3 {
        gap: 1rem;
        padding: 4rem 2rem;
    }

    .wq-industry-3 h3 {
        font-size: 2.2rem;
        max-width: 80%;
    }

    .wq-industry-3>p,
    .wq-industry-3-card-s2 p {
        margin-top: 0rem;
        max-width: 80%;
    }

    .wq-industry-3-card-s1 img {
        max-width: 80%;
    }

    /* STACK LAYOUT */
    .wq-industry-3-card {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
    }

    .wq-industry-3-card-s2 {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .wq-industry-3-card-s2 h1 {
        font-size: 1.8rem;
    }

    .wq-deliver-block h3 {
        font-size: 1.2rem;
        text-align: justify;
    }

    .wq-industry-3-card-s2 ul {
        text-align: baseline;
    }
}

/* TABLETS (768px) */
@media (max-width: 760px) {
    .wq-industry-3 {
        padding: 3.5rem 1.2rem;
        gap: 2.5rem;
    }

    .wq-industry-3 h3 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .wq-industry-3>p {
        font-size: 14.5px;
    }
}


/* MOBILE (480px) */
@media (max-width: 480px) {

    .wq-industry-3 {
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .wq-industry-3 h3 {
        font-size: 1.2rem;
        max-width: 100%;
        line-height: 1.3;
    }

    .wq-industry-3>p,
    .wq-industry-3-card-s2 p {
        font-size: 14px;
        max-width: 100%;
        line-height: 1.6;
    }

    .wq-industry-3-card {
        gap: 1.2rem;
        padding: 2rem 0;
    }

    .wq-industry-3-card-s1 img {
        max-width: 100%;
        border-radius: 8px;
    }

    .wq-industry-3-card-s2 h1 {
        font-size: 1.5rem;
    }

    .wq-deliver-block h3 {
        font-size: 1.05rem;
        text-align: left;
    }

    .wq-industry-3-card-s2 ul {
        padding-left: 1rem;
    }

    .wq-industry-3-card-s2 li {
        font-size: 13.5px;
    }
}


/* SMALL PHONES (360px) */
@media (max-width: 360px) {

    .wq-industry-3 {
        gap: 1.8rem;
    }

    .wq-industry-3>p,
    .wq-industry-3-card-s2 p {
        font-size: 13.2px;
    }

    .wq-industry-3-card {
        gap: 1rem;
        padding: 1.6rem 0;
    }

    .wq-industry-3-card-s2 h1 {
        font-size: 1.3rem;
    }

    .wq-deliver-block h3 {
        font-size: 1rem;
    }

    .wq-industry-3-card-s2 li {
        font-size: 13px;
    }
}


/* ============================= 
    INDUSTRY l SECTION 
============================= */
.wq-industry-l {
    width: 100%;
    padding: 6rem 3rem;
    background:
        radial-gradient(circle at top left, #1b2735 0%, #0b0f16 60%),
        radial-gradient(circle at bottom right, #101726, #05070c);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.wq-industry-l h3 {
    font-family: "Rubik", sans-serif;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 4px;
}

.wq-industry-l p {
    max-width: 800px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 300;
}

/* connect btn */
.wq-industry-l .wq-connect-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: "Poppins", sans-serif;
    background: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
    border: 1px solid #4c8ff5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    text-decoration: none;
    margin-top: 12px;
    gap: 16px;
}

.wq-industry-l .wq-connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 190, 255, 0.15);
}

.wq-industry-l .wq-connect-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-industry-l .wq-connect-btn svg {
    display: inline-block;
    transition: transform 0.3s ease;
}

.wq-industry-l .wq-connect-btn:hover svg {
    transform: translateX(8px);
}

/* =========================
   Tablet Devices (max 1024px)
========================= */
@media (max-width: 1024px) {

    .wq-industry-l {
        padding: 4.5rem 2rem;
        gap: 0.8rem;
    }

    .wq-industry-l h3 {
        font-size: 1.7rem;
        letter-spacing: 3px;
        text-align: center;
    }

    .wq-industry-l p {
        max-width: 700px;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }

    .wq-industry-l .wq-connect-btn {
        padding: 0.9rem 2rem;
        font-size: 15px;
    }
}


/* =========================
   Mobile Devices (max 768px)
========================= */
@media (max-width: 768px) {

    .wq-industry-l {
        padding: 3.5rem 1.5rem;
        gap: 0.7rem;
    }

    .wq-industry-l h3 {
        font-size: 1.2rem;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .wq-industry-l p {
        max-width: 100%;
        font-size: 0.8rem;
        letter-spacing: 0;
        padding: 0 0.5rem;
    }

    .wq-industry-l .wq-connect-btn {
        padding: 0.9rem 2rem;
        font-size: 14px;
        margin-top: 10px;
    }
}




/* ===========================
   FOOTER CONTENT
=========================== */
.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: #ffffff;
    overflow: hidden;
    background: #000000;
}

.wq-footer::before {
    content: "";
    position: absolute;
    width: calc(100% - 4rem);
    height: 0.125rem;
    background: #ffffff;
    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: "Sour Gummy", sans-serif;
    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: "Montserrat", sans-serif;
    font-size: 13px;
    margin-bottom: 10px;
}

.wq-footer-address h3 {
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.wq-footer-address p {
    font-size: 13px;
    color: #ffffff;
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    white-space: nowrap;
}

.wq-footer-address i {
    margin-right: 0.3rem;
    color: #cbd5e1;
    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: "Montserrat", sans-serif;
}

.wq-footer-links a {
    text-align: center;
    color: #ffffff;
    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: "Montserrat", sans-serif;
    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,
            #F9FAFB,
            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: #ffffff;
    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: #ffffff;
    color: #000000;
    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: #ffffff;
    background: #000000;
}

.wq-footer-bottom::after {
    content: "";
    position: absolute;
    width: calc(100% - 8rem);
    height: 0.125rem;
    background: #ffffff;
    top: -12px;
    /* top: 22px; */
    left: 4rem;
}

/* Copyright content */
.wq-footer-bottom .wq-company-copyright {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    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-bottom::after {
        top: -8px;
    }

    .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;
    }
}