:root {
    --primary-color: #FFBC00;
    --gradient: linear-gradient(90deg, #FFBC00 0%, #FFC931 100%);
    --hover-gradient: linear-gradient(90deg, #FFC931 0%, #FFBC00 100%);
    --white: #ffffff;
    --border: 1px solid rgb(0, 0, 0, .1);
    --light-grey: #f8f8f8;
    --black: #000000;
    --border-radius: 12px;
    --transition: all 0.3s ease-in-out;
    --dec-color: #1E3A8A;
    --font-poppins: "Poppins", sans-serif;
    --font-outfit: "Outfit", sans-serif;
    --font-rubik: "Rubik", sans-serif;

    /* ==== Default Service Theme: Shopify Green ==== */
    --service-accent: #95BF47;
    --service-accent-rgb: 149, 191, 71;
    --service-accent-light: #f5faf6;
    --service-bg-image: url('../img/service/shopify-dev-bg-xl.png');
    --service-bg-image-mobile: url('../img/service/shopify-dev-bg.png');
    --service-banner-img: url('../img/service/bg-shopify.png');
}

/* ==== Theme Specific Overrides ==== */
.shopify-theme {
    --service-accent: #95BF47;
    --service-accent-rgb: 149, 191, 71;
    --service-accent-light: #f5faf6;
    --service-bg-image: url('../img/service/shopify-dev-bg-xl.png');
    --service-bg-image-mobile: url('../img/service/shopify-dev-bg.png');
    --service-banner-img: url('../img/service/bg-shopify.png');
}

.woocommerce-theme {
    --service-accent: #7F54B3;
    --service-accent-rgb: 127, 84, 179;
    --service-accent-light: #faf7fc;
    --service-bg-image: url('../img/service/woocommerce-dev-bg-xl.png');
    --service-bg-image-mobile: url('../img/service/woocommerce-dev-bg.png');
    --service-banner-img: url('../img/service/bg-woocommerce.png');
}

.seo-theme {
    --service-accent: #00A3FF;
    --service-accent-rgb: 0, 163, 255;
    --service-accent-light: #f0f9ff;
    --service-bg-image: url('../img/service/seo-dev-bg-xl.png');
    --service-bg-image-mobile: url('../img/service/seo-dev-bg.png');
    --service-banner-img: url('../img/service/bg-seo.png');
}

.wordpress-theme {
    --service-accent: #873EFF;
    --service-accent-rgb: 135, 62, 254;
    --service-accent-light: #faf7ff;
    --service-bg-image: none;
    --service-bg-image-mobile: none;
    --service-banner-img: none;
}

/* ==== Hire Section Styles ==== */
.hire-sec {
    background-color: var(--white);
    padding-bottom: 80px;
}

.hire-box {
    border: 1px solid #1a1a1a;
    border-radius: 24px;
    padding: 45px 50px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hire-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.hire-title-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hire-large-title {
    font-family: var(--font-outfit);
    font-size: 84px;
    font-weight: 700;
    color: var(--service-accent, #FFD200);
    /* Dynamic accent color fallback to yellow */
    line-height: 1;
    margin: 0;
}

.hire-headings {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hire-main-title {
    font-family: var(--font-outfit);
    font-size: 38px;
    font-weight: 700;
    color: #121212;
    margin: 0;
    letter-spacing: -0.5px;
}

.hire-headings p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
}

.hire-btn-wrap {
    flex-shrink: 0;
}

.btn-hire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #121212;
    color: var(--white) !important;
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 16px 40px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-hire:hover {
    background-color: var(--service-accent, #FFBC00);
    color: #121212 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--service-accent-rgb, 255, 188, 0), 0.25);
}

.hire-bottom {
    /* Spacing below header row */
}

.hire-bottom p {
    font-family: var(--font-poppins);
    font-size: 15.5px;
    line-height: 1.7;
    color: #444444;
    margin: 0;
    max-width: 960px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hire-sec {
        padding-bottom: 50px;
    }

    .hire-box {
        padding: 40px;
    }

    .hire-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hire-btn-wrap {
        width: 100%;
    }

    .btn-hire {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hire-box {
        padding: 30px 24px;
    }

    .hire-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hire-large-title {
        font-size: 64px;
    }

    .hire-main-title {
        font-size: 28px;
    }

    .hire-sub-title {
        font-size: 14px;
    }
}

/* Green title accent inside inner banner */
.text-green,
.text-accent {
    color: var(--service-accent);
}

/* ==== Why Choose Shopify Section ==== */
.why-choose-sec {
    background-color: var(--white);
    overflow: hidden;
}

.why-choose-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 50px;
}

.why-choose-header .sec-head {
    margin-bottom: 0;
}

.why-choose-header .sec-head p {
    max-width: 600px;
}

.why-choose-btn-wrap {
    flex-shrink: 0;
    padding-top: 10px;
}

/* Slider Wrapper & Equal Height Slide Setup */
.why-choose-slider-wrap {
    position: relative;
}

.why-choose-slider {
    overflow: visible;
}

.why-choose-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* Card Styles - Equal Height & Fixed (No Hover Effect) */
.why-choose-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 16px;
    padding: 40px 32px;
    background: var(--white);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Icon (No Hover Effect) */
.wc-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background-color: #f8f8f8;
    border: 1.5px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.wc-card-icon svg,
.wc-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Card Title */
.wc-card-title {
    font-family: var(--font-outfit);
    font-size: 22px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 14px;
    line-height: 1.3;
}

/* Card Description */
.wc-card-desc {
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .why-choose-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .why-choose-card {
        padding: 32px 26px;
    }

    .wc-card-title {
        font-size: 20px;
    }
}

@media (max-width: 575px) {

    .why-choose-card {
        padding: 28px 22px;
    }

    .wc-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin-bottom: 22px;
    }

    .wc-card-icon svg,
    .wc-card-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .wc-card-title {
        font-size: 18px;
    }

    .wc-card-desc {
        font-size: 14px;
    }
}

/* ==== Shopify Development Services Section ==== */
.service-grid-sec,
.shopify-services-sec {
    background: var(--light-grey);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: var(--service-bg-image);
}

.services-grid {
    justify-content: center;
}

/* Service Card */
.service-card {
    background-color: var(--white);
    border: 1.5px solid #eee;
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s ease;
    height: 100%;
}

/* Scoped override to prevent naming collisions with style.css and responsive.css marquee styles */
.service-grid-sec .service-card {
    width: 100%;
    max-width: none;
    flex-shrink: 1;
}

.service-grid-sec .service-card:hover {
    border-color: var(--service-accent, #FFBC00);
    box-shadow: 0 10px 35px rgba(var(--service-accent-rgb, 255, 188, 0), 0.08);
    transform: translateY(-4px);
}

/* Service Card Header */
.service-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

/* Icon */
.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background-color: #f5f5f5;
    border: 1.5px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.service-card__icon svg,
.service-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.service-card:hover .service-card__icon {
    background-color: var(--service-accent-light, #FFF8E1);
    border-color: var(--service-accent, #FFBC00);
    color: var(--service-accent, #FFBC00);
}

/* Title */
.service-card__title {
    font-family: var(--font-outfit);
    font-size: 22px;
    font-weight: 600;
    color: #121212;
    margin: 0;
    line-height: 1.3;
}

/* Services CTA Banner */
.services-cta {
    max-width: 800px;

    background-color: var(--white);
    border: 1.5px solid #eee;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 48px auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.35s ease;
}


.services-cta__title {
    font-family: var(--font-outfit);
    font-size: 26px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 6px;
}

.services-cta__desc {
    font-family: var(--font-poppins);
    font-size: 16px;
    color: #555;
    margin: 0;
}

.services-cta__action .btn {
    padding: 14px 32px;
    font-weight: 500;
    white-space: nowrap;
}

.services-show-more-wrap {
    display: none;
}


@media (max-width: 991px) {



    .service-card {
        padding: 30px 24px;
    }

    .service-card__title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .services-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 20px;
        margin-top: 36px;
    }

    .services-cta__title {
        font-size: 22px;
    }

    .services-cta__desc {
        font-size: 15px;
    }

    .services-cta__action {
        width: 100%;
    }

    .services-cta__action .btn {
        width: 100%;
        display: block;
    }
}

@media (max-width: 575px) {

    .service-card {
        padding: 28px 22px;
    }

    .service-card__header {
        gap: 12px;
        margin-bottom: 16px;
    }

    .service-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        margin-bottom: 0;
    }

    .service-card__icon svg,
    .service-card__icon img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

    .service-card__title {
        font-size: 18px;
    }
}

/* ==========================================================
   SCROLL ANIMATION & PREMIUM PRELOADER STYLES
   ========================================================== */

/* Preloader Overlay */
.anim-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #121212;
    /* Sleek dark theme to make the loader pop */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Custom Perspective Loader (from user) */
.loader {
    --main-size: 3em;
    /* Slightly scaled for neat viewport fitting */
    --text-color: #ffffff;
    --shine-color: rgba(255, 255, 255, 0.25);
    --shadow-color: #aaaaaa;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    user-select: none;
    position: relative;
    font-size: var(--main-size);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-color);
    width: 7.3em;
    height: 1.2em;
    filter: drop-shadow(0 0 0.05em var(--shine-color));
}

.loader .text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
}

.loader .text:nth-child(1) {
    clip-path: polygon(0% 0%, 11.11% 0%, 11.11% 100%, 0% 100%);
    font-size: calc(var(--main-size) / 20);
    margin-left: -2.1em;
    opacity: 0.6;
}

.loader .text:nth-child(2) {
    clip-path: polygon(11.11% 0%, 22.22% 0%, 22.22% 100%, 11.11% 100%);
    font-size: calc(var(--main-size) / 16);
    margin-left: -0.98em;
    opacity: 0.7;
}

.loader .text:nth-child(3) {
    clip-path: polygon(22.22% 0%, 33.33% 0%, 33.33% 100%, 22.22% 100%);
    font-size: calc(var(--main-size) / 13);
    margin-left: -0.33em;
    opacity: 0.8;
}

.loader .text:nth-child(4) {
    clip-path: polygon(33.33% 0%, 44.44% 0%, 44.44% 100%, 33.33% 100%);
    font-size: calc(var(--main-size) / 11);
    margin-left: -0.05em;
    opacity: 0.9;
}

.loader .text:nth-child(5) {
    clip-path: polygon(44.44% 0%, 55.55% 0%, 55.55% 100%, 44.44% 100%);
    font-size: calc(var(--main-size) / 10);
    margin-left: 0em;
    opacity: 1;
}

.loader .text:nth-child(6) {
    clip-path: polygon(55.55% 0%, 66.66% 0%, 66.66% 100%, 55.55% 100%);
    font-size: calc(var(--main-size) / 11);
    margin-left: 0.05em;
    opacity: 0.9;
}

.loader .text:nth-child(7) {
    clip-path: polygon(66.66% 0%, 77.77% 0%, 77.77% 100%, 66.66% 100%);
    font-size: calc(var(--main-size) / 13);
    margin-left: 0.33em;
    opacity: 0.8;
}

.loader .text:nth-child(8) {
    clip-path: polygon(77.77% 0%, 88.88% 0%, 88.88% 100%, 77.77% 100%);
    font-size: calc(var(--main-size) / 16);
    margin-left: 0.98em;
    opacity: 0.7;
}

.loader .text:nth-child(9) {
    clip-path: polygon(88.88% 0%, 100% 0%, 100% 100%, 88.88% 100%);
    font-size: calc(var(--main-size) / 20);
    margin-left: 2.1em;
    opacity: 0.6;
}

.loader .text span {
    animation:
        scrolling 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite,
        shadow 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite;
}

.loader .text:nth-child(1) span {
    background: linear-gradient(to right,
            var(--text-color) 4%,
            var(--shadow-color) 7%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(2) span {
    background: linear-gradient(to right,
            var(--text-color) 9%,
            var(--shadow-color) 13%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(3) span {
    background: linear-gradient(to right,
            var(--text-color) 15%,
            var(--shadow-color) 18%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(4) span {
    background: linear-gradient(to right,
            var(--text-color) 20%,
            var(--shadow-color) 23%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(6) span {
    background: linear-gradient(to right,
            var(--shadow-color) 29%,
            var(--text-color) 32%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(7) span {
    background: linear-gradient(to right,
            var(--shadow-color) 34%,
            var(--text-color) 37%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(8) span {
    background: linear-gradient(to right,
            var(--shadow-color) 39%,
            var(--text-color) 42%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(9) span {
    background: linear-gradient(to right,
            var(--shadow-color) 45%,
            var(--text-color) 48%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 0.05em;
    width: calc(var(--main-size) / 2);
    margin-top: 0.9em;
    border-radius: 0.05em;
}

.loader .line::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--text-color);
    opacity: 0.3;
}

.loader .line::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 0.05em;
    transform: translateX(-90%);
    animation: wobble 2s cubic-bezier(0.5, 0.8, 0.5, 0.2) infinite;
}

@keyframes wobble {
    0% {
        transform: translateX(-90%);
    }

    50% {
        transform: translateX(90%);
    }

    100% {
        transform: translateX(-90%);
    }
}

@keyframes scrolling {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes shadow {
    0% {
        background-position: -98% 0;
    }

    100% {
        background-position: 102% 0;
    }
}

/* Scroll Animation Section */
.scroll-anim-sec {
    position: relative;
    min-height: 100vh;
    background-color: #f9f9fb;
    overflow: hidden;
}

.anim-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Canvas Column/Container */
.anim-canvas-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    z-index: 1;
    will-change: transform;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    font-family: 'Outfit', sans-serif;
}

.anim-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 45px;
    height: 45px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid var(--service-accent);
    /* Theme color */
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
    margin-bottom: 15px;
}

.loader-text {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.anim-canvas-wrapper.pos-left {
    left: 0;
}

.anim-canvas-wrapper.pos-right {
    left: 50%;
}

#scroll-canvas,
#scroll-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Overlays and Text Blocks */
.anim-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.anim-text-block {
    position: absolute;
    top: 50%;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.04),
        0 1px 0 rgba(255, 255, 255, 0.55) inset;
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.7s ease;
}

/* All blocks appear from bottom - unified positioning */
.anim-text-block.align-left {
    left: 8%;
    transform: translateY(-40%) translateY(40px);
}

.anim-text-block.align-right {
    right: 8%;
    transform: translateY(-40%) translateY(40px);
}

.anim-text-block.active {
    opacity: 1;
    visibility: visible;
}

.anim-text-block.align-left.active {
    transform: translateY(-50%) translateY(0);
}

.anim-text-block.align-right.active {
    transform: translateY(-50%) translateY(0);
}

/* Staggered fade-in-up for child elements inside each block */
.anim-text-block .text-badge,
.anim-text-block .anim-block-title,
.anim-text-block p,
.anim-text-block .anim-bullets {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-text-block .text-badge {
    transition-delay: 0.1s;
}

.anim-text-block .anim-block-title {
    transition-delay: 0.22s;
}

.anim-text-block p {
    transition-delay: 0.34s;
}

.anim-text-block .anim-bullets {
    transition-delay: 0.46s;
}

.anim-text-block.active .text-badge,
.anim-text-block.active .anim-block-title,
.anim-text-block.active p,
.anim-text-block.active .anim-bullets {
    opacity: 1;
    transform: translateY(0);
}

/* Text Element Design */
.anim-text-block .text-badge {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: var(--service-accent);
    /* Lime green accent */
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.anim-text-block .anim-block-title {
    font-family: var(--font-outfit);
    font-size: 34px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 5px;
    line-height: 1.2;
}

.anim-text-block p {
    font-family: var(--font-poppins);
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Statistics Box */
.anim-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: inline-flex;
}

.anim-stat .stat-number {
    font-family: var(--font-outfit);
    font-size: 38px;
    font-weight: 700;
    color: var(--service-accent);
    line-height: 1;
}

.anim-stat .stat-label {
    font-family: var(--font-poppins);
    font-size: 13px;
    font-weight: 500;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tablet Resizing Options */
@media (min-width: 768px) and (max-width: 991px) {
    .anim-canvas-wrapper {
        max-width: none;
    }

    .anim-text-block {
        max-width: 400px;
    }

    .anim-text-block.align-left {
        left: 5%;
        transform: translateY(-40%) translateY(40px);
    }

    .anim-text-block.align-left.active {
        transform: translateY(-50%) translateY(0);
    }

    .anim-text-block.align-right {
        right: 5%;
        transform: translateY(-40%) translateY(40px);
    }

    .anim-text-block.align-right.active {
        transform: translateY(-50%) translateY(0);
    }

    .anim-text-block .anim-block-title {
        font-size: 28px;
    }
}

/* Mobile Layout — Sticky Canvas + Stacked Content (<768px) */
@media (max-width: 767px) {
    .anim-loader {
        display: none !important;
    }

    .scroll-anim-sec {
        min-height: 100vh;
        padding: 0;
        background-color: #f9f9fb;
    }

    .anim-container {
        height: 100vh;
        overflow: hidden;
    }

    /* Show canvas on mobile — override Bootstrap d-none */
    .anim-canvas-wrapper {
        display: flex !important;
        position: absolute;
        top: 0;
        left: 0 !important;
        width: 100%;
        height: 58vh;
        max-width: none;
        border-radius: 0;
    }

    #scroll-canvas,
    #scroll-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Hide static fallback image */
    .anim-mobile-hero {
        display: none !important;
    }

    /* Content overlay sits below canvas */
    .anim-content-overlay {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60vh;
        display: block;
        pointer-events: auto;
        padding: 0;
        background-image: var(--service-banner-img);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: 2;
    }

    /* All text blocks — stacked in bottom area, no alternating */
    .anim-text-block {
        position: absolute;
        top: 50%;
        left: 5% !important;
        right: auto !important;
        max-width: 90%;
        text-align: left;
        margin-bottom: 0;
        padding: 24px 20px;
        border-radius: 18px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-40%) translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
            transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
            visibility 0.6s ease;
    }

    /* Override center-aligned block to match stacked layout on mobile */
    .anim-text-block.align-center {
        left: 5% !important;
        right: auto !important;
        text-align: left;
        transform: translateY(-40%) translateY(30px);
    }

    .anim-text-block.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(-50%) translateY(0) !important;
    }

    .anim-text-block.align-center.active {
        transform: translateY(-50%) translateY(0) !important;
    }

    /* Keep staggered child fade-in-up on mobile */
    .anim-text-block .text-badge,
    .anim-text-block .anim-block-title,
    .anim-text-block p,
    .anim-text-block .anim-bullets {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1),
            transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .anim-text-block .text-badge {
        transition-delay: 0.08s;
    }

    .anim-text-block .anim-block-title {
        transition-delay: 0.18s;
    }

    .anim-text-block p {
        transition-delay: 0.28s;
    }

    .anim-text-block .anim-bullets {
        transition-delay: 0.38s;
    }

    .anim-text-block.active .text-badge,
    .anim-text-block.active .anim-block-title,
    .anim-text-block.active p,
    .anim-text-block.active .anim-bullets {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .anim-text-block .anim-block-title {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .anim-text-block p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .anim-text-block .text-badge {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .anim-bullets li {
        font-size: 13px;
    }

    .anim-stat {
        align-items: flex-start;
        width: 100%;
        margin-top: 8px;
    }
}

/* Bullets for premium look in scroll animation */
.anim-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.anim-bullets li {
    font-family: var(--font-poppins);
    font-size: 15px;
    color: #444444;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.anim-bullets li .bullet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--service-accent);
    /* Lime green dot */
    display: inline-block;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .anim-bullets li {
        justify-content: flex-start;
    }
}

/* Center aligned block for scroll animation - also fade in from bottom */
.anim-text-block.align-center {
    left: 50%;
    transform: translate(-50%, -40%) translateY(40px);
    text-align: center;
}

.anim-text-block.align-center.active {
    transform: translate(-50%, -50%) translateY(0);
}

.anim-text-block.align-center .anim-bullets li {
    justify-content: center;
}

/* ==========================================================
   THE ECOMTHINKER ADVANTAGE SECTION (APPLE/LINEAR STYLE)
   ========================================================== */

.advantage-sec {
    position: relative;
    background-color: var(--white);
    padding-block: 120px;
}

.advantage-sec .container {
    height: auto;
}

.adv-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-top: 55px;
}

.adv-left {
    width: 45%;
}

.adv-right {
    width: 50%;
    height: 65vh;
    /* explicit height relative to viewport */
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    /* background-color: #f5f5f5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); */
}

.adv-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateY(30px) scale(1.02);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.adv-img.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
}


.adv-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.adv-item {
    cursor: pointer;
    border-bottom: 1px solid #eee;
    padding: 24px 0;
    transition: all 0.4s ease;
}

.adv-item:last-child {
    border-bottom: none;
}

.adv-item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-outfit);
    font-size: 28px;
    font-weight: 600;
    color: #a0a0a0;
    transition: color 0.4s ease;
}

.adv-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    transition: all 0.4s ease;
}

.adv-title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.adv-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), margin-top 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    opacity: 0;
}

.adv-desc p {
    font-family: var(--font-poppins);
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    padding-left: 46px;
    /* 30px width of indicator + 16px gap */
}

.adv-mobile-img {
    display: none;
}

/* ACTIVE STATE */
.adv-item.active .adv-item-header {
    color: #121212;
}

.adv-item.active .adv-indicator {
    color: transparent;
    position: relative;
}

.adv-item.active .adv-indicator::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../img/svg/right-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.adv-item.active .adv-desc {
    max-height: 180px;
    margin-top: 16px;
    opacity: 1;
}

/* ==========================================================
   SELECTED SHOPIFY WORK SECTION (AWWWARDS / LINEAR STYLE)
   ========================================================== */

.projects-sec {
    background: linear-gradient(180deg, #ffffff 0%, var(--service-accent-light) 100%);
    padding: 100px 0;
    overflow: hidden;
}


.projects-wrapper {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.projects-list {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-number {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    color: #999999;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-category-badge {
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #999999;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.project-title {
    font-family: var(--font-outfit);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #555555;
    transition: color 0.3s ease;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.project-meta-desc {
    font-family: var(--font-poppins);
    font-size: 15px;
    color: #666666;
    margin: 0;
}

/* Active State for Project Item */
.project-item.active {
    border-bottom-color: var(--service-accent);
    /* Shopify lime green */
}

.project-item.active .project-number {
    color: var(--service-accent);
}

.project-item.active .project-category-badge {
    color: var(--service-accent);
}

.project-item.active .project-title {
    color: #121212;
}

.project-item.active .project-details {
    max-height: 100px;
    opacity: 1;
}

/* Right Sticky Showcase */
.project-showcase {
    flex: 0 0 55%;
    position: sticky;
    top: 120px;
    height: 480px;
}

.browser-mockup {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    background-color: var(--white);
    border: 1.5px solid #eaeaea;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background-color: #f6f6f6;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1.5px solid #eaeaea;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red {
    background-color: #ff5f56;
}

.mockup-dot.yellow {
    background-color: #ffbd2e;
}

.mockup-dot.green {
    background-color: #27c93f;
}

.mockup-viewport {
    flex-grow: 1;
    position: relative;
    background-color: var(--service-accent-light);
}

.screenshot-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0.98) translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        background-position 6s ease-in-out;
}

.screenshot-layer.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Scroll project screenshot from top to bottom on hover of projects section */
.projects-wrapper:hover .screenshot-layer.active {
    background-position: bottom center;
}

/* ==========================================================
   FLEXIBLE HIRING MODELS SECTION
   ========================================================== */

.hiring-models-sec {
    background-color: var(--white);
    padding: 100px 0;
}

.hiring-models-sec .sec-head {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hiring-models-sec .sec-head .sec-title {
    font-size: 38px;
    line-height: 1.4;
    font-weight: 700;
    color: #121212;
}

.models-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.model-card {
    background-color: var(--white);
    border: 1.5px solid #eaeaea;
    border-radius: 24px;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    transition: var(--transition);
}

.model-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.model-card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.model-type {
    font-family: var(--font-outfit);
    font-size: 28px;
    font-weight: 600;
    color: #121212;
    margin: 0;
}

.model-desc {
    font-family: var(--font-poppins);
    font-size: 14.5px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    min-height: 48px;
    /* ensures headers align */
}

.model-card-pricing {
    border-top: 1.5px solid #eaeaea;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-label {
    font-family: var(--font-poppins);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888888;
}

.pricing-value {
    font-family: var(--font-outfit);
    font-size: 32px;
    font-weight: 700;
    color: #121212;
    margin: 0;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    /* Pushes button wrapper to bottom */
}

.model-features li {
    font-family: var(--font-poppins);
    font-size: 14.5px;
    color: #333333;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.model-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -2px;
    color: #121212;
    font-size: 20px;
    line-height: 1;
}

.model-card-action {
    margin-top: 10px;
}

.btn-hire-model {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-hire-model.outline {
    background-color: transparent;
    border: 1.5px solid #121212;
    color: #121212;
}

.btn-hire-model.outline:hover {
    background-color: #121212;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 18, 18, 0.15);
}

.btn-hire-model.solid {
    background-color: var(--service-accent);
    border: 1.5px solid var(--service-accent);
    color: #121212;
}

.btn-hire-model.solid:hover {
    background-color: #121212;
    border-color: #121212;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 18, 18, 0.15);
}

/* RECOMMENDED CARD STYLES */
.model-card.recommended {
    background-color: var(--service-accent-light);
    border-color: var(--service-accent);
    box-shadow: 0 15px 40px rgba(var(--service-accent-rgb), 0.06);
}

.model-card.recommended:hover {
    box-shadow: 0 20px 45px rgba(var(--service-accent-rgb), 0.12);
}

.model-card.recommended .model-card-pricing {
    border-top-color: rgba(var(--service-accent-rgb), 0.2);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--service-accent);
    color: #121212;
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(var(--service-accent-rgb), 0.25);
}


/* ==========================================================
   FAQ SECTION
   ========================================================== */
.faq-sec {
    background-color: var(--white);
    padding: 100px 0;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1.5px solid #eaeaea;
    border-radius: 16px;
    background-color: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--service-accent);
    box-shadow: 0 10px 25px rgba(var(--service-accent-rgb), 0.03);
}

.faq-item.active {
    border-color: var(--service-accent);
    box-shadow: 0 10px 25px rgba(var(--service-accent-rgb), 0.06);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    gap: 20px;
    user-select: none;
}

.faq-question-title {
    font-family: var(--font-outfit);
    font-size: 19px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
    transition: var(--transition);
}

.faq-question-left {
    display: flex;
    /* align-items: center; */
    gap: 24px;
    flex-grow: 1;
}

.faq-number {
    font-family: var(--font-outfit);
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    transition: var(--transition);
}

.faq-item:hover .faq-question-title,
.faq-item.active .faq-question-title,
.faq-item:hover .faq-number,
.faq-item.active .faq-number {
    color: var(--service-accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: var(--black);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.faq-icon::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background-color: var(--service-accent);
}

.faq-answer {
    display: none;
    padding: 0 30px 24px 30px;
}

.faq-answer p {
    font-family: var(--font-poppins);
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    border-top: 1px solid #eaeaea;
    padding-top: 16px;
}

@media (max-width: 575px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question-left {
        gap: 16px;
    }

    .faq-number {
        font-size: 16px;
    }

    .faq-question-title {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* ==========================================================
   STORE HIGHLIGHTS SECTION (VIDEO SLIDER)
   ========================================================== */
.highlights-sec {
    background-color: var(--white);
    overflow: hidden;
}

.highlights-content {
    width: 100%;
}

.video-slider {
    margin-top: 60px;
    height: 570px;
    max-width: 100%;
    user-select: none;
    overflow: hidden;
}

.video-slider__wrapper {
    bottom: -90px;
}

.video-slider__slide {
    width: 400px;
    height: 480px;
    border-radius: 25px;
    transform: translateY(0);
    transition: filter 0.3s ease, transform 0.4s ease;
}

.video-slider__video-box {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    filter: brightness(0.35);
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
    will-change: transform;
    overflow: hidden;
    position: relative;
}

.video-slider__video-box video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.video-slider__info-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 100;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    row-gap: 8px;
    width: 100%;
    opacity: 0;
    text-align: center;
    font-family: var(--font-outfit);
    transform: translate(-50%, 0);
    transition: bottom 0.5s ease, opacity 0.1s ease;
}

.video-slider__info-title {
    margin: 0;
    font-family: var(--font-outfit);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

.video-slider__info-text {
    margin: 0 auto;
    font-family: var(--font-poppins);
    font-size: 14.5px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.75);
    font-style: italic;
    max-width: 85%;
}

.video-slider__video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(18, 18, 18, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 100px;
    font-family: var(--font-poppins);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swiper-slide-active .video-slider__video-badge {
    opacity: 1;
}

.video-slider__video-badge .star-rating {
    color: #FFD200;
    font-size: 13px;
}

.video-slider__video-box::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(18, 18, 18, 0.85) 0%,
            rgba(var(--service-accent-rgb), 0.15) 50%,
            rgba(18, 18, 18, 0) 100%);
    transition: opacity 0.5s ease;
}

.swiper-slide-active .video-slider__video-box {
    filter: brightness(1);
    transform: translateY(-90px);
}

.swiper-slide-active .video-slider__video-box::before {
    opacity: 1;
}

.swiper-slide-active .video-slider__video-box video {
    transform: scale(1);
}

.swiper-slide-active .video-slider__info-box {
    opacity: 1;
    transition: bottom 0.5s ease, opacity 0.5s ease 0.25s;
}

@media screen and (max-width: 768px) {
    .video-slider {
        margin-top: 0;
        height: 490px;
    }

    .video-slider__slide {
        width: 300px;
        height: 400px;
    }

    .video-slider__info-title {
        font-size: 18px;
    }

    .video-slider__info-text {
        font-size: 13px;
    }

    .video-slider__video-badge {
        top: 15px;
        left: 15px;
        padding: 4px 10px;
        font-size: 9px;
        gap: 4px;
    }

    .video-slider__video-badge .star-rating {
        font-size: 10px;
    }
}

@media screen and (max-width: 575px) {
    .video-slider {
        height: 440px;
    }

    .video-slider__slide {
        width: 250px;
        height: 350px;
    }
}

/* ==========================================================
   TECHNOLOGY STACK TABS & CARDS (.tech-stack-sec)
   ========================================================== */
.tech-stack-sec {
    background-color: var(--white);
    padding-block: 120px;
}

.tech-stack-title {
    font-family: var(--font-outfit);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--black);
}

.tech-tabs-nav-wrap {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.tech-tabs {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #fcfcfc;
    border-radius: 100px;
    padding: 8px;
    display: inline-flex;
    gap: 5px;
}

.tech-tabs .nav-item {
    margin: 0;
}

.tech-tabs .tech-tab-btn {
    border: none;
    outline: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 100px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
}

.tech-tabs .tech-tab-btn:hover {
    color: var(--black);
}

.tech-tabs .tech-tab-btn.active {
    background-color: var(--service-accent, #95BF47);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(var(--service-accent-rgb, 149, 191, 71), 0.25);
}

/* Tab panes fade-in transitions */
.tech-tab-content .tab-pane {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tech-tab-content .tab-pane.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tech Grid & Card */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card {
    background-color: var(--white);
    border: 1.5px solid #eee;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    border-color: var(--service-accent, #95BF47);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(var(--service-accent-rgb, 149, 191, 71), 0.08);
}

.tech-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: #f8f8f8;
    border: 1.5px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #1a1a1a;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.tech-card-icon svg {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.tech-card:hover .tech-card-icon {
    background-color: rgba(var(--service-accent-rgb, 149, 191, 71), 0.08);
    border-color: var(--service-accent, #95BF47);
    color: var(--service-accent, #95BF47);
}

.tech-card:hover .tech-card-icon svg {
    transform: scale(1.1);
}

.tech-card-info {
    width: 100%;
}

.tech-card-title {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 10px;
    line-height: 1.3;
}

.tech-card-info p {
    font-family: var(--font-poppins);
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    margin: 0;
    opacity: 0.85;
}

/* ==========================================================
   WORK PROCESS SECTION (.sh-process-sec)
   ========================================================== */
.sh-process-sec {
    background-color: var(--white);
    padding-block: 120px;
    overflow: hidden;
    box-sizing: border-box;
}

.sh-process-sec-title {
    font-family: var(--font-outfit);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--black);
}

.sh-process-wrap {
    position: relative;
    margin-top: 80px;
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 15px;
    box-sizing: border-box;
}

/* Connecting Line Background */
.sh-process-line {
    position: absolute;
    top: 40px;
    /* Aligns with center of 80px icon circles on desktop grid */
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: #eee;
    z-index: -1;
}

.sh-process-line-progress {
    width: 0%;
    /* Dynamic animation via GSAP ScrollTrigger */
    height: 100%;
    background-color: var(--service-accent, #95BF47);
    transition: width 0.1s ease-out;
}

/* Grid layout for steps - now a 5-column grid on desktop */
.sh-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.sh-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

/* Icon Container */
.sh-process-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    margin-bottom: 24px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.sh-process-step-icon svg {
    color: #1a1a1a;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-process-step:hover .sh-process-step-icon,
.sh-process-step.active .sh-process-step-icon {
    border-color: var(--service-accent, #95BF47);
    /* background-color: rgba(var(--service-accent-rgb, 149, 191, 71), 0.08); */
    color: var(--service-accent, #95BF47);
    box-shadow: 0 8px 25px rgba(var(--service-accent-rgb, 149, 191, 71), 0.15);
}

.sh-process-step:hover .sh-process-step-icon svg,
.sh-process-step.active .sh-process-step-icon svg {
    color: var(--service-accent, #95BF47);
}

/* Heading */
.sh-process-step-title {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Description text - styled via wrapper */
.sh-process-step-desc p {
    font-family: var(--font-poppins);
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    max-width: 220px;
    opacity: 0.85;
}

/* SVG Micro-Animations */

/* Discovery (Search Lens) */
.sh-process-step:hover .svg-discovery,
.sh-process-step.active .svg-discovery {
    animation: searchScanning 2s ease-in-out infinite;
}

.sh-process-step:hover .svg-discovery .magnifier-reflection,
.sh-process-step.active .svg-discovery .magnifier-reflection {
    animation: reflectionShift 2s ease-in-out infinite;
    transform-origin: 10px 6px;
}

/* Setup (Shopping Bag) */
.sh-process-step:hover .svg-setup,
.sh-process-step.active .svg-setup {
    animation: swingBag 1.5s ease-in-out infinite;
    transform-origin: 12px 6px;
}

/* Design (Monitor Code typing) */
.svg-design .monitor-line-1,
.svg-design .monitor-line-2 {
    transition: opacity 0.3s ease;
}

.sh-process-step:hover .svg-design .monitor-line-1,
.sh-process-step.active .svg-design .monitor-line-1 {
    animation: typeCode1 2s step-end infinite;
}

.sh-process-step:hover .svg-design .monitor-line-2,
.sh-process-step.active .svg-design .monitor-line-2 {
    animation: typeCode2 2s step-end infinite;
}

/* Integrations (Double Cogs) */
.svg-testing .gear-1 {
    transform-origin: 169.1px 167.8px;
}

.svg-testing .gear-2 {
    transform-origin: 367.9px 369px;
}

.sh-process-step:hover .svg-testing .gear-1,
.sh-process-step.active .svg-testing .gear-1 {
    animation: spinClockwise 4s linear infinite;
}

.sh-process-step:hover .svg-testing .gear-2,
.sh-process-step.active .svg-testing .gear-2 {
    animation: spinCounterClockwise 4s linear infinite;
}

/* Launch (Rocket Liftoff) */
.sh-process-step:hover .svg-launch .rocket-ship,
.sh-process-step.active .svg-launch .rocket-ship {
    animation: rocketLiftoff 1.2s ease-in-out infinite;
    transform-origin: 147.5px 147.5px;
}

.sh-process-step:hover .svg-launch .rocket-sparks path,
.sh-process-step.active .svg-launch .rocket-sparks path {
    animation: sparkFlicker 0.6s ease-in-out infinite alternate;
}

.sh-process-step:hover .svg-launch .rocket-sparks path:nth-child(even),
.sh-process-step.active .svg-launch .rocket-sparks path:nth-child(even) {
    animation-delay: 0.3s;
}

/* Keyframes */
@keyframes searchScanning {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(2px, -1.5px) rotate(3deg);
    }

    50% {
        transform: translate(-1px, -2px) rotate(-2deg);
    }

    75% {
        transform: translate(-1.5px, 1px) rotate(2deg);
    }
}

@keyframes reflectionShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-1.5px, 1.5px);
    }
}

@keyframes swingBag {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(8deg);
    }

    75% {
        transform: rotate(-8deg);
    }
}

@keyframes typeCode1 {

    0%,
    100% {
        opacity: 0;
    }

    20%,
    80% {
        opacity: 1;
    }
}

@keyframes typeCode2 {

    0%,
    40%,
    100% {
        opacity: 0;
    }

    60%,
    80% {
        opacity: 1;
    }
}

@keyframes spinClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinCounterClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rocketLiftoff {

    0%,
    100% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(1px, -1px) scale(1.02);
    }

    40% {
        transform: translate(2px, -3px) scale(1.04);
    }

    60% {
        transform: translate(3px, -4px) scale(1.04);
    }

    80% {
        transform: translate(1.5px, -2px) scale(1.02);
    }
}

@keyframes sparkFlicker {
    0% {
        opacity: 0.3;
        transform: translate(-1px, 1px);
    }

    100% {
        opacity: 1;
        transform: translate(1px, -1px);
    }
}

/* WordPress Hero Video 5:4 Aspect Ratio Styling */
.hero-video-wrap {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(135, 62, 254, 0.08);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================
   WordPress Digital Ecosystem Section Styling
   ========================================================== */
.wordpress-ecosystem-sec {
    position: relative;
    background-image: url('../img/service/why-wp.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Left Side Visualization Styling */
.ecosystem-visual-container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.ecosystem-orbit-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

/* Orbiting Ring (clockwise rotation) */
.ecosystem-orbit-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: eco-orbit 40s linear infinite;
    transform-origin: center center;
}

.ecosystem-orbit-ring.paused {
    animation-play-state: paused;
}

/* Counter-rotate wrappers (keeps cards upright) */
.ecosystem-node-reverse {
    animation: eco-orbit-reverse 40s linear infinite;
    transform-origin: center center;
}

.ecosystem-node-reverse.paused {
    animation-play-state: paused;
}

/* Floating animation */
.ecosystem-node-float {
    animation: eco-float-y 6s ease-in-out infinite;
}

/* Individual node wrapper positioning */
.ecosystem-node {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 144px;
    /* Default width */
}

/* Node button design */
.ecosystem-node-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 14px 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover/Active states */
.ecosystem-node-btn:hover,
.ecosystem-node.active .ecosystem-node-btn {
    border-color: var(--service-accent);
    box-shadow: 0 8px 24px rgba(135, 62, 254, 0.12);
    transform: translateY(-2px);
}

/* Icon wrap styling */
.ecosystem-node-icon-wrap {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(135, 62, 254, 0.08);
    color: var(--service-accent);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.ecosystem-node-btn:hover .ecosystem-node-icon-wrap,
.ecosystem-node.active .ecosystem-node-icon-wrap {
    background-color: var(--service-accent);
    color: var(--white);
}

.ecosystem-node-icon-wrap svg {
    stroke-width: 2px;
    transition: stroke-width 0.3s ease;
}

/* Labels & details styling */
.ecosystem-node-label {
    display: block;
    font-family: var(--font-outfit);
    font-size: 13.5px;
    font-weight: 600;
    color: #121212;
    line-height: 1.2;
}

.ecosystem-node-desc {
    display: block;
    font-family: var(--font-poppins);
    font-size: 10.5px;
    color: #777777;
    line-height: 1.3;
}

/* SVG Line Connections */
.wp-ecosystem-svg-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.ecosystem-spoke {
    stroke: #bbbbbb !important;
    stroke-width: 2px !important;
    transition: stroke 0.3s ease, stroke-width 0.3s ease, opacity 0.3s ease;
    opacity: 0.95 !important;
}

.ecosystem-spoke.active {
    stroke: var(--service-accent) !important;
    stroke-width: 3px !important;
    opacity: 1 !important;
}

.ecosystem-ring-link {
    stroke: #bbbbbb !important;
    stroke-width: 1.8px !important;
    opacity: 0.75 !important;
}

/* Central Core styling */
.ecosystem-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    pointer-events: none;
}

.ecosystem-core-inner {
    position: relative;
    display: flex;
    width: 120px;
    height: 120px;
    align-items: center;
    justify-content: center;
}

/* Pulsing rings around the Core */
.ecosystem-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(135, 62, 254, 0.08);
    animation: eco-pulse-ring 3s cubic-bezier(0.25, 0, 0, 1) infinite;
    transform-origin: center center;
}

.pulse-ring-2 {
    animation-delay: 1.5s;
}

/* Main Core Circle */
.ecosystem-core-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--service-accent);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(135, 62, 254, 0.3);
}

.ecosystem-core-label-text {
    font-family: var(--font-outfit);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* KEYFRAME ANIMATIONS */
@keyframes eco-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes eco-orbit-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes eco-float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes eco-pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* SVG Line Dash Array flow animation */
.animate-flow {
    animation: eco-flow 2.5s linear infinite;
}

@keyframes eco-flow {
    to {
        stroke-dashoffset: -28;
    }
}

.wordpress-ecosystem-sec .cms-con ul li::before {
    background-color: var(--service-accent);
}


/* ============================================================
   WordPress Development Process – Modern Alternating Timeline
   ============================================================ */

.wp-process-sec {
    background-color: var(--white);
    padding-block: 120px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.wp-process-sec-title {
    font-family: var(--font-outfit);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--black);
}

.wp-process-wrap {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
    padding-inline: 15px;
    box-sizing: border-box;
}

/* Vertical line track */
.wp-process-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 160px;
    bottom: 160px;
    width: 3px;
    background-color: #eee;
    z-index: 1;
}

.wp-process-line-progress {
    width: 100%;
    height: 0%;
    /* Animated via GSAP */
    background: linear-gradient(180deg, rgba(135, 62, 254, 0.05) 0%, rgba(135, 62, 254, 0.5) 60%, var(--service-accent, #873EFF) 100%);
    border-radius: 3px;
    position: relative;
}

.wp-process-line-progress::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--service-accent, #873EFF);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--service-accent, #873EFF),
        0 0 16px var(--service-accent, #873EFF),
        0 0 24px rgba(135, 62, 254, 0.6);
    z-index: 5;
    animation: meteor-pulse 1.5s infinite ease-in-out;
}

@keyframes meteor-pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 8px var(--service-accent, #873EFF),
            0 0 16px var(--service-accent, #873EFF),
            0 0 24px rgba(135, 62, 254, 0.6);
    }

    50% {
        transform: translateX(-50%) scale(1.25);
        box-shadow: 0 0 12px var(--service-accent, #873EFF),
            0 0 24px var(--service-accent, #873EFF),
            0 0 36px rgba(135, 62, 254, 0.8);
    }
}

/* Steps Container */
.wp-process-steps {
    position: relative;
    z-index: 2;
}

/* Each step row */
.wp-process-item {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    width: 100%;
}

.wp-process-item:last-child {
    margin-bottom: 0;
}

/* Column styles */
.wp-process-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    grid-row: 1;
}

.wp-process-text-col {
    max-width: 460px;
    transition: all 0.4s ease;
}

.wp-process-center-col {
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: relative;
}

.wp-process-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
}

/* Alternating Alignment on Desktop */
.wp-process-item:nth-child(odd) .wp-process-text-col {
    grid-column: 1;
    text-align: right;
    justify-self: end;
    align-items: flex-end;
}

.wp-process-item:nth-child(odd) .wp-process-img-col {
    grid-column: 3;
    justify-self: start;
}

.wp-process-item:nth-child(even) .wp-process-text-col {
    grid-column: 3;
    text-align: left;
    justify-self: start;
    align-items: flex-start;
}

.wp-process-item:nth-child(even) .wp-process-img-col {
    grid-column: 1;
    justify-self: end;
}

.wp-process-item:nth-child(odd) .wp-process-center-col {
    grid-column: 2;
}

.wp-process-item:nth-child(even) .wp-process-center-col {
    grid-column: 2;
}

/* Step Badge */
.wp-step-badge {
    font-family: var(--font-poppins);
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background-color: #f3f4f6;
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 16px;
    display: inline-block;
    line-height: 1;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

/* Step Title */
.wp-step-title {
    font-family: var(--font-outfit);
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.4s ease;
}

/* Step Description Paragraph styling via parent */
.wp-process-text-col p {
    font-family: var(--font-poppins);
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    opacity: 0.85;
}

/* Timeline Node */
.wp-process-node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid #eee;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 4px var(--white);
}

.wp-process-item.active .wp-process-node,
.wp-process-item.active .wp-step-badge {
    background-color: var(--service-accent, #873EFF);
    border-color: var(--service-accent, #873EFF);
    color: var(--white);
    box-shadow: 0 0 0 4px var(--white), 0 0 15px rgba(135, 62, 254, 0.4);
}

/* Mockup Frame & Browser Window */
.wp-step-img-frame {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.wp-step-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-mockup-browser {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 95%;
    height: 95%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wp-process-item.active .wp-mockup-browser {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(135, 62, 254, 0.1);
}

.wp-mockup-header {
    height: 32px;
    background-color: #f7f7f9;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    padding-inline: 12px;
    gap: 12px;
    box-sizing: border-box;
}

.wp-mockup-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.wp-mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.wp-dot-red {
    background-color: #ff5f56;
}

.wp-dot-yellow {
    background-color: #ffbd2e;
}

.wp-dot-green {
    background-color: #27c93f;
}

.wp-mockup-address {
    font-family: var(--font-poppins);
    font-size: 10px;
    color: #999;
    background: #fff;
    border-radius: 4px;
    padding-inline: 10px;
    padding-block: 2px;
    flex-grow: 1;
    max-width: 180px;
    text-align: center;
    border: 1px solid #e5e7eb;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.wp-mockup-screen {
    flex-grow: 1;
    background-color: var(--white);
    padding: 0;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.wp-process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ============================================================
   WordPress Technologies We Use Section (Section 6)
   ============================================================ */
.wp-tech-sec {
    background-color: var(--light-grey);
    background-image: radial-gradient(circle at 50% 200px, rgba(135, 62, 255, 0.06) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.sec-title-tech {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: var(--font-outfit);
}

.wp-tech-cat-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.wp-tech-cat-card:hover {
    transform: translateY(-8px);
    border-color: #873EFF;
    box-shadow: 0 20px 50px rgba(135, 62, 255, 0.12);
}

.wp-tech-count-badge {
    position: absolute;
    top: 30px;
    right: 24px;
    font-size: 11px;
    font-weight: 600;
    color: #873EFF;
    background-color: rgba(135, 62, 254, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(135, 62, 254, 0.12);
    transition: var(--transition);
}

.wp-tech-cat-card:hover .wp-tech-count-badge {
    background-color: #873EFF;
    color: var(--white);
    border-color: #873EFF;
}

.wp-tech-cat-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.wp-tech-cat-badge {
    font-size: 11px;
    font-weight: 600;
    color: #873EFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.wp-tech-cat-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    font-family: var(--font-outfit);
}

.wp-tech-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.wp-tech-item:hover {
    background-color: rgba(135, 62, 254, 0.04);
    transform: translateX(5px);
}

.wp-tech-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: var(--transition);
}

.wp-tech-item:hover .wp-tech-icon-wrap {
    background-color: rgba(135, 62, 254, 0.1);
    color: #873EFF;
    box-shadow: 0 0 10px rgba(135, 62, 254, 0.2);
}

.wp-tech-icon-wrap svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.wp-tech-item:hover .wp-tech-icon-wrap svg {
    transform: scale(1.1) rotate(5deg);
}

.wp-tech-info {
    flex-grow: 1;
}

.wp-tech-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    font-family: var(--font-poppins);
}

.wp-tech-info p {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

/* Responsive Styles for wordpress-tech-stack */
@media (max-width: 991px) {
    .wp-tech-sec {
        padding-block: 80px;
    }

    .sec-title-tech {
        font-size: 38px;
    }

    .wp-tech-cat-card {
        padding: 24px 20px;
    }

    .wp-tech-count-badge {
        top: 24px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .sec-title-tech {
        font-size: 32px;
    }

    /* Hide tech lists by default on mobile */
    .wp-tech-list {
        display: none;
    }

    .wp-tech-cat-card {
        cursor: pointer;
        transform: none !important;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
        position: relative;
        padding: 24px 20px;
    }

    .wp-tech-cat-card:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
        border-color: rgba(0, 0, 0, 0.05);
    }

    /* Active state for card on mobile */
    .wp-tech-cat-card.active {
        border-color: #873EFF;
        box-shadow: 0 10px 30px rgba(135, 62, 255, 0.1);
    }

    .wp-tech-cat-card.active .wp-tech-count-badge {
        background-color: #873EFF;
        color: var(--white);
        border-color: #873EFF;
    }

    /* Collapse header styling when inactive */
    .wp-tech-cat-header {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
        padding-right: 94px;
        /* Space for count badge + chevron */
    }

    /* Expand header styling when active */
    .wp-tech-cat-card.active .wp-tech-cat-header {
        margin-bottom: 25px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
    }

    /* Position count badge precisely on mobile */
    .wp-tech-count-badge {
        top: 33px;
        right: 20px;
    }

    /* Add chevron indicator on mobile relative to the card */
    .wp-tech-cat-card::after {
        content: "";
        position: absolute;
        right: 30px;
        top: 40px;
        transform: rotate(0deg);
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23873EFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: transform 0.3s ease;
    }

    .wp-tech-cat-card.active::after {
        transform: rotate(180deg);
    }
}

/* ============================================================
   Hiring Models Section (Pricing)
   ============================================================ */
.sec-title-pricing {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 50px;
    font-family: var(--font-outfit);
}

@media (max-width: 991px) {
    .sec-title-pricing {
        font-size: 38px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .sec-title-pricing {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

/* ==========================================================
   FEATURED WORDPRESS SOLUTIONS SECTION
   ========================================================== */
.wp-solutions-sec {
    background: linear-gradient(180deg, var(--white) 0%, #f9f9f9 100%);
    padding: 120px 0;
    overflow: hidden;
}


/* Left Column: Browser Mockup Showcase */
.wp-solution-showcase {
    height: 480px;
}

/* Right Column: Solution Items */
.wp-solutions-list {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wp-solution-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.wp-solution-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.solution-number {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    color: #999999;
    transition: color 0.3s ease;
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.solution-title {
    font-family: var(--font-outfit);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #333333;
    transition: color 0.3s ease;
}

.solution-desc-wrapper p {
    font-family: var(--font-poppins);
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.4s ease;
}

.feat-tag {
    font-family: var(--font-poppins);
    font-size: 11px;
    font-weight: 600;
    background-color: #f1f1f1;
    color: #666666;
    padding: 4px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Active State for Solution Item */
.wp-solution-item.active {
    border-color: #873efe;
    box-shadow: 0 15px 35px rgba(135, 62, 254, 0.06);
}

.wp-solution-item.active .solution-number {
    color: #873efe;
}

.wp-solution-item.active .solution-title {
    color: #121212;
}

.wp-solution-item.active .solution-features {
    max-height: 100px;
    opacity: 1;
    margin-top: 12px;
}

.wp-solution-item.active .feat-tag {
    background-color: rgba(135, 62, 254, 0.08);
    color: #873efe;
}

.solution-mobile-img {
    display: none;
}


/* Responsive Styles for Featured Solutions */
@media (max-width: 991px) {
    .wp-solutions-showcase-col {
        display: none;
    }

    .wp-solutions-list-col {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .wp-solutions-list {
        width: 100%;
        flex: 0 0 100%;
    }

    .wp-solution-item {
        padding: 20px;
    }

    .solution-mobile-img {
        display: block;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;
        border-radius: 12px;
        transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.4s ease;
    }

    .solution-mobile-img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .wp-solution-item.active .solution-mobile-img {
        max-height: 500px;
        opacity: 1;
        margin-top: 16px;
    }
}

@media (max-width: 575px) {
    .wp-solution-showcase {
        display: none;
    }

    .wp-solution-item {
        gap: 16px;
    }

    .solution-title {
        font-size: 18px;
    }
}

/* ==========================================================
   RESULTS & PERFORMANCE METRICS SECTION
   ========================================================== */
.wp-metrics-sec {
    background-color: var(--white);
    padding: 120px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.metric-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(135, 62, 254, 0.08);
    border-color: rgba(135, 62, 254, 0.2);
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(135, 62, 254, 0.05);
    color: #873efe;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.metric-card:hover .metric-icon {
    background-color: #873efe;
    color: var(--white);
}

.metric-number-wrap {
    font-family: var(--font-outfit);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #121212;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.metric-symbol {
    color: #873efe;
    margin-left: 2px;
}

.metric-title {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.metric-desc-wrapper p {
    font-family: var(--font-poppins);
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

.floating-card.delay-1 {
    animation-delay: 0s;
}

.floating-card.delay-2 {
    animation-delay: 1.5s;
}

.floating-card.delay-3 {
    animation-delay: 3s;
}

.floating-card.delay-4 {
    animation-delay: 4.5s;
}

/* Pause animation on hover */
.metric-card:hover {
    animation-play-state: paused;
}

/* Responsive Styles for Metrics Grid */
@media (max-width: 1199px) {
    .metric-number-wrap {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .metrics-grid {

        gap: 12px;
    }

    .metric-card {
        padding: 35px 20px;
    }
}