/* ==========================================================================
   EXQUIS DESIGNS - CUSTOM CSS FOR ABOUT US & SERVICES SECTIONS
   EXACT MATCH TO REFERENCE DESIGN SPECIFICATIONS (3 SCREENSHOTS)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --exquis-lime: #55E00C;
    --exquis-lime-highlight: #60EC12;
    --exquis-yellow: #E6F835;
    --exquis-dark: #0E1013;
    --exquis-gray-bg: #F8F9FB;
    --exquis-border: #E8ECEF;
    --exquis-text: #191C1F;
    --exquis-muted: #667085;
}



/* --------------------------------------------------
   HEADER & MEGAMENU DROPDOWN Z-INDEX FIX
   (Navbar & Submenus ALWAYS Remain Topmost on Desktop & Mobile)
   -------------------------------------------------- */
header,
#header-sticky,
.tp-header-area,
.tp-header-10-area,
.tp-header-10-sticky,
.header-sticky,
.tp-header-10-wrapper,
.tp-main-menu-content,
.tp-megamenu-wrapper,
.tp-megamenu-main,
.has-dropdown,
.has-dropdown > .submenu,
.has-dropdown > .tp-megamenu-wrapper,
.submenu,
.tp-submenu {
    z-index: 999999 !important;
}

/* --------------------------------------------------
   GLOBAL & REUSABLE UTILITIES
   -------------------------------------------------- */
/* Green scribble/highlighter stroke under key text */
.green-scribble-wrap {
    position: relative;
    display: inline-block;
    color: var(--exquis-dark);
    z-index: 1;
}

.green-scribble-wrap::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 34%;
    width: 67%;
    height: 9px;
    background: linear-gradient(91deg, #55E00C 0%, #63E817 75%, #E6F835 100%);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.95;
}

/* Green dot badge tag with Live Location Pulse Ripple Effect - APPLIED TO ALL BADGE DOTS ACROSS THE WEBSITE */
.exquis-badge-tag,
.exquis-badge,
.tp-section-title-pre {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.exquis-badge-tag .badge-dot,
.badge-dot,
.green-dot,
.live-dot {
    width: 9px;
    height: 9px;
    background-color: var(--exquis-lime);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 0 2px rgba(85, 224, 12, 0.25);
    vertical-align: middle;
}

.exquis-badge-tag .badge-dot::after,
.badge-dot::after,
.green-dot::after,
.live-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--exquis-lime);
    transform: translate(-50%, -50%);
    animation: liveLocationPulse 1.8s infinite ease-out;
    z-index: 1;
    pointer-events: none;
}

@keyframes liveLocationPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.2);
        opacity: 0;
    }
}

.exquis-green-text {
    color: #49D004;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* Primary Green Pill Button (Let's Work Together ↗ / Explore All Services ↗) */
.exquis-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--exquis-lime);
    color: #0E1013;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 18px rgba(85, 224, 12, 0.35);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.exquis-btn-primary:hover {
    background: #49D004;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(85, 224, 12, 0.45);
}

.exquis-btn-primary i,
.exquis-btn-primary svg {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.exquis-btn-primary:hover i,
.exquis-btn-primary:hover svg {
    transform: translate(2px, -2px);
}

/* Delivered Projects Avatars Pill (Screenshot 1) */
.exquis-delivered-pill {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    padding: 6px 18px 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.avatars-group {
    display: flex;
    align-items: center;
}

.avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -12px;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #FFF;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-circle.av-plus {
    background: #111827;
    color: #FFFFFF;
}

.delivered-text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.delivered-num {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.delivered-label {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}


/* --------------------------------------------------
   01. HERO ABOUT US SECTION (CLEAN CLEARANCE BELOW NAVBAR)
   -------------------------------------------------- */
.exquis-about-hero-area {
    background: linear-gradient(135deg, #F3FAF0 0%, #FAFCF6 45%, #FBFDEE 100%);
    position: relative;
    z-index: 1;
    padding-top: 200px; /* Extra top clearance to push content down cleanly below navbar */
    padding-bottom: 45px;
    min-height: 480px;
    overflow: hidden;
}

/* Bottom Opacity Fade: Merges background seamlessly into pure white #FFFFFF */
.exquis-about-hero-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(250, 252, 246, 0) 0%, rgba(255, 255, 255, 0.75) 55%, #FFFFFF 100%);
    pointer-events: none;
    z-index: 1;
}

/* Background Vector Wave Graphics (Left & Right) */
.hero-bg-vector-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 420px; /* Expanded left area for dotted arc animation */
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-vector-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 440px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Floating Animated Round Glowing Dots */
@keyframes floatDotPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.55;
    }
    50% {
        transform: translateY(-16px) scale(1.4);
        opacity: 0.95;
    }
}

.hero-bg-anim-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.anim-dot {
    position: absolute;
    border-radius: 50%;
    animation: floatDotPulse 4.2s ease-in-out infinite;
}

.anim-dot.dot-1 {
    top: 18%;
    left: 14%;
    width: 10px;
    height: 10px;
    background: #55E00C;
    box-shadow: 0 0 12px rgba(85, 224, 12, 0.8);
    animation-delay: 0s;
}

.anim-dot.dot-2 {
    top: 68%;
    left: 7%;
    width: 8px;
    height: 8px;
    background: #E6F835;
    box-shadow: 0 0 10px rgba(230, 248, 53, 0.85);
    animation-delay: 1.4s;
}

.anim-dot.dot-3 {
    top: 14%;
    right: 16%;
    width: 12px;
    height: 12px;
    background: #55E00C;
    box-shadow: 0 0 14px rgba(85, 224, 12, 0.85);
    animation-delay: 0.7s;
}

.anim-dot.dot-4 {
    top: 72%;
    right: 11%;
    width: 9px;
    height: 9px;
    background: #E6F835;
    box-shadow: 0 0 12px rgba(230, 248, 53, 0.85);
    animation-delay: 2.1s;
}

.anim-dot.dot-5 {
    top: 48%;
    left: 49%;
    width: 7px;
    height: 7px;
    background: #55E00C;
    box-shadow: 0 0 9px rgba(85, 224, 12, 0.7);
    animation-delay: 2.8s;
}

.exquis-hero-content {
    padding-right: 20px;
    position: relative;
    z-index: 2;
}

/* --------------------------------------------------
   HERO VISUAL COLLAGE & STICKY NOTE SYSTEM
   (EXACT MATCH TO REFERENCE DESIGN SPECIFICATIONS - DESKTOP & MOBILE)
   -------------------------------------------------- */
.exquis-hero-visual-wrap {
    position: relative;
    display: block;
    width: 100%;
    max-width: 540px;
    margin: 0 0 0 auto;
    padding-bottom: 50px;
    z-index: 2;
}

.exquis-hero-img-main {
    position: relative;
    z-index: 2;
    width: 84%;
    max-width: 84%;
    margin-left: 0;
    margin-right: auto;
    border-radius: 24px;
    overflow: hidden;
    display: block;
}

.exquis-hero-img-main img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    object-fit: cover;
}

.exquis-sticky-note,
.exquis-sticky-note.note-yellow {
    position: absolute;
    z-index: 6;
    top: 10%;
    left: 65%;
    bottom: auto;
    right: auto;
    width: 190px;
    padding: 22px 16px 18px;
    background: #E6F835;
    border-radius: 4px 4px 20px 4px;
    transform: rotate(-5deg);
    transform-origin: center center;
    margin: 0;
}

.push-pin-wrap {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    z-index: 10;
    pointer-events: none;
}

.push-pin-head {
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 35% 35%, #FF4D4D, #B91C1C);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
    position: relative;
}

.push-pin-head::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 6.5px;
    width: 3px;
    height: 6px;
    background: #777;
}

.handwritten-text {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    text-align: center;
}

.handwritten-text span {
    display: block;
}

.sticky-hand-loop {
    width: 80px;
    height: auto;
    margin: 4px auto 0;
    display: block;
}

.exquis-hero-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 65%;
    left: auto;
    z-index: 4;
    width: 52%;
    max-width: 52%;
    border-radius: 20px;
    background: #FFFFFF;
    padding: 6px;
    margin: 0;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.exquis-hero-img-sub img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-doodle-bg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-doodle-1 {
    top: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
}

.hero-doodle-2 {
    bottom: 10px;
    left: -25px;
    width: 75px;
    height: 75px;
}

.exquis-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #111827;
    margin-bottom: 22px;
}

.badge-dot {
    width: 9px;
    height: 9px;
    background-color: var(--exquis-lime);
    border-radius: 50%;
    display: inline-block;
}

.exquis-hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    letter-spacing: -1.5px;
    margin-top: 0;
    margin-bottom: 24px; /* EXACT 24px gap below Title */
}

.exquis-hero-desc {
    display: block;
    visibility: visible;
    opacity: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #4B5563;
    max-width: 620px; /* Enhanced width for full, rich agency paragraph */
    margin-top: 0;
    margin-bottom: 26px;
    font-weight: 400;
}

.exquis-hero-btn-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px; /* Clean horizontal space between green button and avatar stack */
    margin-top: 0;
}

/* Primary Green Pill Button (Let's Work Together ↗ / Explore All Services ↗) */
.exquis-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--exquis-lime);
    color: #0E1013;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 20px rgba(85, 224, 12, 0.38);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.exquis-btn-primary:hover {
    background: #49D004;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(85, 224, 12, 0.5);
}

.exquis-btn-primary i,
.exquis-btn-primary svg {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.exquis-btn-primary:hover i,
.exquis-btn-primary:hover svg {
    transform: translate(2px, -2px);
}

/* Delivered Projects Avatars Group (Screenshot 2 Match - No outer white box) */
.exquis-delivered-pill {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 18px; /* Clean space between 4 avatar icons & 2500+ text */
    box-shadow: none;
}

.avatars-group {
    display: flex;
    align-items: center;
}

/* Remove all box-shadows and drop-shadows from Hero Image Cards, Sticky Note, & Push Pin */
.exquis-hero-visual-wrap,
.exquis-hero-visual-wrap *,
.exquis-hero-visual-wrap *::before,
.exquis-hero-visual-wrap *::after,
.exquis-sticky-note,
.exquis-sticky-note *,
.push-pin-shadow,
.shadow-lg,
.shadow-md {
    box-shadow: none;
    filter: none;
    -webkit-filter: none;
}

.push-pin-shadow {
    display: none;
}

.avatar-item,
.avatar-img-item,
.avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2.5px solid #FFFFFF; /* Thick crisp white border matching screenshot 2 */
    margin-left: -13px;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    position: relative;
    z-index: 1;
}

.avatar-item:first-child,
.avatar-img-item:first-child,
.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-item img,
.avatar-img-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-item.av-bg-1 { background-color: #64748B; }
.avatar-item.av-bg-2 { background-color: #0284C7; }
.avatar-item.av-bg-3 { background-color: #F43F5E; }

.avatar-item.av-plus-dark,
.avatar-img-item.av-plus,
.avatar-circle.av-plus {
    background: #111827;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.delivered-text-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.25;
}

.delivered-num {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.3px;
}

.delivered-label {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
}
.exquis-services-section {
    padding: 25px 0 45px; /* Reduced vertical space above Our Services header */
    background: #FFFFFF;
}

.services-header-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.exquis-services-row-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.exquis-service-card-item {
    background: #FFFFFF;
    border: 1px solid #EEF0F4;
    border-radius: 16px;
    padding: 24px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.exquis-service-card-item:hover {
    border-color: rgba(85, 224, 12, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.service-card-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon-wrap svg {
    width: 32px;
    height: 32px;
}

.service-card-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.25;
}

.service-card-item-desc {
    font-size: 11.5px;
    color: #6B7280;
    line-height: 1.4;
    margin: 0;
}


/* --------------------------------------------------
   03. OUR VALUES (SCREENSHOT 2 BOTTOM - LIGHT GREEN BOX)
   -------------------------------------------------- */
.exquis-values-section {
    padding: 15px 0 65px;
}

.exquis-values-container-box {
    background: #F6FCF0; /* Soft pale green background matching Screenshot 2 */
    border-radius: 24px;
    padding: 45px 40px;
    border: 1px solid rgba(85, 224, 12, 0.15);
}

.values-header-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.exquis-value-card-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-icon-circle {
    width: 52px;
    height: 52px;
    background: #EBF9DF; /* Light green circular badge */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.exquis-value-card-col:hover .value-icon-circle {
    transform: scale(1.08);
}

.value-icon-circle svg {
    width: 24px;
    height: 24px;
}

.value-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.value-card-desc {
    font-size: 12.5px;
    color: #4B5563;
    line-height: 1.45;
    margin: 0;
}


/* --------------------------------------------------
   04. OUR SERVICES & TECHNOLOGY (SCREENSHOT 3)
   -------------------------------------------------- */
.exquis-techstack-section {
    padding: 20px 0 70px;
}

.exquis-techstack-outer-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 28px;
    padding: 45px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.tech-section-title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.exquis-highlight-green {
    color: var(--exquis-lime);
    font-weight: 800;
}

.exquis-green-text-bg {
    color: var(--exquis-lime);
    font-weight: 800;
}

.green-icon-arrow {
    color: var(--exquis-lime);
}

.tech-section-subtitle {
    font-size: 15px;
    color: var(--exquis-muted);
    max-width: 520px;
}

/* Section 6 Right Side Creative Workspace Hero Graphic (Larger & Crisp 380px Size) */
.exquis-header-creative-img-wrap {
    display: inline-block;
    width: 100%;
    max-width: 550px;
    position: relative;
}

.exquis-header-creative-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.12) brightness(1.03);
    transition: transform 0.4s ease;
}

.exquis-header-creative-img-wrap:hover .exquis-header-creative-img {
    transform: scale(1.04) translateY(-6px);
}



/* Filter pills header right (Matching Image 2 Capsule Pill Bar) */
.exquis-tech-filter-pills-bar {
    background: #FFFFFF;
    border: 1px solid #EEF2F6;
    padding: 5px 6px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    max-width: 100%;
}

.tech-filter-btn {
    border: 1.5px solid transparent;
    background: transparent;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.tech-filter-btn svg {
    stroke: #374151;
    transition: all 0.25s ease;
}

.tech-filter-btn:hover {
    color: #111827;
    background: #F9FAFB;
}

.tech-filter-btn:hover svg {
    stroke: #111827;
    transform: scale(1.08);
}

.tech-filter-btn.active {
    background: #F4FDF0;
    border-color: #55E00C;
    color: #55E00C;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(85, 224, 12, 0.15);
}

.tech-filter-btn.active svg {
    stroke: #55E00C;
}

/* Horizontal Flow Cards with Arrows & Plus Dividers */
.exquis-tech-cards-flow {
    display: flex;
    align-items: center;
    overflow-x: auto;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--exquis-lime) #F3F4F6;
    scroll-behavior: smooth;
}

.tech-card-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tech-card-wrapper.hidden-card {
    display: none;
}

.tech-flow-card-box {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 24px 18px;
    width: 215px;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.tech-flow-card-box:hover {
    transform: translateY(-5px);
    border-color: var(--exquis-lime);
    box-shadow: 0 10px 25px rgba(85, 224, 12, 0.15);
}

.tech-card-title-head {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 14px;
}

.tech-logos-flex-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.tech-plus-divider {
    font-size: 22px;
    font-weight: 700;
    color: #9CA3AF;
    margin: 0 12px;
    user-select: none;
}

/* Green Progress Line at bottom of Tools Flow (Screenshot 1) */
.exquis-tech-progress-track {
    width: 100%;
    height: 6px;
    background: #E5E7EB;
    border-radius: 10px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.exquis-tech-progress-bar-fill {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, #55E00C 0%, #63E817 70%, #E6F835 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(85, 224, 12, 0.6);
    transition: width 0.3s ease;
}

/* Adobe App Square Badges (Ps, Ai, Id, Lr, Xd, Ae, Pr) */
.adobe-app-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #FFF;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.adobe-app-badge:hover {
    transform: scale(1.1);
}

.adobe-app-badge.ps { background: #001E36; color: #31A8FF; border: 1.5px solid #31A8FF; }
.adobe-app-badge.ai { background: #330000; color: #FF9A00; border: 1.5px solid #FF9A00; }
.adobe-app-badge.id { background: #2B0018; color: #FF3366; border: 1.5px solid #FF3366; }
.adobe-app-badge.lr { background: #001A24; color: #31C8FF; border: 1.5px solid #31C8FF; }
.adobe-app-badge.xd { background: #470024; color: #FF61F6; border: 1.5px solid #FF61F6; }
.adobe-app-badge.ae { background: #00005C; color: #9999FF; border: 1.5px solid #9999FF; }
.adobe-app-badge.pr { background: #00005C; color: #9999FF; border: 1.5px solid #9999FF; }

/* SVG Tech Icons */
.tech-svg-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.tech-svg-icon:hover {
    transform: scale(1.15);
}

.tech-svg-icon svg {
    width: 32px;
    height: 32px;
}

/* --------------------------------------------------
   OUR WORK PROCESS - STEP BY STEP (EXACT REFERENCE MATCH)
   -------------------------------------------------- */
.work-process-divider-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.green-line-dot {
    display: inline-flex;
    align-items: center;
    width: 35px;
    height: 2px;
    background: var(--exquis-lime);
    position: relative;
}

.green-line-dot::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--exquis-lime);
    border-radius: 50%;
    position: absolute;
}

.green-line-dot.left::after { right: 0; }
.green-line-dot.right::after { left: 0; }

.process-sub-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

/* 6 Step Cards Row with Dotted Arrows */
.exquis-process-steps-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
}

.step-card-col {
    display: flex;
    align-items: stretch;
    flex: 1;
    position: relative;
}

.exquis-step-card-box {
    background: #FFFFFF;
    border: 1px solid #F0F2F5;
    border-radius: 20px;
    padding: 22px 14px 18px;
    width: 100%;
    height: 100%;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.025);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: visible;
}

.exquis-step-card-box:hover {
    transform: translateY(-7px);
    border-color: var(--exquis-lime);
    box-shadow: 0 12px 28px rgba(85, 224, 12, 0.15);
}

.step-dotted-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    flex-shrink: 0;
}

/* Circle Badge Number (01 to 06) - Top Centered Halfway Overlapping Border Line */
.step-badge-num {
    width: 32px;
    height: 32px;
    background: var(--exquis-lime);
    color: #0E1013;
    font-size: 13.5px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(85, 224, 12, 0.4);
    z-index: 2;
}

/* 3D Icon Wrap & Floating Animation (Clean Backgroundless 3D Icons) */
.step-3d-icon-wrap {
    margin-top: 20px;
    margin-bottom: 14px;
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.step-3d-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.18) brightness(1.04);
    box-shadow: none;
    border: none;
    background: transparent;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.float-anim {
    animation: floatIcon 3.5s ease-in-out infinite;
}
.float-anim.delay-1 { animation-delay: 0.6s; }
.float-anim.delay-2 { animation-delay: 1.2s; }
.float-anim.delay-3 { animation-delay: 1.8s; }

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

.exquis-step-card-box:hover .step-3d-icon-wrap {
    transform: scale(1.12) rotate(3deg);
}

.step-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.step-card-desc {
    font-size: 12.5px;
    color: #6B7280;
    line-height: 1.45;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Bottom Color Accent Lines on Step Cards (ALL 5 CARDS UNIFIED SAME GREEN) */
.step-bottom-accent-line {
    width: 40px;
    height: 4px;
    background: var(--exquis-lime);
    border-radius: 4px;
    margin-top: auto;
}
.step-bottom-accent-line.purple { background: #A259FF; }
.step-bottom-accent-line.blue { background: #1ABCFE; }
.step-bottom-accent-line.yellow { background: #FFC800; }
.step-bottom-accent-line.pink { background: #E056FD; }
.step-bottom-accent-line.green { background: var(--exquis-lime); }

/* Bottom Feature Highlights Card with Dot Separators */
.exquis-feature-highlights-card {
    background: #FAFCFE;
    border: 1px solid #EEF2F6;
    border-radius: 18px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-item-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box.green { background: rgba(85, 224, 12, 0.15); }
.feature-icon-box.purple { background: rgba(162, 89, 255, 0.15); }
.feature-icon-box.blue { background: rgba(26, 188, 254, 0.15); }
.feature-icon-box.orange { background: rgba(255, 114, 98, 0.15); }

.feature-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
    line-height: 1.35;
}

.feature-dot-sep {
    color: #D1D5DB;
    font-size: 18px;
}

/* --------------------------------------------------
   BOTTOM 4 FEATURE HIGHLIGHT CARDS (SCREENSHOT 2)
   -------------------------------------------------- */
.exquis-feature-item-box {
    background: #F9FAFB;
    border: 1px solid #EEF2F6;
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.exquis-feature-item-box:hover {
    background: #FFFFFF;
    border-color: var(--exquis-lime);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.feature-icon-pill {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-pill.green-pill { background: rgba(85, 224, 12, 0.15); }
.feature-icon-pill.purple-pill { background: rgba(162, 89, 255, 0.15); }
.feature-icon-pill.blue-pill { background: rgba(26, 188, 254, 0.15); }
.feature-icon-pill.orange-pill { background: rgba(255, 114, 98, 0.15); }

.feature-item-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 2px;
}

.feature-item-desc {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.3;
    margin-bottom: 0;
}
.tech-svg-icon svg {
    width: 32px;
    height: 32px;
}

/* --------------------------------------------------
   02. OUR MISSION & OUR VISION LIGHT PASTEL GLASS CARDS
   -------------------------------------------------- */
.exquis-mv-card-wrap {
    position: relative;
    z-index: 1;
}

.exquis-mv-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.72); /* Lighter white glass canvas */
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 42px 36px;
    box-shadow: 
        inset 0 2px 3px rgba(255, 255, 255, 0.95),
        0 20px 40px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

/* Top-Left Vibrant Light Refraction Blob (Card 1: Balanced Lime) */
.exquis-mv-card::before {
    content: '';
    position: absolute;
    top: -35px;
    left: -35px;
    width: 170px;
    height: 170px;
    background: linear-gradient(135deg, #55E00C 0%, #76EC33 50%, #E6F835 100%);
    border-radius: 36px;
    opacity: 0.32; /* 10% reduced soft opacity */
    filter: blur(25px);
    -webkit-filter: blur(25px);
    z-index: -1;
    transition: all 0.5s ease;
}

/* Card 2 (OUR VISION): Balanced Sunny Yellow Refraction */
.exquis-mv-card-vision::before {
    background: linear-gradient(135deg, #FACC15 0%, #FEF08A 50%, #E6F835 100%);
    opacity: 0.35; /* 10% reduced soft opacity */
}

/* Neutral 3D Lift Motion on Hover (No Color Change) */
.exquis-mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        inset 0 2px 3px rgba(255, 255, 255, 0.95),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.03);
}

.exquis-mv-card .exquis-badge,
.exquis-mv-card .green-text {
    color: #2E9900;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.exquis-mv-card-vision .exquis-badge,
.exquis-mv-card-vision .green-text {
    color: #D97706; /* Golden Orange Tag color for Yellow Card */
}

.exquis-mv-card .mv-title {
    font-size: 23px;
    font-weight: 800;
    line-height: 1.3;
    color: #0E1013; /* Deep Rich Title Color */
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.exquis-mv-card .mv-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #374151;
    margin-bottom: 0; /* No bottom link button margin */
    position: relative;
    z-index: 2;
}

.exquis-mv-card .mv-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    z-index: 2;
}

.exquis-mv-card .mv-link:hover {
    color: #49D004;
}

.exquis-mv-card .mv-link i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.exquis-mv-card .mv-link:hover i {
    transform: translate(2px, -2px);
}

.tech-arrow-divider {
    margin: 0 14px;
    color: #9CA3AF;
    font-size: 18px;
    display: flex;
    align-items: center;
}


/* --------------------------------------------------
   05. COMPREHENSIVE MOBILE RESPONSIVE BREAKPOINTS
   -------------------------------------------------- */

@media (max-width: 1399px) {
    .exquis-services-row-8 {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 991px) {
    /* Hero Area Mobile Padding & Typography */
    .exquis-about-hero-area {
        padding-top: 130px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .exquis-about-hero-area::after {
        height: 80px;
    }

    .exquis-hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .exquis-hero-desc {
        font-size: 15px;
    }

    /* Button and Avatar Stack Wrap on Mobile */
    .exquis-btn-avatar-group {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Hero Images & Sticky Note Collage Responsiveness */
    .exquis-hero-visual-wrap {
        max-width: 460px;
        margin: 35px auto 0 auto;
        padding-bottom: 40px;
    
    }

    .exquis-hero-img-main {
        width: 84%;
        border-radius: 20px;
    }

    .exquis-hero-img-main img {
        border-radius: 20px;
        width: 100%;
        height: auto;
    }

    .exquis-hero-img-sub {
        position: absolute;
        bottom: 0;
        right: 0;
        top: auto;
        left: auto;
        width: 50%;
        margin: 0;
        border-radius: 18px;
        padding: 5px;
        background: #FFFFFF;
    }

    .exquis-hero-img-sub img {
        border-radius: 14px;
        width: 100%;
        height: auto;
    }

    .exquis-sticky-note,
    .exquis-sticky-note.note-yellow {
        position: absolute;
        top: 36%;
        left: 25%;
        bottom: auto;
        right: auto;
        width: 160px;
        padding: 16px 12px 14px;
        transform: rotate(-5deg);
        margin: 0;
        border-radius: 4px 4px 16px 4px;
    }

    .handwritten-text {
        font-size: 18px;
    }

    /* Background Vector SVG Hiding/Scaling on Mobile */
    .hero-bg-vector-left,
    .hero-bg-vector-right {
        opacity: 0.25;
        transform: scale(0.65);
        pointer-events: none;
    }

    /* Services & Values Grid */
    .exquis-services-row-8 {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .exquis-values-container-box {
        padding: 35px 25px;
    }

    .values-header-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    /* Section Clearances */
    .exquis-about-hero-area {
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .exquis-hero-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .exquis-hero-desc {
        font-size: 14.5px;
        margin-bottom: 20px;
    }

    .exquis-btn-avatar-group {
        gap: 18px;
    }

    .exquis-btn-primary {
        font-size: 14px;
        padding: 13px 24px;
    }

    /* Glassmorphism Mission & Vision Cards */
    .exquis-mv-card {
        padding: 30px 22px;
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .exquis-mv-card .mv-title {
        font-size: 20px;
    }

    .exquis-mv-card .mv-desc {
        font-size: 14px;
    }

    /* 8 Services Grid in 2 Columns on Mobile */
    .exquis-services-row-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .exquis-service-card-item {
        padding: 18px 10px;
    }

    .service-card-item-title {
        font-size: 14px;
    }

    .service-card-item-desc {
        font-size: 12px;
    }

    /* Values Grid 2 Columns */
    .exquis-values-container-box {
        border-radius: 20px;
        padding: 28px 20px;
    }

    .values-header-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .exquis-about-hero-area {
        padding-top: 110px;
    }

    .exquis-hero-title {
        font-size: 27px;
    }

    .exquis-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .exquis-delivered-pill {
        width: 100%;
        justify-content: center;
    }

    .exquis-services-row-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .exquis-hero-visual-wrap {
        max-width: 310px;
        margin: 25px auto 0 auto;
        padding-bottom: 30px;
    }

    .exquis-hero-img-main {
        width: 82%;
        border-radius: 16px;
    }

    .exquis-hero-img-main img {
        border-radius: 16px;
    }

    .exquis-sticky-note,
    .exquis-sticky-note.note-yellow {
        position: absolute;
        top: 32%;
        left: 22%;
        bottom: auto;
        right: auto;
        width: 118px;
        padding: 11px 7px 9px;
        transform: rotate(-5deg);
        margin: 0;
        border-radius: 3px 3px 12px 3px;
    }

    .push-pin-wrap {
        top: -9px;
        width: 16px;
        height: 16px;
    }

    .push-pin-head {
        width: 12px;
        height: 12px;
    }

    .push-pin-head::after {
        top: 10px;
        left: 4.5px;
        width: 2px;
        height: 4px;
    }

    .handwritten-text {
        font-size: 13px;
        line-height: 1.15;
    }

    .sticky-hand-loop {
        width: 48px;
        margin-top: 1px;
    }

    .exquis-hero-img-sub {
        position: absolute;
        bottom: 0;
        right: 0;
        top: auto;
        left: auto;
        width: 48%;
        margin: 0;
        border-radius: 14px;
        padding: 3px;
    }

    .exquis-hero-img-sub img {
        border-radius: 11px;
    }

    .hero-doodle-1 {
        top: -10px;
        left: -10px;
        width: 50px;
        height: 50px;
    }

    .hero-doodle-2 {
        bottom: 0;
        left: -10px;
        width: 45px;
        height: 45px;
    }
}

/* --------------------------------------------------
   NON-BOX FLOATING LEADERSHIP RIBBONS (50px Padding & NO HOVER EFFECTS)
   -------------------------------------------------- */
.exquis-leadership-section {
    background: #F8F9FB;
    padding: 50px 0;
    position: relative;
}

.floating-leadership-ribbon {
    position: relative;
    padding: 24px 28px;
    border-radius: 32px;
    background-color: rgba(255, 255, 255, 0.88);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 14px 14px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

/* Stylish Bottom Lime Green Line Accent Effect on Both Boxes */
.floating-leadership-ribbon::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #55E00C 0%, rgba(85, 224, 12, 0.15) 100%);
    border-radius: 0 0 32px 32px;
}

/* Subtle Decorative Radial Line Glow inside Box Background */
.floating-leadership-ribbon::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 224, 12, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

/* Avatar Squircle Frame Container (NO GRADIENT BORDER - Solid Clean Frame) */
.ribbon-avatar-container {
    position: relative;
    width: 150px;
    height: 170px;
    border-radius: 24px;
    border: 2.5px solid #EEF2F6;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.ribbon-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
}

/* Experience Badge Positioned HALF INSIDE & HALF OUTSIDE at bottom edge */
.half-overlay-exp-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.half-overlay-exp-badge.green {
    background: #55E00C;
    color: #0E1013;
    border: 1.5px solid #FFFFFF;
}

.half-overlay-exp-badge.blue {
    background: #1ABCFE;
    color: #FFFFFF;
    border: 1.5px solid #FFFFFF;
}

.ribbon-ceo-name {
    font-size: 20px;
    font-weight: 800;
    color: #0E1013;
}

.ribbon-verified-star {
    display: inline-flex;
    align-items: center;
}

.ribbon-role-pill {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.ribbon-role-pill.green { color: var(--exquis-lime); }
.ribbon-role-pill.blue { color: #1ABCFE; }

.ribbon-quote-text {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.4;
    margin: 0;
}

.ribbon-stat-tag {
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
}

.ribbon-stat-tag.green {
    background: #F4FDF0;
    border: 1px solid #55E00C;
    color: #0E1013;
}

.ribbon-stat-tag.blue {
    background: #F0F9FF;
    border: 1px solid #1ABCFE;
    color: #0E1013;
}

.ribbon-social-bar {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ribbon-social-link {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #F3F4F6;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* --------------------------------------------------
   CREATIVE DESIGNS BRANDING CTA BANNER (EXACT SCREENSHOT MATCH)
   -------------------------------------------------- */
.exquis-creative-cta-banner {
    background: linear-gradient(135deg, #F2FDF0 0%, #E9FBE4 50%, #F4FCF2 100%);
    border: 1.5px solid #E2F7DC;
    border-radius: 24px;
    padding: 28px 36px;
    box-shadow: 0 10px 30px rgba(85, 224, 12, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-3d-art-wrap {
    width: 140px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-3d-art-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
}

.cta-banner-title {
    font-size: 24px;
    font-weight: 800;
    color: #0E1013;
    line-height: 1.3;
}

.handwritten-green-text {
    font-family: 'Caveat', cursive;
    color: #55E00C;
    font-size: 36px;
    font-weight: 700;
    margin: 0 4px;
}

.cta-banner-desc {
    font-size: 13.5px;
    color: #4B5563;
    line-height: 1.5;
    max-width: 680px;
}

.cta-pill-badge {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #E0F5DA;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.cta-badge-icon {
    font-size: 13px;
}

.cta-badge-icon.green-check {
    width: 18px;
    height: 18px;
    background: #55E00C;
    color: #0E1013;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.cta-badge-text {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
}

.cta-dark-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0E1013;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(14, 16, 19, 0.15);
}

.cta-dark-btn:hover {
    background: #55E00C;
    color: #0E1013;
    transform: translateY(-2px);
}

.cta-subtext-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 4px;
}

.cta-subtext {
    font-size: 12px;
    font-weight: 600;
    color: #4B5563;
}

.cta-scribble-line {
    margin-top: -2px;
}

/* --------------------------------------------------
   DARK SLEEK HORIZONTAL CTA BAR (REPLACES RECOGNITIONS & PARTNERS)
   -------------------------------------------------- */
.exquis-dark-cta-section {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2 !important;
    margin-bottom: -58px;
}

.exquis-dark-cta-bar {
    background: rgba(15, 18, 24, 0.72);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    padding: 24px 32px;
    position: relative;
    z-index: 3 !important;
    overflow: hidden;
}

.dark-cta-title {
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}

.dark-cta-title.text-green {
    color: #FFFFFF;
}

.green-underline {
    color: #55E00C;
    position: relative;
    display: inline-block;
}

.green-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #55E00C;
    border-radius: 2px;
}

.dark-cta-v-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
}

.dark-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(85, 224, 12, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dark-feat-title {
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.dark-feat-desc {
    font-size: 11.5px;
    color: #9CA3AF;
    margin: 0;
    line-height: 1.2;
}

.dark-cta-green-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #55E00C 0%, #76EC2B 100%);
    color: #0E1013;
    font-size: 13.5px;
    font-weight: 800;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(85, 224, 12, 0.35);
}

.dark-cta-green-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(85, 224, 12, 0.5);
}

/* ==================================================
   COMPLETE TABLET & MOBILE RESPONSIVE DESIGN SYSTEM
   ================================================== */

/* 1. Global Overflow Protection */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* --------------------------------------------------
   TABLET & MEDIUM SCREENS (768px to 1199px)
   -------------------------------------------------- */
@media (max-width: 1199px) {
    /* Hero Area */
    .exquis-about-hero-area {
        padding-top: 140px;
        padding-bottom: 35px;
    }
    
    .hero-bg-vector-left,
    .hero-bg-vector-right {
        opacity: 0.25;
        scale: 0.8;
    }

    .exquis-hero-title {
        font-size: 34px;
        line-height: 1.25;
    }

    .exquis-hero-visual-wrap {
        margin-top: 35px;
    }

    /* Core Values Grid */
    .exquis-core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Services Grid */
    .exquis-services-row-8 {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    /* Process Steps */
    .exquis-process-steps-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .step-card-col {
        flex: 0 0 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }

    .step-dotted-arrow {
        display: none;
    }

    .exquis-header-creative-img {
        max-height: 110px;
    }

    /* Dark CTA Bar */
    .exquis-dark-cta-bar {
        padding: 24px 28px;
    }

    .dark-cta-v-divider {
        display: none;
    }
}

/* --------------------------------------------------
   SMALL TABLETS & MOBILE SCREENS (max-width: 991px)
   -------------------------------------------------- */
@media (max-width: 991px) {
    /* Hero Area */
    .exquis-about-hero-area {
        padding-top: 130px;
        padding-bottom: 30px;
    }

    .exquis-hero-title {
        font-size: 30px;
    }

    /* Services Grid */
    .exquis-services-row-8 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process Steps */
    .step-card-col {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    /* Leadership Ribbons */
    .floating-leadership-ribbon {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 16px;
    }

    .ribbon-avatar-container {
        margin: 0 auto;
    }

    .ribbon-meta-row {
        justify-content: center;
    }

    .ribbon-quote-text {
        text-align: center;
    }

    .ribbon-footer-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Feature Highlights Container Bar */
    .exquis-feature-highlights-card {
        flex-direction: column;
        gap: 16px;
        padding: 20px 18px;
        text-align: center;
    }

    .feature-dot-sep {
        display: none;
    }

    .feature-item-col {
        justify-content: center;
    }

    /* Dark CTA Section */
    .exquis-dark-cta-section {
        margin-bottom: -45px;
    }

    .exquis-dark-cta-bar {
        padding: 22px 20px;
    }

    .dark-cta-title-wrap {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .dark-cta-scribble {
        margin-top: 6px;
    }

    .dark-cta-green-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --------------------------------------------------
   PHONES & SMALL MOBILE SCREENS (max-width: 767px)
   -------------------------------------------------- */
@media (max-width: 767px) {
    /* Section Spacing */
    .py-80 { padding-top: 45px; padding-bottom: 45px; }
    .py-50 { padding-top: 35px; padding-bottom: 35px; }

    /* Background Vector SVGs - Hidden to prevent clipping & overflow */
    .hero-bg-vector-left,
    .hero-bg-vector-right {
        display: none;
    }

    /* Hero Text & Buttons */
    .exquis-about-hero-area {
        padding-top: 110px;
        padding-bottom: 25px;
    }

    .exquis-hero-title {
        font-size: 25px;
        line-height: 1.3;
    }

    .exquis-hero-desc {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .exquis-hero-btn-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .exquis-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .exquis-delivered-pill {
        width: 100%;
        justify-content: center;
    }

    /* Visual Collage & Badges on Mobile */
    .exquis-hero-visual-wrap {
        max-width: 380px;
        margin: 30px auto 0 auto;
        padding-bottom: 35px;
        display: block;
        position: relative;
    }

    .exquis-hero-img-main {
        width: 84%;
        border-radius: 18px;
    }

    .exquis-hero-img-main img {
        border-radius: 18px;
        width: 100%;
        height: auto;
    }

    .exquis-sticky-note,
    .exquis-sticky-note.note-yellow {
        position: absolute;
        top: 18%;
        left: 65%;
        bottom: auto;
        right: auto;
        width: 135px;
        padding: 14px 10px 12px;
        transform: rotate(-5deg);
        margin: 0;
        border-radius: 3px 3px 14px 3px;
        background: #E6F835;
    }

    .push-pin-wrap {
        top: -10px;
        width: 18px;
        height: 18px;
    }

    .push-pin-head {
        width: 14px;
        height: 14px;
    }

    .push-pin-head::after {
        top: 12px;
        left: 5.5px;
        width: 2.5px;
        height: 5px;
    }

    .handwritten-text {
        font-size: 15px;
        line-height: 1.2;
    }

    .sticky-hand-loop {
        width: 60px;
        margin-top: 2px;
    }

    .exquis-hero-img-sub {
        position: absolute;
        bottom: 0;
        right: 0;
        top: 65%;
        left: auto;
        width: 50%;
        margin: 0;
        border-radius: 16px;
        padding: 4px;
        background: #FFFFFF;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .exquis-hero-img-sub img {
        border-radius: 12px;
        width: 100%;
        height: auto;
    }

    .hero-doodle-1 {
        top: -15px;
        left: -15px;
        width: 65px;
        height: 65px;
    }

    .hero-doodle-2 {
        bottom: 5px;
        left: -15px;
        width: 55px;
        height: 55px;
    }

    .badge-exp-floating {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 15px auto 0;
        display: inline-flex;
        justify-content: center;
    }

    .badge-workspace-floating {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 10px auto 0;
        display: inline-block;
    }

    /* Core Values Grid */
    .exquis-core-values-grid {
        grid-template-columns: 1fr;
    }

    /* Services Grid */
    .exquis-services-row-8 {
        grid-template-columns: 1fr;
    }

    /* Process Steps (1 Column Stack on Mobile) */
    .step-card-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .exquis-step-card-box {
        min-height: auto;
        padding: 22px 16px;
    }

    /* Header Workspace Graphic inside Section 6 Header */
    .exquis-header-creative-img {
        max-height: 85px;
        margin-top: 15px;
    }

    .process-sub-title {
        font-size: 18px;
    }

    .green-line-dot {
        display: none;
    }

    /* AGENCY STATS COUNTER ROW - MOBILE 2X2 GRID (2 SIDE-BY-SIDE TOP, 2 SIDE-BY-SIDE BOTTOM) */
    .exquis-stats-box {
        text-align: center;
        padding: 24px 10px;
        border-radius: 20px;
    }

    .exquis-stats-box .row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .exquis-stats-box .row > [class*="col-"] {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
        margin-bottom: 22px !important;
    }

    .exquis-stats-box .row > [class*="col-"]:nth-child(3),
    .exquis-stats-box .row > [class*="col-"]:nth-child(4) {
        margin-bottom: 0 !important;
    }

    .exquis-stat-item {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 6px !important;
        padding: 6px 2px !important;
    }

    .stat-icon-wrap {
        width: 48px !important;
        height: 48px !important;
        font-size: 18px !important;
        margin-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 6px !important;
        flex-shrink: 0;
    }

    .stat-info {
        text-align: center !important;
    }

    .stat-info h3 {
        font-size: 22px !important;
        font-weight: 800 !important;
        text-align: center !important;
        margin-bottom: 2px !important;
    }

    .stat-info p {
        font-size: 12px !important;
        color: #6B7280 !important;
        text-align: center !important;
        line-height: 1.25 !important;
        margin: 0 !important;
    }

    /* Section Titles Mobile Size */
    .section-title {
        font-size: 23px;
        line-height: 1.3;
    }

    .values-header-title,
    .services-header-title {
        font-size: 22px;
    }

    /* DARK CTA CUSTOM GRAPHICS BOX - COMPACT & CENTERED ON RESPONSIVE MOBILE/TABLET */
    .exquis-dark-cta-section {
        background: transparent;
        padding: 0;
        position: relative;
        z-index: 2 !important; /* Low z-index so navbar megamenu & dropdowns ALWAYS render on top */
        margin-bottom: -70px; /* Overlaps halfway down over top edge of footer */
    }

    .exquis-dark-cta-bar {
        width: 90%;
        max-width: 370px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 3 !important;
        background: #484B52; /* Crisp sleek charcoal gray matching reference screenshot */
        border: 1.5px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
        border-radius: 18px;
        padding: 20px 16px 18px;
    }

    .dark-cta-title-wrap {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        margin-bottom: 14px;
    }

    .cta-heading-group {
        text-align: center;
    }

    .dark-cta-title {
        font-size: 16.5px;
        font-weight: 800;
        color: #FFFFFF;
        line-height: 1.25;
        text-align: center;
    }

    .dark-cta-scribble {
        margin: 4px auto 0 auto;
        display: flex;
        justify-content: center;
    }

    .dark-cta-feat-item {
        margin-bottom: 10px;
        padding-left: 0;
        gap: 10px;
    }

    .dark-feat-icon {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        flex-shrink: 0;
    }

    .dark-feat-icon svg {
        width: 18px;
        height: 18px;
    }

    .dark-feat-title {
        font-size: 13.5px;
        font-weight: 800;
        color: #FFFFFF;
        margin-bottom: 1px;
    }

    .dark-feat-desc {
        font-size: 11.5px;
        color: #D1D5DB;
    }

    .dark-cta-btn-wrap {
        width: 100%;
        margin-top: 14px;
        display: flex;
        justify-content: center;
    }

    .dark-cta-green-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        background: #55E00C;
        color: #0E1013;
        font-size: 14px;
        font-weight: 800;
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 5px 16px rgba(85, 224, 12, 0.35);
    }

    /* OUR VALUES SECTION - MOBILE CENTERED & DIVIDER LINES */
    .exquis-values-container-box {
        padding: 32px 18px;
        text-align: center;
    }

    .exquis-values-section .col-xl-4 {
        text-align: center;
        margin-bottom: 28px;
    }

    .exquis-values-section .pr-20 {
        padding-right: 0;
    }

    .exquis-values-section .exquis-green-text {
        text-align: center;
        display: block;
        width: 100%;
    }

    .values-header-title {
        font-size: 22px;
        text-align: center;
    }

    .exquis-value-card-col {
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .value-icon-circle {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 14px;
    }

    .value-card-title {
        text-align: center;
        width: 100%;
        font-size: 17px;
        margin-bottom: 6px;
    }

    .value-card-desc {
        text-align: center;
        width: 100%;
        font-size: 13px;
        line-height: 1.5;
        max-width: 290px;
        margin: 0 auto;
    }

    /* Horizontal Dividing Line Between Each Value Item on Mobile */
    .exquis-values-section .row-cols-1 > .col:not(:last-child),
    .exquis-values-section .row > .col:not(:last-child) {
        padding-bottom: 24px;
        margin-bottom: 16px;
        border-bottom: 1px solid rgba(85, 224, 12, 0.3);
    }
}

/* --------------------------------------------------
   FOOTER ALL CENTER ALIGNED (MOBILE & TABLET RESPONSIVE)
   -------------------------------------------------- */
@media (max-width: 991px) {
    .dgm-footer-area {
        padding-top: 140px; /* Generous top padding for overlapping CTA box */
    }

    .dgm-footer-area,
    .dgm-footer-widget,
    .dgm-footer-col-1,
    .dgm-footer-col-2,
    .dgm-footer-col-3,
    .dgm-footer-col-4 {
        text-align: center;
    }

    .dgm-footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .dgm-footer-logo a,
    .dgm-footer-logo img {
        display: inline-block;
        margin: 0 auto;
    }

    .dgm-footer-widget-paragraph {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .dgm-footer-widget-paragraph p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .dgm-footer-widget-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .dgm-footer-widget-title {
        text-align: center;
    }

    .dgm-footer-widget-menu {
        text-align: center;
    }

    .dgm-footer-widget-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 0;
        text-align: center;
    }

    .dgm-footer-widget-menu ul li {
        text-align: center;
        width: 100%;
    }

    .dgm-footer-widget-menu ul li a {
        display: inline-block;
        text-align: center;
    }

    .dgm-footer-widget-input {
        margin-left: auto;
        margin-right: auto;
        max-width: 360px;
    }

    .dgm-footer-widget-input form {
        display: flex;
        justify-content: center;
    }

    .tp-copyright-2-area,
    .tp-copyright-2-left,
    .tp-copyright-2-middle,
    .tp-copyright-2-right,
    .tp-copyright-2-menu {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .tp-copyright-2-left p,
    .tp-copyright-2-middle a {
        text-align: center;
        justify-content: center;
    }

    .tp-copyright-2-menu ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        padding-left: 0;
        margin-top: 10px;
    }
}

/* --------------------------------------------------
   FOOTER HALF-OVERLAP RIBBONS (ADHI FOOTER ME, ADHI BAHAR)
   -------------------------------------------------- */
.tp-brand-area.it-brand-style {
    position: relative;
    z-index: 10 !important;
    margin-bottom: -75px !important; /* Overlaps halfway down over top edge of footer */
}

/* Green Ribbon on Top */
.tp-brand-area .tp-brand-wrapper:first-child,
.tp-brand-wrapper:not(.tp-brand-style-2) {
    position: relative;
    z-index: 10 !important;
}

/* Yellow Ribbon under Green Ribbon */
.tp-brand-wrapper.tp-brand-style-2 {
    position: relative;
    z-index: 9 !important;
    margin-bottom: 0 !important;
}

footer {
    margin-top: 0 !important;
    position: relative;
    z-index: 1;
}

.dgm-footer-area {
    padding-top: 159px !important;
}

@media (max-width: 991px) {
    .tp-brand-area.it-brand-style {
        margin-bottom: -50px !important;
    }
    .dgm-footer-area {
        padding-top: 80px !important;
    }
}

.it-feature-ptb {
    padding-top: 300px !important;
}

/* --------------------------------------------------
   HINDI TYPEWRITER TEXT & CURSOR (BLACK & CENTERED)
   -------------------------------------------------- */
.hindi-animated-text {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    background: none !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: default !important;
    text-align: center !important;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.typewriter-cursor {
    display: inline-block !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: #000000 !important;
    margin-left: 2px !important;
    animation: blinkTypewriterCursor 0.8s infinite !important;
}

@keyframes blinkTypewriterCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Push Header Button & 3-Line Icon to the Far Right */
.tp-header-10-box {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.tp-header-10-right {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

@media (max-width: 991px) {
    .hindi-animated-text {
        font-size: 14px !important;
    }
    .typewriter-cursor {
        font-size: 15px !important;
    }
}

@media (max-width: 575px) {
    .hindi-animated-text {
        font-size: 12px !important;
    }
    .typewriter-cursor {
        font-size: 13px !important;
    }
}

/* --------------------------------------------------
   HERO SECTION HINDI TYPEWRITER TEXT & CURSOR
   -------------------------------------------------- */
.hero-typewriter-text {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    display: inline-block !important;
    line-height: 1.3 !important;
    letter-spacing: 0.5px !important;
}

.hero-typewriter-cursor {
    display: inline-block !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #43E508 !important;
    margin-left: 4px !important;
    animation: blinkHeroCursor 0.75s infinite !important;
}

@keyframes blinkHeroCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 991px) {
    .hero-typewriter-text {
        font-size: 22px !important;
    }
    .hero-typewriter-cursor {
        font-size: 24px !important;
    }
}

@media (max-width: 575px) {
    .hero-typewriter-text {
        font-size: 17px !important;
    }
    .hero-typewriter-cursor {
        font-size: 18px !important;
    }
}

/* Offcanvas Sidebar Typewriter Text */
.tp-offcanvas-content p {
    color: #444444 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

.offcanvas-typewriter-text {
    color: #111111 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}







