/* =========================================
   VARIABLES & RESET
========================================= */
:root {
    --primary-blue: #354ead;
    --primary-orange: #ff6d4d;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* =========================================
   CONTACT TOP BAR
========================================= */
.contact-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item .icon-wrapper {
    color: var(--primary-orange);
    font-size: 14px;
}

.contact-value:hover {
    color: var(--primary-orange);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   MAIN HEADER & NAV WRAPPER
========================================= */
.ws-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ws-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.ws-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ws-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* =========================================
   DESKTOP NAVIGATION
========================================= */
.ws-desktop-nav {
    height: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.ws-nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.ws-nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.ws-nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    height: 100%;
}

.ws-nav-link .ws-arr {
    font-size: 10px;
    color: #999;
    transition: var(--transition);
}

.ws-nav-item:hover .ws-nav-link {
    color: var(--primary-blue);
}

.ws-nav-item:hover .ws-arr {
    color: var(--primary-orange);
    transform: rotate(180deg);
}

/* =========================================
   FULL WIDTH MEGA MENU
========================================= */
.ws-mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-top: 1px solid var(--border-color);
}

.ws-nav-item.has-mega:hover .ws-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.ws-mega-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

/* Columns inside Mega Menu */
.ws-mc {
    flex: 1;
}

.ws-ch {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

.ws-ch::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

.ws-cl {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ws-cl li a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.ws-cl li a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* =========================================
   HEADER ACTIONS & CTA
========================================= */
.ws-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ws-cta {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ws-cta,
.ws-cta:link,
.ws-cta:visited,
.ws-cta:hover,
.ws-cta:focus,
.ws-cta:active {
    color: var(--white);
}
.ws-cta:hover {
    background-color: #e55c3c;
    box-shadow: 0 4px 15px rgba(255, 109, 77, 0.4);
}

.ws-burger {
    display: none;
    background: rgba(53, 78, 173, 0.05); /* Soft blue background */
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%; /* Circular button */
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Space between burger lines */
    transition: var(--transition);
}

.ws-burger:hover {
    background: rgba(53, 78, 173, 0.1);
}

.ws-burger span {
    display: block;
    height: 2.5px;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* Staggered lines for modern look */
.ws-burger span:nth-child(1) {
    width: 22px;
}

.ws-burger span:nth-child(2) {
    width: 14px;
    transform: translateX(4px); /* Shift right to align */
}

.ws-burger span:nth-child(3) {
    width: 22px;
}

/* Animate on hover */
.ws-burger:hover span:nth-child(2) {
    width: 22px;
    transform: translateX(0);
}

/* =========================================
   MOBILE DRAWER (Hidden on Desktop)
========================================= */
.ws-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.ws-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 1002;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.ws-drawer.active {
    right: 0;
}

.ws-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ws-drw-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-drw-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.ws-drw-body {
    padding: 20px;
    overflow-y: auto;
}

.ws-drw-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-drw-link {
    color: var(--white);
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {

    .ws-desktop-nav,
    .contact-header {
        display: none;
    }

    .ws-burger {
        display: flex;
    }

    .ws-header-inner {
        height: 70px;
    }
    
    .ws-logo {
        transform: translateY(4px); /* Pushes the logo slightly down to center it visually */
    }
}

/* =========================================
   HERO SECTION
========================================= */
.hero-stats-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ws-hero {
    position: relative;
    padding: 100px 20px 200px;
    /* extra bottom padding for overlap, shifted top */
    /* Warm cream gradient like competitor + minimal brand aura */
    background:
        radial-gradient(ellipse at 0% 100%, rgba(53, 78, 173, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 100% 0%, rgba(255, 109, 77, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, #fffdf7 0%, #f8f9ff 100%);
    text-align: center;
    overflow: visible;
    /* allow cards to overlap downward */
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    /* Shift content up */
    justify-content: center;
}

/* SVG full-cover background graphic */
.ws-hero-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}


.ws-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1.5px solid rgba(53, 78, 173, 0.12);
    top: -100px;
    left: -120px;
    pointer-events: none;
    z-index: 0;
    animation: rotateSlow 30s linear infinite;
}

.ws-hero::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 109, 77, 0.12);
    bottom: -80px;
    right: -80px;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ---- Hand Images with Float Animation ---- */
.ws-hero-side-img {
    position: absolute;
    top: 42%;
    /* Shifted higher to align with the text content */
    max-width: 410px;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.ws-img-left {
    left: -20px;
    transform: translateY(-50%);
    animation: floatLeft 6s ease-in-out infinite;
}

.ws-img-right {
    right: -20px;
    transform: translateY(-50%);
    animation: floatRight 6s ease-in-out infinite;
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

.ws-hero-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0 20px;
}

.ws-hero-pill {
    display: inline-block;
    background-color: #fff9e6;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.ws-pill-highlight {
    color: var(--text-dark);
}

/* Hero heading: Poppins 900 for bold impact */
.ws-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.ws-text-gradient {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Required for gradient text to render correctly */
}

.ws-hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 40px;
}

.ws-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ws-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px 12px 12px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.ws-icon-circle {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Outline button with brand orange fill on hover ---- */
.ws-btn-outline-fill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 32px 10px 10px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(to right, var(--primary-orange) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right center;
    border: 2px solid var(--text-dark);
    transition: background-position 0.45s ease, color 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
    text-decoration: none;
}

.ws-btn-outline-fill:hover {
    background-position: left center;
    color: var(--white);
    border-color: var(--primary-orange);
}

.ws-icon-circle-dark {
    width: 36px;
    height: 36px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    flex-shrink: 0;
    transition: background 0.35s ease;
}

.ws-btn-outline-fill:hover .ws-icon-circle-dark {
    background: rgba(255, 255, 255, 0.25);
}

.ws-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ws-badge-icon {
    width: 24px;
    height: 24px;
    background: #e6f9ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-badge-icon i {
    color: #27c93f;
    font-size: 12px;
}

.ws-hero-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.review-text {
    font-size: 15px;
    font-weight: 500;
    color: #888;
}

.stars {
    color: #ffb400;
    font-size: 20px;
    display: flex;
    gap: 5px;
}

/* ---- Floating Badges (Left & Right) ---- */
.ws-hero-float-badge {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Left badge: sits under left hand */
/* Left badge: sits under left hand */
.ws-badge-left {
    left: 200px;
    top: 56%;
    bottom: auto;
    animation: floatBadgeLeft 4s ease-in-out infinite;
}

/* Right badge: sits above right hand */
.ws-badge-right {
    right: 140px;
    top: 10%;
    bottom: auto;
    animation: floatBadgeRight 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.ws-fbadge-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 109, 77, 0.1);
    color: var(--primary-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.ws-badge-left .ws-fbadge-icon {
    background: rgba(53, 78, 173, 0.1);
    color: var(--primary-blue);
}

@keyframes floatBadgeLeft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatBadgeRight {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@media (max-width: 1200px) {
    .ws-hero-side-img {
        max-width: 300px;
    }

    .ws-img-left {
        left: -50px;
    }

    .ws-img-right {
        right: -50px;
    }

    .ws-hero-float-badge {
        display: none;
    }

    /* Hide badges first on medium screens */
}

.ws-br-mobile {
    display: none;
}

.ws-nowrap {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .ws-hero-side-img {
        max-width: 200px;
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .ws-hero {
        padding: 55px 20px 30px; /* Reduced top padding for a tighter gap below header */
    }

    .ws-hero-pill {
        margin-bottom: 12px; /* Tighten vertical space */
    }

    .ws-br-desktop {
        display: none;
    }

    .ws-br-mobile {
        display: inline;
    }

    .ws-hero-title {
        font-size: clamp(26px, 8.5vw, 34px); /* Fluid typography to fit perfectly on any phone screen */
        line-height: 1.2;
        margin-bottom: 12px; /* Tighten vertical space */
    }

    .ws-hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px; /* Tighten vertical space */
    }

    .ws-hero-actions {
        gap: 15px;
        margin-bottom: 15px; /* Margin to space out reviews */
    }

    .ws-hero-actions .ws-btn-outline-fill {
        font-size: 13.5px;
        padding: 8px 20px 8px 8px;
        gap: 10px;
        white-space: nowrap; /* Forces text to stay in one line */
    }

    .ws-hero-actions .ws-btn-outline-fill .ws-icon-circle-dark {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .ws-hero-reviews {
        margin-top: 15px;
        gap: 6px;
    }

    .ws-hero-reviews .stars {
        font-size: 16px;
        gap: 4px;
    }

    .ws-hero-reviews .review-text {
        font-size: 12.5px;
    }

    .ws-hero-side-img {
        display: none;
    }
}

/* =========================================
   PERFORMANCE STATISTICS SECTION
========================================= */
.stats-section {
    background: transparent;
    padding: 0 0 60px;
    position: relative;
    z-index: 10;
}

.stats-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--primary-blue), transparent);
}

.stats-section .stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    /* Pull cards UP so they sit 50% inside hero */
    margin-top: -110px;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    perspective: 1000px;
}

/* ---- Card base ---- */
.stats-section .stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: default;
}

/* Gradient top-border that slides in on hover */
.stats-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff9a80);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px 20px 0 0;
}

.stats-section .stat-card:nth-child(2)::before,
.stats-section .stat-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--primary-blue), #6b85e8);
}

.stats-section .stat-card:hover::before {
    transform: scaleX(1);
}

/* 3D tilt + deeper shadow on hover */
.stats-section .stat-card:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-2deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12), 0 15px 25px rgba(0, 0, 0, 0.06);
}

.stats-section .stat-card:nth-child(2):hover,
.stats-section .stat-card:nth-child(3):hover {
    box-shadow: 0 35px 70px rgba(53, 78, 173, 0.12), 0 15px 25px rgba(53, 78, 173, 0.06);
}

/* ---- Icon Wrapper ---- */
.stats-section .icon-wrapper {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9a80 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    transition: transform 0.4s ease;
}

.stats-section .stat-card:nth-child(2) .icon-wrapper,
.stats-section .stat-card:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #6b85e8 100%);
}

.stats-section .stat-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Glowing halo behind icon */
.stats-section .icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0.25;
    filter: blur(18px);
    z-index: -1;
}

.stats-section .icon-wrapper svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2px;
    fill: none;
}

/* ---- Text elements ---- */
.stats-section .stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #8c8f9f;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}

.stats-section .stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

/* Card 1 & 4 â€” orange values */
.stats-section .stat-card:nth-child(1) .stat-value,
.stats-section .stat-card:nth-child(4) .stat-value {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e05a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card 2 & 3 â€” blue values */
.stats-section .stat-card:nth-child(2) .stat-value,
.stats-section .stat-card:nth-child(3) .stat-value {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a3f9e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Small "to" separator inside the value */
.ws-range-sep {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #8c8f9f;
    margin: 0 4px;
    -webkit-text-fill-color: #8c8f9f;
    background: none;
}

.stats-section .stat-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #868e96;
    font-weight: 500;
    margin: 0;
}

/* ---- Decorative circle ---- */
.stats-section .decorative-circle {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, transparent 80%);
    opacity: 0.05;
    bottom: -35px;
    right: -35px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.stats-section .stat-card:nth-child(2) .decorative-circle,
.stats-section .stat-card:nth-child(3) .decorative-circle {
    background: linear-gradient(135deg, var(--primary-blue) 0%, transparent 80%);
}

.stats-section .stat-card:hover .decorative-circle {
    transform: scale(1.3);
    opacity: 0.09;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section .stats-container {
        margin-top: -60px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding-bottom: 50px;
    }

    .stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-section .stats-container {
        margin-top: -30px;
        padding: 0 20px;
    }

    .stats-section .stat-value {
        font-size: 22px;
    }
}


/* =========================================
   ABOUT US SECTION
========================================= */
/* =========================================
   ABOUT US SECTION (AI REDESIGNED - LIGHT THEME)
========================================= */
.about-section {
    background: var(--white);
    /* Light theme background */
    padding: 120px 0;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

/* Background glowing blobs (very subtle for light theme) */
.about-section .glow-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.about-section .glow-orange {
    background: #ff6d4d;
    top: -100px;
    left: -100px;
    animation: floatGlowOrange 10s ease-in-out infinite;
}

.about-section .glow-blue {
    background: #354ead;
    bottom: -100px;
    right: -100px;
    animation: floatGlowBlue 12s ease-in-out infinite;
}

@keyframes floatGlowOrange {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.05;
    }
    50% {
        transform: translate(40px, 30px) scale(1.2);
        opacity: 0.09;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.05;
    }
}

@keyframes floatGlowBlue {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.05;
    }
    50% {
        transform: translate(-40px, -30px) scale(1.2);
        opacity: 0.09;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.05;
    }
}

.about-section .about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.about-section .about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

/* ---- Left Content ---- */
.about-section .about-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 109, 77, 0.09); /* Soft brand orange background */
    color: #ff6d4d; /* Exact brand orange color */
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.about-section .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary-orange);
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 12px var(--primary-orange);
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.about-section .about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    /* Extremely clean bold Poppins */
    line-height: 1.2;
    color: #1e293b;
    /* Dark charcoal */
    margin-bottom: 24px;
    letter-spacing: -0.8px;
}

.about-section .text-gradient-orange {
    background: linear-gradient(135deg, #ff6d4d 0%, #ff8c73 42%, #fff0ed 50%, #ff8c73 58%, #ff6d4d 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineText 5s linear infinite;
}

.about-section .text-gradient-blue {
    background: linear-gradient(135deg, #354ead 0%, #526bd4 42%, #ecefff 50%, #526bd4 58%, #354ead 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineText 5s linear infinite;
}

@keyframes shineText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-section .about-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    color: #475569;
    /* Balanced slate/gray */
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-section .about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

/* strategic approach list styling */
.about-section .about-features-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.about-section .about-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-section .about-feature-card:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(53, 78, 173, 0.06);
    border-color: rgba(53, 78, 173, 0.15);
}

.about-section .feature-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(53, 78, 173, 0.08) 0%, rgba(255, 109, 77, 0.08) 100%);
    color: var(--primary-blue);
    font-size: 18px;
    flex-shrink: 0;
}

.about-section .feature-card-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.about-section .feature-card-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.about-section .about-footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #475569;
    line-height: 1.8;
    border-left: 3px solid var(--primary-blue);
    padding-left: 16px;
    margin: 0;
}

/* ---- Right Graphic ---- */
.about-section .about-graphic {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.about-section .graphic-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 0;
    overflow: visible;
}

.about-section .browser-mockup {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-section .browser-header {
    height: 34px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    padding: 0 14px;
    position: relative;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.about-section .browser-dots {
    display: flex;
    gap: 5px;
}

.about-section .browser-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.about-section .browser-dots .dot.red { background: #ff5f56; }
.about-section .browser-dots .dot.yellow { background: #ffbd2e; }
.about-section .browser-dots .dot.green { background: #27c93f; }

.about-section .browser-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    font-size: 10px;
    color: #94a3b8;
    padding: 2px 18px;
    border-radius: 5px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    font-family: monospace;
}

.about-section .browser-content {
    position: relative;
}

.about-section .about-real-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 16px 16px;
    border: none;
    box-shadow: none;
}

.about-section .graphic-wrapper:hover .browser-mockup {
    transform: translateY(-5px) scale(1.01);
}

.about-section .about-image-glow {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(53, 78, 173, 0.15) 0%, rgba(255, 109, 77, 0.1) 100%);
    filter: blur(40px);
    z-index: -1;
    border-radius: 20px;
}

/* Floating interactive badges */
.about-section .about-stat-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 3;
}

.about-section .badge-sparkline-svg {
    display: flex;
    align-items: center;
    margin-left: 4px;
    opacity: 0.85;
}

.about-section .about-stat-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(53, 78, 173, 0.15);
    box-shadow: 0 15px 30px rgba(53, 78, 173, 0.12);
}

.about-section .stat-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    flex-shrink: 0;
}

.about-section .stat-icon-circle.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.about-section .stat-icon-circle.blue {
    background: linear-gradient(135deg, var(--primary-blue), #23398c);
}

.about-section .stat-badge-info {
    display: flex;
    flex-direction: column;
}

.about-section .stat-val {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.about-section .stat-lbl {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #64748b;
}

/* Placements */
.about-section .badge-top-left {
    left: -35px;
    top: 15%;
}

.about-section .badge-bottom-right {
    right: -35px;
    bottom: 15%;
}

@media (max-width: 991px) {
    .about-section .badge-top-left {
        left: -15px;
    }
    .about-section .badge-bottom-right {
        right: -15px;
    }
}

@media (max-width: 480px) {
    .about-section .badge-top-left {
        left: -10px;
        padding: 8px 12px;
    }
    .about-section .badge-bottom-right {
        right: -10px;
        padding: 8px 12px;
    }
    .about-section .stat-icon-circle {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .about-section .stat-val {
        font-size: 13px;
    }
    .about-section .stat-lbl {
        font-size: 9px;
    }
}

/* =========================================
   SCROLL REVEAL UTILITIES
========================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.reveal-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.reveal-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.reveal-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.reveal-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

.reveal-on-scroll.delay-5 {
    transition-delay: 0.5s;
}

.reveal-on-scroll.delay-6 {
    transition-delay: 0.6s;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-section {
        padding: 80px 0;
    }

    .about-section .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-section .about-container {
        padding: 0 30px;
    }

    .about-section .about-title {
        font-size: 32px;
    }

    .about-section .graphic-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 60px 0;
    }

    .about-section .about-container {
        padding: 0 20px;
    }

    .about-section .about-title {
        font-size: 26px;
    }

    .about-section .funnel-badge {
        display: none;
    }
}


/* =========================================
   TRUSTED PARTNERS MARQUEE
========================================= */
.ws-partners {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.ws-partners-inner {
    text-align: center;
}

.ws-partners-label {
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.ws-marquee-track {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.ws-marquee {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.ws-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #bbb;
    white-space: nowrap;
    transition: color 0.3s ease;
    letter-spacing: -0.3px;
}

.ws-logo-item i {
    font-size: 22px;
}

.ws-logo-item:hover {
    color: var(--primary-blue);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   SERVICES SECTION
========================================= */
.ws-services {
    padding: 100px 40px;
    background: #fafbfc;
}

.ws-services-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ---- Shared Section Header ---- */
.ws-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ws-section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 109, 77, 0.08);
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ws-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #000;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.ws-section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ---- Services Grid ---- */
.ws-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ws-service-card {
    background: #ffffff;
    border: 1.5px solid #eaecf0;
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Minimal hover: lift + colored top border slide in */
.ws-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.ws-service-card:nth-child(even)::before {
    background: var(--primary-orange);
}

.ws-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.ws-service-card:hover::before {
    transform: scaleX(1);
}

.ws-svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.ws-svc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.ws-svc-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 24px;
}

.ws-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.ws-svc-link:hover {
    gap: 12px;
    color: var(--primary-orange);
}

/* Responsive */
@media (max-width: 1024px) {
    .ws-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-section-title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .ws-services-grid {
        grid-template-columns: 1fr;
    }

    .ws-services {
        padding: 70px 20px;
    }

    .ws-section-title {
        font-size: 30px;
    }
}

/* =========================================
   HORIZONTAL BANNER CTA SECTION
========================================= */
.ws-horizontal-cta {
    background-color: #000000;
    padding: 60px 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
}

.ws-horizontal-cta .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.ws-horizontal-cta .cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.ws-horizontal-cta .highlight-orange {
    color: var(--primary-orange);
}

.ws-horizontal-cta .cta-subtitle {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Form Wrapper for Overlay Positioning */
.ws-horizontal-cta .cta-form-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 30px auto;
}

.ws-horizontal-cta .form-inputs-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.ws-horizontal-cta input {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.ws-horizontal-cta input::placeholder {
    color: #777777;
}

.ws-horizontal-cta input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background-color: #161616;
}

.ws-horizontal-cta .cta-submit-btn {
    background-color: var(--primary-orange);
    border: none;
    border-radius: 6px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    width: 100%;
}

.ws-horizontal-cta .cta-submit-btn:hover {
    background-color: #e05a3b;
}

/* Success Message Overlay in Banner Style */
.ws-horizontal-cta .form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
    z-index: 5;
}

.ws-horizontal-cta .form-success-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ws-horizontal-cta .success-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ffffff;
}

.ws-horizontal-cta .success-icon {
    font-size: 28px;
    color: #10b981;
}

.ws-horizontal-cta .success-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.ws-horizontal-cta .success-content p {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
}

/* Badges list */
.ws-horizontal-cta .cta-badges-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ws-horizontal-cta .cta-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
}

.ws-horizontal-cta .cta-badge-item i {
    font-size: 14px;
}

/* Responsive Rules for Horizontal CTA */
@media (max-width: 1024px) {
    .ws-horizontal-cta .form-inputs-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ws-horizontal-cta .cta-submit-btn {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .ws-horizontal-cta {
        padding: 50px 0;
    }

    .ws-horizontal-cta .cta-title {
        font-size: 26px;
    }

    .ws-horizontal-cta .cta-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .ws-horizontal-cta .form-inputs-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ws-horizontal-cta .cta-submit-btn {
        grid-column: span 1;
    }

    .ws-horizontal-cta .cta-badges-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* =========================================
   TRUSTED BY / BRANDS SECTION
========================================= */
.ws-brands-section {
    background-color: var(--white);
    padding: 85px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.ws-brands-section .brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.ws-brands-section .brands-title {
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ws-brands-section .brands-subtitle {
    font-size: 15.5px;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Marquee Outer Container */
.ws-brands-section .brands-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 35px;
    /* Spacing between the two rows */
    padding: 20px 0;
}

/* Left and Right Blur Overlay Fades */
.ws-brands-section .brands-marquee-container::before,
.ws-brands-section .brands-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    /* Minimized blur width */
    z-index: 5;
    pointer-events: none;
}

.ws-brands-section .brands-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.ws-brands-section .brands-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* Marquee Row wrapper */
.ws-brands-section .brands-marquee-row {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Marquee Track */
.ws-brands-section .brands-marquee-track {
    display: flex;
    width: max-content;
    gap: 90px;
    /* Space between brand items */
}

/* Left sliding animation */
.ws-brands-section .row-left .brands-marquee-track {
    animation: marquee-left 25s infinite linear;
}

/* Right sliding animation */
.ws-brands-section .row-right .brands-marquee-track {
    animation: marquee-right 25s infinite linear;
}

/* Pause sliding on hover */
.ws-brands-section .brands-marquee-row:hover .brands-marquee-track {
    animation-play-state: paused;
}

/* Big brand item sizing */
.ws-brands-section .brand-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    /* Big font-size */
    font-weight: 700;
    color: #555555;
    opacity: 0.65;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.ws-brands-section .brand-item i {
    font-size: 36px;
    /* Big icon size */
}

/* Hover effects to light up brand colors */
.ws-brands-section .brand-item:hover {
    opacity: 1;
    transform: translateY(-4px);
}

/* Fallback hover color */
.ws-brands-section .brand-item:hover {
    color: var(--primary-blue);
}

/* Specific Brand Hover Colors */
.ws-brands-section .brand-item:has(.fa-google):hover {
    color: #4285F4;
}

.ws-brands-section .brand-item:has(.fa-amazon):hover {
    color: #FF9900;
}

.ws-brands-section .brand-item:has(.fa-microsoft):hover {
    color: #00A4EF;
}

.ws-brands-section .brand-item:has(.fa-shopify):hover {
    color: #95BF47;
}

.ws-brands-section .brand-item:has(.fa-salesforce):hover {
    color: #00A4EF;
}

.ws-brands-section .brand-item:has(.fa-hubspot):hover {
    color: #FF7A59;
}

.ws-brands-section .brand-item:has(.fa-meta):hover {
    color: #1877F2;
}

.ws-brands-section .brand-item:has(.fa-slack):hover {
    color: #4A154B;
}

.ws-brands-section .brand-item:has(.fa-spotify):hover {
    color: #1ED760;
}

.ws-brands-section .brand-item:has(.fa-dropbox):hover {
    color: #0061FE;
}

.ws-brands-section .brand-item:has(.fa-airbnb):hover {
    color: #FF5A5F;
}

.ws-brands-section .brand-item:has(.fa-zoom):hover {
    color: #2D8CFF;
}

/* Left sliding Keyframes */
@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 45px));
        /* -45px compensates for half of the 90px gap */
    }
}

/* Right sliding Keyframes */
@keyframes marquee-right {
    0% {
        transform: translateX(calc(-50% - 45px));
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive Rules for Brands Section */
@media (max-width: 768px) {
    .ws-brands-section {
        padding: 60px 0;
    }

    .ws-brands-section .brands-title {
        font-size: 28px;
    }

    .ws-brands-section .brands-subtitle {
        font-size: 14.5px;
        margin-bottom: 30px;
    }

    .ws-brands-section .brands-marquee-container {
        gap: 20px;
    }

    .ws-brands-section .brands-marquee-container::before,
    .ws-brands-section .brands-marquee-container::after {
        width: 30px;
    }

    .ws-brands-section .brands-marquee-track {
        gap: 50px;
    }

    .ws-brands-section .brand-item {
        font-size: 18px;
        gap: 10px;
    }

    .ws-brands-section .brand-item i {
        font-size: 26px;
    }

    .ws-brands-section .row-left .brands-marquee-track {
        animation-duration: 20s;
    }

    .ws-brands-section .row-right .brands-marquee-track {
        animation-duration: 20s;
    }

    @keyframes marquee-left {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 25px));
        }
    }

    @keyframes marquee-right {
        0% {
            transform: translateX(calc(-50% - 25px));
        }
    }
}

/* =========================================
   WEBSITE & APP DEVELOPMENT SERVICE SECTION (BENTO REDESIGN)
========================================= */
.ws-services-detail-section {
    position: relative;
    padding: 120px 0;
    /* Reflective background with brand-colored glowing gradients */
    background:
        radial-gradient(ellipse at 10% 10%, rgba(53, 78, 173, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 109, 77, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #fbfbfe 0%, #fffdf8 100%);
    overflow: hidden;
    z-index: 1;
}

/* Faint rotating outline rings matching hero */
.ws-services-detail-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px dashed rgba(53, 78, 173, 0.1);
    top: -200px;
    left: -150px;
    pointer-events: none;
    z-index: 0;
    animation: rotateSlow 40s linear infinite;
}

.ws-services-detail-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 109, 77, 0.08);
    bottom: -150px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

/* Reflective Background Glows */
.ws-services-detail-section .reflective-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.ws-services-detail-section .glow-blue {
    top: -10%;
    left: -10%;
    background-color: var(--primary-blue);
}

.ws-services-detail-section .glow-orange {
    bottom: -10%;
    right: -10%;
    background-color: var(--primary-orange);
}

.ws-services-detail-section .services-detail-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Centered Header Area */
.ws-services-detail-section .services-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ws-services-detail-section .detail-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: #f1f4fc;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.ws-services-detail-section .detail-category-pill i {
    font-size: 11px;
}

.ws-services-detail-section .detail-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ws-services-detail-section .detail-section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Bento Grid Layout */
.ws-services-detail-section .services-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

/* Bento Card Glassmorphism base style */
.ws-services-detail-section .bento-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.ws-services-detail-section .bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(53, 78, 173, 0.07);
    border-color: rgba(53, 78, 173, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

.ws-services-detail-section .bento-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 25px 0;
}

.ws-services-detail-section .bento-card-title i {
    color: var(--primary-blue);
    font-size: 18px;
}

/* Bento Card 1: Visual Showcase */
.ws-services-detail-section .bento-card-visual {
    padding: 0;
    /* image fills card edge */
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.ws-services-detail-section .bento-card-visual:hover {
    transform: translateY(-5px);
    background: none;
    box-shadow: none;
}

.ws-services-detail-section .visual-card-wrapper {
    position: relative;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ws-services-detail-section .visual-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ws-services-detail-section .bento-card-visual:hover .visual-real-img {
    transform: scale(1.05);
}

/* Floating Badges (Adjusted to sit within the border-radius container perfectly) */
.ws-services-detail-section .floating-tech-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    z-index: 5;
    pointer-events: none;
}

.ws-services-detail-section .badge-top-left {
    top: 25px;
    left: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 22px;
    animation: floatBadgeTop 6s ease-in-out infinite;
}

.ws-services-detail-section .badge-bottom-right {
    bottom: 25px;
    right: 25px;
    padding: 12px 18px;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    animation: floatBadgeBottom 6s ease-in-out infinite 1.2s;
}

.ws-services-detail-section .badge-accent-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.ws-services-detail-section .badge-label-text {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes floatBadgeTop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatBadgeBottom {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Bento Card 2: Services List */
.ws-services-detail-section .services-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ws-services-detail-section .service-item-row {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(240, 242, 245, 0.7);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.ws-services-detail-section .service-item-row:hover {
    background: rgba(53, 78, 173, 0.05);
    border-color: rgba(53, 78, 173, 0.15);
    transform: translateX(6px);
}

.ws-services-detail-section .service-icon-col {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    color: var(--primary-blue);
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ws-services-detail-section .service-item-row:hover .service-icon-col {
    background: var(--primary-blue);
    color: var(--white);
}

.ws-services-detail-section .service-text-col {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    flex-grow: 1;
}

.ws-services-detail-section .service-arrow-col {
    color: #cbd5e1;
    font-size: 13px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-8px);
}

.ws-services-detail-section .service-item-row:hover .service-arrow-col {
    color: var(--primary-blue);
    opacity: 1;
    transform: translateX(0);
}

/* Bento Card 3: Engineering Stack & Tags */
.ws-services-detail-section .bento-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.ws-services-detail-section .bento-card-tech .bento-card-title {
    margin: 0;
}

.ws-services-detail-section .tech-toggle-btn {
    background: var(--primary-orange);
    border: none;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.ws-services-detail-section .tech-toggle-btn:hover {
    background: #e05a3b;
    transform: translateY(-1px);
}

.ws-services-detail-section .tech-toggle-btn .toggle-icon {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.ws-services-detail-section .tech-toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.ws-services-detail-section .detail-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ws-services-detail-section .detail-tag {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    padding: 7px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

.ws-services-detail-section .detail-tag:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(53, 78, 173, 0.12);
}

/* Collapsible Tags logic */
.ws-services-detail-section .tech-tags-container .hidden-tech {
    display: none;
    opacity: 0;
    transform: scale(0.95);
}

@keyframes tagFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ws-services-detail-section .tech-tags-container.expanded .hidden-tech {
    display: inline-block;
    animation: tagFadeIn 0.3s forwards ease-out;
}

/* Bottom CTA Area */
.ws-services-detail-section .detail-action-wrapper {
    margin-top: 40px;
    text-align: center;
}

.ws-services-detail-section .detail-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #000000;
    color: var(--white);
    padding: 10px 10px 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ws-services-detail-section .detail-explore-btn .btn-icon-circle {
    width: 42px;
    height: 42px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ws-services-detail-section .detail-explore-btn:hover {
    background: #111111;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.14);
}

.ws-services-detail-section .detail-explore-btn:hover .btn-icon-circle {
    transform: scale(1.05);
}

/* Responsive Media Queries */
@media (max-width: 1199px) {
    .ws-services-detail-section {
        padding: 100px 0;
    }

    .ws-services-detail-section .services-bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .ws-services-detail-section .bento-card-visual {
        grid-column: span 2;
    }

    .ws-services-detail-section .visual-card-wrapper {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .ws-services-detail-section {
        padding: 80px 0;
    }

    .ws-services-detail-section .detail-section-title {
        font-size: 34px;
    }

    .ws-services-detail-section .services-bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ws-services-detail-section .bento-card-visual {
        grid-column: span 1;
    }

    .ws-services-detail-section .bento-card {
        padding: 25px;
    }

    .ws-services-detail-section .visual-card-wrapper {
        min-height: 280px;
    }

    .ws-services-detail-section .badge-top-left {
        width: 44px;
        height: 44px;
        font-size: 18px;
        top: 20px;
        left: 20px;
    }

    .ws-services-detail-section .badge-bottom-right {
        bottom: 20px;
        right: 20px;
        padding: 10px 14px;
    }

    .ws-services-detail-section .badge-accent-text {
        font-size: 17px;
    }

    .ws-services-detail-section .detail-explore-btn {
        width: 100%;
        max-width: 380px;
        justify-content: space-between;
        font-size: 14px;
    }
}

/* =========================================
   MARKETING SOLUTIONS SECTION
========================================= */
.ws-marketing-detail-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(53, 78, 173, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(255, 109, 77, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #fffdf8 0%, #f6f8ff 100%);
    overflow: hidden;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Background glows */
.ws-marketing-detail-section .reflective-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.ws-marketing-detail-section .glow-blue {
    bottom: -10%;
    left: -10%;
    background-color: var(--primary-blue);
}

.ws-marketing-detail-section .glow-orange {
    top: -10%;
    right: -10%;
    background-color: var(--primary-orange);
}

.marketing-detail-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.marketing-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column: Dashboard Card */
.mkt-dashboard-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 35px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.mkt-dash-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 15px;
}

.mkt-dash-dot-group {
    display: flex;
    gap: 6px;
}

.mkt-dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mkt-dash-dot.red { background-color: #ff5f56; }
.mkt-dash-dot.yellow { background-color: #ffbd2e; }
.mkt-dash-dot.green { background-color: #27c93f; }

.mkt-dash-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1.5px;
}

.mkt-dash-body {
    display: flex;
    gap: 20px;
    height: 280px;
    position: relative;
    margin-bottom: 35px;
}

.mkt-chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.7;
    height: 100%;
    width: 35px;
    padding-bottom: 25px;
}

.mkt-chart-plot {
    flex-grow: 1;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mkt-chart-grid-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.04);
}

.mkt-chart-columns {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding-bottom: 25px;
}

.mkt-chart-col {
    width: 12%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mkt-bar-fill {
    width: 100%;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, rgba(53, 78, 173, 0.6) 100%);
    position: relative;
    transition: height 1s ease-out;
}

.mkt-bar-fill.col-2 {
    background: linear-gradient(180deg, rgba(53, 78, 173, 0.8) 0%, rgba(53, 78, 173, 0.5) 100%);
}
.mkt-bar-fill.col-3 {
    background: linear-gradient(180deg, var(--primary-orange) 0%, rgba(255, 109, 77, 0.6) 100%);
}
.mkt-bar-fill.col-4 {
    background: linear-gradient(180deg, rgba(255, 109, 77, 0.8) 0%, rgba(255, 109, 77, 0.5) 100%);
}
.mkt-bar-fill.col-5 {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    box-shadow: 0 10px 25px rgba(53, 78, 173, 0.2);
}

.mkt-bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
}

.mkt-bar-fill.col-5::before {
    content: '2029';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.mkt-bar-fill.col-5::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: var(--text-dark) transparent transparent transparent;
}

.mkt-dash-footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 25px;
}

.mkt-stat-widget {
    text-align: center;
}

.mkt-widget-val {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mkt-widget-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
}

.mkt-sub-block {
    margin-top: 30px;
}

.mkt-sub-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mkt-sub-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mkt-sub-title i {
    color: var(--primary-blue);
    font-size: 14px;
}

.mkt-sub-header-row .mkt-sub-title {
    margin: 0;
}

.mkt-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mkt-tag-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    background: #f3f5fd;
    border: 1px solid rgba(53, 78, 173, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.mkt-tag-item i {
    font-size: 12px;
    opacity: 0.8;
}

.mkt-tag-item:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(53, 78, 173, 0.15);
}

.mkt-tag-item.tool-tag {
    background: #fdfaf6;
    border: 1px solid rgba(255, 109, 77, 0.05);
}

.mkt-tag-item.tool-tag:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 109, 77, 0.15);
}

.mkt-tag-item.tool-tag i {
    color: var(--primary-orange);
}
.mkt-tag-item.tool-tag:hover i {
    color: #fff;
}

.mkt-tag-item i {
    color: var(--primary-blue);
}
.mkt-tag-item:hover i {
    color: #fff;
}

.mkt-tools-container .hidden-tool {
    display: none !important;
}

.mkt-tools-container.expanded .hidden-tool {
    display: inline-flex !important;
    animation: fadeIn 0.4s ease forwards;
}

.mkt-toggle-btn {
    background: transparent;
    border: none;
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: background 0.3s;
}

.mkt-toggle-btn:hover {
    background: rgba(255, 109, 77, 0.05);
}

.mkt-action-row {
    margin-top: 35px;
}

.mkt-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--text-dark);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mkt-explore-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(53, 78, 173, 0.25);
}

.mkt-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 12px;
    transition: transform 0.3s;
}

.mkt-explore-btn:hover .mkt-btn-icon {
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .marketing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .mkt-dashboard-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .mkt-dash-body {
        height: 220px;
    }
    .mkt-dash-footer-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mkt-widget-val {
        font-size: 24px;
    }
}

/* =========================================
   BRANDING SOLUTIONS SECTION
========================================= */
.ws-branding-detail-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 10% 10%, rgba(255, 109, 77, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(53, 78, 173, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #f6f8ff 0%, #fffdf8 100%);
    overflow: hidden;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.ws-branding-detail-section .reflective-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.ws-branding-detail-section .glow-blue {
    top: -10%;
    left: -10%;
    background-color: var(--primary-blue);
}

.ws-branding-detail-section .glow-orange {
    bottom: -10%;
    right: -10%;
    background-color: var(--primary-orange);
}

.branding-detail-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 2-Column Grid (Alternated column ordering) */
.branding-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

/* Right Column: Brand Design Canvas */
.brand-identity-canvas {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 35px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Brand Design Studio Layout */
.brand-canvas-studio {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 25px;
    height: 290px;
    background: #fcfdfe;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    position: relative;
    padding: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.studio-logo-anatomy {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    padding-right: 15px;
    z-index: 2;
}

.logo-anatomy-shapes {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anatomy-svg {
    width: 100%;
    height: 100%;
}

.anatomy-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-blue);
    background: #eef2ff;
    padding: 4px 10px;
    border-radius: 50px;
    margin-top: 15px;
    border: 1px solid rgba(53, 78, 173, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Floating Mockups Styling */
.studio-assets-showcase {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Mini Business Card Mock */
.mock-business-card {
    position: absolute;
    width: 160px;
    height: 95px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
    left: 10px;
    top: 30px;
    transform: rotate(-8deg);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mock-business-card:hover {
    transform: rotate(-3deg) translateY(-5px);
    z-index: 5;
}

.card-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-logo-symbol {
    width: 18px;
    height: 18px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo-text {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.card-details {
    display: flex;
    flex-direction: column;
}

.card-name {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.card-role {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* Mini Phone Screen Mock */
.mock-phone-screen {
    position: absolute;
    width: 110px;
    height: 180px;
    background: #fff;
    border: 3px solid #111;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    right: 15px;
    bottom: -15px;
    transform: rotate(6deg);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mock-phone-screen:hover {
    transform: rotate(2deg) translateY(-5px);
    z-index: 5;
}

.phone-status-bar {
    font-size: 6px;
    font-weight: 700;
    color: #111;
    padding: 6px 10px 2px;
    display: flex;
    justify-content: space-between;
}

.phone-nav-bar {
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.phone-logo {
    font-size: 8px;
    font-weight: 900;
    color: var(--primary-blue);
}

.phone-hamburger {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-hamburger span {
    width: 8px;
    height: 1px;
    background: #111;
}

.phone-hero-mock {
    padding: 15px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8fafc;
}

.hero-bar-1 {
    height: 6px;
    width: 80%;
    background: #e2e8f0;
    border-radius: 2px;
}

.hero-bar-2 {
    height: 6px;
    width: 50%;
    background: #cbd5e1;
    border-radius: 2px;
}

/* Specs Row at Bottom of Canvas Card */
.brand-canvas-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 25px;
}

.spec-font {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-font-large {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.spec-font-details {
    display: flex;
    flex-direction: column;
}

.spec-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.spec-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
}

/* Icon Tokens */
.spec-icons-preview {
    display: flex;
    gap: 8px;
}

.icon-token {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--primary-blue);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.spec-colors {
    display: flex;
    gap: 8px;
}

.swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
}

.swatch:hover {
    transform: scale(1.15);
}

.swatch.blue { background-color: var(--primary-blue); }
.swatch.orange { background-color: var(--primary-orange); }
.swatch.dark { background-color: var(--text-dark); }
.swatch.light { background-color: #ffffff; }

/* Swatch tooltip */
.swatch .tooltip {
    visibility: hidden;
    background-color: var(--text-dark);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 3px 6px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

.swatch:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1024px) {
    .branding-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .branding-grid .mkt-content-column {
        order: 1;
    }
    .branding-grid .brand-identity-canvas {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .brand-canvas-studio {
        grid-template-columns: 1fr;
        height: auto;
        gap: 30px;
        padding: 25px 20px;
    }
    .studio-logo-anatomy {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-right: 0;
        padding-bottom: 25px;
    }
    .studio-assets-showcase {
        height: 200px;
    }
    .brand-canvas-specs {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        padding-top: 20px;
    }
    .spec-font {
        flex-direction: column;
        gap: 6px;
    }
    .spec-font-details {
        align-items: center;
    }
    .spec-icons-preview {
        justify-content: center;
    }
    .spec-colors {
        justify-content: center;
    }
}

/* =========================================
   PROBLEMS WE SOLVE SECTION
========================================= */
.ws-problems-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 50% 10%, rgba(53, 78, 173, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 109, 77, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #f6f8ff 0%, #fffdf8 100%);
    overflow: hidden;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.ws-problems-section .reflective-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.ws-problems-section .glow-blue {
    top: -10%;
    left: 20%;
    background-color: var(--primary-blue);
}

.ws-problems-section .glow-orange {
    bottom: -10%;
    right: 20%;
    background-color: var(--primary-orange);
}

.problems-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.problems-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

/* Problem Card Glassmorphic Theme */
.problem-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(53, 78, 173, 0.08);
    border-color: rgba(53, 78, 173, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.problem-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(53, 78, 173, 0.1), rgba(255, 109, 77, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

.problem-card:hover .problem-icon {
    transform: rotate(10deg) scale(1.1);
}

.problem-number {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.07);
    line-height: 1;
    transition: color 0.3s;
}

.problem-card:hover .problem-number {
    color: var(--primary-orange);
    opacity: 0.8;
}

.problem-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0 0 15px;
}

.problem-desc {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 25px;
    flex-grow: 1;
}

/* Background text highlight classes */
.highlight-text-blue {
    background: rgba(53, 78, 173, 0.08);
    color: var(--primary-blue);
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-text-orange {
    background: rgba(255, 109, 77, 0.08);
    color: var(--primary-orange);
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Creative Premium Micro-Visualizations */
.problem-chart {
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

/* Card 01: ROI Pulse SVG Graph */
.roi-pulse-chart {
    width: 100%;
    overflow: visible;
}

.roi-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.pulse-ring {
    transform-origin: 160px 2px;
    animation: pulseRing 1.8s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Card 02: Funnel Conversion Bars */
.funnel-bars-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    width: 100%;
}

.funnel-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    height: 100%;
    justify-content: flex-end;
}

.funnel-bar {
    width: 16px;
    height: 6px; /* Start state */
    background: linear-gradient(180deg, var(--primary-orange) 0%, rgba(255, 109, 77, 0.3) 100%);
    border-radius: 4px;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover .funnel-bar {
    height: var(--height);
}

.funnel-bar-lbl {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.funnel-bar-arrow {
    align-self: center;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
}

/* Card 03: Roadmap Node Graph */
.roadmap-nodes-chart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
}

.roadmap-node-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.node-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.roadmap-node-item.active .node-circle {
    background: #eef2ff;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.roadmap-node-item.glow .node-circle {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 0 12px rgba(53, 78, 173, 0.4);
}

.node-label {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-connector {
    flex-grow: 1;
    height: 2px;
    background: #e2e8f0;
    margin-bottom: 12px;
    position: relative;
}

.roadmap-node-item.active + .roadmap-connector {
    background: var(--primary-blue);
}

/* Card 04: AI Radar/Scan Visualizer */
.ai-radar-chart {
    width: 100%;
    background: rgba(255, 109, 77, 0.02);
    border: 1px solid rgba(255, 109, 77, 0.05);
    border-radius: 12px;
    align-self: center;
    overflow: hidden;
}

.radar-scan-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(255, 109, 77, 0.12), transparent);
    animation: radarScan 3s linear infinite;
}

.radar-nodes-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 15px;
}

.radar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 109, 77, 0.2);
    position: relative;
}

.radar-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(255, 109, 77, 0.2);
    border-radius: 50%;
    animation: pulseRadarDot 2s infinite alternate;
}

.radar-dot.dot-2::after { animation-delay: 0.4s; }
.radar-dot.dot-3::after { animation-delay: 0.8s; }
.radar-dot.dot-4::after { animation-delay: 1.2s; }
.radar-dot.dot-5::after { animation-delay: 1.6s; }

@keyframes radarScan {
    0% { left: -40px; }
    100% { left: 100%; }
}

@keyframes pulseRadarDot {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 1; }
}

/* Badge row styling */
.problem-badge-row {
    margin-top: auto;
}

.problem-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.3s;
}

.problem-badge.blue {
    background: rgba(53, 78, 173, 0.05);
    color: var(--primary-blue);
    border: 1px solid rgba(53, 78, 173, 0.1);
}

.problem-badge.orange {
    background: rgba(255, 109, 77, 0.05);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 109, 77, 0.1);
}

.problem-card:hover .problem-badge.blue {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 5px 15px rgba(53, 78, 173, 0.15);
}

.problem-card:hover .problem-badge.orange {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 109, 77, 0.15);
}

/* Responsive grid adjustments */
@media (max-width: 1200px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* =========================================
   CASE STUDIES / PORTFOLIO SECTION
========================================= */
.ws-portfolio-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.portfolio-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.portfolio-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.portfolio-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.portfolio-subtitle {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Tab Filter styling */
.portfolio-tabs-container {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    z-index: 10;
}

.portfolio-tabs-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.portfolio-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
    max-width: 1100px;
}

.portfolio-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50px;
    color: #64748b;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-tab-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.portfolio-tab-btn:hover {
    color: var(--primary-blue);
    background: rgba(53, 78, 173, 0.05);
}

.portfolio-tab-btn:hover i {
    transform: translateY(-1px) scale(1.1);
}

.portfolio-tab-btn.active {
    background: linear-gradient(135deg, #ff6d4d 0%, #ff8c73 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 109, 77, 0.25);
    transform: translateY(0) scale(1.02);
}

.portfolio-tab-btn.active i {
    animation: bounceIcon 1s ease infinite alternate;
}

@keyframes bounceIcon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-2px); }
}

.portfolio-scroll-hint {
    display: none;
}

@media (max-width: 991px) {
    .portfolio-tabs-container {
        margin-bottom: 30px;
    }

    .portfolio-tabs-wrapper {
        display: block;
        margin-left: 0;
        margin-right: 0;
        padding: 10px 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    
    .portfolio-tabs-wrapper::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari/Edge */
    }
    
    .portfolio-tabs {
        display: inline-flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        border-radius: 30px;
        padding: 6px;
        width: max-content;
        gap: 6px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    }
    
    .portfolio-tab-btn {
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap; /* Prevent text wrapping */
        scroll-snap-align: start;
    }

    .portfolio-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 38px;
        width: 38px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 1) 100%);
        color: var(--primary-orange);
        font-size: 16px;
        padding-left: 10px;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 12;
        border-radius: 0 30px 30px 0;
        animation: pulseArrow 1.5s ease-in-out infinite;
    }
    
    .portfolio-scroll-hint.fade-out {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
        pointer-events: none;
    }
}

@keyframes pulseArrow {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(4px); }
}

/* Card layout */
.portfolio-content-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.portfolio-details-panel {
    display: flex;
    flex-direction: column;
}

.portfolio-client-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-blue);
    background: #eef2ff;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.portfolio-meta-block {
    margin-bottom: 22px;
}

.portfolio-meta-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-meta-title i {
    font-size: 14px;
}

.portfolio-meta-title .fa-triangle-exclamation {
    color: #f59e0b;
}

.portfolio-meta-title .fa-lightbulb {
    color: #eab308;
}

.portfolio-meta-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.portfolio-results-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Metric Cards Grid */
.portfolio-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.portfolio-metric-item {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border-left: 3px solid var(--primary-orange);
}

.portfolio-metric-item:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.metric-icon {
    font-size: 16px;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.metric-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.metric-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 2px;
}

.metric-sub {
    font-size: 9px;
    color: #10b981;
    font-weight: 700;
}

.portfolio-summary-pill {
    background: #f1f5f9;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Right Visuals Panel */
.portfolio-visuals-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.portfolio-content-card:hover .portfolio-image-wrapper img {
    transform: scale(1.04);
}

.portfolio-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

/* Animations for switching tabs */
.portfolio-content-card {
    animation: portfolioFadeIn 0.5s ease;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .portfolio-content-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 30px;
    }
    .portfolio-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-image-wrapper {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .ws-portfolio-section {
        padding: 60px 0;
    }
    .portfolio-container {
        width: 100%;
        padding: 0 12px;
    }
    .portfolio-title {
        font-size: 26px;
    }
    .portfolio-content-card {
        padding: 24px 16px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .portfolio-container {
        padding: 0 8px;
    }
    .portfolio-content-card {
        padding: 20px 12px;
        border-radius: 12px;
    }
    .portfolio-metrics-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-image-wrapper {
        min-height: 220px;
    }
}

/* =====================================================
   INDUSTRIES WE SERVE SECTION
===================================================== */
.ws-industries-section {
    background: linear-gradient(160deg, #f0f4ff 0%, #fff5f2 50%, #f8f9fa 100%);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.ws-industries-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(53, 78, 173, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ws-industries-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 109, 77, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ws-industries-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
}

/* Header */
.ws-industries-header {
    text-align: center;
    margin-bottom: 60px;
}

.ws-industries-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-orange);
    display: inline-block;
}

.ws-industries-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.ind-title-accent {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ws-industries-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Grid */
.ws-industry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 60px;
}

/* Pill Card */
.ws-industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 22px 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.ws-industry-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(53, 78, 173, 0.04) 0%, rgba(255, 109, 77, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.ws-industry-pill:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 12px 36px rgba(53, 78, 173, 0.15);
}

.ws-industry-pill:hover::before {
    opacity: 1;
}

/* Icon wraps */
.pill-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ws-industry-pill:hover .pill-icon-wrap {
    transform: scale(1.12) rotate(-5deg);
}

.pill-blue {
    background: rgba(53, 78, 173, 0.1);
    color: var(--primary-blue);
}

.pill-orange {
    background: rgba(255, 109, 77, 0.12);
    color: var(--primary-orange);
}

/* CTA strip */
.ws-industries-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 28px 40px;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.ws-industries-cta p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.ws-ind-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a3d9e 100%);
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(53, 78, 173, 0.3);
}

.ws-ind-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(53, 78, 173, 0.4);
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff4444 100%);
    box-shadow: 0 12px 36px rgba(255, 109, 77, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .ws-industries-section {
        padding: 70px 0 60px;
    }
    .ws-industries-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 14px;
        border-radius: 16px;
    }
}

@media (max-width: 600px) {
    .ws-industry-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 40px;
    }
    .ws-industry-pill {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 12px;
        gap: 10px;
        border-radius: 30px;
        width: 100%;
        box-sizing: border-box;
    }
    .ws-industry-pill span {
        font-size: 11px;
        line-height: 1.25;
        text-align: left;
        white-space: normal;
        word-break: keep-all;
    }
    .pill-icon-wrap {
        width: 30px;
        height: 30px;
        font-size: 12px;
        flex-shrink: 0;
    }
}

@media (max-width: 400px) {
    .ws-industry-grid {
        gap: 8px;
    }
    .ws-industry-pill {
        padding: 8px 10px;
        gap: 8px;
    }
    .ws-industry-pill span {
        font-size: 10px;
    }
    .pill-icon-wrap {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}


/* =====================================================
   RESULTS WE DELIVER SECTION
===================================================== */
.ws-results-section {
    padding: 110px 0 100px;
    background: #ffffff;
    position: relative;
    /* Do NOT set overflow:hidden here â€” it breaks sticky positioning */
}

.ws-results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
}

.ws-results-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start; /* Required: both columns anchor to top */
}

/* LEFT COLUMN â€” truly fixed while right accordion scrolls */
.ws-results-left {
    position: sticky;
    top: 110px;
    align-self: start;  /* Critical: tells grid to keep this column at its natural start */
    max-height: calc(100vh - 140px);
    overflow: visible;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(248, 250, 252, 0.6) 100%);
    border: 1px solid rgba(53, 78, 173, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(53, 78, 173, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ws-results-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 18px;
}

.ws-results-eyebrow i {
    font-size: 13px;
}

.ws-results-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.results-title-accent {
    display: inline-block;
    position: relative;
    color: var(--primary-blue);
}



.ws-results-tagline {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

/* Features list inside Results */
.ws-results-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0 30px;
}

.ws-results-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ws-results-feature-item .feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(53, 78, 173, 0.06);
    color: var(--primary-blue);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(53, 78, 173, 0.1);
    transition: all 0.3s ease;
}

.ws-results-feature-item:hover .feature-icon {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.05);
}

.ws-results-feature-item .feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ws-results-feature-item .feature-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.ws-results-feature-item .feature-text span {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.5;
}

.ws-results-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.ws-results-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a3d9e 100%);
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(53, 78, 173, 0.3);
}

.ws-results-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(53, 78, 173, 0.4);
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e55a30 100%);
    box-shadow: 0 14px 40px rgba(255, 109, 77, 0.35);
}

/* RIGHT COLUMN â€” ACCORDION */
.ws-results-right {
    padding-top: 8px;
}

.ws-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.ws-accordion .ws-accordion-item {
    border-bottom: 1.5px solid var(--border-color);
}

.ws-accordion-item {
    transition: background 0.3s ease;
}

.ws-accordion .ws-accordion-item:last-child {
    border-bottom: none;
}

.ws-accordion .ws-accordion-item.active {
    background: linear-gradient(135deg, rgba(53, 78, 173, 0.03) 0%, rgba(255, 109, 77, 0.02) 100%);
}

.ws-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.ws-accordion .ws-accordion-trigger:hover {
    background: rgba(53, 78, 173, 0.03);
}

.accord-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.ws-accordion-item.active .accord-title {
    color: var(--primary-blue);
}

.accord-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.ws-accordion-item.active .accord-icon {
    background: var(--primary-orange);
    transform: rotate(45deg);
}

.ws-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.ws-accordion-item.active .ws-accordion-body {
    max-height: 300px;
}

.ws-accordion-body p {
    padding: 0 28px 24px;
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .ws-results-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .ws-results-left {
        position: static;
        padding: 30px 25px;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .ws-results-section {
        padding: 70px 0 60px;
    }
    .ws-accordion-trigger {
        padding: 20px 20px;
    }
    .ws-accordion-body p {
        padding: 0 20px 20px;
    }
    .accord-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ws-results-left {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .ws-results-feature-item {
        gap: 12px;
    }
    .ws-results-feature-item .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .ws-results-feature-item .feature-text strong {
        font-size: 14px;
    }
    .ws-results-feature-item .feature-text span {
        font-size: 12.5px;
    }
}

/* =====================================================
   CLIENT TESTIMONIALS SECTION
===================================================== */
.ws-testimonials-section {
    padding: 110px 0 100px;
    background: linear-gradient(160deg, #f8f9fa 0%, #f0f4ff 60%, #fff5f2 100%);
    position: relative;
    overflow: hidden;
}

.ws-testimonials-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(53, 78, 173, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ws-testimonials-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
}

/* Header row */
.ws-testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.ws-test-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.ws-test-eyebrow i {
    font-size: 11px;
}

.ws-test-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.15;
}

.test-title-accent {
    color: var(--primary-blue);
}

.ws-test-subtitle {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 520px;
}

/* Navigation arrows */
.ws-test-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 14px;
}

.ws-test-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: none;
    background: var(--primary-blue);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(53, 78, 173, 0.25);
}

.ws-test-nav-btn:hover {
    background: var(--primary-orange);
    box-shadow: 0 6px 20px rgba(255, 109, 77, 0.35);
    transform: scale(1.05);
}

.ws-test-nav-btn:disabled {
    background: #d1d5db;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Track outer â€” clips overflow */
.ws-test-track-outer {
    overflow: hidden;
    border-radius: 20px;
}

.ws-test-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Dark CTA Card */
.ws-test-cta-card {
    min-width: 320px;
    width: 320px;
    background: linear-gradient(145deg, #0f1c4d 0%, #1a2e6e 60%, #354ead 100%);
    border-radius: 20px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.ws-test-cta-card::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 109, 77, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.ws-test-cta-stars {
    display: flex;
    gap: 5px;
    color: var(--primary-orange);
    font-size: 18px;
}

.ws-test-cta-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.ws-test-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ws-test-cta-link:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Testimonial Cards */
.ws-test-card {
    min-width: 380px;
    width: 380px;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 28px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ws-test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(53, 78, 173, 0.12);
    border-color: rgba(53, 78, 173, 0.2);
}

.ws-test-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Avatar circle with initials */
.ws-test-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--av-color, var(--primary-blue));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.ws-test-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.ws-test-info span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.ws-test-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 14px;
}

.ws-test-review {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.78;
    font-style: italic;
    flex: 1;
}

/* Dot indicators */
.ws-test-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.ws-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.ws-dot.active {
    background: var(--primary-blue);
    width: 26px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ws-test-card {
        min-width: 320px;
        width: 320px;
    }
    .ws-test-cta-card {
        min-width: 280px;
        width: 280px;
    }
}

@media (max-width: 768px) {
    .ws-testimonials-section {
        padding: 70px 0 60px;
    }
    .ws-testimonials-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .ws-test-nav {
        align-self: flex-start;
        margin-bottom: 0;
    }
    .ws-test-card {
        min-width: 280px;
        width: 280px;
        padding: 24px 20px;
    }
    .ws-test-cta-card {
        min-width: 260px;
        width: 260px;
        padding: 32px 24px;
    }
}

/* =====================================================
   TESTIMONIALS SECTION â€” LIGHT PREMIUM THEME (ws-trev)
===================================================== */
.ws-trev-section {
    background: #ffffff;
}

.ws-trev-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
}

/* â”€â”€ Light Gradient Header Band â”€â”€ */
.ws-trev-header-band {
    background: linear-gradient(145deg, #eef2ff 0%, #f5f0ff 35%, #fff5f2 70%, #fef9ec 100%);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glowing orb â€” blue */
.ws-trev-header-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(53, 78, 173, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* Glowing orb â€” orange */
.ws-trev-header-band::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 109, 77, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* Eyebrow stars */
.ws-trev-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f59e0b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.ws-trev-eyebrow span {
    color: var(--text-light);
    font-size: 11px;
    letter-spacing: 3px;
}

/* Main Title */
.ws-trev-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

/* Orange gradient accent */
.trev-accent {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.ws-trev-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto 52px;
    line-height: 1.78;
    position: relative;
    z-index: 1;
}

/* â”€â”€ Stats Bar â€” Glass on Light â”€â”€ */
.ws-trev-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(53, 78, 173, 0.12);
    border-radius: 20px;
    padding: 22px 44px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 8px 32px rgba(53, 78, 173, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.ws-trev-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 36px;
}

.ws-trev-stat strong {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.ws-trev-stat span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ws-trev-stat-div {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(53, 78, 173, 0.2), transparent);
}

/* â”€â”€ Cards Body â”€â”€ */
.ws-trev-body {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f4ff 100%);
}

@media (min-width: 769px) {
    .ws-trev-grid-slider {
        display: flex !important;
        overflow-x: auto;
        padding-bottom: 25px; /* Space for scrollbar */
        margin-top: 30px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: rgba(53, 78, 173, 0.4) transparent;
        -webkit-overflow-scrolling: touch;
        gap: 24px;
    }
    
    /* Show scrollbar on desktop so users can actually scroll */
    .ws-trev-grid-slider::-webkit-scrollbar {
        height: 8px;
        display: block;
    }
    .ws-trev-grid-slider::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
    }
    .ws-trev-grid-slider::-webkit-scrollbar-thumb {
        background: rgba(53, 78, 173, 0.4);
        border-radius: 10px;
    }
    
    .ws-trev-grid-slider .ws-trev-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 380px;
        scroll-snap-align: start;
        margin-bottom: 10px; /* Space for hover transform */
    }
}

.ws-trev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* â”€â”€ Featured Card (spans 2 cols, light gradient) â”€â”€ */
.ws-trev-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #eef2ff 0%, #e8f0fe 40%, #fdf2ee 100%) !important;
    border: 1.5px solid rgba(53, 78, 173, 0.15) !important;
    box-shadow:
        0 8px 40px rgba(53, 78, 173, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

.ws-trev-featured .trev-quote-mark {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
}

.ws-trev-featured .ws-trev-text {
    color: var(--text-dark) !important;
    font-size: 15.5px !important;
    font-weight: 500;
}

.ws-trev-featured .ws-trev-author strong {
    color: var(--text-dark) !important;
}

.ws-trev-featured .ws-trev-author span {
    color: var(--text-light) !important;
}

.ws-trev-featured .ws-trev-author {
    border-top-color: rgba(53, 78, 173, 0.12) !important;
}

/* â”€â”€ Regular Card â”€â”€ */
.ws-trev-card {
    background: #ffffff;
    border: 1.5px solid rgba(53, 78, 173, 0.08);
    border-radius: 20px;
    padding: 36px 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(53, 78, 173, 0.05);
}

/* Shimmer reflection on top edge */
.ws-trev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-orange) 50%, var(--primary-blue) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.35s ease;
    animation: shimmer-line 2s linear infinite;
}

@keyframes shimmer-line {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ws-trev-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 24px 60px rgba(53, 78, 173, 0.13),
        0 0 0 1px rgba(53, 78, 173, 0.08),
        inset 0 1px 0 rgba(255,255,255,1);
    border-color: transparent;
    background: linear-gradient(160deg, #ffffff 0%, #f8f5ff 100%);
}

.ws-trev-card:hover::before {
    opacity: 1;
}

/* Quote mark decoration */
.trev-quote-mark {
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 0.5;
    color: rgba(53, 78, 173, 0.1);
    font-weight: 900;
    margin-bottom: 8px;
    user-select: none;
    transition: color 0.3s ease;
}

.ws-trev-card:hover .trev-quote-mark {
    color: rgba(255, 109, 77, 0.15);
}

/* Review text */
.ws-trev-text {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.85;
    flex: 1;
}

/* Author row */
.ws-trev-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(53, 78, 173, 0.08);
    flex-wrap: wrap;
}

/* Avatar */
.ws-trev-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--tav, var(--primary-blue));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ws-trev-author > div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.ws-trev-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ws-trev-author span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stars */
.trev-stars {
    color: #f59e0b;
    font-size: 13px;
    display: flex;
    gap: 3px;
    margin-left: auto;
}

/* ── Bottom CTA Strip ── */
.ws-trev-bottom {
    background: linear-gradient(135deg, rgba(53, 78, 173, 0.03) 0%, rgba(255, 109, 77, 0.05) 100%);
    border: 1px solid rgba(53, 78, 173, 0.08);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(53, 78, 173, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.ws-trev-bottom p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ws-trev-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ws-trev-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 109, 77, 0.3);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ws-trev-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ws-trev-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .ws-trev-header-band {
        padding: 65px 0 55px;
    }
    .ws-trev-stats {
        padding: 18px 20px;
    }
    .ws-trev-stat {
        padding: 0 18px;
    }
    .ws-trev-stat strong {
        font-size: 1.35rem;
    }
    .ws-trev-container {
        width: 100%;
    }
    .ws-trev-grid {
        display: flex;
        overflow-x: auto;
        padding: 0 20px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-padding-left: 20px;
        gap: 15px;
    }
    .ws-trev-grid::-webkit-scrollbar {
        display: none;
    }
    .ws-trev-featured {
        flex: 0 0 85%;
        max-width: none;
        margin: 0;
        scroll-snap-align: start;
    }
    .ws-trev-body {
        padding: 50px 0 60px;
    }
    .ws-trev-card {
        flex: 0 0 85%;
        max-width: none;
        margin: 0;
        scroll-snap-align: start;
        padding: 24px 20px !important;
    }
    .ws-trev-card .trev-quote-mark {
        font-size: 50px;
        margin-bottom: 0px;
    }
    .ws-trev-text {
        font-size: 14px;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .ws-trev-bottom {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 16px;
        border-radius: 16px;
    }
}

/* =====================================================
   VIDEO SHOWCASE SECTION (Style with Elegance)
===================================================== */
.ws-video-showcase {
    background: linear-gradient(180deg, #ffffff 0%, #eef2fc 100%);
    padding: 100px 0 50px 0;
    overflow: hidden;
    position: relative;
}

.ws-video-container {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Video Header matching ws-trev-header-band styles */
.ws-video-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.ws-video-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--primary-orange, #FF6D4D);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ws-video-eyebrow span {
    color: var(--text-light, #555);
    font-size: 11px;
    letter-spacing: 3px;
}

.ws-video-section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-dark, #080e2b);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.ws-video-subtitle {
    font-size: 16px;
    color: var(--text-light, #555);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.78;
}

/* Video Tabs styling matching portfolio tabs */
.ws-video-tabs-container {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    z-index: 10;
}

.ws-video-tabs-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ws-video-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
    max-width: 800px;
}

.ws-video-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50px;
    color: #64748b;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ws-video-tab-btn i {
    font-size: 14px;
}

.ws-video-tab-btn:hover {
    color: var(--primary-blue, #354EAD);
    background: rgba(53, 78, 173, 0.05);
}

.ws-video-tab-btn.active {
    background: linear-gradient(135deg, #ff6d4d 0%, #ff8c73 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 109, 77, 0.25);
    transform: translateY(0) scale(1.02);
}

/* Horizontal scrolling track matching ws-trev-grid-slider */
.ws-video-grid {
    display: flex !important;
    overflow-x: auto;
    padding-bottom: 25px; /* Space for scrollbar */
    margin-top: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(53, 78, 173, 0.4) transparent;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    width: 100%;
}

/* Custom Scrollbar for Chrome/Safari/Edge */
.ws-video-grid::-webkit-scrollbar {
    height: 8px;
    display: block;
}
.ws-video-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}
.ws-video-grid::-webkit-scrollbar-thumb {
    background: rgba(53, 78, 173, 0.4);
    border-radius: 10px;
}

/* Card design: 9:16 portrait style, optimized height */
.ws-video-card {
    flex: 0 0 calc(25% - 18px); /* 4 cards visible at 1600px screen size */
    aspect-ratio: 9 / 16;
    min-width: 280px; /* Prevent cards from getting too small */
    max-width: 320px;
    background: var(--white, #ffffff);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1.5px solid rgba(53, 78, 173, 0.08);
    box-shadow: 0 2px 16px rgba(53, 78, 173, 0.05);
    scroll-snap-align: start;
    transition: all 0.35s ease;
    margin-bottom: 10px; /* Space for hover transform */
}

/* Shimmer reflection on top edge matching ws-trev-card */
.ws-video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue, #354EAD) 0%, var(--primary-orange, #FF6D4D) 50%, var(--primary-blue, #354EAD) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 10;
    animation: shimmer-line 2s linear infinite;
}

.ws-video-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 24px 60px rgba(53, 78, 173, 0.13),
        0 0 0 1px rgba(53, 78, 173, 0.08),
        inset 0 1px 0 rgba(255,255,255,1);
    border-color: transparent;
    background: linear-gradient(160deg, #ffffff 0%, #f8f5ff 100%);
}

.ws-video-card:hover::before {
    opacity: 1;
}

.ws-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .ws-video-card {
        flex: 0 0 calc(33.333% - 16px); /* 3 cards visible */
    }
}

@media (max-width: 992px) {
    .ws-video-card {
        flex: 0 0 calc(50% - 12px); /* 2 cards visible */
    }
    
    .ws-video-tabs-container {
        margin-bottom: 30px;
    }

    .ws-video-tabs-wrapper {
        display: block;
        margin-left: 0;
        margin-right: 0;
        padding: 10px 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    
    .ws-video-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .ws-video-tabs {
        display: inline-flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        border-radius: 30px;
        padding: 6px;
        width: max-content;
        gap: 6px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    }
    
    .ws-video-tab-btn {
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .ws-video-showcase {
        padding: 60px 0;
    }
    
    .ws-video-grid {
        scrollbar-width: none;
        scroll-padding-left: 20px;
        gap: 15px;
    }
    
    .ws-video-grid::-webkit-scrollbar {
        display: none;
    }
    
    .ws-video-card {
        flex: 0 0 85%; /* 1 card visible and peek of the next */
        max-width: none;
        margin: 0;
    }
}

/* =====================================================
   FAQS SECTION
===================================================== */
.ws-faq-section {
    padding: 50px 0 100px 0;
    background: linear-gradient(180deg, #eef2fc 0%, #fff0eb 60%, #ffffff 100%);
}

.ws-faq-container {
    max-width: 1300px;
    width: 92%;
    margin: 0 auto;
}

.ws-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.ws-faq-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark, #080e2b);
    margin-bottom: 15px;
}

.ws-faq-header p {
    font-size: 1.1rem;
    color: var(--text-light, #555);
}

.ws-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.ws-faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ws-faq-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Update ws-drawer to match reference light-mode accordion */
.ws-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: #f6f6f6;
    z-index: 1002;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.ws-drawer.active {
    right: 0;
}

.ws-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ws-drw-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px; /* Match mobile header height */
    background: linear-gradient(135deg, var(--primary-blue, #354ead), #223785);
}

.ws-drw-close {
    background: var(--primary-orange, #FF6D4D);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ws-drw-close:hover {
    transform: rotate(90deg);
}

.ws-drw-body {
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ws-drw-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ws-drw-item {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.ws-drw-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark, #080e2b);
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    border-left: 3px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* Active Page Highlight */
.ws-drw-link.active-page,
.ws-drw-inner-list a.active-page,
.ws-drw-inner-link.active-page {
    color: var(--primary-orange, #FF6D4D);
}

.ws-drw-link.active-page {
    border-left-color: var(--primary-orange, #FF6D4D);
}

.drw-icon {
    color: var(--primary-blue, #354EAD);
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.drw-toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: rgba(53, 78, 173, 0.05); /* Subtle blue */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue, #354EAD);
    border-left: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ws-drw-sub {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

.ws-drw-item.active .ws-drw-sub {
    display: block;
}

.ws-drw-item.active .drw-toggle i {
    transform: rotate(180deg);
}

/* Inner Accordion Styling */
.ws-drw-inner-link {
    width: 100%;
    padding: 14px 20px 14px 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
    color: var(--text-dark, #080e2b);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ws-drw-inner-link.has-inner-sub {
    background: rgba(53, 78, 173, 0.04);
    color: var(--primary-blue, #354EAD);
}

.ws-drw-inner-item.active .ws-drw-inner-link.has-inner-sub {
    background: rgba(53, 78, 173, 0.08);
}

.ws-drw-inner-item.active .drw-inner-toggle i {
    transform: rotate(180deg);
}

.ws-drw-inner-list {
    display: none;
    list-style: none;
    padding: 10px 0;
    background: #fff;
    margin: 0;
}

.ws-drw-inner-item.active .ws-drw-inner-list {
    display: block;
}

.ws-drw-inner-list a {
    display: block;
    padding: 12px 20px 12px 50px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ws-drw-inner-list a:hover {
    color: var(--primary-orange, #FF6D4D);
}

/* Footer CTA in Drawer */
.ws-drw-footer {
    padding: 20px;
    background: #fff;
    margin-top: auto;
    border-top: 1px solid #eee;
}

.ws-drw-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--primary-orange, #FF6D4D);
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 109, 77, 0.2);
}

.ws-drw-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 109, 77, 0.3);
}

/* Hide header CTA on mobile phones only (<= 600px) */
@media (max-width: 600px) {
    .ws-header .ws-cta {
        display: none !important;
    }
}

.ws-faq-item:hover {
    box-shadow: 0 10px 30px rgba(53, 78, 173, 0.05);
    border-color: rgba(53, 78, 173, 0.1);
}

.ws-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark, #080e2b);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(53, 78, 173, 0.05);
    border-radius: 50%;
    color: var(--primary-blue, #354EAD);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.ws-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ws-faq-content p {
    font-size: 15px;
    color: var(--text-light, #555);
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 0;
}

.ws-faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-blue, #354EAD);
    color: #ffffff;
}

.ws-faq-item.active .ws-faq-content {
    max-height: 500px;
}

@media (max-width: 768px) {
    .ws-faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .faq-question {
        font-size: 15px;
    }
}

/* =====================================================
   BLOGS / INSIGHTS SECTION (Mixup)
===================================================== */
.ws-blog-section {
    padding: 100px 0;
    background: #f8fafc;
}

.ws-blog-container {
    max-width: 1300px;
    width: 92%;
    margin: 0 auto;
}

.ws-blog-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 20px;
}

.ws-blog-title-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-blog-accent {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange, #FF6D4D);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ws-blog-header-row h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark, #080e2b);
    margin: 0;
}

.ws-blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: var(--primary-blue, #354EAD);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ws-blog-view-all:hover {
    background: var(--primary-orange, #FF6D4D);
    transform: translateY(-2px);
}

.ws-blog-grid {
    display: flex;
    gap: 30px;
}

@media (min-width: 769px) {
    .ws-blog-grid {
        overflow-x: auto;
        padding-bottom: 25px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: rgba(53, 78, 173, 0.4) transparent;
        -webkit-overflow-scrolling: touch;
    }
    .ws-blog-grid::-webkit-scrollbar {
        height: 8px;
        display: block;
    }
    .ws-blog-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
    }
    .ws-blog-grid::-webkit-scrollbar-thumb {
        background: rgba(53, 78, 173, 0.4);
        border-radius: 10px;
    }
    .ws-blog-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 380px;
        scroll-snap-align: start;
    }
}

.ws-blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.ws-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(53, 78, 173, 0.08);
}

.ws-blog-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.ws-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ws-blog-card:hover .ws-blog-img img {
    transform: scale(1.05);
}

.ws-blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ws-blog-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue, #354EAD);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ws-blog-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    font-weight: 500;
}

.ws-blog-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark, #080e2b);
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.ws-blog-card:hover h3 {
    color: var(--primary-orange, #FF6D4D);
}

.ws-blog-excerpt {
    font-size: 15px;
    color: var(--text-light, #555);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}



.ws-blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark, #080e2b);
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px 20px 8px 8px;
    border-radius: 30px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.read-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-orange, #FF6D4D);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ws-blog-read-btn:hover {
    border-color: var(--primary-blue, #354EAD);
    color: var(--primary-blue, #354EAD);
}

.ws-blog-read-btn:hover .read-icon {
    background: var(--primary-blue, #354EAD);
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .ws-video-showcase, .ws-faq-section, .ws-blog-section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .ws-video-showcase, .ws-faq-section, .ws-blog-section {
        padding: 50px 0;
    }

    /* FAQ Mobile Fixes */
    .ws-faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .faq-question {
        font-size: 15px;
    }

    /* Blog Mobile Fixes */
    .ws-blog-header-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 0 20px;
    }
    .ws-blog-header-row h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        line-height: 1.2;
    }
    .ws-blog-accent {
        font-size: 12px;
    }
    .ws-blog-view-all {
        align-self: auto;
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 6px;
        white-space: nowrap;
    }
    .ws-blog-container {
        width: 100%;
    }
    .ws-blog-grid {
        display: flex;
        overflow-x: auto;
        padding: 0 20px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-padding-left: 20px;
        gap: 15px;
    }
    .ws-blog-grid::-webkit-scrollbar {
        display: none;
    }
    .ws-blog-card {
        flex: 0 0 85%; /* Shows 1 full card and a peek of the next */
        max-width: none;
        margin: 0;
        scroll-snap-align: start;
    }
    .ws-blog-img {
        height: 180px;
    }
    .ws-blog-content {
        padding: 20px;
    }
    .ws-blog-content h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
    .ws-blog-date {
        margin-bottom: 12px;
    }
    .ws-blog-excerpt {
        font-size: 14px;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* =========================================
   CONTACT / LET'S TALK SECTION STYLING
========================================= */
.ws-contact-section {
    background: #f8fafd;
    color: #111111;
    padding: 100px 0 220px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Background glows for premium look */
.ws-contact-section::before,
.ws-contact-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.05;
}
.ws-contact-section::before {
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
}
.ws-contact-section::after {
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
}

.ws-contact-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ws-contact-header {
    text-align: center;
    margin-bottom: 60px;
}
.ws-contact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #111111;
}
.ws-contact-header p {
    color: #555555;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tab Switcher Styles */
.ws-contact-switcher {
    display: inline-flex;
    gap: 15px;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.ws-switcher-btn {
    background: transparent;
    border: none;
    border-radius: 35px;
    padding: 10px 24px;
    color: #666666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ws-switcher-btn i {
    font-size: 13px;
}
.ws-switcher-btn:hover {
    color: #111111;
}
.ws-switcher-btn.active {
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(53, 78, 173, 0.2);
}

/* View Views & Animation */
.ws-contact-view {
    display: none;
    opacity: 0;
}
.ws-contact-view.active {
    display: block;
    animation: contactViewFade 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

/* File Upload styling */
.custom-file-upload-wrap {
    width: 100%;
}
.career-file-label {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    pointer-events: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1.5px dashed rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.01);
    border-radius: 10px;
    padding: 16px 20px;
    color: #666666;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 5px;
}
.career-file-label:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 109, 77, 0.03);
}
.career-file-label i {
    font-size: 18px;
    color: var(--primary-orange);
}

.ws-contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(53, 78, 173, 0.04);
    overflow: hidden;
}

/* Left Column: Expert Card */
.ws-contact-expert-card {
    background: #fbfcfd;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ws-contact-expert-card > .expert-contact-info:last-of-type {
    margin-top: auto;
}


.expert-avatars {
    display: flex;
    margin-bottom: 24px;
}
.avatar-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    overflow: hidden;
    background: #f8fafd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-circle.av-2 {
    margin-left: -16px;
}

.ws-contact-expert-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}
.ws-contact-expert-card .highlight-yellow {
    color: var(--primary-orange);
}
.ws-contact-expert-card p {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.expert-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.expert-schedule-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--primary-blue);
    border-radius: 30px;
    padding: 12px 20px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.expert-schedule-btn:hover {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: #ffffff;
}
.expert-schedule-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}
.expert-schedule-btn:hover i {
    transform: translateX(4px);
}

.expert-whatsapp-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.expert-whatsapp-btn:hover {
    transform: scale(1.08) rotate(8deg);
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.expert-contact-info {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 25px;
}
.expert-contact-info .info-label {
    display: block;
    color: #666666;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}
.expert-contact-info .info-label i {
    margin-right: 4px;
}
.info-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.info-numbers a {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}
.info-numbers a strong {
    color: var(--primary-blue);
    margin-right: 8px;
    font-size: 13px;
    border: 1px solid rgba(53, 78, 173, 0.3);
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(53, 78, 173, 0.08);
}
.info-numbers a:hover {
    color: var(--primary-orange);
}

/* Right Column: Form */
.ws-contact-form-wrap {
    position: relative;
    background: #ffffff;
    padding: 50px;
}

.ws-material-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.ws-material-form .form-group {
    position: relative;
    margin-bottom: 35px;
}
.ws-material-form .form-group.full-width {
    grid-column: span 2;
}

.ws-material-form input,
.ws-material-form select,
.ws-material-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    color: #111111;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, padding-left 0.3s ease;
    border-radius: 0;
}

.ws-material-form input:focus,
.ws-material-form select:focus,
.ws-material-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.ws-material-form label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #6a6f7d;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Float Label Animation */
.ws-material-form input:focus ~ label,
.ws-material-form input:not(:placeholder-shown) ~ label,
.ws-material-form textarea:focus ~ label,
.ws-material-form textarea:not(:placeholder-shown) ~ label {
    top: -14px;
    font-size: 12px;
    color: var(--primary-orange);
}

/* Custom Select styling */
.ws-material-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 30px;
    color: #111111;
}
/* Style option items */
.ws-material-form select option {
    background: #ffffff;
    color: #111111;
    padding: 10px;
}
.ws-material-form select optgroup {
    background: #ffffff;
    color: var(--primary-orange);
    font-weight: 600;
}
.select-chevron {
    position: absolute;
    right: 0;
    top: 16px;
    color: #6a6f7d;
    pointer-events: none;
    font-size: 13px;
    transition: color 0.3s ease;
}
.ws-material-form select:focus ~ .select-chevron {
    color: var(--primary-orange);
}

/* Placeholder fix for select when it has the default selected value */
.ws-material-form select:invalid {
    color: #6a6f7d;
}
.ws-material-form select:valid {
    color: #111111;
}

.form-submit-row {
    display: flex;
    align-items: start;
    gap: 40px;
    margin-top: 10px;
}

.contact-submit-btn {
    background: var(--primary-orange);
    border: none;
    border-radius: 30px;
    padding: 14px 44px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(255, 109, 77, 0.2);
}
.contact-submit-btn:hover {
    background: #ff5430;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 109, 77, 0.3);
}
.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-direct-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #6a6f7d;
    line-height: 1.5;
}
.contact-direct-links a {
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.2s ease;
}
.contact-direct-links a:hover {
    color: var(--primary-orange);
}
.contact-direct-links .job-opportunities {
    font-size: 12px;
}
.contact-direct-links .job-opportunities a {
    color: #555555;
}
.contact-direct-links .job-opportunities a:hover {
    color: var(--primary-orange);
}

/* Success Overlay */
.contact-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 5;
}
.contact-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.contact-success-overlay .success-content {
    text-align: center;
    max-width: 400px;
    padding: 30px;
}
.contact-success-overlay .success-icon {
    font-size: 52px;
    color: #1111;
    margin-bottom: 20px;
}
.contact-success-overlay h3 {
    font-size: 24px;
    color: #111111;
    margin-bottom: 12px;
}
.contact-success-overlay p {
    color: #9ea3b0;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   CONTACT SECTION RESPONSIVENESS
========================================= */
@media (max-width: 1024px) {
    .ws-contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 700px;
        margin: 0 auto;
    }
    .ws-contact-expert-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        position: static !important;
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .ws-contact-expert-card > .expert-contact-info:last-of-type {
        margin-top: 30px;
    }
    .ws-contact-form-wrap {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .ws-contact-section {
        padding: 80px 0;
    }
    .ws-contact-header h2 {
        font-size: 32px;
    }
    .ws-contact-form-wrap {
        padding: 35px 25px;
    }
    .ws-material-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ws-material-form .form-group.full-width {
        grid-column: span 1;
    }
    .form-submit-row {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    .contact-submit-btn {
        width: 100%;
    }
}

/* Date Picker styling and Autofill overrides */
#career-dob ~ label {
    color: #666666;
}
#career-dob:focus ~ label {
    color: var(--primary-orange) !important;
}

.ws-material-form input:-webkit-autofill,
.ws-material-form input:-webkit-autofill:hover,
.ws-material-form input:-webkit-autofill:focus,
.ws-material-form textarea:-webkit-autofill,
.ws-material-form textarea:-webkit-autofill:hover,
.ws-material-form textarea:-webkit-autofill:focus,
.ws-material-form select:-webkit-autofill,
.ws-material-form select:-webkit-autofill:hover,
.ws-material-form select:-webkit-autofill:focus {
    -webkit-text-fill-color: #111111 !important;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* =========================================
   FOOTER & PARTNERS ROW STYLING
========================================= */
.ws-footer {
    background: #ffffff;
    padding: 90px 0 40px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

/* Subtle graphic glowing background mesh */
.ws-footer::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -250px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.04) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.ws-footer::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.04) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.ws-footer-top-accent {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.4), rgba(66, 133, 244, 0.4), transparent);
    z-index: 2;
}

.ws-footer-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

.ws-footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Partner Logos Band (Only Logos, Large Size) */
.ws-footer-logos-band {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    background: rgba(248, 250, 253, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 35px 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 
        0 10px 30px rgba(53, 78, 173, 0.015),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ws-footer-logos-band:hover {
    border-color: rgba(66, 133, 244, 0.12);
    box-shadow: 
        0 15px 40px rgba(53, 78, 173, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.ws-footer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px; /* Large Size */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(1) opacity(0.4);
}
.ws-footer-logo-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.ws-footer-logo-item svg {
    height: 100%;
    width: auto;
}
.ws-footer-logo-item:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.08);
}
/* Brand specific overrides for scale adjustment */
.google-logo img {
    height: 36px;
}
.meta-logo img {
    height: 40px;
}
.amazon-logo img {
    height: 46px; /* Increased size significantly */
    transform: translateY(2px);
}
.clutch-logo img {
    height: 34px;
}

/* Footer Main Grid */
.ws-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}
.ws-footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}
.ws-footer-logo img {
    max-height: 50px;
    object-fit: contain;
}
.ws-footer-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 24px;
}
.ws-footer-socials {
    display: flex;
    gap: 12px;
}
.ws-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
}
.ws-footer-socials a:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-3px);
}

.ws-footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ws-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ws-footer-links a {
    font-size: 14px;
    color: #555555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.ws-footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* Newsletter Col */
.newsletter-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 16px;
}
.ws-footer-newsletter-form {
    display: flex;
    background: #f8fafd;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}
.ws-footer-newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font-size: 14px;
    color: #111111;
    font-family: inherit;
    outline: none;
}
.ws-footer-newsletter-form button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ws-footer-newsletter-form button:hover {
    background: #e65c3c;
    transform: scale(1.05);
}

.ws-footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #555555;
    margin-top: 15px;
}
.ws-footer-contact-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ws-footer-contact-details i {
    color: var(--primary-orange);
}

/* Footer Bottom */
.ws-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright-text {
    font-size: 13px;
    color: #888888;
}
.ws-footer-bottom-links {
    display: flex;
    gap: 24px;
}
.ws-footer-bottom-links a {
    font-size: 13px;
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
}
.ws-footer-bottom-links a:hover {
    color: var(--primary-orange);
}

/* =========================================
   FOOTER RESPONSIVENESS
========================================= */
@media (max-width: 1024px) {
    .ws-footer-logos-band {
        gap: 25px;
        padding: 30px 35px;
    }
    .ws-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ws-footer {
        padding: 60px 0 30px 0;
    }
    .ws-footer-logos-band {
        gap: 20px;
        padding: 25px 20px;
    }
    .ws-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .ws-footer-col {
        text-align: center;
    }
    .ws-footer-profile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ws-footer-socials {
        justify-content: center;
    }
    .ws-footer-links a:hover {
        transform: none;
    }
    .ws-footer-newsletter-form {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .ws-footer-contact-details {
        align-items: center;
    }
    .ws-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .ws-footer-bottom-links {
        justify-content: center;
    }
}

/* =========================================
   LLMO SERVICES PAGE CUSTOM STYLES
   ========================================= */

/* Hero Section */
.llmo-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.94) 100%), url('../images/llmo_banner_bg.png') no-repeat center center;
    background-size: cover;
    color: #111111;
    position: relative;
    padding: 120px 0 100px 0;
    overflow: hidden;
    z-index: 1;
}

.llmo-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(53, 78, 173, 0.08) 0%, rgba(255, 109, 77, 0.03) 50%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.llmo-hero-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.llmo-hero-badge {
    background: rgba(255, 109, 77, 0.1);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 109, 77, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.llmo-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111111;
}

.text-gradient {
    background: linear-gradient(135deg, #4f46e5, var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.llmo-hero-desc {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 40px;
}

.llmo-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ws-cta-primary {
    background: var(--primary-orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 109, 77, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.ws-cta-primary:hover {
    background: #e65c3c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 109, 77, 0.4);
    color: var(--white);
}

.ws-cta-secondary {
    border: 1px solid rgba(53, 78, 173, 0.2);
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.ws-cta-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.llmo-hero-graphic {
    position: relative;
    display: block;
    min-width: 0;
}

.llmo-hero-graphic .graphic-glow-border {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.graphic-glow-border {
    position: relative;
    border-radius: 24px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(53, 78, 173, 0.15), rgba(255, 109, 77, 0.15));
    box-shadow: 0 20px 45px rgba(53, 78, 173, 0.08);
    display: block;
    width: 100%;
}

.graphic-glow-border img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

.ws-graphic-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.ws-graphic-badge img {
    max-height: 20px !important;
    width: auto !important;
    object-fit: contain;
}

/* Structural Styles */
.llmo-section-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.llmo-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.subheading-accent {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.subheading-accent.orange-text {
    color: var(--primary-orange);
}

.section-heading {
    font-size: 36px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 16px;
}

.section-heading.white-text {
    color: var(--white);
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Light Paradigm/Shift Grid */
.llmo-shift-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(53, 78, 173, 0.02) 100%);
}

.llmo-shift-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.llmo-shift-text {
    display: flex;
    flex-direction: column;
}

.llmo-shift-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shift-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.shift-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: rgba(53, 78, 173, 0.1);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.card-icon-wrapper.orange-glow {
    background: rgba(255, 109, 77, 0.1);
    color: var(--primary-orange);
}

.card-icon-wrapper.blue-glow {
    background: rgba(53, 78, 173, 0.1);
    color: var(--primary-blue);
}

.card-icon-wrapper.purple-glow {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.shift-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.shift-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Activities Section (Premium Dark) */
.llmo-activities-section {
    background-color: #0b0f19;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.llmo-activities-glow {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 109, 77, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.activities-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.activities-text-col {
    display: flex;
    flex-direction: column;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.activities-graphic-col {
    display: flex;
    justify-content: center;
}

.activities-graphic-col .graphic-glow-border {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.activity-item {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 35px 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 109, 77, 0.2);
    transform: translateY(-5px);
}

.activity-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    opacity: 0.8;
    line-height: 1;
}

.activity-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.activity-content p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Comparison Table */
.llmo-comparison-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(53, 78, 173, 0.02) 0%, var(--white) 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--white);
    min-width: 750px;
}

.comparison-table th {
    background-color: var(--bg-light);
    color: #111111;
    font-weight: 700;
    padding: 24px 30px;
    font-size: 16px;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th.highlight-col {
    background-color: rgba(53, 78, 173, 0.03);
    color: var(--primary-blue);
    border-bottom: 2px solid rgba(53, 78, 173, 0.15);
}

.comparison-table td {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14.5px;
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.highlight-col {
    background-color: rgba(53, 78, 173, 0.015);
    font-weight: 500;
    border-left: 1px solid rgba(53, 78, 173, 0.05);
    border-right: 1px solid rgba(53, 78, 173, 0.05);
}

/* Packages/Plans Section */
.llmo-packages-section {
    background-color: #0b0f19;
    padding: 100px 0;
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.package-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(53, 78, 173, 0.2);
}

.package-card.featured {
    background: rgba(53, 78, 173, 0.15);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 20px 40px rgba(53, 78, 173, 0.15);
}

.package-card.featured:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 109, 77, 0.15);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.package-header h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.package-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.5;
}

.package-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.package-card.featured .package-price {
    color: var(--primary-orange);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-features li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: var(--primary-orange);
    font-size: 14px;
}

.package-cta {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.package-cta:hover {
    background: var(--white);
    color: #111111;
    border-color: var(--white);
    transform: translateY(-2px);
}

.package-card.featured .package-cta {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(255, 109, 77, 0.2);
}

.package-card.featured .package-cta:hover {
    background: #e65c3c;
    border-color: #e65c3c;
    color: var(--white);
}

/* FAQ Accordion */
.llmo-faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 109, 77, 0.02) 100%);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.faq-item.active {
    background: var(--white);
    border-color: rgba(53, 78, 173, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 24px 30px;
    text-align: left;
    cursor: pointer;
    font-size: 16.5px;
    font-weight: 700;
    color: #111111;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.faq-trigger i {
    font-size: 14px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 30px;
}

.faq-item.active .faq-panel {
    max-height: 200px; /* Big enough to show answer */
    padding-bottom: 24px;
}

.faq-panel p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact / Lead Audit Form */
.llmo-contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-card-wrapper {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    overflow: hidden;
}

.contact-info-col {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-col h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-info-col p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 35px;
}

.contact-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-perks li {
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-perks li i {
    color: var(--primary-orange);
    font-size: 16px;
}

.direct-contact-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-item i {
    font-size: 20px;
    color: var(--primary-orange);
}

.badge-item div span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.badge-item div strong {
    font-size: 14px;
    font-weight: 600;
}

.llmo-contact-graphic {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.llmo-contact-graphic .graphic-glow-border {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-form-col {
    padding: 60px 50px;
}

.lead-generation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: #111111;
}

.form-group input,
.form-group textarea {
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(53, 78, 173, 0.1);
}

.ws-cta-primary.full-width {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* =========================================
   LLMO RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .llmo-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .llmo-hero-badge,
    .llmo-hero-ctas {
        justify-content: center;
    }
    
    .llmo-hero-title {
        font-size: 38px;
    }
    
    .llmo-shift-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .llmo-shift-graphic-col {
        order: -1;
    }
    
    .llmo-shift-grid {
        gap: 20px;
    }
    
    .activities-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .activities-graphic-col {
        order: -1;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-card-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-col {
        padding: 40px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .llmo-hero {
        padding: 80px 0 60px 0;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-col,
    .contact-form-col {
        padding: 30px 20px;
    }
}

/* =========================================
   AI SEO & GEO CUSTOM UTILITIES
   ========================================= */
.shift-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

details.faq-item {
    transition: all 0.3s ease;
}

details.faq-item:hover {
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
    border-color: rgba(53, 78, 173, 0.1) !important;
}

@media (max-width: 768px) {
    .shift-grid {
        grid-template-columns: 1fr;
    }
    /* Hide header CTA on mobile to prevent header crowding */
    .ws-nav-actions .ws-cta,
    .ws-nav-actions .ws-btn-cta {
        display: none !important;
    }
}

/* =========================================
   SEO REDESIGN UTILITIES & COMPONENTS
   ========================================= */

/* Hero breadcrumbs and badges */
.seo-hero {
    position: relative;
    padding: 140px 0 100px 0;
    overflow: hidden;
}
.seo-hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 24px;
}
.seo-hero-breadcrumbs a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}
.seo-hero-breadcrumbs a:hover {
    color: var(--primary-orange);
}

/* Problem/Pain Points Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.problem-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-orange);
    opacity: 0.8;
}
.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 109, 77, 0.06);
    border-color: rgba(255, 109, 77, 0.15);
}
.problem-card-icon {
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}
.problem-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}
.problem-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Services Included / Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 35px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(53, 78, 173, 0.06);
    border-color: rgba(53, 78, 173, 0.15);
}
.feature-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(53, 78, 173, 0.06);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.feature-card:hover .feature-card-icon {
    background: var(--primary-blue);
    color: var(--white);
}
.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Target Audience Cards */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.audience-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}
.audience-card:hover {
    background: rgba(53, 78, 173, 0.01);
    border-color: rgba(53, 78, 173, 0.1);
    transform: translateY(-3px);
}
.audience-card-icon {
    font-size: 18px;
    color: var(--primary-blue);
    margin-top: 3px;
}
.audience-card-content h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 6px 0;
}
.audience-card-content p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Platforms / Search Visibility Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.platform-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}
.platform-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(53, 78, 173, 0.05);
    transform: translateY(-3px);
}
.platform-card-icon {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}
.platform-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}
.platform-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

/* Pricing Grid & Tables */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(53, 78, 173, 0.15);
}
.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 15px 35px rgba(53, 78, 173, 0.08);
}
.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}
.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px 0;
}
.pricing-header p {
    font-size: 13.5px;
    color: var(--text-light);
    margin: 0 0 24px 0;
    line-height: 1.5;
}
.pricing-price {
    font-size: 32px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 24px;
}
.pricing-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li i {
    color: var(--primary-blue);
    font-size: 13px;
}
.pricing-features li.not-included {
    color: #94a3b8;
}
.pricing-features li.not-included i {
    color: #cbd5e1;
}

/* Tabs UI Component */
.tab-container {
    margin-top: 40px;
}
.tab-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.tab-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(53, 78, 173, 0.2);
}
.tab-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}
.tab-panel.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Accordion FAQ styling */
.accordion-faq {
    max-width: 850px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.accordion-faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.accordion-faq-item.active {
    border-color: rgba(53, 78, 173, 0.15);
    box-shadow: var(--shadow-sm);
}
.accordion-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 30px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    font-family: 'Poppins', sans-serif;
}
.accordion-faq-trigger i {
    font-size: 13px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}
.accordion-faq-item.active .accordion-faq-trigger i {
    transform: rotate(180deg);
}
.accordion-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}
.accordion-faq-item.active .accordion-faq-content {
    max-height: 500px;
    padding-bottom: 22px;
}
.accordion-faq-content p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Case Study / Result Cards */
.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.result-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 35px;
    transition: var(--transition);
}
.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(53, 78, 173, 0.05);
    border-color: rgba(53, 78, 173, 0.1);
}
.result-stat {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}
.result-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}
.result-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Trust / Why Us Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.why-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
}
.why-card-icon {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}
.why-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Custom Creative Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes floatBubble {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}
@keyframes floatBadge {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-12px) translateX(-6px); }
}
@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 0.8; }
}

/* Custom Responsive Hero Container */
.llmo-hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: start;
}
@media (max-width: 991px) {
    .llmo-hero-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
}

/* ==========================================================================
   WEB SPORA SERVICE PAGES MODERNIZATION & HERO ALIGNMENT OVERRIDES
   ========================================================================== */

/* Remove blank space at top of pages by adjusting hero section padding */
.seo-hero {
    position: relative;
    padding: 50px 0 80px 0 !important;
    overflow: hidden;
    background: radial-gradient(ellipse at 0% 100%, rgba(53, 78, 173, 0.05) 0%, transparent 45%),
                radial-gradient(ellipse at 100% 0%, rgba(255, 109, 77, 0.05) 0%, transparent 45%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 245, 255, 0.95) 100%) !important;
}

/* Glassmorphic Contact Card inside Hero */
.seo-hero .contact-form-col {
    background: rgba(255, 255, 255, 0.96) !important;
    border-radius: 24px !important;
    padding: 35px 30px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(53, 78, 173, 0.08) !important;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-hero .contact-form-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(53, 78, 173, 0.12) !important;
}

/* Tools of the Trade section styling */
.tools-stack-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.tools-stack-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 14px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.tools-stack-item i {
    font-size: 20px;
}

.tools-stack-item.gsc i { color: #f4b400; }
.tools-stack-item.ahrefs i { color: #2d6df6; }
.tools-stack-item.semrush i { color: #ff642d; }
.tools-stack-item.frog i { color: #4ba64f; }
.tools-stack-item.ga i { color: #f9ab00; }

.tools-stack-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(53, 78, 173, 0.08);
    border-color: rgba(53, 78, 173, 0.15);
}

/* Local B2B Trust Badge */
.trust-badge-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: linear-gradient(90deg, rgba(53, 78, 173, 0.05), rgba(255, 109, 77, 0.05));
    padding: 15px 30px;
    border-radius: 12px;
    border: 1px solid rgba(53, 78, 173, 0.08);
    margin-top: 35px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-light);
}

.trust-badge-item i {
    color: var(--primary-orange);
}

/* ==========================================================================
   SERVICE PAGES — COMPREHENSIVE RESPONSIVE SYSTEM
   All breakpoints for: seo-services, enterprise, local, ecommerce, 
   technical, small-business SEO pages
   ========================================================================== */

/* ---- TABLET BREAKPOINT (≤ 1024px) ---- */
@media (max-width: 1024px) {

    /* Reduce hero top blank space */
    .seo-hero {
        padding: 35px 0 50px 0 !important;
    }

    /* Force ALL inline-styled grid layouts in service sections to stack */
    .creative-showcase-section .llmo-section-container > div[style],
    .llmo-shift-section .llmo-section-container > div[style] {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    /* Hero form card — center on tablet when stacked */
    .seo-hero .contact-form-col {
        max-width: 520px;
        margin: 0 auto;
    }

    /* Reposition floating metric badges to flow naturally */
    .floating-badge-metric {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        animation: none !important;
        margin-top: 15px !important;
        display: inline-flex !important;
    }

    /* Section header spacing */
    .llmo-section-header {
        margin-bottom: 40px !important;
    }

    /* Ensure pricing/feature grids adapt */
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    }
}

/* ---- MOBILE BREAKPOINT (≤ 768px) ---- */
@media (max-width: 768px) {

    /* Tighter hero on mobile */
    .seo-hero {
        padding: 25px 0 35px 0 !important;
    }

    /* Scale hero headings */
    .seo-hero .section-heading,
    .seo-hero h1.section-heading {
        font-size: 30px !important;
        line-height: 1.25 !important;
    }

    /* Hero subtitle */
    .seo-hero .section-desc {
        font-size: 14.5px !important;
    }

    /* Hero form card */
    .seo-hero .contact-form-col {
        padding: 25px 20px !important;
        border-radius: 18px !important;
        max-width: 100%;
    }

    /* Force ALL inline grids to single column with tighter gaps */
    .creative-showcase-section .llmo-section-container > div[style],
    .llmo-shift-section .llmo-section-container > div[style] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    /* Reduce section padding site-wide */
    .llmo-shift-section,
    .creative-showcase-section {
        padding: 50px 0 !important;
    }

    /* Force feature/problem/audience/pricing grids to single column */
    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .problem-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .audience-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .result-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    /* Section headings scale */
    .section-heading {
        font-size: 26px !important;
    }

    .section-desc {
        font-size: 14px !important;
    }

    /* Bottom lead form section */
    .llmo-contact-section {
        padding: 50px 0 !important;
    }

    .contact-card-wrapper {
        border-radius: 20px !important;
    }

    .contact-info-col {
        padding: 30px 24px !important;
    }

    .contact-info-col h2 {
        font-size: 24px !important;
    }

    /* Form row single column on mobile */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .contact-form-col {
        padding: 30px 20px !important;
    }

    /* Tools stack */
    .tools-stack-grid {
        gap: 12px !important;
    }

    .tools-stack-item {
        padding: 10px 14px !important;
        font-size: 12.5px !important;
        gap: 8px !important;
    }

    .tools-stack-item i {
        font-size: 16px !important;
    }

    /* Trust badge ribbon */
    .trust-badge-ribbon {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important;
        padding: 15px 18px !important;
        margin-top: 25px !important;
    }

    /* Hide decorative floating elements on mobile */
    .floating-ring,
    .floating-circle-gradient {
        display: none !important;
    }

    /* Dashboard / graphic images — full width, reduced shadows */
    .creative-graphic-col {
        width: 100% !important;
    }

    .graphic-glow-wrapper {
        padding: 8px !important;
    }

    /* Feature card size reduction */
    .feature-card {
        padding: 25px !important;
    }

    .problem-card {
        padding: 22px !important;
    }

    .pricing-card {
        padding: 30px 24px !important;
    }

    /* Accordion FAQ compact */
    .accordion-faq-trigger {
        padding: 18px 20px !important;
        font-size: 14.5px !important;
    }

    .accordion-faq-content {
        padding: 0 20px !important;
    }

    /* subheading accent */
    .subheading-accent {
        font-size: 12px !important;
        letter-spacing: 1.5px !important;
    }
}

/* ---- SMALL MOBILE BREAKPOINT (≤ 480px) ---- */
@media (max-width: 480px) {

    /* Even tighter hero */
    .seo-hero {
        padding: 18px 0 28px 0 !important;
    }

    .seo-hero .section-heading,
    .seo-hero h1.section-heading {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .seo-hero .section-desc {
        font-size: 13.5px !important;
    }

    /* CTA buttons stack vertically and full width */
    .llmo-hero-ctas {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .llmo-hero-ctas a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Tools stack wrap tighter */
    .tools-stack-grid {
        gap: 8px !important;
    }

    .tools-stack-item {
        padding: 8px 10px !important;
        font-size: 11px !important;
        border-radius: 10px !important;
    }

    /* Section headings */
    .section-heading {
        font-size: 22px !important;
    }

    /* Platform grid single column on very small */
    .platform-grid {
        grid-template-columns: 1fr !important;
    }

    /* Pricing card breathing room */
    .pricing-grid {
        max-width: 100% !important;
    }

    /* Contact section tighter */
    .contact-info-col {
        padding: 24px 18px !important;
    }

    .contact-info-col h2 {
        font-size: 20px !important;
    }

    .contact-form-col {
        padding: 24px 16px !important;
    }

    /* Breadcrumbs */
    .seo-hero-breadcrumbs {
        font-size: 12px !important;
        margin-bottom: 16px !important;
    }

    /* Badge items compact */
    .badge-item {
        padding: 10px 14px !important;
        gap: 10px !important;
    }

    .badge-item div strong {
        font-size: 13px !important;
    }

    /* Footer spacing */
    .ws-footer-grid {
        gap: 30px !important;
    }
}
/* =========================================
   AI VISIBILITY DASHBOARD / PROOF & METRICS
   (shared across AI Brand Visibility, AI SEO,
   GEO, LLMO service pages — was missing from
   main.css, only existed inline on one page)
   ========================================= */

.proof-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.proof-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.proof-list-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 22px 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
}

.proof-list-item:hover,
.proof-list-item.active {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 109, 77, 0.08);
    transform: translateX(5px);
}

.proof-list-badge {
    width: 40px;
    height: 40px;
    background: rgba(255, 109, 77, 0.08);
    color: var(--primary-orange);
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.proof-list-item.active .proof-list-badge,
.proof-list-item:hover .proof-list-badge {
    background: var(--primary-orange);
    color: var(--white);
}

.proof-list-info {
    flex-grow: 1;
}

.proof-list-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.proof-list-desc {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.db-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.db-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
}

.db-header {
    padding: 20px 30px;
    background: rgba(248, 250, 252, 0.5);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-dots {
    display: flex;
    gap: 6px;
}

.db-dot-sys {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.db-dot-sys.red { background: #ff5f56; }
.db-dot-sys.yellow { background: #ffbd2e; }
.db-dot-sys.green { background: #27c93f; }

.db-status {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.db-pulse-dot {
    width: 8px;
    height: 8px;
    background: #27c93f;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.4);
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(39, 201, 63, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 201, 63, 0); }
}

.db-body {
    padding: 30px;
}

.db-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.db-title {
    font-size: 19px;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
}

.db-toggle-container {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.db-toggle-btn {
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 700;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.2s ease;
}

.db-toggle-btn.active {
    background: var(--white);
    color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
}

.db-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    overflow-x: auto;
}

.db-tab-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    background: transparent;
    border: 1px solid var(--border-color);
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.db-tab-btn.active,
.db-tab-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.db-stats-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.db-stat-row {
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.db-stat-row.highlighted {
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(255, 109, 77, 0.06);
    transform: scale(1.02);
}

.db-stat-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.db-stat-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.db-stat-label i {
    color: var(--primary-blue);
}

.db-stat-val {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

.db-progress-bg {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.db-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.db-change-badge {
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    padding: 2px 6px;
    border-radius: 6px;
}

.db-change-badge.positive {
    background: rgba(39, 201, 63, 0.08);
    color: #27c93f;
}

.db-change-badge.negative {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}

.db-badge-container {
    display: flex;
    margin-top: 4px;
}

.db-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
}

.db-badge.positive {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
}

.db-badge.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

@media (max-width: 991px) {
    .proof-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

