﻿/* ============================================================
   BLACK BULL MEDIA â€” Main Stylesheet
   Accent : #BFF747  |  Dark : #000000  |  Text : #F5F5F4
   Font   : Plus Jakarta Sans
============================================================ */

/* â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --accent : #CC2936;
    --dark   : #000000;
    --white  : #FFFFFF;
    --text   : #F5F5F4;
    --font         : 'Plus Jakarta Sans', sans-serif;
    --font-heading : 'Bebas Neue', sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background: var(--dark);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    font-weight: 400;
}

p, li, label, input, textarea, small {
    font-family: var(--font);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.text-accent { font-family: inherit; }
    font-size: 16px;
    line-height: 1.6;
}

a { text-decoration: none; }
p { margin: 0; }
figure { margin: 0; }
img { max-width: 100%; display: block; }

/* â”€â”€ Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bbm-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* â”€â”€ Section label (h3 with green asterisk) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-label {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    padding-left: 24px;
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url('../images/icon-sub-heading.svg') no-repeat center / contain;
}

/* â”€â”€ Accent text â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-accent {
    font-weight: 700;
    color: var(--accent);
}

/* â”€â”€ btn-default â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-default {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 14px 26px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-transform: capitalize;
    margin-right: 52px;
    transition: background 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-default::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(52px, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 39 40' width='20' height='20' fill='none'%3E%3Cpath d='M31.9106 11.7401L4.58281 39.0679L0.0932617 34.5784L27.4179 7.25054H3.33501V0.900391H38.2608V35.8262H31.9106V11.7401Z' fill='%23000000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.3s ease;
}

.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:visited { text-decoration: none; }
.btn-default:hover { background: rgba(255,255,255,0.26); }
.btn-default:hover::before { background-color: #fff; }

/* ============================================================
   HEADER
============================================================ */

.bbm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.bbm-header.scrolled {
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.bbm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.bbm-logo .logo-link {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.bbm-logo .logo-media { color: var(--accent); }

.bbm-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 36px;
}

.bbm-nav ul li a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(245,245,244,0.8);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.bbm-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.bbm-nav ul li a:hover,
.bbm-nav ul li a.active { color: var(--text); }

.bbm-nav ul li a:hover::after,
.bbm-nav ul li a.active::after { width: 100%; }

.bbm-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bbm-header-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bbm-header-socials a {
    color: rgba(245,245,244,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.bbm-header-socials a:hover { color: var(--accent); border-color: var(--accent); }

.bbm-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.bbm-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================================
   HERO SECTION
============================================================ */

.bbm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 220px 0 170px;
    overflow: hidden;
}

/* Video background */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dual gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(179.5deg, rgba(0,0,0,0) 0.44%, #000000 119.12%),
        linear-gradient(0.62deg, rgba(0,0,0,0) 81.46%, #000000 99.49%);
    z-index: 1;
}

.hero-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-col-left { flex: 1; }

.hero-col-right { flex-shrink: 0; }

/* Hero heading */
.hero-heading {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero-desc {
    font-size: 16px;
    opacity: 0.75;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 48px;
}

/* CTA buttons row */
.hero-content-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-btn { position: relative; }

/* Watch Video button */
.video-play-button {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 20px;
}

.video-play-button p {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
}

.video-play-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.video-play-button a:hover { background: var(--accent); }
.video-play-button a:hover svg polygon { fill: #000; }

/* Rotating circle badge */
.our-agency-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 200px;
    height: 200px;
    text-decoration: none;
}

.circle-badge-svg {
    animation: bbmRotate 12s linear infinite;
    width: 200px;
    height: 200px;
}

@keyframes bbmRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.agency-circle-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.our-agency-circle a:hover .agency-circle-arrow { background: #fff; }

/* ============================================================
   SCROLLING TICKER
============================================================ */

.our-scrolling-ticker {
    background-color: var(--accent);
    padding: 26px 0;
    overflow: hidden;
}

.scrolling-ticker-box {
    --gap: 40px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.scrolling-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: bbmScroll 25s linear infinite;
}

.scrolling-content span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    text-transform: uppercase;
}

.scrolling-content span img {
    width: 18px;
    height: 18px;
    display: inline-block;
}

@keyframes bbmScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-100% - var(--gap))); }
}

/* ============================================================
   ABOUT US SECTION
============================================================ */

.bbm-about {
    position: relative;
    padding: 160px 0 100px;
    overflow: visible;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-col-image {
    position: relative;
    width: calc(50% - 30px);
    flex-shrink: 0;
}

.about-col-content {
    width: calc(50% - 30px);
}

/* Vertical watermark text */
.about-image-title {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    white-space: nowrap;
    z-index: 1;
}

.about-image-title h2 {
    font-size: 100px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255,255,255,0.04);
    letter-spacing: 6px;
}

/* Image wrap with blob mask */
.about-image-wrap {
    position: relative;
    overflow: visible;
    display: inline-block;
}

.about-us-img {
    position: relative;
    display: inline-block;
}

.about-us-img figure {
    display: inline-block;
    background-image: url('../images/about-us-imaeg-mask.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-mask-image: url('../images/about-us-imaeg-mask.svg');
    mask-image: url('../images/about-us-imaeg-mask.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.about-us-img figure img {
    width: 494px;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Explore more badge â€” sits in top-right cutout of mask */
.explore-more-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 136px;
    height: 136px;
    z-index: 2;
}

.explore-more-circle a {
    display: block;
    width: 100%;
    height: 100%;
}

.explore-more-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: bbmRotate 12s linear infinite;
}

/* About Us heading */
.about-heading {
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 300;
    line-height: 1.15;
    margin-top: 12px;
    margin-bottom: 20px;
}

.about-desc {
    opacity: 0.75;
    line-height: 1.75;
    margin-bottom: 40px;
}

/* Content box with support info + certified card */
.about-content-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-support-box {
    flex: 1;
    min-width: 200px;
}

.about-support-content h3 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.about-support-content p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.certified-software-item {
    position: relative;
    width: calc(40% - 15px);
    background: url('../images/certified-software-item-bg.svg') no-repeat center / cover;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
}

.certified-software-item .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certified-software-item .icon-box img { width: 32px; }

.certified-software-content p {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
}

/* ============================================================
   SERVICES SECTION
============================================================ */

.bbm-services {
    position: relative;
    padding: 100px 0;
    overflow: visible;
}

.services-heading-row {
    text-align: center;
    margin-bottom: 60px;
}

.services-section-title h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 300;
    line-height: 1.15;
    margin-top: 12px;
}

/* â”€â”€ Tab Navigation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.our-services-nav { margin-bottom: 40px; }

.bbm-tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bbm-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 14px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    color: rgba(245,245,244,0.6);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.bbm-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.bbm-tab-btn.active,
.bbm-tab-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }

.bbm-tab-btn.active::after { width: 80%; }

.bbm-tab-btn .icon-box {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.bbm-tab-btn .icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bbm-tab-btn.active .icon-box::before { opacity: 1; }

.bbm-tab-btn .icon-box img {
    width: 22px;
    position: relative;
    z-index: 1;
    transition: filter 0.3s ease;
}

.bbm-tab-btn.active .icon-box img { filter: brightness(0); }

/* â”€â”€ Tab Panels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bbm-tabs-content { position: relative; }

.services-tab-pane { display: none; }
.services-tab-pane.active {
    display: block;
    animation: bbmFadeIn 0.35s ease;
}

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

/* â”€â”€ Service Item Box (dark glass card) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.service-item-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
    background: url('../images/service-item-box-shape.svg') no-repeat top left / auto;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;
    z-index: 1;
}

.service-item-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1B1B1B;
    opacity: 0.4;
    z-index: -1;
}

.services-content-list {
    width: calc(55% - 30px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-content-item h3 {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 8px;
}

.services-content-item p {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.65;
}

.service-tab-image {
    width: calc(45% - 30px);
    flex-shrink: 0;
    border: 10px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px 0 0 35px;
    overflow: hidden;
}

.service-tab-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ============================================================
   HOW IT WORKS SECTION
============================================================ */

.bbm-how-it-work {
    position: relative;
    padding: 100px 0;
    overflow: visible;
}

.how-work-heading-row {
    text-align: center;
    margin-bottom: 70px;
}

.how-work-heading {
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 300;
    line-height: 1.15;
    margin-top: 12px;
}

.how-work-desc {
    font-size: 16px;
    opacity: 0.7;
    line-height: 1.75;
    color: var(--text);
}

/* â”€â”€ Steps row â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.how-work-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.how-work-item {
    width: calc(25% - 22.5px);
    text-align: center;
}

/* Icon box with dashed arrow connector */
.how-work-item .icon-box {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background-image: url('../images/how-work-right-arrow.svg');
    background-repeat: no-repeat;
    background-position: left 120px center;
}

.how-work-item:last-child .icon-box { background-image: none; }

.how-work-item .icon-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.4s ease;
}

.how-work-item:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

/* Step badge number */
.how-work-step {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

/* Step image */
.how-work-item figure {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.how-work-item figure img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.how-work-content h3 {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 10px;
}

.how-work-content p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.75;
    color: var(--text);
}

/* ============================================================
   VIDEO POPUP MODAL
============================================================ */

.bbm-video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bbm-video-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.bbm-video-modal__box {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
}

.bbm-video-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
}

.bbm-video-modal__iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.bbm-video-modal__iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */

.bbm-testimonials {
    position: relative;
    padding: 100px 0;
    overflow: visible;
}

.testimonials-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.testimonials-title-col { flex: 1; }

.testimonials-title-col h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 300;
    line-height: 1.15;
    margin-top: 12px;
}

.testimonials-body-row {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.testimonials-col-left {
    width: calc(33.333% - 15px);
    flex-shrink: 0;
}

.testimonials-col-right {
    width: calc(66.666% - 15px);
    min-width: 0;
}

/* â”€â”€ Rating Box â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonial-review-box {
    position: relative;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    text-align: center;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
}

.testimonial-review-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1B1B1B;
    opacity: 0.4;
    border-radius: 30px;
}

.testimonial-review-box > * { position: relative; z-index: 1; }

.review-big-num {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    margin-bottom: 14px;
}

.review-stars { margin-bottom: 10px; }
.review-stars span { font-size: 20px; color: var(--accent); margin-right: 2px; }

.review-clients-label { font-size: 14px; opacity: 0.7; line-height: 1.6; margin: 0; }
.review-clients-label small { font-size: 12px; opacity: 0.6; }

.testimonial-review-content h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

/* â”€â”€ Slider wrapper (glass effect only) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonial-slider-wrap {
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    padding: 50px 50px 30px;
    box-sizing: border-box;
}

.testimonial-slider-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1B1B1B;
    opacity: 0.4;
    border-radius: 30px;
}

/* â”€â”€ Viewport: clips the sliding track â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonial-viewport {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-slide {
    flex-shrink: 0;
    display: flex;
    gap: 50px;
    box-sizing: border-box;
    align-items: flex-start;
}

.testimonial-item {
    flex: 1;
    min-width: 0;
    position: relative;
}

.testimonial-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-company-logo img { max-width: 130px; max-height: 30px; object-fit: contain; }
.testimonial-quote img { max-width: 30px; }

.testimonial-content { margin-bottom: 30px; }
.testimonial-content p { opacity: 0.8; margin: 0; line-height: 1.7; }

.testimonial-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.author-content h3 { font-size: 22px; font-weight: 400; margin-bottom: 4px; text-transform: capitalize; }
.author-content p { font-size: 14px; opacity: 0.6; margin: 0; text-transform: capitalize; }
.testimonial-rating span { font-size: 13px; color: var(--accent); margin-right: 2px; }

/* â”€â”€ Pagination dots â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonial-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.testimonial-dot.active { opacity: 1; }

.testimonial-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--accent);
}

/* â”€â”€ Brand Logos Infinite Scroll â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.agency-supports-carousel {
    margin-top: 60px;
    overflow: hidden;
    width: 100%;
}

.agency-logos-track {
    display: flex;
    gap: 20px;
    animation: agencyScroll 20s linear infinite;
}

@keyframes agencyScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

.agency-supports-logo {
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 10px;
    text-align: center;
    padding: 22px 35px;
    flex-shrink: 0;
    min-width: 160px;
    box-sizing: border-box;
}

.agency-supports-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1B1B1B;
    opacity: 0.4;
    border-radius: 10px;
}

.agency-supports-logo img {
    max-width: 110px;
    max-height: 34px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1);
}

/* ============================================================
   CONTACT + FAQ SECTION
============================================================ */

.bbm-contact-faq {
    position: relative;
    padding: 100px 0;
    overflow: visible;
}

.contact-faq-row {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.contact-faq-col-left {
    width: calc(50% - 30px);
    flex-shrink: 0;
}

.contact-faq-col-right { width: calc(50% - 30px); }

/* â”€â”€ Contact Form Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-form-box {
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    padding: 50px 40px;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1B1B1B;
    opacity: 0.4;
    border-radius: 30px;
}

.contact-form-box > * { position: relative; z-index: 1; }

.contact-form-title h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 16px;
}

.contact-form-title p { opacity: 0.7; line-height: 1.7; margin-bottom: 40px; }

.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; }
.form-group-full { margin-bottom: 30px; }

.bbm-contact-form input,
.bbm-contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 16px 20px;
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.bbm-contact-form input::placeholder,
.bbm-contact-form textarea::placeholder { color: rgba(245,245,244,0.5); }

.bbm-contact-form input:focus,
.bbm-contact-form textarea:focus { border-color: var(--accent); }

.btn-submit-form {
    display: block;
    width: 100%;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 100px;
    padding: 18px 30px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: capitalize;
    transition: opacity 0.3s ease;
}

.btn-submit-form:hover { opacity: 0.85; }

/* â”€â”€ FAQ Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section-title { margin-bottom: 40px; }

.faq-section-title h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 300;
    line-height: 1.15;
    margin-top: 12px;
}

.faq-accordion { position: relative; }

.faq-item {
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.faq-item:last-child { margin-bottom: 0; }

.faq-question {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 20px 20px 24px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.faq-item.is-open .faq-question { color: var(--accent); }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-item.is-open .faq-icon { background: rgba(255,255,255,0.15); }

.faq-icon-bar {
    position: absolute;
    background: #000;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}

.faq-icon-h { width: 12px; height: 2px; }
.faq-icon-v { width: 2px; height: 12px; }

.faq-item.is-open .faq-icon-bar { background: var(--text); }
.faq-item.is-open .faq-icon-v { opacity: 0; }

.faq-answer {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.is-open .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 54px 20px 24px;
    opacity: 0.75;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   LET'S WORK TOGETHER CTA
============================================================ */

.bbm-work-together {
    position: relative;
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    overflow: visible;
}

.work-together-box { position: relative; text-align: center; }

.work-together-content h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.work-together-content h2 {
    font-size: clamp(60px, 12vw, 175px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--text);
    letter-spacing: -2px;
}

.work-together-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.work-together-btn-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.work-together-btn-circle:hover { background: #fff; }

.work-together-btn-circle span {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

/* ============================================================
   FOOTER
============================================================ */

.bbm-footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 70px 0 0;
}

.footer-main-row {
    display: flex;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col { flex: 1; }
.footer-col-about { flex: 1.4; }

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    display: block;
}

.footer-logo-bull { color: var(--text); }
.footer-logo-media { color: var(--accent); }

.footer-about-text { font-size: 14px; opacity: 0.6; line-height: 1.7; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
    color: var(--accent);
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, background 0.3s ease;
}

.footer-socials a:hover { background: var(--accent); color: #000; }

.footer-col h3 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 28px;
    text-transform: capitalize;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }

.footer-col ul li { margin-bottom: 14px; font-size: 14px; opacity: 0.7; line-height: 1.5; }
.footer-col ul li:last-child { margin-bottom: 0; }

.footer-col ul li a { color: var(--text); text-decoration: none; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--accent); opacity: 1; }

.footer-col-contact ul li { display: flex; gap: 8px; align-items: flex-start; opacity: 1; }
.footer-col-contact ul li span { color: var(--accent); font-weight: 600; white-space: nowrap; font-size: 13px; }
.footer-col-contact ul li a,
.footer-col-contact ul li { font-size: 14px; color: rgba(245,245,244,0.7); }

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
}

.footer-copyright p { font-size: 14px; opacity: 0.5; margin: 0; }

.footer-legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 0; }

.footer-legal li { position: relative; font-size: 14px; opacity: 0.5; padding: 0 20px; }
.footer-legal li::before { content: '/'; position: absolute; left: 0; }
.footer-legal li:first-child::before { display: none; }
.footer-legal li a { color: var(--text); text-decoration: none; }
.footer-legal li a:hover { opacity: 1; }

/* â”€â”€ Hero offset for fixed header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bbm-hero { padding-top: 120px; }

/* ============================================================
   SECTION BACKGROUND SHAPES â€” rotating green ring decorations
============================================================ */

@keyframes roundrotate {
    from { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(100px) rotate(360deg); }
}
@keyframes ringrotate {
    from { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(-80px) rotate(360deg); }
}
@keyframes chainrotate {
    from { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(60px) rotate(-360deg); }
}
@keyframes circlmoveerotate {
    from { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(100px) rotate(360deg); }
}

/* Shared base */
.bbm-about::before, .bbm-about::after,
.bbm-services::before,
.bbm-how-it-work::before,
.bbm-testimonials::before,
.bbm-contact-faq::before, .bbm-contact-faq::after,
.bbm-work-together::before, .bbm-work-together::after {
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* About â€” shape-1 right */
.bbm-about::before {
    right: -70px; top: 50%;
    background-image: url('../images/section-bg-shape-1.png');
    background-position: right center;
    width: 285px; height: 285px;
    transform: translateY(-50%) rotate(-50deg);
    animation: roundrotate 10s infinite linear alternate;
}

/* About â€” shape-4 left */
.bbm-about::after {
    left: -50px; bottom: 80px;
    background-image: url('../images/section-bg-shape-4.png');
    background-position: left bottom;
    width: 267px; height: 267px;
    animation: ringrotate 15s infinite linear alternate;
}

/* Services â€” shape-2 left */
.bbm-services::before {
    left: -30px; bottom: 0;
    background-image: url('../images/section-bg-shape-2.png');
    background-position: left bottom;
    width: 285px; height: 285px;
    animation: chainrotate 10s infinite linear alternate;
}

/* How It Works â€” shape-5 right */
.bbm-how-it-work::before {
    right: -70px; top: 200px;
    background-image: url('../images/section-bg-shape-5.png');
    background-position: right center;
    width: 310px; height: 310px;
    animation: roundrotate 10s infinite linear alternate;
}

/* Testimonials â€” shape-6 left */
.bbm-testimonials::before {
    left: -50px; top: 100px;
    background-image: url('../images/section-bg-shape-6.png');
    background-position: left center;
    width: 286px; height: 286px;
    animation: ringrotate 15s infinite linear alternate;
}

/* Contact+FAQ â€” shape-7 right */
.bbm-contact-faq::before {
    right: -70px; bottom: 200px;
    background-image: url('../images/section-bg-shape-7.png');
    background-position: right bottom;
    width: 258px; height: 258px;
    animation: roundrotate 10s infinite linear alternate;
}

/* Contact+FAQ â€” shape-4 left */
.bbm-contact-faq::after {
    left: -50px; top: 100px;
    background-image: url('../images/section-bg-shape-4.png');
    background-position: left top;
    width: 267px; height: 267px;
    animation: ringrotate 15s infinite linear alternate;
}

/* Work Together â€” shape-8 left */
.bbm-work-together::before {
    left: -20px; top: 60px;
    background-image: url('../images/section-bg-shape-8.png');
    background-position: left center;
    width: 215px; height: 215px;
    animation: circlmoveerotate 12s infinite linear alternate;
}

/* Work Together â€” shape-3 right */
.bbm-work-together::after {
    right: -50px; top: 50%;
    background-image: url('../images/section-bg-shape-3.png');
    background-position: right center;
    width: 285px; height: 285px;
    transform: translateY(-50%);
    animation: ringrotate 12s infinite linear alternate;
}

/* ============================================================
   MOBILE / RESPONSIVE
============================================================ */

@media (max-width: 900px) {
    .bbm-nav {
        position: fixed;
        top: 0;
        left: -100%;
        right: auto;
        width: 260px;
        height: 100vh;
        background: rgba(0,0,0,0.97);
        padding: 80px 30px 40px;
        transition: left 0.35s ease;
        z-index: 999;
    }

    .bbm-nav.is-open { left: 0; }

    .bbm-nav ul { flex-direction: column; align-items: flex-start; gap: 18px; }
    .bbm-nav ul li a { font-size: 15px; text-align: left; }

    .bbm-hamburger { display: flex; }
    .bbm-header-socials { display: none; }

    .about-row,
    .testimonials-body-row,
    .contact-faq-row { flex-direction: column; }

    .about-col-image,
    .about-col-content,
    .testimonials-col-left,
    .testimonials-col-right,
    .contact-faq-col-left,
    .contact-faq-col-right { width: 100%; }

    /* Hero buttons: wrap so neither overflows; hide second btn */
    .hero-content-btn { flex-wrap: wrap; gap: 12px; }
    .hero-content-btn .hero-btn:nth-child(2) { display: none; }
    .hero-col-right { display: none; }

    /* About image: hidden on mobile */
    .about-col-image { display: none; }
    .about-col-content { width: 100%; }

    /* Certified card: hidden on mobile */
    .certified-software-item { display: none; }

    /* Reduce section padding on mobile */
    .bbm-hero { padding: 140px 0 60px; }
    .bbm-about { padding: 50px 0; }
    .bbm-services { padding: 50px 0; }
    .bbm-how-it-work { padding: 50px 0; }
    .bbm-testimonials { padding: 50px 0; }
    .bbm-contact-faq { padding: 50px 0; }
    .bbm-work-together { padding: 40px 0; }
    .bbm-footer { padding-top: 40px; }

    /* Hide all animated background shapes on mobile */
    .bbm-about::before, .bbm-about::after,
    .bbm-services::before, .bbm-services::after,
    .bbm-how-it-work::before, .bbm-how-it-work::after,
    .bbm-testimonials::before, .bbm-testimonials::after,
    .bbm-contact-faq::before, .bbm-contact-faq::after,
    .bbm-work-together::before, .bbm-work-together::after,
    .bbm-hero::before, .bbm-hero::after,
    .bbm-footer::before, .bbm-footer::after { display: none; }

    /* How It Works: 2-col grid, smaller icons */
    .how-work-list { gap: 32px 16px; }
    .how-work-item { width: calc(50% - 8px); }
    .how-work-item .icon-box {
        width: 70px;
        height: 70px;
        background-image: none !important;
    }
    .how-work-item .icon-box figure img,
    .how-work-item .icon-box img { width: 34px; height: 34px; }
    .how-work-step { width: 22px; height: 22px; top: -4px; right: -4px; }
    .how-work-step h3 { font-size: 9px; }
    .how-work-content { margin-top: 14px; }
    .how-work-content h3 { font-size: 15px; margin-bottom: 6px; }
    .how-work-content p { font-size: 12px; }

    /* Services tabs: 2-column grid */
    .our-services-nav { margin-bottom: 24px; }
    .bbm-tabs-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        flex-wrap: unset;
    }
    .bbm-tabs-nav li { width: 100%; }
    .bbm-tab-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 10px;
        font-size: 13px;
        gap: 8px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
    }
    .bbm-tab-btn.active { border-color: var(--accent); }
    .bbm-tab-btn::after { display: none; }
    .bbm-tab-btn .icon-box { width: 28px; height: 28px; flex-shrink: 0; }
    .bbm-tab-btn .icon-box img { width: 15px; }

    /* Hide tab images on mobile */
    .service-tab-image { display: none; }

    .service-item-box { flex-direction: column; padding: 50px 15px; border-radius: 20px; }
    .services-content-list { width: 100%; }

    /* Work Together: hide subheading so btn centers on h2 */
    .work-together-content h3 { display: none; }
    .work-together-content h2 { font-size: clamp(60px, 22vw, 100px); font-weight: 400; letter-spacing: 0; }
    .work-together-cta { top: 50%; }
    .work-together-btn-circle { width: 110px; height: 110px; }

    .footer-main-row { flex-wrap: wrap; gap: 30px 0; }
    .footer-col-about { flex: 0 0 100%; width: 100%; }
    .footer-col-links { flex: 0 0 calc(50% - 10px); width: calc(50% - 10px); }
    .footer-col-contact { flex: 0 0 100%; width: 100%; margin-top: 20px; }

    .footer-copyright { flex-direction: column; text-align: center; gap: 12px; }

    .testimonials-heading-row { flex-direction: column; align-items: flex-start; }

    /* Testimonials: 1 card per slide on mobile */
    .testimonial-slider-wrap { padding: 24px 20px 20px; border-radius: 20px; }
    .testimonial-slide { gap: 0; }
    .testimonial-item:last-child { display: none; }
    .testimonial-item { flex: 0 0 100%; }
    .testimonial-item:not(:last-child)::after { display: none; }

    /* Brand logos: reduce gap above contact section */
    .agency-supports-carousel { margin-top: 30px; margin-bottom: 0; }
    .testimonials-body-row { margin-bottom: 30px; }

    /* Section labels smaller on mobile */
    .section-label { font-size: 16px; }

    /* FAQ title spacing */
    .faq-section-title { margin-bottom: 20px; margin-top: 40px; }
    .faq-section-title h2 { margin-top: 6px; }
    .contact-faq-row { gap: 30px; }

    /* Contact form card padding */
    .contact-form-box { padding: 50px 15px; }
}


/* ── Services tab: underline-only active + hover, no solid BG ─────────── */
.bbm-tab-btn.active {
    color: var(--text);
    border-color: transparent;
    background: transparent;
}
.bbm-tab-btn:hover { border-color: transparent; }
.bbm-tab-btn:hover::after { width: 80%; }

/* ── Testimonials heading — centered, no btn col ────────────────────── */
.testimonials-heading-row {
    display: block;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title-col {
    display: inline-block;
    text-align: center;
    width: 100%;
}

/* ── Footer copyright — centered ─────────────────────────────────────── */
.footer-copyright {
    justify-content: center;
    text-align: center;
}

/* ── How It Works — centered header ──────────────────────────────────── */
.how-work-header {
    text-align: center;
    margin-bottom: 60px;
}
.how-work-header .how-work-heading {
    margin-top: 12px;
}
.how-work-header-desc {
    max-width: 720px;
    margin: 20px auto 0;
    color: rgba(245,245,244,0.7);
    font-size: 15px;
    line-height: 1.7;
}
.how-work-item .icon-box {
    margin-left: auto;
    margin-right: auto;
}

/* ── About btn margin top ─────────────────────────────────────────────── */
.about-btn {
    margin-top: 25px;
}

/* ── Convert all green SVG/PNG assets to white ────────────────────────── */
/* How It Works icons — green SVG lines → white */
.how-work-item .icon-box figure img,
.how-work-item .icon-box img { filter: brightness(0) invert(1); }

/* Testimonial quote mark */
.testimonial-quote img { filter: brightness(0) invert(1); }

/* Company logos in testimonials */
.testimonial-company-logo img { filter: grayscale(1) brightness(2); }

/* Agency/brand logos carousel */
.agency-supports-logo img { filter: brightness(0) invert(1); }

/* Section label asterisk icon */
.section-label::before { filter: brightness(0) invert(1); }

/* Explore More circle badge */
.explore-more-circle img { filter: grayscale(1) brightness(0.9); }

/* Certified software icon */
.certified-software-item .icon-box img { filter: brightness(0) invert(1); }

/* Service nav tab icons — remove any green tint */
.bbm-tab-btn .icon-box img { filter: brightness(0) invert(1); }

/* Logo sizing */
.logo-img { height: 44px; width: auto; display: block; }
.footer-logo-img { height: 80px; width: auto; display: block; margin-bottom: 16px; }

/* ── How It Works icon centering ──────────────────────────────────────── */
.how-work-item .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-work-item .icon-box figure {
    margin: 0;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-work-item .icon-box figure img {
    width: 48px;
    height: 48px;
    aspect-ratio: auto;
    object-fit: contain;
}
